@charset "UTF-8";
/* Optionnel : S'assurer que tous les titres utilisent Poppins avec des poids différents */
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@500;700&display=swap");
@import url(https://fonts.googleapis.com/css?family=Open+Sans:700,300);
/* line 2, app/assets/stylesheets/config/_fonts.scss */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  /* Gras pour les titres */
}

/* line 7, app/assets/stylesheets/config/_fonts.scss */
p, a, span, li {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
}

/* ============================================
   Classes utilitaires CSP (Content Security Policy)
   ============================================
   Ces classes remplacent les styles inline dans les contrôleurs Stimulus
   pour être conformes à la CSP.
   ============================================ */
/* ============================================
   DISPLAY UTILITIES
   ============================================ */
/* line 11, app/assets/stylesheets/config/_csp_utilities.scss */
.d-none {
  display: none !important;
}

/* line 12, app/assets/stylesheets/config/_csp_utilities.scss */
.d-block {
  display: block !important;
}

/* line 13, app/assets/stylesheets/config/_csp_utilities.scss */
.d-inline {
  display: inline !important;
}

/* line 14, app/assets/stylesheets/config/_csp_utilities.scss */
.d-inline-block {
  display: inline-block !important;
}

/* line 15, app/assets/stylesheets/config/_csp_utilities.scss */
.d-flex {
  display: flex !important;
}

/* line 16, app/assets/stylesheets/config/_csp_utilities.scss */
.d-grid {
  display: grid !important;
}

/* line 17, app/assets/stylesheets/config/_csp_utilities.scss */
.d-table {
  display: table !important;
}

/* line 18, app/assets/stylesheets/config/_csp_utilities.scss */
.d-table-row {
  display: table-row !important;
}

/* line 19, app/assets/stylesheets/config/_csp_utilities.scss */
.d-table-cell {
  display: table-cell !important;
}

/* ============================================
   OPACITY UTILITIES
   ============================================ */
/* line 24, app/assets/stylesheets/config/_csp_utilities.scss */
.opacity-0 {
  opacity: 0 !important;
}

/* line 25, app/assets/stylesheets/config/_csp_utilities.scss */
.opacity-25 {
  opacity: 0.25 !important;
}

/* line 26, app/assets/stylesheets/config/_csp_utilities.scss */
.opacity-50 {
  opacity: 0.5 !important;
}

/* line 27, app/assets/stylesheets/config/_csp_utilities.scss */
.opacity-75 {
  opacity: 0.75 !important;
}

/* line 28, app/assets/stylesheets/config/_csp_utilities.scss */
.opacity-100 {
  opacity: 1 !important;
}

/* ============================================
   VISIBILITY UTILITIES
   ============================================ */
/* line 33, app/assets/stylesheets/config/_csp_utilities.scss */
.visibility-hidden {
  visibility: hidden !important;
}

/* line 34, app/assets/stylesheets/config/_csp_utilities.scss */
.visibility-visible {
  visibility: visible !important;
}

/* ============================================
   TRANSFORM UTILITIES
   ============================================ */
/* line 39, app/assets/stylesheets/config/_csp_utilities.scss */
.transform-none {
  transform: none !important;
}

/* line 40, app/assets/stylesheets/config/_csp_utilities.scss */
.transform-translate-x-0 {
  transform: translateX(0) !important;
}

/* line 41, app/assets/stylesheets/config/_csp_utilities.scss */
.transform-translate-x-full {
  transform: translateX(100%) !important;
}

/* line 42, app/assets/stylesheets/config/_csp_utilities.scss */
.transform-translate-x-neg-full {
  transform: translateX(-100%) !important;
}

/* line 43, app/assets/stylesheets/config/_csp_utilities.scss */
.transform-translate-y-0 {
  transform: translateY(0) !important;
}

/* line 44, app/assets/stylesheets/config/_csp_utilities.scss */
.transform-scale-95 {
  transform: scale(0.95) !important;
}

/* line 45, app/assets/stylesheets/config/_csp_utilities.scss */
.transform-scale-100 {
  transform: scale(1) !important;
}

/* line 46, app/assets/stylesheets/config/_csp_utilities.scss */
.transform-scale-105 {
  transform: scale(1.05) !important;
}

/* ============================================
   WIDTH UTILITIES (pour progress bars, etc.)
   ============================================ */
/* Utiliser CSS custom properties pour les valeurs dynamiques */
/* line 52, app/assets/stylesheets/config/_csp_utilities.scss */
.width-0 {
  width: 0% !important;
}

/* line 53, app/assets/stylesheets/config/_csp_utilities.scss */
.width-25 {
  width: 25% !important;
}

/* line 54, app/assets/stylesheets/config/_csp_utilities.scss */
.width-50 {
  width: 50% !important;
}

/* line 55, app/assets/stylesheets/config/_csp_utilities.scss */
.width-75 {
  width: 75% !important;
}

/* line 56, app/assets/stylesheets/config/_csp_utilities.scss */
.width-100 {
  width: 100% !important;
}

/* Pour les valeurs dynamiques, utiliser une classe avec CSS variable */
/* line 59, app/assets/stylesheets/config/_csp_utilities.scss */
.width-dynamic {
  width: var(--dynamic-width, 0%) !important;
}

/* ============================================
   HEIGHT UTILITIES
   ============================================ */
/* line 66, app/assets/stylesheets/config/_csp_utilities.scss */
.height-0 {
  height: 0 !important;
}

/* line 67, app/assets/stylesheets/config/_csp_utilities.scss */
.height-auto {
  height: auto !important;
}

/* line 68, app/assets/stylesheets/config/_csp_utilities.scss */
.height-100 {
  height: 100% !important;
}

/* line 69, app/assets/stylesheets/config/_csp_utilities.scss */
.height-dynamic {
  height: var(--dynamic-height, auto) !important;
}

/* Pour textarea auto-resize */
/* line 74, app/assets/stylesheets/config/_csp_utilities.scss */
.height-auto-resize {
  height: auto !important;
  min-height: var(--dynamic-min-height, auto) !important;
  max-height: var(--dynamic-max-height, none) !important;
}

/* ============================================
   POSITION UTILITIES
   ============================================ */
/* line 83, app/assets/stylesheets/config/_csp_utilities.scss */
.position-static {
  position: static !important;
}

/* line 84, app/assets/stylesheets/config/_csp_utilities.scss */
.position-relative {
  position: relative !important;
}

/* line 85, app/assets/stylesheets/config/_csp_utilities.scss */
.position-absolute {
  position: absolute !important;
}

/* line 86, app/assets/stylesheets/config/_csp_utilities.scss */
.position-fixed {
  position: fixed !important;
}

/* line 87, app/assets/stylesheets/config/_csp_utilities.scss */
.position-sticky {
  position: sticky !important;
}

/* ============================================
   OVERFLOW UTILITIES
   ============================================ */
/* line 92, app/assets/stylesheets/config/_csp_utilities.scss */
.overflow-hidden {
  overflow: hidden !important;
}

/* line 93, app/assets/stylesheets/config/_csp_utilities.scss */
.overflow-visible {
  overflow: visible !important;
}

/* line 94, app/assets/stylesheets/config/_csp_utilities.scss */
.overflow-auto {
  overflow: auto !important;
}

/* line 95, app/assets/stylesheets/config/_csp_utilities.scss */
.overflow-scroll {
  overflow: scroll !important;
}

/* line 96, app/assets/stylesheets/config/_csp_utilities.scss */
.overflow-x-hidden {
  overflow-x: hidden !important;
}

/* line 97, app/assets/stylesheets/config/_csp_utilities.scss */
.overflow-y-hidden {
  overflow-y: hidden !important;
}

/* line 98, app/assets/stylesheets/config/_csp_utilities.scss */
.overflow-x-auto {
  overflow-x: auto !important;
}

/* line 99, app/assets/stylesheets/config/_csp_utilities.scss */
.overflow-y-auto {
  overflow-y: auto !important;
}

/* Body overflow (pour modals) */
/* line 102, app/assets/stylesheets/config/_csp_utilities.scss */
.body-overflow-hidden {
  overflow: hidden !important;
}

/* line 103, app/assets/stylesheets/config/_csp_utilities.scss */
.body-overflow-auto {
  overflow: auto !important;
}

/* ============================================
   CURSOR UTILITIES
   ============================================ */
/* line 108, app/assets/stylesheets/config/_csp_utilities.scss */
.cursor-pointer {
  cursor: pointer !important;
}

/* line 109, app/assets/stylesheets/config/_csp_utilities.scss */
.cursor-default {
  cursor: default !important;
}

/* line 110, app/assets/stylesheets/config/_csp_utilities.scss */
.cursor-not-allowed {
  cursor: not-allowed !important;
}

/* line 111, app/assets/stylesheets/config/_csp_utilities.scss */
.cursor-move {
  cursor: move !important;
}

/* line 112, app/assets/stylesheets/config/_csp_utilities.scss */
.cursor-grab {
  cursor: grab !important;
}

/* line 113, app/assets/stylesheets/config/_csp_utilities.scss */
.cursor-grabbing {
  cursor: grabbing !important;
}

/* line 114, app/assets/stylesheets/config/_csp_utilities.scss */
.cursor-text {
  cursor: text !important;
}

/* line 115, app/assets/stylesheets/config/_csp_utilities.scss */
.cursor-wait {
  cursor: wait !important;
}

/* ============================================
   Z-INDEX UTILITIES
   ============================================ */
/* line 120, app/assets/stylesheets/config/_csp_utilities.scss */
.z-0 {
  z-index: 0 !important;
}

/* line 121, app/assets/stylesheets/config/_csp_utilities.scss */
.z-1 {
  z-index: 1 !important;
}

/* line 122, app/assets/stylesheets/config/_csp_utilities.scss */
.z-5 {
  z-index: 5 !important;
}

/* line 123, app/assets/stylesheets/config/_csp_utilities.scss */
.z-10 {
  z-index: 10 !important;
}

/* line 124, app/assets/stylesheets/config/_csp_utilities.scss */
.z-50 {
  z-index: 50 !important;
}

/* line 125, app/assets/stylesheets/config/_csp_utilities.scss */
.z-100 {
  z-index: 100 !important;
}

/* line 126, app/assets/stylesheets/config/_csp_utilities.scss */
.z-999 {
  z-index: 999 !important;
}

/* line 127, app/assets/stylesheets/config/_csp_utilities.scss */
.z-9999 {
  z-index: 9999 !important;
}

/* ============================================
   TRANSITION UTILITIES
   ============================================ */
/* line 132, app/assets/stylesheets/config/_csp_utilities.scss */
.transition-none {
  transition: none !important;
}

/* line 133, app/assets/stylesheets/config/_csp_utilities.scss */
.transition-all {
  transition: all 0.3s ease !important;
}

/* line 134, app/assets/stylesheets/config/_csp_utilities.scss */
.transition-opacity {
  transition: opacity 0.3s ease !important;
}

/* line 135, app/assets/stylesheets/config/_csp_utilities.scss */
.transition-opacity-fast {
  transition: opacity 0.2s ease !important;
}

/* line 136, app/assets/stylesheets/config/_csp_utilities.scss */
.transition-opacity-slow {
  transition: opacity 0.5s ease !important;
}

/* line 137, app/assets/stylesheets/config/_csp_utilities.scss */
.transition-transform {
  transition: transform 0.3s ease !important;
}

/* line 138, app/assets/stylesheets/config/_csp_utilities.scss */
.transition-opacity-transform {
  transition: opacity 0.3s ease, transform 0.3s ease !important;
}

/* Transition dynamique via CSS variable */
/* line 143, app/assets/stylesheets/config/_csp_utilities.scss */
.transition-dynamic {
  transition: var(--dynamic-transition, all 0.3s ease) !important;
}

/* Animation delay dynamique */
/* line 148, app/assets/stylesheets/config/_csp_utilities.scss */
.animation-delay-dynamic {
  animation-delay: var(--dynamic-animation-delay, 0s) !important;
}

/* Transform dynamique */
/* line 153, app/assets/stylesheets/config/_csp_utilities.scss */
.transform-dynamic {
  transform: var(--dynamic-transform, none) !important;
}

/* ============================================
   ANIMATION UTILITIES
   ============================================ */
/* line 160, app/assets/stylesheets/config/_csp_utilities.scss */
.animation-none {
  animation: none !important;
}

/* line 161, app/assets/stylesheets/config/_csp_utilities.scss */
.animation-shake {
  animation: shake 0.5s ease-in-out !important;
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

/* ============================================
   BACKGROUND COLOR UTILITIES (pour previews dynamiques)
   ============================================ */
/* Pour les couleurs dynamiques, utiliser CSS custom property */
/* line 175, app/assets/stylesheets/config/_csp_utilities.scss */
.bg-color-dynamic {
  background-color: var(--dynamic-bg-color, transparent) !important;
}

/* line 179, app/assets/stylesheets/config/_csp_utilities.scss */
.bg-gradient-dynamic {
  background: var(--dynamic-bg-gradient, transparent) !important;
}

/* ============================================
   TEXT COLOR UTILITIES
   ============================================ */
/* line 186, app/assets/stylesheets/config/_csp_utilities.scss */
.text-color-dynamic {
  color: var(--dynamic-text-color, inherit) !important;
}

/* Error text color */
/* line 191, app/assets/stylesheets/config/_csp_utilities.scss */
.text-color-error {
  color: #ff6b6b !important;
}

/* Font size utilities */
/* line 196, app/assets/stylesheets/config/_csp_utilities.scss */
.font-size-xs {
  font-size: 0.8rem !important;
}

/* Margin top utilities */
/* line 201, app/assets/stylesheets/config/_csp_utilities.scss */
.margin-top-xs {
  margin-top: 5px !important;
}

/* ============================================
   MARGIN & PADDING DYNAMIC
   ============================================ */
/* line 208, app/assets/stylesheets/config/_csp_utilities.scss */
.margin-dynamic {
  margin: var(--dynamic-margin, 0) !important;
}

/* line 212, app/assets/stylesheets/config/_csp_utilities.scss */
.padding-dynamic {
  padding: var(--dynamic-padding, 0) !important;
}

/* ============================================
   LEFT/POSITION DYNAMIC (pour step marks, etc.)
   ============================================ */
/* line 219, app/assets/stylesheets/config/_csp_utilities.scss */
.left-dynamic {
  left: var(--dynamic-left, 0) !important;
}

/* line 223, app/assets/stylesheets/config/_csp_utilities.scss */
.top-dynamic {
  top: var(--dynamic-top, 0) !important;
}

/* line 227, app/assets/stylesheets/config/_csp_utilities.scss */
.right-dynamic {
  right: var(--dynamic-right, 0) !important;
}

/* line 231, app/assets/stylesheets/config/_csp_utilities.scss */
.bottom-dynamic {
  bottom: var(--dynamic-bottom, 0) !important;
}

/* Position dynamique complète (pour overlays, markers, etc.) */
/* line 236, app/assets/stylesheets/config/_csp_utilities.scss */
.position-dynamic {
  position: absolute !important;
  width: var(--dynamic-width, auto) !important;
  height: var(--dynamic-height, auto) !important;
  left: var(--dynamic-left, auto) !important;
  top: var(--dynamic-top, auto) !important;
}

/* ============================================
   OBJECT FIT UTILITIES (pour vidéos/images)
   ============================================ */
/* line 247, app/assets/stylesheets/config/_csp_utilities.scss */
.object-fit-cover {
  object-fit: cover !important;
}

/* line 248, app/assets/stylesheets/config/_csp_utilities.scss */
.object-fit-contain {
  object-fit: contain !important;
}

/* line 249, app/assets/stylesheets/config/_csp_utilities.scss */
.object-fit-fill {
  object-fit: fill !important;
}

/* line 250, app/assets/stylesheets/config/_csp_utilities.scss */
.object-fit-none {
  object-fit: none !important;
}

/* line 251, app/assets/stylesheets/config/_csp_utilities.scss */
.object-fit-scale-down {
  object-fit: scale-down !important;
}

/* line 253, app/assets/stylesheets/config/_csp_utilities.scss */
.object-position-center {
  object-position: center !important;
}

/* line 254, app/assets/stylesheets/config/_csp_utilities.scss */
.object-position-top {
  object-position: top !important;
}

/* line 255, app/assets/stylesheets/config/_csp_utilities.scss */
.object-position-bottom {
  object-position: bottom !important;
}

/* line 256, app/assets/stylesheets/config/_csp_utilities.scss */
.object-position-left {
  object-position: left !important;
}

/* line 257, app/assets/stylesheets/config/_csp_utilities.scss */
.object-position-right {
  object-position: right !important;
}

/* ============================================
   POINTER EVENTS UTILITIES
   ============================================ */
/* line 262, app/assets/stylesheets/config/_csp_utilities.scss */
.pointer-events-none {
  pointer-events: none !important;
}

/* line 263, app/assets/stylesheets/config/_csp_utilities.scss */
.pointer-events-auto {
  pointer-events: auto !important;
}

/* line 264, app/assets/stylesheets/config/_csp_utilities.scss */
.pointer-events-dynamic {
  pointer-events: var(--dynamic-pointer-events, auto) !important;
}

/* ============================================
   USER SELECT UTILITIES
   ============================================ */
/* line 271, app/assets/stylesheets/config/_csp_utilities.scss */
.user-select-none {
  user-select: none !important;
}

/* line 272, app/assets/stylesheets/config/_csp_utilities.scss */
.user-select-auto {
  user-select: auto !important;
}

/* line 273, app/assets/stylesheets/config/_csp_utilities.scss */
.user-select-all {
  user-select: all !important;
}

/* ============================================
   FONT SIZE DYNAMIC
   ============================================ */
/* line 278, app/assets/stylesheets/config/_csp_utilities.scss */
.font-size-dynamic {
  font-size: var(--dynamic-font-size, inherit) !important;
}

/* ============================================
   BORDER UTILITIES
   ============================================ */
/* line 285, app/assets/stylesheets/config/_csp_utilities.scss */
.border-none {
  border: none !important;
}

/* line 286, app/assets/stylesheets/config/_csp_utilities.scss */
.border-0 {
  border-width: 0 !important;
}

/* line 288, app/assets/stylesheets/config/_csp_utilities.scss */
.border-color-dynamic {
  border-color: var(--dynamic-border-color, currentColor) !important;
}

/* ============================================
   FADE OUT UTILITIES
   ============================================ */
/* line 295, app/assets/stylesheets/config/_csp_utilities.scss */
.fade-out-collapsed {
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  opacity: 0 !important;
  overflow: hidden !important;
  transition: height 0.3s ease, padding 0.3s ease, margin 0.3s ease, opacity 0.3s ease !important;
}

/* ============================================
   FORM ERRORS UTILITIES
   ============================================ */
/* line 307, app/assets/stylesheets/config/_csp_utilities.scss */
.form-errors-styled {
  background-color: rgba(244, 67, 54, 0.2) !important;
  color: #f44336 !important;
  border: 1px solid rgba(244, 67, 54, 0.3) !important;
  padding: 15px !important;
  border-radius: 6px !important;
  margin-bottom: 20px !important;
}

/* line 315, app/assets/stylesheets/config/_csp_utilities.scss */
.form-errors-styled h4, .form-errors-styled .h4 {
  margin: 0 0 10px 0 !important;
  font-size: 1rem !important;
}

/* line 320, app/assets/stylesheets/config/_csp_utilities.scss */
.form-errors-styled ul {
  margin: 0 !important;
  padding-left: 20px !important;
}

/* ============================================
   VARIABLE BADGE UTILITIES
   ============================================ */
/* line 329, app/assets/stylesheets/config/_csp_utilities.scss */
.variable-badge {
  color: #f39c12 !important;
  font-weight: bold !important;
  padding: 2px 6px !important;
  background-color: rgba(243, 156, 18, 0.1) !important;
  border-radius: 3px !important;
}

/* ============================================
   TOAST NOTIFICATION UTILITIES
   ============================================ */
/* line 340, app/assets/stylesheets/config/_csp_utilities.scss */
.toast-notification {
  position: fixed !important;
  top: 20px !important;
  right: 20px !important;
  z-index: 9999 !important;
  padding: 12px 20px !important;
  border-radius: 6px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  animation: slideInRight 0.3s ease-out !important;
}

/* line 351, app/assets/stylesheets/config/_csp_utilities.scss */
.toast-success {
  background-color: #4caf50 !important;
  color: white !important;
}

/* line 356, app/assets/stylesheets/config/_csp_utilities.scss */
.toast-error {
  background-color: #f44336 !important;
  color: white !important;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ============================================
   MAX HEIGHT DYNAMIC
   ============================================ */
/* line 375, app/assets/stylesheets/config/_csp_utilities.scss */
.max-height-dynamic {
  max-height: var(--dynamic-max-height, none) !important;
}

/* line 379, app/assets/stylesheets/config/_csp_utilities.scss */
.collapsible-content {
  overflow: hidden !important;
  transition: max-height 0.3s ease-out !important;
}

/* line 383, app/assets/stylesheets/config/_csp_utilities.scss */
.collapsible-content.collapsed {
  max-height: 0 !important;
}

/* line 387, app/assets/stylesheets/config/_csp_utilities.scss */
.collapsible-content.expanded {
  max-height: var(--dynamic-max-height, none) !important;
}

/* line 391, app/assets/stylesheets/config/_csp_utilities.scss */
.collapsible-content.auto-overflow {
  overflow: auto !important;
}

/*!
   * Bootstrap  v5.3.5 (https://getbootstrap.com/)
   * Copyright 2011-2025 The Bootstrap Authors
   * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
   */
/* line 1, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_root.scss */
:root,
[data-bs-theme="light"] {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #8b5cf6;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-black: #000000;
  --bs-white: #FFFFFF;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #10b981;
  --bs-info: #3b82f6;
  --bs-warning: #f59e0b;
  --bs-danger: #ef4444;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 16, 185, 129;
  --bs-info-rgb: 59, 130, 246;
  --bs-warning-rgb: 245, 158, 11;
  --bs-danger-rgb: 239, 68, 68;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-primary-text-emphasis: #052c65;
  --bs-secondary-text-emphasis: #2b2f32;
  --bs-success-text-emphasis: #064a34;
  --bs-info-text-emphasis: #183462;
  --bs-warning-text-emphasis: #623f04;
  --bs-danger-text-emphasis: #601b1b;
  --bs-light-text-emphasis: #495057;
  --bs-dark-text-emphasis: #495057;
  --bs-primary-bg-subtle: #cfe2ff;
  --bs-secondary-bg-subtle: #e2e3e5;
  --bs-success-bg-subtle: #cff1e6;
  --bs-info-bg-subtle: #d8e6fd;
  --bs-warning-bg-subtle: #fdecce;
  --bs-danger-bg-subtle: #fcdada;
  --bs-light-bg-subtle: #fcfcfd;
  --bs-dark-bg-subtle: #ced4da;
  --bs-primary-border-subtle: #9ec5fe;
  --bs-secondary-border-subtle: #c4c8cb;
  --bs-success-border-subtle: #9fe3cd;
  --bs-info-border-subtle: #b1cdfb;
  --bs-warning-border-subtle: #fbd89d;
  --bs-danger-border-subtle: #f9b4b4;
  --bs-light-border-subtle: #e9ecef;
  --bs-dark-border-subtle: #adb5bd;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg: #FFFFFF;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-emphasis-color: #000000;
  --bs-emphasis-color-rgb: 0, 0, 0;
  --bs-secondary-color: rgba(33, 37, 41, 0.75);
  --bs-secondary-color-rgb: 33, 37, 41;
  --bs-secondary-bg: #e9ecef;
  --bs-secondary-bg-rgb: 233, 236, 239;
  --bs-tertiary-color: rgba(33, 37, 41, 0.5);
  --bs-tertiary-color-rgb: 33, 37, 41;
  --bs-tertiary-bg: #f8f9fa;
  --bs-tertiary-bg-rgb: 248, 249, 250;
  --bs-heading-color: inherit;
  --bs-link-color: #0d6efd;
  --bs-link-color-rgb: 13, 110, 253;
  --bs-link-decoration: underline;
  --bs-link-hover-color: #0a58ca;
  --bs-link-hover-color-rgb: 10, 88, 202;
  --bs-code-color: #d63384;
  --bs-highlight-color: #212529;
  --bs-highlight-bg: #fff3cd;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 8px;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-xxl: 2rem;
  --bs-border-radius-2xl: var(--bs-border-radius-xxl);
  --bs-border-radius-pill: 50rem;
  --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  --bs-focus-ring-width: 0.25rem;
  --bs-focus-ring-opacity: 0.25;
  --bs-focus-ring-color: rgba(13, 110, 253, 0.25);
  --bs-form-valid-color: #10b981;
  --bs-form-valid-border-color: #10b981;
  --bs-form-invalid-color: #ef4444;
  --bs-form-invalid-border-color: #ef4444;
}

/* line 16, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_color-mode.scss */
[data-bs-theme="dark"] {
  color-scheme: dark;
  --bs-body-color: #dee2e6;
  --bs-body-color-rgb: 222, 226, 230;
  --bs-body-bg: #212529;
  --bs-body-bg-rgb: 33, 37, 41;
  --bs-emphasis-color: #FFFFFF;
  --bs-emphasis-color-rgb: 255, 255, 255;
  --bs-secondary-color: rgba(222, 226, 230, 0.75);
  --bs-secondary-color-rgb: 222, 226, 230;
  --bs-secondary-bg: #343a40;
  --bs-secondary-bg-rgb: 52, 58, 64;
  --bs-tertiary-color: rgba(222, 226, 230, 0.5);
  --bs-tertiary-color-rgb: 222, 226, 230;
  --bs-tertiary-bg: #2b3035;
  --bs-tertiary-bg-rgb: 43, 48, 53;
  --bs-primary-text-emphasis: #6ea8fe;
  --bs-secondary-text-emphasis: #a7acb1;
  --bs-success-text-emphasis: #70d5b3;
  --bs-info-text-emphasis: #89b4fa;
  --bs-warning-text-emphasis: #f9c56d;
  --bs-danger-text-emphasis: #f58f8f;
  --bs-light-text-emphasis: #f8f9fa;
  --bs-dark-text-emphasis: #dee2e6;
  --bs-primary-bg-subtle: #031633;
  --bs-secondary-bg-subtle: #161719;
  --bs-success-bg-subtle: #03251a;
  --bs-info-bg-subtle: #0c1a31;
  --bs-warning-bg-subtle: #312002;
  --bs-danger-bg-subtle: #300e0e;
  --bs-light-bg-subtle: #343a40;
  --bs-dark-bg-subtle: #1a1d20;
  --bs-primary-border-subtle: #084298;
  --bs-secondary-border-subtle: #41464b;
  --bs-success-border-subtle: #0a6f4d;
  --bs-info-border-subtle: #234e94;
  --bs-warning-border-subtle: #935f07;
  --bs-danger-border-subtle: #8f2929;
  --bs-light-border-subtle: #495057;
  --bs-dark-border-subtle: #343a40;
  --bs-heading-color: inherit;
  --bs-link-color: #6ea8fe;
  --bs-link-hover-color: #8bb9fe;
  --bs-link-color-rgb: 110, 168, 254;
  --bs-link-hover-color-rgb: 139, 185, 254;
  --bs-code-color: #e685b5;
  --bs-highlight-color: #dee2e6;
  --bs-highlight-bg: #664d03;
  --bs-border-color: #495057;
  --bs-border-color-translucent: rgba(255, 255, 255, 0.15);
  --bs-form-valid-color: #75b798;
  --bs-form-valid-border-color: #75b798;
  --bs-form-invalid-color: #ea868f;
  --bs-form-invalid-border-color: #ea868f;
}

/* line 16, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  /* line 28, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
  :root {
    scroll-behavior: smooth;
  }
}

/* line 49, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* line 68, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: var(--bs-border-width) solid;
  opacity: 0.25;
}

/* line 83, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--bs-heading-color);
}

/* line 93, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
h1, .h1 {
  font-size: calc(1.375rem + 1.5vw);
}

@media (min-width: 1200px) {
  /* line 93, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
  h1, .h1 {
    font-size: 2.5rem;
  }
}

/* line 98, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
h2, .h2 {
  font-size: calc(1.325rem + 0.9vw);
}

@media (min-width: 1200px) {
  /* line 98, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
  h2, .h2 {
    font-size: 2rem;
  }
}

/* line 103, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
h3, .h3 {
  font-size: calc(1.3rem + 0.6vw);
}

@media (min-width: 1200px) {
  /* line 103, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
  h3, .h3 {
    font-size: 1.75rem;
  }
}

/* line 108, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
h4, .h4 {
  font-size: calc(1.275rem + 0.3vw);
}

@media (min-width: 1200px) {
  /* line 108, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
  h4, .h4 {
    font-size: 1.5rem;
  }
}

/* line 113, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
h5, .h5 {
  font-size: 1.25rem;
}

/* line 118, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
h6, .h6 {
  font-size: 1rem;
}

/* line 129, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
p {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* line 141, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
abbr[title] {
  text-decoration: underline dotted;
  cursor: help;
  text-decoration-skip-ink: none;
}

/* line 150, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

/* line 159, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
ol,
ul {
  padding-left: 2rem;
}

/* line 164, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* line 171, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

/* line 178, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
dt {
  font-weight: 700;
}

/* line 184, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

/* line 192, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
blockquote {
  margin: 0 0 1rem;
}

/* line 201, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
b,
strong {
  font-weight: bolder;
}

/* line 211, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
small, .small {
  font-size: 0.875em;
}

/* line 218, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
mark, .mark {
  padding: 0.1875em;
  color: var(--bs-highlight-color);
  background-color: var(--bs-highlight-bg);
}

/* line 230, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

/* line 238, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
sub {
  bottom: -.25em;
}

/* line 239, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
sup {
  top: -.5em;
}

/* line 244, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
a {
  color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  text-decoration: underline;
}

/* line 248, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
a:hover {
  --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
}

/* line 260, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

/* line 270, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
}

/* line 282, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}

/* line 291, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

/* line 298, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
code {
  font-size: 0.875em;
  color: var(--bs-code-color);
  word-wrap: break-word;
}

/* line 304, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
a > code {
  color: inherit;
}

/* line 309, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.875em;
  color: var(--bs-body-bg);
  background-color: var(--bs-body-color);
  border-radius: 0.25rem;
}

/* line 316, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
kbd kbd {
  padding: 0;
  font-size: 1em;
}

/* line 328, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
figure {
  margin: 0 0 1rem;
}

/* line 335, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
img,
svg {
  vertical-align: middle;
}

/* line 345, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
table {
  caption-side: bottom;
  border-collapse: collapse;
}

/* line 350, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--bs-secondary-color);
  text-align: left;
}

/* line 361, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

/* line 367, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

/* line 383, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
label {
  display: inline-block;
}

/* line 390, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
button {
  border-radius: 0;
}

/* line 400, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
button:focus:not(:focus-visible) {
  outline: 0;
}

/* line 406, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* line 418, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
button,
select {
  text-transform: none;
}

/* line 425, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
[role="button"] {
  cursor: pointer;
}

/* line 429, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
select {
  word-wrap: normal;
}

/* line 435, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
select:disabled {
  opacity: 1;
}

/* line 443, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
[list]:not([type="date"]):not([type="datetime-local"]):not([type="month"]):not([type="week"]):not([type="time"])::-webkit-calendar-picker-indicator {
  display: none !important;
}

/* line 452, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/* line 459, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}

/* line 467, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

/* line 474, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
textarea {
  resize: vertical;
}

/* line 485, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

/* line 497, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  line-height: inherit;
  font-size: calc(1.275rem + 0.3vw);
}

@media (min-width: 1200px) {
  /* line 497, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
  legend {
    font-size: 1.5rem;
  }
}

/* line 506, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
legend + * {
  clear: left;
}

/* line 514, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

/* line 524, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
::-webkit-inner-spin-button {
  height: auto;
}

/* line 534, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
/* line 555, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* line 561, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
::-webkit-color-swatch-wrapper {
  padding: 0;
}

/* line 569, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}

/* line 576, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
output {
  display: inline-block;
}

/* line 582, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
iframe {
  border: 0;
}

/* line 590, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
summary {
  display: list-item;
  cursor: pointer;
}

/* line 600, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
progress {
  vertical-align: baseline;
}

/* line 609, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_reboot.scss */
[hidden] {
  display: none !important;
}

/* line 29, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_type.scss */
.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

/* line 36, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_type.scss */
.display-1 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.625rem + 4.5vw);
}

@media (min-width: 1200px) {
  /* line 36, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_type.scss */
  .display-1 {
    font-size: 5rem;
  }
}

/* line 36, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_type.scss */
.display-2 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.575rem + 3.9vw);
}

@media (min-width: 1200px) {
  /* line 36, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_type.scss */
  .display-2 {
    font-size: 4.5rem;
  }
}

/* line 36, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_type.scss */
.display-3 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.525rem + 3.3vw);
}

@media (min-width: 1200px) {
  /* line 36, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_type.scss */
  .display-3 {
    font-size: 4rem;
  }
}

/* line 36, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_type.scss */
.display-4 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.475rem + 2.7vw);
}

@media (min-width: 1200px) {
  /* line 36, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_type.scss */
  .display-4 {
    font-size: 3.5rem;
  }
}

/* line 36, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_type.scss */
.display-5 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.425rem + 2.1vw);
}

@media (min-width: 1200px) {
  /* line 36, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_type.scss */
  .display-5 {
    font-size: 3rem;
  }
}

/* line 36, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_type.scss */
.display-6 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.375rem + 1.5vw);
}

@media (min-width: 1200px) {
  /* line 36, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_type.scss */
  .display-6 {
    font-size: 2.5rem;
  }
}

/* line 60, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_type.scss */
.list-unstyled {
  padding-left: 0;
  list-style: none;
}

/* line 65, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_type.scss */
.list-inline {
  padding-left: 0;
  list-style: none;
}

/* line 68, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_type.scss */
.list-inline-item {
  display: inline-block;
}

/* line 71, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_type.scss */
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

/* line 82, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_type.scss */
.initialism {
  font-size: 0.875em;
  text-transform: uppercase;
}

/* line 88, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_type.scss */
.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

/* line 92, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_type.scss */
.blockquote > :last-child {
  margin-bottom: 0;
}

/* line 97, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_type.scss */
.blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 0.875em;
  color: #6c757d;
}

/* line 103, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_type.scss */
.blockquote-footer::before {
  content: "\2014\00A0";
}

/* line 8, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_images.scss */
.img-fluid {
  max-width: 100%;
  height: auto;
}

/* line 14, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_images.scss */
.img-thumbnail {
  padding: 0.25rem;
  background-color: var(--bs-body-bg);
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  max-width: 100%;
  height: auto;
}

/* line 29, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_images.scss */
.figure {
  display: inline-block;
}

/* line 34, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_images.scss */
.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

/* line 39, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_images.scss */
.figure-caption {
  font-size: 0.875em;
  color: var(--bs-secondary-color);
}

/* line 7, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_containers.scss */
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  /* line 20, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_containers.scss */
  .container-sm, .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  /* line 20, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_containers.scss */
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  /* line 20, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_containers.scss */
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  /* line 20, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_containers.scss */
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  /* line 20, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_containers.scss */
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}

/* line 5, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_grid.scss */
:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1400px;
}

/* line 12, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_grid.scss */
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-.5 * var(--bs-gutter-x));
  margin-left: calc(-.5 * var(--bs-gutter-x));
}

/* line 15, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_grid.scss */
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}

/* line 74, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
.col {
  flex: 1 0 0;
}

/* line 78, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

/* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

/* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

/* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.33333333%;
}

/* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

/* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

/* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.66666667%;
}

/* line 90, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
.col-auto {
  flex: 0 0 auto;
  width: auto;
}

/* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

/* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

/* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

/* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

/* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

/* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

/* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

/* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

/* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

/* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

/* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

/* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

/* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
.offset-1 {
  margin-left: 8.33333333%;
}

/* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
.offset-2 {
  margin-left: 16.66666667%;
}

/* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
.offset-3 {
  margin-left: 25%;
}

/* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
.offset-4 {
  margin-left: 33.33333333%;
}

/* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
.offset-5 {
  margin-left: 41.66666667%;
}

/* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
.offset-6 {
  margin-left: 50%;
}

/* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
.offset-7 {
  margin-left: 58.33333333%;
}

/* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
.offset-8 {
  margin-left: 66.66666667%;
}

/* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
.offset-9 {
  margin-left: 75%;
}

/* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
.offset-10 {
  margin-left: 83.33333333%;
}

/* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
.offset-11 {
  margin-left: 91.66666667%;
}

/* line 115, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

/* line 119, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

/* line 115, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

/* line 119, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

/* line 115, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

/* line 119, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

/* line 115, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

/* line 119, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

/* line 115, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

/* line 119, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

/* line 115, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

/* line 119, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  /* line 74, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-sm {
    flex: 1 0 0;
  }
  /* line 78, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  /* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  /* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  /* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  /* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  /* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  /* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  /* line 90, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-sm-0 {
    margin-left: 0;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-sm-3 {
    margin-left: 25%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-sm-6 {
    margin-left: 50%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-sm-9 {
    margin-left: 75%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  /* line 115, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-sm-0,
.gx-sm-0 {
    --bs-gutter-x: 0;
  }
  /* line 119, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-sm-0,
.gy-sm-0 {
    --bs-gutter-y: 0;
  }
  /* line 115, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-sm-1,
.gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  /* line 119, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-sm-1,
.gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  /* line 115, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-sm-2,
.gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  /* line 119, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-sm-2,
.gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  /* line 115, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-sm-3,
.gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  /* line 119, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-sm-3,
.gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  /* line 115, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-sm-4,
.gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  /* line 119, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-sm-4,
.gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  /* line 115, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-sm-5,
.gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  /* line 119, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-sm-5,
.gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 768px) {
  /* line 74, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-md {
    flex: 1 0 0;
  }
  /* line 78, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  /* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  /* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  /* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  /* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  /* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  /* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  /* line 90, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-md-0 {
    margin-left: 0;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-md-3 {
    margin-left: 25%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-md-6 {
    margin-left: 50%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-md-9 {
    margin-left: 75%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  /* line 115, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-md-0,
.gx-md-0 {
    --bs-gutter-x: 0;
  }
  /* line 119, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-md-0,
.gy-md-0 {
    --bs-gutter-y: 0;
  }
  /* line 115, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-md-1,
.gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  /* line 119, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-md-1,
.gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  /* line 115, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-md-2,
.gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  /* line 119, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-md-2,
.gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  /* line 115, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-md-3,
.gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  /* line 119, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-md-3,
.gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  /* line 115, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-md-4,
.gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  /* line 119, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-md-4,
.gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  /* line 115, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-md-5,
.gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  /* line 119, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-md-5,
.gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 992px) {
  /* line 74, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-lg {
    flex: 1 0 0;
  }
  /* line 78, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  /* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  /* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  /* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  /* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  /* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  /* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  /* line 90, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-lg-0 {
    margin-left: 0;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-lg-3 {
    margin-left: 25%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-lg-6 {
    margin-left: 50%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-lg-9 {
    margin-left: 75%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  /* line 115, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-lg-0,
.gx-lg-0 {
    --bs-gutter-x: 0;
  }
  /* line 119, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-lg-0,
.gy-lg-0 {
    --bs-gutter-y: 0;
  }
  /* line 115, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-lg-1,
.gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  /* line 119, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-lg-1,
.gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  /* line 115, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-lg-2,
.gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  /* line 119, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-lg-2,
.gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  /* line 115, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-lg-3,
.gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  /* line 119, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-lg-3,
.gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  /* line 115, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-lg-4,
.gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  /* line 119, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-lg-4,
.gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  /* line 115, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-lg-5,
.gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  /* line 119, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-lg-5,
.gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 1200px) {
  /* line 74, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xl {
    flex: 1 0 0;
  }
  /* line 78, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  /* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  /* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  /* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  /* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  /* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  /* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  /* line 90, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xl-0 {
    margin-left: 0;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xl-3 {
    margin-left: 25%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xl-6 {
    margin-left: 50%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xl-9 {
    margin-left: 75%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  /* line 115, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xl-0,
.gx-xl-0 {
    --bs-gutter-x: 0;
  }
  /* line 119, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xl-0,
.gy-xl-0 {
    --bs-gutter-y: 0;
  }
  /* line 115, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xl-1,
.gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  /* line 119, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xl-1,
.gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  /* line 115, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xl-2,
.gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  /* line 119, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xl-2,
.gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  /* line 115, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xl-3,
.gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  /* line 119, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xl-3,
.gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  /* line 115, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xl-4,
.gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  /* line 119, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xl-4,
.gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  /* line 115, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xl-5,
.gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  /* line 119, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xl-5,
.gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 1400px) {
  /* line 74, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xxl {
    flex: 1 0 0;
  }
  /* line 78, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  /* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  /* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  /* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  /* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  /* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  /* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  /* line 90, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  /* line 96, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xxl-0 {
    margin-left: 0;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xxl-3 {
    margin-left: 25%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xxl-6 {
    margin-left: 50%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xxl-9 {
    margin-left: 75%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  /* line 115, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xxl-0,
.gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  /* line 119, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xxl-0,
.gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  /* line 115, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xxl-1,
.gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  /* line 119, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xxl-1,
.gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  /* line 115, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xxl-2,
.gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  /* line 119, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xxl-2,
.gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  /* line 115, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xxl-3,
.gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  /* line 119, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xxl-3,
.gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  /* line 115, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xxl-4,
.gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  /* line 119, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xxl-4,
.gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  /* line 115, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xxl-5,
.gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  /* line 119, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xxl-5,
.gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}

/* line 5, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_tables.scss */
.table {
  --bs-table-color-type: initial;
  --bs-table-bg-type: initial;
  --bs-table-color-state: initial;
  --bs-table-bg-state: initial;
  --bs-table-color: var(--bs-emphasis-color);
  --bs-table-bg: var(--bs-body-bg);
  --bs-table-border-color: var(--bs-border-color);
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: var(--bs-emphasis-color);
  --bs-table-striped-bg: rgba(var(--bs-emphasis-color-rgb), 0.05);
  --bs-table-active-color: var(--bs-emphasis-color);
  --bs-table-active-bg: rgba(var(--bs-emphasis-color-rgb), 0.1);
  --bs-table-hover-color: var(--bs-emphasis-color);
  --bs-table-hover-bg: rgba(var(--bs-emphasis-color-rgb), 0.075);
  width: 100%;
  margin-bottom: 1rem;
  vertical-align: top;
  border-color: var(--bs-table-border-color);
}

/* line 33, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_tables.scss */
.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  color: var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));
  background-color: var(--bs-table-bg);
  border-bottom-width: var(--bs-border-width);
  box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)));
}

/* line 42, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_tables.scss */
.table > tbody {
  vertical-align: inherit;
}

/* line 46, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_tables.scss */
.table > thead {
  vertical-align: bottom;
}

/* line 51, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_tables.scss */
.table-group-divider {
  border-top: calc(var(--bs-border-width) * 2) solid currentcolor;
}

/* line 59, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_tables.scss */
.caption-top {
  caption-side: top;
}

/* line 70, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_tables.scss */
.table-sm > :not(caption) > * > * {
  padding: 0.25rem 0.25rem;
}

/* line 86, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_tables.scss */
.table-bordered > :not(caption) > * {
  border-width: var(--bs-border-width) 0;
}

/* line 90, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_tables.scss */
.table-bordered > :not(caption) > * > * {
  border-width: 0 var(--bs-border-width);
}

/* line 98, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_tables.scss */
.table-borderless > :not(caption) > * > * {
  border-bottom-width: 0;
}

/* line 102, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_tables.scss */
.table-borderless > :not(:first-child) {
  border-top-width: 0;
}

/* line 113, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_tables.scss */
.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: var(--bs-table-striped-bg);
}

/* line 121, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_tables.scss */
.table-striped-columns > :not(caption) > tr > :nth-child(even) {
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: var(--bs-table-striped-bg);
}

/* line 131, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_tables.scss */
.table-active {
  --bs-table-color-state: var(--bs-table-active-color);
  --bs-table-bg-state: var(--bs-table-active-bg);
}

/* line 141, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_tables.scss */
.table-hover > tbody > tr:hover > * {
  --bs-table-color-state: var(--bs-table-hover-color);
  --bs-table-bg-state: var(--bs-table-hover-bg);
}

/* line 3, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_table-variants.scss */
.table-primary {
  --bs-table-color: #000000;
  --bs-table-bg: #cfe2ff;
  --bs-table-border-color: #a6b5cc;
  --bs-table-striped-bg: #c5d7f2;
  --bs-table-striped-color: #000000;
  --bs-table-active-bg: #bacbe6;
  --bs-table-active-color: #000000;
  --bs-table-hover-bg: #bfd1ec;
  --bs-table-hover-color: #000000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

/* line 3, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_table-variants.scss */
.table-secondary {
  --bs-table-color: #000000;
  --bs-table-bg: #e2e3e5;
  --bs-table-border-color: #b5b6b7;
  --bs-table-striped-bg: #d7d8da;
  --bs-table-striped-color: #000000;
  --bs-table-active-bg: #cbccce;
  --bs-table-active-color: #000000;
  --bs-table-hover-bg: #d1d2d4;
  --bs-table-hover-color: #000000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

/* line 3, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_table-variants.scss */
.table-success {
  --bs-table-color: #000000;
  --bs-table-bg: #cff1e6;
  --bs-table-border-color: #a6c1b8;
  --bs-table-striped-bg: #c5e5db;
  --bs-table-striped-color: #000000;
  --bs-table-active-bg: #bad9cf;
  --bs-table-active-color: #000000;
  --bs-table-hover-bg: #bfdfd5;
  --bs-table-hover-color: #000000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

/* line 3, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_table-variants.scss */
.table-info {
  --bs-table-color: #000000;
  --bs-table-bg: #d8e6fd;
  --bs-table-border-color: #adb8ca;
  --bs-table-striped-bg: #cddbf0;
  --bs-table-striped-color: #000000;
  --bs-table-active-bg: #c2cfe4;
  --bs-table-active-color: #000000;
  --bs-table-hover-bg: #c8d5ea;
  --bs-table-hover-color: #000000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

/* line 3, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_table-variants.scss */
.table-warning {
  --bs-table-color: #000000;
  --bs-table-bg: #fdecce;
  --bs-table-border-color: #cabda5;
  --bs-table-striped-bg: #f0e0c4;
  --bs-table-striped-color: #000000;
  --bs-table-active-bg: #e4d4b9;
  --bs-table-active-color: #000000;
  --bs-table-hover-bg: #eadabf;
  --bs-table-hover-color: #000000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

/* line 3, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_table-variants.scss */
.table-danger {
  --bs-table-color: #000000;
  --bs-table-bg: #fcdada;
  --bs-table-border-color: #caaeae;
  --bs-table-striped-bg: #efcfcf;
  --bs-table-striped-color: #000000;
  --bs-table-active-bg: #e3c4c4;
  --bs-table-active-color: #000000;
  --bs-table-hover-bg: #e9caca;
  --bs-table-hover-color: #000000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

/* line 3, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_table-variants.scss */
.table-light {
  --bs-table-color: #000000;
  --bs-table-bg: #f8f9fa;
  --bs-table-border-color: #c6c7c8;
  --bs-table-striped-bg: #ecedee;
  --bs-table-striped-color: #000000;
  --bs-table-active-bg: #dfe0e1;
  --bs-table-active-color: #000000;
  --bs-table-hover-bg: #e5e6e7;
  --bs-table-hover-color: #000000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

/* line 3, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_table-variants.scss */
.table-dark {
  --bs-table-color: #FFFFFF;
  --bs-table-bg: #212529;
  --bs-table-border-color: #4d5154;
  --bs-table-striped-bg: #2c3034;
  --bs-table-striped-color: #FFFFFF;
  --bs-table-active-bg: #373b3e;
  --bs-table-active-color: #FFFFFF;
  --bs-table-hover-bg: #323539;
  --bs-table-hover-color: #FFFFFF;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

/* line 166, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_tables.scss */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 575.98px) {
  /* line 166, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 767.98px) {
  /* line 166, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 991.98px) {
  /* line 166, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 1199.98px) {
  /* line 166, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 1399.98px) {
  /* line 166, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* line 5, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_labels.scss */
.form-label {
  margin-bottom: 0.5rem;
}

/* line 15, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_labels.scss */
.col-form-label {
  padding-top: calc(0.375rem + var(--bs-border-width));
  padding-bottom: calc(0.375rem + var(--bs-border-width));
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

/* line 26, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_labels.scss */
.col-form-label-lg {
  padding-top: calc(0.5rem + var(--bs-border-width));
  padding-bottom: calc(0.5rem + var(--bs-border-width));
  font-size: 1.25rem;
}

/* line 32, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_labels.scss */
.col-form-label-sm {
  padding-top: calc(0.25rem + var(--bs-border-width));
  padding-bottom: calc(0.25rem + var(--bs-border-width));
  font-size: 0.875rem;
}

/* line 5, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-text.scss */
.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--bs-secondary-color);
}

/* line 5, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  appearance: none;
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  /* line 5, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-control.scss */
  .form-control {
    transition: none;
  }
}

/* line 25, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control[type="file"] {
  overflow: hidden;
}

/* line 28, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control[type="file"]:not(:disabled):not([readonly]) {
  cursor: pointer;
}

/* line 34, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* line 47, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control::-webkit-date-and-time-value {
  min-width: 85px;
  height: 1.5em;
  margin: 0;
}

/* line 69, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control::-webkit-datetime-edit {
  display: block;
  padding: 0;
}

/* line 75, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control::placeholder {
  color: var(--bs-secondary-color);
  opacity: 1;
}

/* line 86, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control:disabled {
  background-color: var(--bs-secondary-bg);
  opacity: 1;
}

/* line 95, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control::file-selector-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  margin-inline-end: 0.75rem;
  color: var(--bs-body-color);
  background-color: var(--bs-tertiary-bg);
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: var(--bs-border-width);
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  /* line 95, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-control.scss */
  .form-control::file-selector-button {
    transition: none;
  }
}

/* line 110, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: var(--bs-secondary-bg);
}

/* line 120, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: var(--bs-body-color);
  background-color: transparent;
  border: solid transparent;
  border-width: var(--bs-border-width) 0;
}

/* line 131, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control-plaintext:focus {
  outline: 0;
}

/* line 135, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

/* line 149, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control-sm {
  min-height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: var(--bs-border-radius-sm);
}

/* line 155, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  margin-inline-end: 0.5rem;
}

/* line 162, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control-lg {
  min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: var(--bs-border-radius-lg);
}

/* line 168, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  margin-inline-end: 1rem;
}

/* line 179, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-control.scss */
textarea.form-control {
  min-height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2));
}

/* line 183, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-control.scss */
textarea.form-control-sm {
  min-height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
}

/* line 187, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-control.scss */
textarea.form-control-lg {
  min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
}

/* line 193, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control-color {
  width: 3rem;
  height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2));
  padding: 0.375rem;
}

/* line 198, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}

/* line 202, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control-color::-moz-color-swatch {
  border: 0 !important;
  border-radius: var(--bs-border-radius);
}

/* line 207, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control-color::-webkit-color-swatch {
  border: 0 !important;
  border-radius: var(--bs-border-radius);
}

/* line 212, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control-color.form-control-sm {
  height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
}

/* line 213, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control-color.form-control-lg {
  height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
}

/* line 6, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-select.scss */
.form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  appearance: none;
  background-color: var(--bs-body-bg);
  background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  /* line 6, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-select.scss */
  .form-select {
    transition: none;
  }
}

/* line 28, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-select.scss */
.form-select:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* line 39, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-select.scss */
.form-select[multiple], .form-select[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}

/* line 45, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-select.scss */
.form-select:disabled {
  background-color: var(--bs-secondary-bg);
}

/* line 52, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-select.scss */
.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 var(--bs-body-color);
}

/* line 58, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-select.scss */
.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
  border-radius: var(--bs-border-radius-sm);
}

/* line 66, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-select.scss */
.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
  border-radius: var(--bs-border-radius-lg);
}

/* line 76, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-select.scss */
[data-bs-theme="dark"] .form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23dee2e6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

/* line 5, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-check.scss */
.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}

/* line 11, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-check.scss */
.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

/* line 17, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-check.scss */
.form-check-reverse {
  padding-right: 1.5em;
  padding-left: 0;
  text-align: right;
}

/* line 22, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-check.scss */
.form-check-reverse .form-check-input {
  float: right;
  margin-right: -1.5em;
  margin-left: 0;
}

/* line 29, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-check.scss */
.form-check-input {
  --bs-form-check-bg: var(--bs-body-bg);
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  appearance: none;
  background-color: var(--bs-form-check-bg);
  background-image: var(--bs-form-check-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: var(--bs-border-width) solid var(--bs-border-color);
  print-color-adjust: exact;
}

/* line 47, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-check.scss */
.form-check-input[type="checkbox"] {
  border-radius: 0.25em;
}

/* line 51, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-check.scss */
.form-check-input[type="radio"] {
  border-radius: 50%;
}

/* line 56, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-check.scss */
.form-check-input:active {
  filter: brightness(90%);
}

/* line 60, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-check.scss */
.form-check-input:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* line 66, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-check.scss */
.form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

/* line 70, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-check.scss */
.form-check-input[type="checkbox"]:checked {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

/* line 78, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-check.scss */
.form-check-input[type="radio"]:checked {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23FFFFFF'/%3e%3c/svg%3e");
}

/* line 87, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-check.scss */
.form-check-input[type="checkbox"]:indeterminate {
  background-color: #0d6efd;
  border-color: #0d6efd;
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}

/* line 98, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-check.scss */
.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}

/* line 108, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-check.scss */
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  cursor: default;
  opacity: 0.5;
}

/* line 124, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-check.scss */
.form-switch {
  padding-left: 2.5em;
}

/* line 127, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-check.scss */
.form-switch .form-check-input {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  width: 2em;
  margin-left: -2.5em;
  background-image: var(--bs-form-switch-bg);
  background-position: left center;
  border-radius: 2em;
  transition: background-position 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  /* line 127, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-check.scss */
  .form-switch .form-check-input {
    transition: none;
  }
}

/* line 137, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-check.scss */
.form-switch .form-check-input:focus {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e");
}

/* line 141, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-check.scss */
.form-switch .form-check-input:checked {
  background-position: right center;
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23FFFFFF'/%3e%3c/svg%3e");
}

/* line 152, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-check.scss */
.form-switch.form-check-reverse {
  padding-right: 2.5em;
  padding-left: 0;
}

/* line 156, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-check.scss */
.form-switch.form-check-reverse .form-check-input {
  margin-right: -2.5em;
  margin-left: 0;
}

/* line 163, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-check.scss */
.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}

/* line 168, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-check.scss */
.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

/* line 175, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-check.scss */
.btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  pointer-events: none;
  filter: none;
  opacity: 0.65;
}

/* line 185, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-check.scss */
[data-bs-theme="dark"] .form-switch .form-check-input:not(:checked):not(:focus) {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e");
}

/* line 7, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-range.scss */
.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  appearance: none;
  background-color: transparent;
}

/* line 14, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-range.scss */
.form-range:focus {
  outline: 0;
}

/* line 19, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-range.scss */
.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #FFFFFF, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* line 20, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-range.scss */
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #FFFFFF, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* line 23, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-range.scss */
.form-range::-moz-focus-outer {
  border: 0;
}

/* line 27, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-range.scss */
.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  appearance: none;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  /* line 27, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-range.scss */
  .form-range::-webkit-slider-thumb {
    transition: none;
  }
}

/* line 38, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-range.scss */
.form-range::-webkit-slider-thumb:active {
  background-color: #b6d4fe;
}

/* line 43, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-range.scss */
.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: var(--bs-secondary-bg);
  border-color: transparent;
  border-radius: 1rem;
}

/* line 54, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-range.scss */
.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  appearance: none;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  /* line 54, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-range.scss */
  .form-range::-moz-range-thumb {
    transition: none;
  }
}

/* line 64, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-range.scss */
.form-range::-moz-range-thumb:active {
  background-color: #b6d4fe;
}

/* line 69, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-range.scss */
.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: var(--bs-secondary-bg);
  border-color: transparent;
  border-radius: 1rem;
}

/* line 80, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-range.scss */
.form-range:disabled {
  pointer-events: none;
}

/* line 83, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-range.scss */
.form-range:disabled::-webkit-slider-thumb {
  background-color: var(--bs-secondary-color);
}

/* line 87, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_form-range.scss */
.form-range:disabled::-moz-range-thumb {
  background-color: var(--bs-secondary-color);
}

/* line 1, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_floating-labels.scss */
.form-floating {
  position: relative;
}

/* line 4, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_floating-labels.scss */
.form-floating > .form-control,
.form-floating > .form-control-plaintext,
.form-floating > .form-select {
  height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  min-height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  line-height: 1.25;
}

/* line 12, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_floating-labels.scss */
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  max-width: 100%;
  height: 100%;
  padding: 1rem 0.75rem;
  overflow: hidden;
  color: rgba(var(--bs-body-color-rgb), 0.65);
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
  border: var(--bs-border-width) solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  /* line 12, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_floating-labels.scss */
  .form-floating > label {
    transition: none;
  }
}

/* line 31, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_floating-labels.scss */
.form-floating > .form-control,
.form-floating > .form-control-plaintext {
  padding: 1rem 0.75rem;
}

/* line 35, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_floating-labels.scss */
.form-floating > .form-control::placeholder,
.form-floating > .form-control-plaintext::placeholder {
  color: transparent;
}

/* line 39, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_floating-labels.scss */
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown),
.form-floating > .form-control-plaintext:focus,
.form-floating > .form-control-plaintext:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

/* line 45, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_floating-labels.scss */
.form-floating > .form-control:-webkit-autofill,
.form-floating > .form-control-plaintext:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

/* line 51, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_floating-labels.scss */
.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
  padding-left: 0.75rem;
}

/* line 61, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_floating-labels.scss */
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-control-plaintext ~ label,
.form-floating > .form-select ~ label {
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_floating-labels.scss */
.form-floating > .form-control:-webkit-autofill ~ label {
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

/* line 73, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_floating-labels.scss */
.form-floating > textarea:focus ~ label::after,
.form-floating > textarea:not(:placeholder-shown) ~ label::after {
  position: absolute;
  inset: 1rem 0.375rem;
  z-index: -1;
  height: 1.5em;
  content: "";
  background-color: var(--bs-body-bg);
  border-radius: var(--bs-border-radius);
}

/* line 83, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_floating-labels.scss */
.form-floating > textarea:disabled ~ label::after {
  background-color: var(--bs-secondary-bg);
}

/* line 88, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_floating-labels.scss */
.form-floating > .form-control-plaintext ~ label {
  border-width: var(--bs-border-width) 0;
}

/* line 93, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_floating-labels.scss */
.form-floating > :disabled ~ label,
.form-floating > .form-control:disabled ~ label {
  color: #6c757d;
}

/* line 5, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_input-group.scss */
.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

/* line 12, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_input-group.scss */
.input-group > .form-control,
.input-group > .form-select,
.input-group > .form-floating {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}

/* line 22, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_input-group.scss */
.input-group > .form-control:focus,
.input-group > .form-select:focus,
.input-group > .form-floating:focus-within {
  z-index: 5;
}

/* line 31, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_input-group.scss */
.input-group .btn {
  position: relative;
  z-index: 2;
}

/* line 35, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_input-group.scss */
.input-group .btn:focus {
  z-index: 5;
}

/* line 47, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_input-group.scss */
.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  text-align: center;
  white-space: nowrap;
  background-color: var(--bs-tertiary-bg);
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
}

/* line 68, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_input-group.scss */
.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: var(--bs-border-radius-lg);
}

/* line 77, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_input-group.scss */
.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: var(--bs-border-radius-sm);
}

/* line 86, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_input-group.scss */
.input-group-lg > .form-select,
.input-group-sm > .form-select {
  padding-right: 3rem;
}

/* line 101, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_input-group.scss */
.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3),
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control,
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 110, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_input-group.scss */
.input-group.has-validation > :nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n + 4),
.input-group.has-validation > .form-floating:nth-last-child(n + 3) > .form-control,
.input-group.has-validation > .form-floating:nth-last-child(n + 3) > .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 123, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_input-group.scss */
.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: calc(-1 * var(--bs-border-width));
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 128, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/forms/_input-group.scss */
.input-group > .form-floating:not(:first-child) > .form-control,
.input-group > .form-floating:not(:first-child) > .form-select {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 26, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_forms.scss */
.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--bs-form-valid-color);
}

/* line 35, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_forms.scss */
.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: var(--bs-success);
  border-radius: var(--bs-border-radius);
}

/* line 51, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

/* line 7, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-control:valid, .form-control.is-valid {
  border-color: var(--bs-form-valid-border-color);
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2310b981' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

/* line 68, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: var(--bs-form-valid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
}

/* line 7, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

/* line 7, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-select:valid, .form-select.is-valid {
  border-color: var(--bs-form-valid-border-color);
}

/* line 95, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select[size="1"]:valid:not([multiple]), .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid[size="1"]:not([multiple]) {
  --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2310b981' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1'/%3e%3c/svg%3e");
  padding-right: 4.125rem;
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

/* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  border-color: var(--bs-form-valid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
}

/* line 7, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-control-color:valid, .form-control-color.is-valid {
  width: calc(3rem + calc(1.5em + 0.75rem));
}

/* line 7, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: var(--bs-form-valid-border-color);
}

/* line 128, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: var(--bs-form-valid-color);
}

/* line 132, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
}

/* line 136, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: var(--bs-form-valid-color);
}

/* line 142, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_forms.scss */
.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: .5em;
}

/* line 7, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .input-group > .form-control:not(:focus):valid, .input-group > .form-control.is-valid:not(:focus), .was-validated .input-group > .form-select:not(:focus):valid,
.input-group > .form-select.is-valid:not(:focus), .was-validated .input-group > .form-floating:not(:focus-within):valid,
.input-group > .form-floating.is-valid:not(:focus-within) {
  z-index: 3;
}

/* line 26, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_forms.scss */
.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--bs-form-invalid-color);
}

/* line 35, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_forms.scss */
.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: var(--bs-danger);
  border-radius: var(--bs-border-radius);
}

/* line 51, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

/* line 7, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: var(--bs-form-invalid-border-color);
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ef4444'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ef4444' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

/* line 68, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: var(--bs-form-invalid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}

/* line 7, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

/* line 7, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: var(--bs-form-invalid-border-color);
}

/* line 95, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select[size="1"]:invalid:not([multiple]), .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid[size="1"]:not([multiple]) {
  --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ef4444'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ef4444' stroke='none'/%3e%3c/svg%3e");
  padding-right: 4.125rem;
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

/* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  border-color: var(--bs-form-invalid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}

/* line 7, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-control-color:invalid, .form-control-color.is-invalid {
  width: calc(3rem + calc(1.5em + 0.75rem));
}

/* line 7, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: var(--bs-form-invalid-border-color);
}

/* line 128, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: var(--bs-form-invalid-color);
}

/* line 132, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}

/* line 136, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: var(--bs-form-invalid-color);
}

/* line 142, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_forms.scss */
.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: .5em;
}

/* line 7, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .input-group > .form-control:not(:focus):invalid, .input-group > .form-control.is-invalid:not(:focus), .was-validated .input-group > .form-select:not(:focus):invalid,
.input-group > .form-select.is-invalid:not(:focus), .was-validated .input-group > .form-floating:not(:focus-within):invalid,
.input-group > .form-floating.is-invalid:not(:focus-within) {
  z-index: 4;
}

/* line 5, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_buttons.scss */
.btn {
  --bs-btn-padding-x: 0.75rem;
  --bs-btn-padding-y: 0.375rem;
  --bs-btn-font-family: ;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 400;
  --bs-btn-line-height: 1.5;
  --bs-btn-color: var(--bs-body-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-width: var(--bs-border-width);
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: var(--bs-border-radius);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  --bs-btn-disabled-opacity: 0.65;
  --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
  display: inline-block;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  background-color: var(--bs-btn-bg);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  /* line 5, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_buttons.scss */
  .btn {
    transition: none;
  }
}

/* line 43, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_buttons.scss */
.btn:hover {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}

/* line 50, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_buttons.scss */
.btn-check + .btn:hover {
  color: var(--bs-btn-color);
  background-color: var(--bs-btn-bg);
  border-color: var(--bs-btn-border-color);
}

/* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_buttons.scss */
.btn:focus-visible {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}

/* line 70, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_buttons.scss */
.btn-check:focus-visible + .btn {
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}

/* line 81, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_buttons.scss */
.btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
  color: var(--bs-btn-active-color);
  background-color: var(--bs-btn-active-bg);
  border-color: var(--bs-btn-active-border-color);
}

/* line 93, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_buttons.scss */
.btn-check:checked + .btn:focus-visible, :not(.btn-check) + .btn:active:focus-visible, .btn:first-child:active:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible {
  box-shadow: var(--bs-btn-focus-box-shadow);
}

/* line 103, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_buttons.scss */
.btn-check:checked:focus-visible + .btn {
  box-shadow: var(--bs-btn-focus-box-shadow);
}

/* line 112, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_buttons.scss */
.btn:disabled, .btn.disabled, fieldset:disabled .btn {
  color: var(--bs-btn-disabled-color);
  pointer-events: none;
  background-color: var(--bs-btn-disabled-bg);
  border-color: var(--bs-btn-disabled-border-color);
  opacity: var(--bs-btn-disabled-opacity);
}

/* line 132, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_buttons.scss */
.btn-primary, .crm-action-button.crm-action-button-primary {
  --bs-btn-color: #FFFFFF;
  --bs-btn-bg: #0d6efd;
  --bs-btn-border-color: #0d6efd;
  --bs-btn-hover-color: #FFFFFF;
  --bs-btn-hover-bg: #0b5ed7;
  --bs-btn-hover-border-color: #0a58ca;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #FFFFFF;
  --bs-btn-active-bg: #0a58ca;
  --bs-btn-active-border-color: #0a53be;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #FFFFFF;
  --bs-btn-disabled-bg: #0d6efd;
  --bs-btn-disabled-border-color: #0d6efd;
}

/* line 132, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_buttons.scss */
.btn-secondary, .crm-action-button.crm-action-button-secondary {
  --bs-btn-color: #FFFFFF;
  --bs-btn-bg: #6c757d;
  --bs-btn-border-color: #6c757d;
  --bs-btn-hover-color: #FFFFFF;
  --bs-btn-hover-bg: #5c636a;
  --bs-btn-hover-border-color: #565e64;
  --bs-btn-focus-shadow-rgb: 130, 138, 145;
  --bs-btn-active-color: #FFFFFF;
  --bs-btn-active-bg: #565e64;
  --bs-btn-active-border-color: #51585e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #FFFFFF;
  --bs-btn-disabled-bg: #6c757d;
  --bs-btn-disabled-border-color: #6c757d;
}

/* line 132, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_buttons.scss */
.btn-success {
  --bs-btn-color: #000000;
  --bs-btn-bg: #10b981;
  --bs-btn-border-color: #10b981;
  --bs-btn-hover-color: #000000;
  --bs-btn-hover-bg: #34c494;
  --bs-btn-hover-border-color: #28c08e;
  --bs-btn-focus-shadow-rgb: 14, 157, 110;
  --bs-btn-active-color: #000000;
  --bs-btn-active-bg: #40c79a;
  --bs-btn-active-border-color: #28c08e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000000;
  --bs-btn-disabled-bg: #10b981;
  --bs-btn-disabled-border-color: #10b981;
}

/* line 132, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_buttons.scss */
.btn-info {
  --bs-btn-color: #000000;
  --bs-btn-bg: #3b82f6;
  --bs-btn-border-color: #3b82f6;
  --bs-btn-hover-color: #000000;
  --bs-btn-hover-bg: #5895f7;
  --bs-btn-hover-border-color: #4f8ff7;
  --bs-btn-focus-shadow-rgb: 50, 111, 209;
  --bs-btn-active-color: #000000;
  --bs-btn-active-bg: #629bf8;
  --bs-btn-active-border-color: #4f8ff7;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000000;
  --bs-btn-disabled-bg: #3b82f6;
  --bs-btn-disabled-border-color: #3b82f6;
}

/* line 132, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_buttons.scss */
.btn-warning {
  --bs-btn-color: #000000;
  --bs-btn-bg: #f59e0b;
  --bs-btn-border-color: #f59e0b;
  --bs-btn-hover-color: #000000;
  --bs-btn-hover-bg: #f7ad30;
  --bs-btn-hover-border-color: #f6a823;
  --bs-btn-focus-shadow-rgb: 208, 134, 9;
  --bs-btn-active-color: #000000;
  --bs-btn-active-bg: #f7b13c;
  --bs-btn-active-border-color: #f6a823;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000000;
  --bs-btn-disabled-bg: #f59e0b;
  --bs-btn-disabled-border-color: #f59e0b;
}

/* line 132, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_buttons.scss */
.btn-danger {
  --bs-btn-color: #000000;
  --bs-btn-bg: #ef4444;
  --bs-btn-border-color: #ef4444;
  --bs-btn-hover-color: #000000;
  --bs-btn-hover-bg: #f16060;
  --bs-btn-hover-border-color: #f15757;
  --bs-btn-focus-shadow-rgb: 203, 58, 58;
  --bs-btn-active-color: #000000;
  --bs-btn-active-bg: #f26969;
  --bs-btn-active-border-color: #f15757;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000000;
  --bs-btn-disabled-bg: #ef4444;
  --bs-btn-disabled-border-color: #ef4444;
}

/* line 132, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_buttons.scss */
.btn-light {
  --bs-btn-color: #000000;
  --bs-btn-bg: #f8f9fa;
  --bs-btn-border-color: #f8f9fa;
  --bs-btn-hover-color: #000000;
  --bs-btn-hover-bg: #d3d4d5;
  --bs-btn-hover-border-color: #c6c7c8;
  --bs-btn-focus-shadow-rgb: 211, 212, 213;
  --bs-btn-active-color: #000000;
  --bs-btn-active-bg: #c6c7c8;
  --bs-btn-active-border-color: #babbbc;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000000;
  --bs-btn-disabled-bg: #f8f9fa;
  --bs-btn-disabled-border-color: #f8f9fa;
}

/* line 132, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_buttons.scss */
.btn-dark {
  --bs-btn-color: #FFFFFF;
  --bs-btn-bg: #212529;
  --bs-btn-border-color: #212529;
  --bs-btn-hover-color: #FFFFFF;
  --bs-btn-hover-bg: #424649;
  --bs-btn-hover-border-color: #373b3e;
  --bs-btn-focus-shadow-rgb: 66, 70, 73;
  --bs-btn-active-color: #FFFFFF;
  --bs-btn-active-bg: #4d5154;
  --bs-btn-active-border-color: #373b3e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #FFFFFF;
  --bs-btn-disabled-bg: #212529;
  --bs-btn-disabled-border-color: #212529;
}

/* line 158, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_buttons.scss */
.btn-outline-primary {
  --bs-btn-color: #0d6efd;
  --bs-btn-border-color: #0d6efd;
  --bs-btn-hover-color: #FFFFFF;
  --bs-btn-hover-bg: #0d6efd;
  --bs-btn-hover-border-color: #0d6efd;
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #FFFFFF;
  --bs-btn-active-bg: #0d6efd;
  --bs-btn-active-border-color: #0d6efd;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #0d6efd;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #0d6efd;
  --bs-gradient: none;
}

/* line 158, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_buttons.scss */
.btn-outline-secondary {
  --bs-btn-color: #6c757d;
  --bs-btn-border-color: #6c757d;
  --bs-btn-hover-color: #FFFFFF;
  --bs-btn-hover-bg: #6c757d;
  --bs-btn-hover-border-color: #6c757d;
  --bs-btn-focus-shadow-rgb: 108, 117, 125;
  --bs-btn-active-color: #FFFFFF;
  --bs-btn-active-bg: #6c757d;
  --bs-btn-active-border-color: #6c757d;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #6c757d;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #6c757d;
  --bs-gradient: none;
}

/* line 158, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_buttons.scss */
.btn-outline-success {
  --bs-btn-color: #10b981;
  --bs-btn-border-color: #10b981;
  --bs-btn-hover-color: #000000;
  --bs-btn-hover-bg: #10b981;
  --bs-btn-hover-border-color: #10b981;
  --bs-btn-focus-shadow-rgb: 16, 185, 129;
  --bs-btn-active-color: #000000;
  --bs-btn-active-bg: #10b981;
  --bs-btn-active-border-color: #10b981;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #10b981;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #10b981;
  --bs-gradient: none;
}

/* line 158, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_buttons.scss */
.btn-outline-info {
  --bs-btn-color: #3b82f6;
  --bs-btn-border-color: #3b82f6;
  --bs-btn-hover-color: #000000;
  --bs-btn-hover-bg: #3b82f6;
  --bs-btn-hover-border-color: #3b82f6;
  --bs-btn-focus-shadow-rgb: 59, 130, 246;
  --bs-btn-active-color: #000000;
  --bs-btn-active-bg: #3b82f6;
  --bs-btn-active-border-color: #3b82f6;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #3b82f6;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #3b82f6;
  --bs-gradient: none;
}

/* line 158, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_buttons.scss */
.btn-outline-warning {
  --bs-btn-color: #f59e0b;
  --bs-btn-border-color: #f59e0b;
  --bs-btn-hover-color: #000000;
  --bs-btn-hover-bg: #f59e0b;
  --bs-btn-hover-border-color: #f59e0b;
  --bs-btn-focus-shadow-rgb: 245, 158, 11;
  --bs-btn-active-color: #000000;
  --bs-btn-active-bg: #f59e0b;
  --bs-btn-active-border-color: #f59e0b;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #f59e0b;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #f59e0b;
  --bs-gradient: none;
}

/* line 158, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_buttons.scss */
.btn-outline-danger {
  --bs-btn-color: #ef4444;
  --bs-btn-border-color: #ef4444;
  --bs-btn-hover-color: #000000;
  --bs-btn-hover-bg: #ef4444;
  --bs-btn-hover-border-color: #ef4444;
  --bs-btn-focus-shadow-rgb: 239, 68, 68;
  --bs-btn-active-color: #000000;
  --bs-btn-active-bg: #ef4444;
  --bs-btn-active-border-color: #ef4444;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #ef4444;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #ef4444;
  --bs-gradient: none;
}

/* line 158, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_buttons.scss */
.btn-outline-light {
  --bs-btn-color: #f8f9fa;
  --bs-btn-border-color: #f8f9fa;
  --bs-btn-hover-color: #000000;
  --bs-btn-hover-bg: #f8f9fa;
  --bs-btn-hover-border-color: #f8f9fa;
  --bs-btn-focus-shadow-rgb: 248, 249, 250;
  --bs-btn-active-color: #000000;
  --bs-btn-active-bg: #f8f9fa;
  --bs-btn-active-border-color: #f8f9fa;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #f8f9fa;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #f8f9fa;
  --bs-gradient: none;
}

/* line 158, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_buttons.scss */
.btn-outline-dark {
  --bs-btn-color: #212529;
  --bs-btn-border-color: #212529;
  --bs-btn-hover-color: #FFFFFF;
  --bs-btn-hover-bg: #212529;
  --bs-btn-hover-border-color: #212529;
  --bs-btn-focus-shadow-rgb: 33, 37, 41;
  --bs-btn-active-color: #FFFFFF;
  --bs-btn-active-bg: #212529;
  --bs-btn-active-border-color: #212529;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #212529;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #212529;
  --bs-gradient: none;
}

/* line 170, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link {
  --bs-btn-font-weight: 400;
  --bs-btn-color: var(--bs-link-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: var(--bs-link-hover-color);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-color: var(--bs-link-hover-color);
  --bs-btn-active-border-color: transparent;
  --bs-btn-disabled-color: #6c757d;
  --bs-btn-disabled-border-color: transparent;
  --bs-btn-box-shadow: 0 0 0 #000;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  text-decoration: underline;
}

/* line 194, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link:focus-visible {
  color: var(--bs-btn-color);
}

/* line 198, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link:hover {
  color: var(--bs-btn-hover-color);
}

/* line 210, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_buttons.scss */
.btn-lg, .btn-group-lg > .btn {
  --bs-btn-padding-y: 0.5rem;
  --bs-btn-padding-x: 1rem;
  --bs-btn-font-size: 1.25rem;
  --bs-btn-border-radius: var(--bs-border-radius-lg);
}

/* line 214, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_buttons.scss */
.btn-sm, .btn-group-sm > .btn {
  --bs-btn-padding-y: 0.25rem;
  --bs-btn-padding-x: 0.5rem;
  --bs-btn-font-size: 0.875rem;
  --bs-btn-border-radius: var(--bs-border-radius-sm);
}

/* line 1, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_transitions.scss */
.fade {
  transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
  /* line 1, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_transitions.scss */
  .fade {
    transition: none;
  }
}

/* line 4, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_transitions.scss */
.fade:not(.show) {
  opacity: 0;
}

/* line 11, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_transitions.scss */
.collapse:not(.show) {
  display: none;
}

/* line 16, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_transitions.scss */
.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  /* line 16, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_transitions.scss */
  .collapsing {
    transition: none;
  }
}

/* line 21, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_transitions.scss */
.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  /* line 21, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_transitions.scss */
  .collapsing.collapse-horizontal {
    transition: none;
  }
}

/* line 2, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_dropdown.scss */
.dropup,
.dropend,
.dropdown,
.dropstart,
.dropup-center,
.dropdown-center {
  position: relative;
}

/* line 11, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-toggle {
  white-space: nowrap;
}

/* line 36, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_caret.scss */
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

/* line 64, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_caret.scss */
.dropdown-toggle:empty::after {
  margin-left: 0;
}

/* line 19, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-menu {
  --bs-dropdown-zindex: 1000;
  --bs-dropdown-min-width: 10rem;
  --bs-dropdown-padding-x: 0;
  --bs-dropdown-padding-y: 0.5rem;
  --bs-dropdown-spacer: 0.125rem;
  --bs-dropdown-font-size: 1rem;
  --bs-dropdown-color: var(--bs-body-color);
  --bs-dropdown-bg: var(--bs-body-bg);
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-border-radius: var(--bs-border-radius);
  --bs-dropdown-border-width: var(--bs-border-width);
  --bs-dropdown-inner-border-radius: calc(var(--bs-border-radius) - var(--bs-border-width));
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-divider-margin-y: 0.5rem;
  --bs-dropdown-box-shadow: var(--bs-box-shadow);
  --bs-dropdown-link-color: var(--bs-body-color);
  --bs-dropdown-link-hover-color: var(--bs-body-color);
  --bs-dropdown-link-hover-bg: var(--bs-tertiary-bg);
  --bs-dropdown-link-active-color: #FFFFFF;
  --bs-dropdown-link-active-bg: #0d6efd;
  --bs-dropdown-link-disabled-color: var(--bs-tertiary-color);
  --bs-dropdown-item-padding-x: 1rem;
  --bs-dropdown-item-padding-y: 0.25rem;
  --bs-dropdown-header-color: #6c757d;
  --bs-dropdown-header-padding-x: 1rem;
  --bs-dropdown-header-padding-y: 0.5rem;
  position: absolute;
  z-index: var(--bs-dropdown-zindex);
  display: none;
  min-width: var(--bs-dropdown-min-width);
  padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  margin: 0;
  font-size: var(--bs-dropdown-font-size);
  color: var(--bs-dropdown-color);
  text-align: left;
  list-style: none;
  background-color: var(--bs-dropdown-bg);
  background-clip: padding-box;
  border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
  border-radius: var(--bs-dropdown-border-radius);
}

/* line 65, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: var(--bs-dropdown-spacer);
}

/* line 92, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-menu-start {
  --bs-position: start;
}

/* line 95, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}

/* line 101, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-menu-end {
  --bs-position: end;
}

/* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  /* line 92, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-sm-start {
    --bs-position: start;
  }
  /* line 95, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  /* line 101, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-sm-end {
    --bs-position: end;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}

@media (min-width: 768px) {
  /* line 92, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-md-start {
    --bs-position: start;
  }
  /* line 95, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  /* line 101, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-md-end {
    --bs-position: end;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}

@media (min-width: 992px) {
  /* line 92, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-lg-start {
    --bs-position: start;
  }
  /* line 95, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  /* line 101, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-lg-end {
    --bs-position: end;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}

@media (min-width: 1200px) {
  /* line 92, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-xl-start {
    --bs-position: start;
  }
  /* line 95, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  /* line 101, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-xl-end {
    --bs-position: end;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}

@media (min-width: 1400px) {
  /* line 92, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }
  /* line 95, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  /* line 101, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  /* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}

/* line 116, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_dropdown.scss */
.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: var(--bs-dropdown-spacer);
}

/* line 36, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_caret.scss */
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}

/* line 64, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_caret.scss */
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

/* line 129, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_dropdown.scss */
.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: var(--bs-dropdown-spacer);
}

/* line 36, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_caret.scss */
.dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}

/* line 64, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_caret.scss */
.dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}

/* line 139, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_dropdown.scss */
.dropend .dropdown-toggle::after {
  vertical-align: 0;
}

/* line 146, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_dropdown.scss */
.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: var(--bs-dropdown-spacer);
}

/* line 36, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_caret.scss */
.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}

/* line 51, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_caret.scss */
.dropstart .dropdown-toggle::after {
  display: none;
}

/* line 55, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_caret.scss */
.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}

/* line 64, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_caret.scss */
.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}

/* line 156, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_dropdown.scss */
.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}

/* line 164, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-divider {
  height: 0;
  margin: var(--bs-dropdown-divider-margin-y) 0;
  overflow: hidden;
  border-top: 1px solid var(--bs-dropdown-divider-bg);
  opacity: 1;
}

/* line 175, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-item {
  display: block;
  width: 100%;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  clear: both;
  font-weight: 400;
  color: var(--bs-dropdown-link-color);
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  border-radius: var(--bs-dropdown-item-border-radius, 0);
}

/* line 189, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-item:hover, .dropdown-item:focus {
  color: var(--bs-dropdown-link-hover-color);
  background-color: var(--bs-dropdown-link-hover-bg);
}

/* line 196, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-item.active, .dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: var(--bs-dropdown-link-active-bg);
}

/* line 203, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-item.disabled, .dropdown-item:disabled {
  color: var(--bs-dropdown-link-disabled-color);
  pointer-events: none;
  background-color: transparent;
}

/* line 213, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-menu.show {
  display: block;
}

/* line 218, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-header {
  display: block;
  padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
  margin-bottom: 0;
  font-size: 0.875rem;
  color: var(--bs-dropdown-header-color);
  white-space: nowrap;
}

/* line 228, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-item-text {
  display: block;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  color: var(--bs-dropdown-link-color);
}

/* line 235, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-menu-dark {
  --bs-dropdown-color: #dee2e6;
  --bs-dropdown-bg: #343a40;
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-box-shadow: ;
  --bs-dropdown-link-color: #dee2e6;
  --bs-dropdown-link-hover-color: #FFFFFF;
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
  --bs-dropdown-link-active-color: #FFFFFF;
  --bs-dropdown-link-active-bg: #0d6efd;
  --bs-dropdown-link-disabled-color: #adb5bd;
  --bs-dropdown-header-color: #adb5bd;
}

/* line 2, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}

/* line 8, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}

/* line 15, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group > .btn-check:checked + .btn,
.btn-group > .btn-check:focus + .btn,
.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn-check:checked + .btn,
.btn-group-vertical > .btn-check:focus + .btn,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

/* line 26, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_button-group.scss */
.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* line 31, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_button-group.scss */
.btn-toolbar .input-group {
  width: auto;
}

/* line 36, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group {
  border-radius: var(--bs-border-radius);
}

/* line 40, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group > :not(.btn-check:first-child) + .btn,
.btn-group > .btn-group:not(:first-child) {
  margin-left: calc(-1 * var(--bs-border-width));
}

/* line 46, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn.dropdown-toggle-split:first-child,
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 56, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group > .btn:nth-child(n + 3),
.btn-group > :not(.btn-check) + .btn,
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 75, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_button-group.scss */
.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}

/* line 79, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_button-group.scss */
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after {
  margin-left: 0;
}

/* line 85, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_button-group.scss */
.dropstart .dropdown-toggle-split::before {
  margin-right: 0;
}

/* line 90, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_button-group.scss */
.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

/* line 95, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_button-group.scss */
.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

/* line 117, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

/* line 122, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}

/* line 127, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: calc(-1 * var(--bs-border-width));
}

/* line 133, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 142, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group-vertical > .btn:nth-child(n + 3),
.btn-group-vertical > :not(.btn-check) + .btn,
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 6, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_nav.scss */
.nav {
  --bs-nav-link-padding-x: 1rem;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-link-color);
  --bs-nav-link-hover-color: var(--bs-link-hover-color);
  --bs-nav-link-disabled-color: var(--bs-secondary-color);
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

/* line 24, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_nav.scss */
.nav-link {
  display: block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: var(--bs-nav-link-color);
  text-decoration: none;
  background: none;
  border: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  /* line 24, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_nav.scss */
  .nav-link {
    transition: none;
  }
}

/* line 35, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_nav.scss */
.nav-link:hover, .nav-link:focus {
  color: var(--bs-nav-link-hover-color);
}

/* line 41, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_nav.scss */
.nav-link:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* line 47, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_nav.scss */
.nav-link.disabled, .nav-link:disabled {
  color: var(--bs-nav-link-disabled-color);
  pointer-events: none;
  cursor: default;
}

/* line 59, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_nav.scss */
.nav-tabs {
  --bs-nav-tabs-border-width: var(--bs-border-width);
  --bs-nav-tabs-border-color: var(--bs-border-color);
  --bs-nav-tabs-border-radius: var(--bs-border-radius);
  --bs-nav-tabs-link-hover-border-color: var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color);
  --bs-nav-tabs-link-active-color: var(--bs-emphasis-color);
  --bs-nav-tabs-link-active-bg: var(--bs-body-bg);
  --bs-nav-tabs-link-active-border-color: var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);
  border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
}

/* line 72, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_nav.scss */
.nav-tabs .nav-link {
  margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
  border: var(--bs-nav-tabs-border-width) solid transparent;
  border-top-left-radius: var(--bs-nav-tabs-border-radius);
  border-top-right-radius: var(--bs-nav-tabs-border-radius);
}

/* line 77, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_nav.scss */
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  isolation: isolate;
  border-color: var(--bs-nav-tabs-link-hover-border-color);
}

/* line 85, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_nav.scss */
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: var(--bs-nav-tabs-link-active-color);
  background-color: var(--bs-nav-tabs-link-active-bg);
  border-color: var(--bs-nav-tabs-link-active-border-color);
}

/* line 92, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_nav.scss */
.nav-tabs .dropdown-menu {
  margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 105, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_nav.scss */
.nav-pills {
  --bs-nav-pills-border-radius: var(--bs-border-radius);
  --bs-nav-pills-link-active-color: #FFFFFF;
  --bs-nav-pills-link-active-bg: #0d6efd;
}

/* line 112, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_nav.scss */
.nav-pills .nav-link {
  border-radius: var(--bs-nav-pills-border-radius);
}

/* line 116, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_nav.scss */
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: var(--bs-nav-pills-link-active-color);
  background-color: var(--bs-nav-pills-link-active-bg);
}

/* line 128, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_nav.scss */
.nav-underline {
  --bs-nav-underline-gap: 1rem;
  --bs-nav-underline-border-width: 0.125rem;
  --bs-nav-underline-link-active-color: var(--bs-emphasis-color);
  gap: var(--bs-nav-underline-gap);
}

/* line 137, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_nav.scss */
.nav-underline .nav-link {
  padding-right: 0;
  padding-left: 0;
  border-bottom: var(--bs-nav-underline-border-width) solid transparent;
}

/* line 142, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_nav.scss */
.nav-underline .nav-link:hover, .nav-underline .nav-link:focus {
  border-bottom-color: currentcolor;
}

/* line 148, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_nav.scss */
.nav-underline .nav-link.active,
.nav-underline .show > .nav-link {
  font-weight: 700;
  color: var(--bs-nav-underline-link-active-color);
  border-bottom-color: currentcolor;
}

/* line 162, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_nav.scss */
.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

/* line 170, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_nav.scss */
.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-grow: 1;
  flex-basis: 0;
  text-align: center;
}

/* line 180, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_nav.scss */
.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

/* line 191, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_nav.scss */
.tab-content > .tab-pane {
  display: none;
}

/* line 194, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_nav.scss */
.tab-content > .active {
  display: block;
}

/* line 6, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
.navbar {
  --bs-navbar-padding-x: 0;
  --bs-navbar-padding-y: 0.5rem;
  --bs-navbar-color: rgba(var(--bs-emphasis-color-rgb), 0.65);
  --bs-navbar-hover-color: rgba(var(--bs-emphasis-color-rgb), 0.8);
  --bs-navbar-disabled-color: rgba(var(--bs-emphasis-color-rgb), 0.3);
  --bs-navbar-active-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-brand-padding-y: 0.3125rem;
  --bs-navbar-brand-margin-end: 1rem;
  --bs-navbar-brand-font-size: 1.25rem;
  --bs-navbar-brand-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-brand-hover-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-nav-link-padding-x: 0.5rem;
  --bs-navbar-toggler-padding-y: 0.25rem;
  --bs-navbar-toggler-padding-x: 0.75rem;
  --bs-navbar-toggler-font-size: 1.25rem;
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  --bs-navbar-toggler-border-color: rgba(var(--bs-emphasis-color-rgb), 0.15);
  --bs-navbar-toggler-border-radius: var(--bs-border-radius);
  --bs-navbar-toggler-focus-width: 0.25rem;
  --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
}

/* line 41, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-sm,
.navbar > .container-md,
.navbar > .container-lg,
.navbar > .container-xl,
.navbar > .container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}

/* line 65, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-brand {
  padding-top: var(--bs-navbar-brand-padding-y);
  padding-bottom: var(--bs-navbar-brand-padding-y);
  margin-right: var(--bs-navbar-brand-margin-end);
  font-size: var(--bs-navbar-brand-font-size);
  color: var(--bs-navbar-brand-color);
  text-decoration: none;
  white-space: nowrap;
}

/* line 74, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-brand:hover, .navbar-brand:focus {
  color: var(--bs-navbar-brand-hover-color);
}

/* line 86, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-nav {
  --bs-nav-link-padding-x: 0;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-navbar-color);
  --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
  --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

/* line 104, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
  color: var(--bs-navbar-active-color);
}

/* line 110, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-nav .dropdown-menu {
  position: static;
}

/* line 120, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--bs-navbar-color);
}

/* line 125, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-text a,
.navbar-text a:hover,
.navbar-text a:focus {
  color: var(--bs-navbar-active-color);
}

/* line 141, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-collapse {
  flex-grow: 1;
  flex-basis: 100%;
  align-items: center;
}

/* line 150, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-toggler {
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  font-size: var(--bs-navbar-toggler-font-size);
  line-height: 1;
  color: var(--bs-navbar-color);
  background-color: transparent;
  border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  border-radius: var(--bs-navbar-toggler-border-radius);
  transition: var(--bs-navbar-toggler-transition);
}

@media (prefers-reduced-motion: reduce) {
  /* line 150, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-toggler {
    transition: none;
  }
}

/* line 160, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-toggler:hover {
  text-decoration: none;
}

/* line 164, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
}

/* line 173, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: var(--bs-navbar-toggler-icon-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

/* line 184, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}

@media (min-width: 576px) {
  /* line 198, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  /* line 203, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  /* line 206, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  /* line 210, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  /* line 216, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  /* line 220, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  /* line 225, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
  /* line 229, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-sm .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  /* line 244, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-sm .offcanvas .offcanvas-header {
    display: none;
  }
  /* line 248, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-sm .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}

@media (min-width: 768px) {
  /* line 198, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  /* line 203, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  /* line 206, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  /* line 210, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  /* line 216, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  /* line 220, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  /* line 225, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
  /* line 229, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-md .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  /* line 244, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-md .offcanvas .offcanvas-header {
    display: none;
  }
  /* line 248, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-md .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}

@media (min-width: 992px) {
  /* line 198, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  /* line 203, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  /* line 206, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  /* line 210, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  /* line 216, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  /* line 220, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  /* line 225, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
  /* line 229, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-lg .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  /* line 244, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-lg .offcanvas .offcanvas-header {
    display: none;
  }
  /* line 248, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-lg .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}

@media (min-width: 1200px) {
  /* line 198, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  /* line 203, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  /* line 206, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  /* line 210, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  /* line 216, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  /* line 220, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  /* line 225, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
  /* line 229, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xl .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  /* line 244, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xl .offcanvas .offcanvas-header {
    display: none;
  }
  /* line 248, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xl .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}

@media (min-width: 1400px) {
  /* line 198, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  /* line 203, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }
  /* line 206, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  /* line 210, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  /* line 216, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  /* line 220, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  /* line 225, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
  /* line 229, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xxl .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  /* line 244, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xxl .offcanvas .offcanvas-header {
    display: none;
  }
  /* line 248, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xxl .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}

/* line 198, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start;
}

/* line 203, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-expand .navbar-nav {
  flex-direction: row;
}

/* line 206, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

/* line 210, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-expand .navbar-nav .nav-link {
  padding-right: var(--bs-navbar-nav-link-padding-x);
  padding-left: var(--bs-navbar-nav-link-padding-x);
}

/* line 216, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}

/* line 220, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}

/* line 225, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-expand .navbar-toggler {
  display: none;
}

/* line 229, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-expand .offcanvas {
  position: static;
  z-index: auto;
  flex-grow: 1;
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
  background-color: transparent !important;
  border: 0 !important;
  transform: none !important;
  transition: none;
}

/* line 244, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-expand .offcanvas .offcanvas-header {
  display: none;
}

/* line 248, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-expand .offcanvas .offcanvas-body {
  display: flex;
  flex-grow: 0;
  padding: 0;
  overflow-y: visible;
}

/* line 269, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-dark,
.navbar[data-bs-theme="dark"] {
  --bs-navbar-color: rgba(255, 255, 255, 0.55);
  --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
  --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
  --bs-navbar-active-color: #FFFFFF;
  --bs-navbar-brand-color: #FFFFFF;
  --bs-navbar-brand-hover-color: #FFFFFF;
  --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* line 285, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_navbar.scss */
[data-bs-theme="dark"] .navbar-toggler-icon {
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* line 5, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_card.scss */
.card {
  --bs-card-spacer-y: 1rem;
  --bs-card-spacer-x: 1rem;
  --bs-card-title-spacer-y: 0.5rem;
  --bs-card-title-color: ;
  --bs-card-subtitle-color: ;
  --bs-card-border-width: var(--bs-border-width);
  --bs-card-border-color: var(--bs-border-color-translucent);
  --bs-card-border-radius: var(--bs-border-radius);
  --bs-card-box-shadow: ;
  --bs-card-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
  --bs-card-cap-padding-y: 0.5rem;
  --bs-card-cap-padding-x: 1rem;
  --bs-card-cap-bg: rgba(var(--bs-body-color-rgb), 0.03);
  --bs-card-cap-color: ;
  --bs-card-height: ;
  --bs-card-color: ;
  --bs-card-bg: var(--bs-body-bg);
  --bs-card-img-overlay-padding: 1rem;
  --bs-card-group-margin: 0.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--bs-card-height);
  color: var(--bs-body-color);
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  background-clip: border-box;
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  border-radius: var(--bs-card-border-radius);
}

/* line 41, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_card.scss */
.card > hr {
  margin-right: 0;
  margin-left: 0;
}

/* line 46, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_card.scss */
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}

/* line 50, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_card.scss */
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
}

/* line 55, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_card.scss */
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
}

/* line 63, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_card.scss */
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

/* line 69, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_card.scss */
.card-body {
  flex: 1 1 auto;
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  color: var(--bs-card-color);
}

/* line 77, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_card.scss */
.card-title {
  margin-bottom: var(--bs-card-title-spacer-y);
  color: var(--bs-card-title-color);
}

/* line 82, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_card.scss */
.card-subtitle {
  margin-top: calc(-.5 * var(--bs-card-title-spacer-y));
  margin-bottom: 0;
  color: var(--bs-card-subtitle-color);
}

/* line 88, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_card.scss */
.card-text:last-child {
  margin-bottom: 0;
}

/* line 97, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_card.scss */
.card-link + .card-link {
  margin-left: var(--bs-card-spacer-x);
}

/* line 106, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_card.scss */
.card-header {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  margin-bottom: 0;
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
}

/* line 113, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_card.scss */
.card-header:first-child {
  border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
}

/* line 118, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_card.scss */
.card-footer {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
}

/* line 124, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_card.scss */
.card-footer:last-child {
  border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
}

/* line 134, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_card.scss */
.card-header-tabs {
  margin-right: calc(-.5 * var(--bs-card-cap-padding-x));
  margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
  margin-left: calc(-.5 * var(--bs-card-cap-padding-x));
  border-bottom: 0;
}

/* line 140, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_card.scss */
.card-header-tabs .nav-link.active {
  background-color: var(--bs-card-bg);
  border-bottom-color: var(--bs-card-bg);
}

/* line 146, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_card.scss */
.card-header-pills {
  margin-right: calc(-.5 * var(--bs-card-cap-padding-x));
  margin-left: calc(-.5 * var(--bs-card-cap-padding-x));
}

/* line 152, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_card.scss */
.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: var(--bs-card-img-overlay-padding);
  border-radius: var(--bs-card-inner-border-radius);
}

/* line 162, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_card.scss */
.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%;
}

/* line 168, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_card.scss */
.card-img,
.card-img-top {
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
}

/* line 173, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_card.scss */
.card-img,
.card-img-bottom {
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
}

/* line 186, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_card.scss */
.card-group > .card {
  margin-bottom: var(--bs-card-group-margin);
}

@media (min-width: 576px) {
  /* line 183, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_card.scss */
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  /* line 195, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_card.scss */
  .card-group > .card {
    flex: 1 0 0;
    margin-bottom: 0;
  }
  /* line 199, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_card.scss */
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  /* line 206, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_card.scss */
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  /* line 209, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_card.scss */
  .card-group > .card:not(:last-child) .card-img-top,
.card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  /* line 214, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_card.scss */
  .card-group > .card:not(:last-child) .card-img-bottom,
.card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  /* line 221, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_card.scss */
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  /* line 224, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_card.scss */
  .card-group > .card:not(:first-child) .card-img-top,
.card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  /* line 229, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_card.scss */
  .card-group > .card:not(:first-child) .card-img-bottom,
.card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

/* line 5, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_accordion.scss */
.accordion {
  --bs-accordion-color: var(--bs-body-color);
  --bs-accordion-bg: var(--bs-body-bg);
  --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  --bs-accordion-border-color: var(--bs-border-color);
  --bs-accordion-border-width: var(--bs-border-width);
  --bs-accordion-border-radius: var(--bs-border-radius);
  --bs-accordion-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: var(--bs-body-color);
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23212529' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  --bs-accordion-btn-icon-width: 1.25rem;
  --bs-accordion-btn-icon-transform: rotate(-180deg);
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23052c65' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: var(--bs-primary-text-emphasis);
  --bs-accordion-active-bg: var(--bs-primary-bg-subtle);
}

/* line 31, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_accordion.scss */
.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 1rem;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
}

@media (prefers-reduced-motion: reduce) {
  /* line 31, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_accordion.scss */
  .accordion-button {
    transition: none;
  }
}

/* line 46, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_accordion.scss */
.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: var(--bs-accordion-active-bg);
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

/* line 51, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_accordion.scss */
.accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-active-icon);
  transform: var(--bs-accordion-btn-icon-transform);
}

/* line 58, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_accordion.scss */
.accordion-button::after {
  flex-shrink: 0;
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  margin-left: auto;
  content: "";
  background-image: var(--bs-accordion-btn-icon);
  background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
  transition: var(--bs-accordion-btn-icon-transition);
}

@media (prefers-reduced-motion: reduce) {
  /* line 58, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_accordion.scss */
  .accordion-button::after {
    transition: none;
  }
}

/* line 70, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_accordion.scss */
.accordion-button:hover {
  z-index: 2;
}

/* line 74, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_accordion.scss */
.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
}

/* line 81, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_accordion.scss */
.accordion-header {
  margin-bottom: 0;
}

/* line 85, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_accordion.scss */
.accordion-item {
  color: var(--bs-accordion-color);
  background-color: var(--bs-accordion-bg);
  border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}

/* line 90, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_accordion.scss */
.accordion-item:first-of-type {
  border-top-left-radius: var(--bs-accordion-border-radius);
  border-top-right-radius: var(--bs-accordion-border-radius);
}

/* line 93, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_accordion.scss */
.accordion-item:first-of-type > .accordion-header .accordion-button {
  border-top-left-radius: var(--bs-accordion-inner-border-radius);
  border-top-right-radius: var(--bs-accordion-inner-border-radius);
}

/* line 98, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_accordion.scss */
.accordion-item:not(:first-of-type) {
  border-top: 0;
}

/* line 103, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_accordion.scss */
.accordion-item:last-of-type {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}

/* line 107, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_accordion.scss */
.accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
  border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
  border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
}

/* line 112, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_accordion.scss */
.accordion-item:last-of-type > .accordion-collapse {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}

/* line 118, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_accordion.scss */
.accordion-body {
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
}

/* line 128, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_accordion.scss */
.accordion-flush > .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

/* line 133, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_accordion.scss */
.accordion-flush > .accordion-item:first-child {
  border-top: 0;
}

/* line 134, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_accordion.scss */
.accordion-flush > .accordion-item:last-child {
  border-bottom: 0;
}

/* line 137, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_accordion.scss */
.accordion-flush > .accordion-item > .accordion-collapse,
.accordion-flush > .accordion-item > .accordion-header .accordion-button,
.accordion-flush > .accordion-item > .accordion-header .accordion-button.collapsed {
  border-radius: 0;
}

/* line 148, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_accordion.scss */
[data-bs-theme="dark"] .accordion-button::after {
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e");
}

/* line 1, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_breadcrumb.scss */
.breadcrumb {
  --bs-breadcrumb-padding-x: 0;
  --bs-breadcrumb-padding-y: 0;
  --bs-breadcrumb-margin-bottom: 1rem;
  --bs-breadcrumb-bg: ;
  --bs-breadcrumb-border-radius: ;
  --bs-breadcrumb-divider-color: var(--bs-secondary-color);
  --bs-breadcrumb-item-padding-x: 0.5rem;
  --bs-breadcrumb-item-active-color: var(--bs-secondary-color);
  display: flex;
  flex-wrap: wrap;
  padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
  margin-bottom: var(--bs-breadcrumb-margin-bottom);
  font-size: var(--bs-breadcrumb-font-size);
  list-style: none;
  background-color: var(--bs-breadcrumb-bg);
  border-radius: var(--bs-breadcrumb-border-radius);
}

/* line 26, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_breadcrumb.scss */
.breadcrumb-item + .breadcrumb-item {
  padding-left: var(--bs-breadcrumb-item-padding-x);
}

/* line 29, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_breadcrumb.scss */
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: var(--bs-breadcrumb-divider-color);
  content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
}

/* line 37, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_breadcrumb.scss */
.breadcrumb-item.active {
  color: var(--bs-breadcrumb-item-active-color);
}

/* line 1, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_pagination.scss */
.pagination {
  --bs-pagination-padding-x: 0.75rem;
  --bs-pagination-padding-y: 0.375rem;
  --bs-pagination-font-size: 1rem;
  --bs-pagination-color: var(--bs-link-color);
  --bs-pagination-bg: var(--bs-body-bg);
  --bs-pagination-border-width: var(--bs-border-width);
  --bs-pagination-border-color: var(--bs-border-color);
  --bs-pagination-border-radius: var(--bs-border-radius);
  --bs-pagination-hover-color: var(--bs-link-hover-color);
  --bs-pagination-hover-bg: var(--bs-tertiary-bg);
  --bs-pagination-hover-border-color: var(--bs-border-color);
  --bs-pagination-focus-color: var(--bs-link-hover-color);
  --bs-pagination-focus-bg: var(--bs-secondary-bg);
  --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-pagination-active-color: #FFFFFF;
  --bs-pagination-active-bg: #0d6efd;
  --bs-pagination-active-border-color: #0d6efd;
  --bs-pagination-disabled-color: var(--bs-secondary-color);
  --bs-pagination-disabled-bg: var(--bs-secondary-bg);
  --bs-pagination-disabled-border-color: var(--bs-border-color);
  display: flex;
  padding-left: 0;
  list-style: none;
}

/* line 29, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_pagination.scss */
.page-link {
  position: relative;
  display: block;
  padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
  font-size: var(--bs-pagination-font-size);
  color: var(--bs-pagination-color);
  text-decoration: none;
  background-color: var(--bs-pagination-bg);
  border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  /* line 29, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_pagination.scss */
  .page-link {
    transition: none;
  }
}

/* line 40, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_pagination.scss */
.page-link:hover {
  z-index: 2;
  color: var(--bs-pagination-hover-color);
  background-color: var(--bs-pagination-hover-bg);
  border-color: var(--bs-pagination-hover-border-color);
}

/* line 48, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_pagination.scss */
.page-link:focus {
  z-index: 3;
  color: var(--bs-pagination-focus-color);
  background-color: var(--bs-pagination-focus-bg);
  outline: 0;
  box-shadow: var(--bs-pagination-focus-box-shadow);
}

/* line 56, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_pagination.scss */
.page-link.active, .active > .page-link {
  z-index: 3;
  color: var(--bs-pagination-active-color);
  background-color: var(--bs-pagination-active-bg);
  border-color: var(--bs-pagination-active-border-color);
}

/* line 64, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_pagination.scss */
.page-link.disabled, .disabled > .page-link {
  color: var(--bs-pagination-disabled-color);
  pointer-events: none;
  background-color: var(--bs-pagination-disabled-bg);
  border-color: var(--bs-pagination-disabled-border-color);
}

/* line 74, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_pagination.scss */
.page-item:not(:first-child) .page-link {
  margin-left: calc(-1 * var(--bs-border-width));
}

/* line 80, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_pagination.scss */
.page-item:first-child .page-link {
  border-top-left-radius: var(--bs-pagination-border-radius);
  border-bottom-left-radius: var(--bs-pagination-border-radius);
}

/* line 86, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_pagination.scss */
.page-item:last-child .page-link {
  border-top-right-radius: var(--bs-pagination-border-radius);
  border-bottom-right-radius: var(--bs-pagination-border-radius);
}

/* line 103, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_pagination.scss */
.pagination-lg {
  --bs-pagination-padding-x: 1.5rem;
  --bs-pagination-padding-y: 0.75rem;
  --bs-pagination-font-size: 1.25rem;
  --bs-pagination-border-radius: var(--bs-border-radius-lg);
}

/* line 107, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_pagination.scss */
.pagination-sm {
  --bs-pagination-padding-x: 0.5rem;
  --bs-pagination-padding-y: 0.25rem;
  --bs-pagination-font-size: 0.875rem;
  --bs-pagination-border-radius: var(--bs-border-radius-sm);
}

/* line 6, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_badge.scss */
.badge {
  --bs-badge-padding-x: 0.65em;
  --bs-badge-padding-y: 0.35em;
  --bs-badge-font-size: 0.75em;
  --bs-badge-font-weight: 700;
  --bs-badge-color: #FFFFFF;
  --bs-badge-border-radius: var(--bs-border-radius);
  display: inline-block;
  padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
  font-size: var(--bs-badge-font-size);
  font-weight: var(--bs-badge-font-weight);
  line-height: 1;
  color: var(--bs-badge-color);
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: var(--bs-badge-border-radius);
}

/* line 29, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_badge.scss */
.badge:empty {
  display: none;
}

/* line 35, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_badge.scss */
.btn .badge {
  position: relative;
  top: -1px;
}

/* line 5, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_alert.scss */
.alert {
  --bs-alert-bg: transparent;
  --bs-alert-padding-x: 1rem;
  --bs-alert-padding-y: 1rem;
  --bs-alert-margin-bottom: 1rem;
  --bs-alert-color: inherit;
  --bs-alert-border-color: transparent;
  --bs-alert-border: var(--bs-border-width) solid var(--bs-alert-border-color);
  --bs-alert-border-radius: var(--bs-border-radius);
  --bs-alert-link-color: inherit;
  position: relative;
  padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
  margin-bottom: var(--bs-alert-margin-bottom);
  color: var(--bs-alert-color);
  background-color: var(--bs-alert-bg);
  border: var(--bs-alert-border);
  border-radius: var(--bs-alert-border-radius);
}

/* line 28, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_alert.scss */
.alert-heading {
  color: inherit;
}

/* line 34, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_alert.scss */
.alert-link {
  font-weight: 700;
  color: var(--bs-alert-link-color);
}

/* line 44, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_alert.scss */
.alert-dismissible {
  padding-right: 3rem;
}

/* line 48, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_alert.scss */
.alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1rem;
}

/* line 61, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_alert.scss */
.alert-primary {
  --bs-alert-color: var(--bs-primary-text-emphasis);
  --bs-alert-bg: var(--bs-primary-bg-subtle);
  --bs-alert-border-color: var(--bs-primary-border-subtle);
  --bs-alert-link-color: var(--bs-primary-text-emphasis);
}

/* line 61, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_alert.scss */
.alert-secondary {
  --bs-alert-color: var(--bs-secondary-text-emphasis);
  --bs-alert-bg: var(--bs-secondary-bg-subtle);
  --bs-alert-border-color: var(--bs-secondary-border-subtle);
  --bs-alert-link-color: var(--bs-secondary-text-emphasis);
}

/* line 61, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_alert.scss */
.alert-success {
  --bs-alert-color: var(--bs-success-text-emphasis);
  --bs-alert-bg: var(--bs-success-bg-subtle);
  --bs-alert-border-color: var(--bs-success-border-subtle);
  --bs-alert-link-color: var(--bs-success-text-emphasis);
}

/* line 61, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_alert.scss */
.alert-info {
  --bs-alert-color: var(--bs-info-text-emphasis);
  --bs-alert-bg: var(--bs-info-bg-subtle);
  --bs-alert-border-color: var(--bs-info-border-subtle);
  --bs-alert-link-color: var(--bs-info-text-emphasis);
}

/* line 61, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_alert.scss */
.alert-warning {
  --bs-alert-color: var(--bs-warning-text-emphasis);
  --bs-alert-bg: var(--bs-warning-bg-subtle);
  --bs-alert-border-color: var(--bs-warning-border-subtle);
  --bs-alert-link-color: var(--bs-warning-text-emphasis);
}

/* line 61, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_alert.scss */
.alert-danger {
  --bs-alert-color: var(--bs-danger-text-emphasis);
  --bs-alert-bg: var(--bs-danger-bg-subtle);
  --bs-alert-border-color: var(--bs-danger-border-subtle);
  --bs-alert-link-color: var(--bs-danger-text-emphasis);
}

/* line 61, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_alert.scss */
.alert-light {
  --bs-alert-color: var(--bs-light-text-emphasis);
  --bs-alert-bg: var(--bs-light-bg-subtle);
  --bs-alert-border-color: var(--bs-light-border-subtle);
  --bs-alert-link-color: var(--bs-light-text-emphasis);
}

/* line 61, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_alert.scss */
.alert-dark {
  --bs-alert-color: var(--bs-dark-text-emphasis);
  --bs-alert-bg: var(--bs-dark-bg-subtle);
  --bs-alert-border-color: var(--bs-dark-border-subtle);
  --bs-alert-link-color: var(--bs-dark-text-emphasis);
}

@keyframes progress-bar-stripes {
  0% {
    background-position-x: var(--bs-progress-height);
  }
}

/* line 11, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_progress.scss */
.progress,
.progress-stacked {
  --bs-progress-height: 1rem;
  --bs-progress-font-size: 0.75rem;
  --bs-progress-bg: var(--bs-secondary-bg);
  --bs-progress-border-radius: var(--bs-border-radius);
  --bs-progress-box-shadow: var(--bs-box-shadow-inset);
  --bs-progress-bar-color: #FFFFFF;
  --bs-progress-bar-bg: #0d6efd;
  --bs-progress-bar-transition: width 0.6s ease;
  display: flex;
  height: var(--bs-progress-height);
  overflow: hidden;
  font-size: var(--bs-progress-font-size);
  background-color: var(--bs-progress-bg);
  border-radius: var(--bs-progress-border-radius);
}

/* line 33, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_progress.scss */
.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: var(--bs-progress-bar-color);
  text-align: center;
  white-space: nowrap;
  background-color: var(--bs-progress-bar-bg);
  transition: var(--bs-progress-bar-transition);
}

@media (prefers-reduced-motion: reduce) {
  /* line 33, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_progress.scss */
  .progress-bar {
    transition: none;
  }
}

/* line 45, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_progress.scss */
.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: var(--bs-progress-height) var(--bs-progress-height);
}

/* line 50, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_progress.scss */
.progress-stacked > .progress {
  overflow: visible;
}

/* line 54, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_progress.scss */
.progress-stacked > .progress > .progress-bar {
  width: 100%;
}

/* line 59, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_progress.scss */
.progress-bar-animated {
  animation: 1s linear infinite progress-bar-stripes;
}

@media (prefers-reduced-motion: reduce) {
  /* line 59, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_progress.scss */
  .progress-bar-animated {
    animation: none;
  }
}

/* line 5, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
.list-group {
  --bs-list-group-color: var(--bs-body-color);
  --bs-list-group-bg: var(--bs-body-bg);
  --bs-list-group-border-color: var(--bs-border-color);
  --bs-list-group-border-width: var(--bs-border-width);
  --bs-list-group-border-radius: var(--bs-border-radius);
  --bs-list-group-item-padding-x: 1rem;
  --bs-list-group-item-padding-y: 0.5rem;
  --bs-list-group-action-color: var(--bs-secondary-color);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-tertiary-bg);
  --bs-list-group-action-active-color: var(--bs-body-color);
  --bs-list-group-action-active-bg: var(--bs-secondary-bg);
  --bs-list-group-disabled-color: var(--bs-secondary-color);
  --bs-list-group-disabled-bg: var(--bs-body-bg);
  --bs-list-group-active-color: #FFFFFF;
  --bs-list-group-active-bg: #0d6efd;
  --bs-list-group-active-border-color: #0d6efd;
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: var(--bs-list-group-border-radius);
}

/* line 35, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-numbered {
  list-style-type: none;
  counter-reset: section;
}

/* line 39, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-numbered > .list-group-item::before {
  content: counters(section, ".") ". ";
  counter-increment: section;
}

/* line 50, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item {
  position: relative;
  display: block;
  padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
  color: var(--bs-list-group-color);
  text-decoration: none;
  background-color: var(--bs-list-group-bg);
  border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
}

/* line 59, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

/* line 63, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.disabled, .list-group-item:disabled {
  color: var(--bs-list-group-disabled-color);
  pointer-events: none;
  background-color: var(--bs-list-group-disabled-bg);
}

/* line 75, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.active {
  z-index: 2;
  color: var(--bs-list-group-active-color);
  background-color: var(--bs-list-group-active-bg);
  border-color: var(--bs-list-group-active-border-color);
}

/* line 83, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item + .list-group-item {
  border-top-width: 0;
}

/* line 86, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item + .list-group-item.active {
  margin-top: calc(-1 * var(--bs-list-group-border-width));
  border-top-width: var(--bs-list-group-border-width);
}

/* line 98, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item-action {
  width: 100%;
  color: var(--bs-list-group-action-color);
  text-align: inherit;
}

/* line 105, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item-action:not(.active):hover, .list-group-item-action:not(.active):focus {
  z-index: 1;
  color: var(--bs-list-group-action-hover-color);
  text-decoration: none;
  background-color: var(--bs-list-group-action-hover-bg);
}

/* line 113, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item-action:not(.active):active {
  color: var(--bs-list-group-action-active-color);
  background-color: var(--bs-list-group-action-active-bg);
}

/* line 128, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-horizontal {
  flex-direction: row;
}

/* line 132, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-horizontal > .list-group-item:first-child:not(:last-child) {
  border-bottom-left-radius: var(--bs-list-group-border-radius);
  border-top-right-radius: 0;
}

/* line 137, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-horizontal > .list-group-item:last-child:not(:first-child) {
  border-top-right-radius: var(--bs-list-group-border-radius);
  border-bottom-left-radius: 0;
}

/* line 142, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}

/* line 146, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: var(--bs-list-group-border-width);
  border-left-width: 0;
}

/* line 150, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: calc(-1 * var(--bs-list-group-border-width));
  border-left-width: var(--bs-list-group-border-width);
}

@media (min-width: 576px) {
  /* line 128, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  /* line 132, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-sm > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  /* line 137, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-sm > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  /* line 142, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  /* line 146, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  /* line 150, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}

@media (min-width: 768px) {
  /* line 128, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-md {
    flex-direction: row;
  }
  /* line 132, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-md > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  /* line 137, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-md > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  /* line 142, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  /* line 146, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  /* line 150, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}

@media (min-width: 992px) {
  /* line 128, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  /* line 132, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-lg > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  /* line 137, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-lg > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  /* line 142, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  /* line 146, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  /* line 150, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}

@media (min-width: 1200px) {
  /* line 128, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  /* line 132, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-xl > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  /* line 137, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-xl > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  /* line 142, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  /* line 146, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  /* line 150, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}

@media (min-width: 1400px) {
  /* line 128, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-xxl {
    flex-direction: row;
  }
  /* line 132, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-xxl > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  /* line 137, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-xxl > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  /* line 142, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-xxl > .list-group-item.active {
    margin-top: 0;
  }
  /* line 146, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-xxl > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  /* line 150, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}

/* line 166, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-flush {
  border-radius: 0;
}

/* line 169, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-flush > .list-group-item {
  border-width: 0 0 var(--bs-list-group-border-width);
}

/* line 172, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

/* line 186, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item-primary {
  --bs-list-group-color: var(--bs-primary-text-emphasis);
  --bs-list-group-bg: var(--bs-primary-bg-subtle);
  --bs-list-group-border-color: var(--bs-primary-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-primary-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-primary-border-subtle);
  --bs-list-group-active-color: var(--bs-primary-bg-subtle);
  --bs-list-group-active-bg: var(--bs-primary-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-primary-text-emphasis);
}

/* line 186, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item-secondary {
  --bs-list-group-color: var(--bs-secondary-text-emphasis);
  --bs-list-group-bg: var(--bs-secondary-bg-subtle);
  --bs-list-group-border-color: var(--bs-secondary-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-secondary-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-secondary-border-subtle);
  --bs-list-group-active-color: var(--bs-secondary-bg-subtle);
  --bs-list-group-active-bg: var(--bs-secondary-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-secondary-text-emphasis);
}

/* line 186, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item-success {
  --bs-list-group-color: var(--bs-success-text-emphasis);
  --bs-list-group-bg: var(--bs-success-bg-subtle);
  --bs-list-group-border-color: var(--bs-success-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-success-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-success-border-subtle);
  --bs-list-group-active-color: var(--bs-success-bg-subtle);
  --bs-list-group-active-bg: var(--bs-success-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-success-text-emphasis);
}

/* line 186, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item-info {
  --bs-list-group-color: var(--bs-info-text-emphasis);
  --bs-list-group-bg: var(--bs-info-bg-subtle);
  --bs-list-group-border-color: var(--bs-info-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-info-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-info-border-subtle);
  --bs-list-group-active-color: var(--bs-info-bg-subtle);
  --bs-list-group-active-bg: var(--bs-info-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-info-text-emphasis);
}

/* line 186, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item-warning {
  --bs-list-group-color: var(--bs-warning-text-emphasis);
  --bs-list-group-bg: var(--bs-warning-bg-subtle);
  --bs-list-group-border-color: var(--bs-warning-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-warning-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-warning-border-subtle);
  --bs-list-group-active-color: var(--bs-warning-bg-subtle);
  --bs-list-group-active-bg: var(--bs-warning-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-warning-text-emphasis);
}

/* line 186, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item-danger {
  --bs-list-group-color: var(--bs-danger-text-emphasis);
  --bs-list-group-bg: var(--bs-danger-bg-subtle);
  --bs-list-group-border-color: var(--bs-danger-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-danger-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-danger-border-subtle);
  --bs-list-group-active-color: var(--bs-danger-bg-subtle);
  --bs-list-group-active-bg: var(--bs-danger-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-danger-text-emphasis);
}

/* line 186, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item-light {
  --bs-list-group-color: var(--bs-light-text-emphasis);
  --bs-list-group-bg: var(--bs-light-bg-subtle);
  --bs-list-group-border-color: var(--bs-light-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-light-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-light-border-subtle);
  --bs-list-group-active-color: var(--bs-light-bg-subtle);
  --bs-list-group-active-bg: var(--bs-light-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-light-text-emphasis);
}

/* line 186, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item-dark {
  --bs-list-group-color: var(--bs-dark-text-emphasis);
  --bs-list-group-bg: var(--bs-dark-bg-subtle);
  --bs-list-group-border-color: var(--bs-dark-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-dark-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-dark-border-subtle);
  --bs-list-group-active-color: var(--bs-dark-bg-subtle);
  --bs-list-group-active-bg: var(--bs-dark-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-dark-text-emphasis);
}

/* line 6, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_close.scss */
.btn-close {
  --bs-btn-close-color: #000000;
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e");
  --bs-btn-close-opacity: 0.5;
  --bs-btn-close-hover-opacity: 0.75;
  --bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-btn-close-focus-opacity: 1;
  --bs-btn-close-disabled-opacity: 0.25;
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: var(--bs-btn-close-color);
  background: transparent var(--bs-btn-close-bg) center/1em auto no-repeat;
  filter: var(--bs-btn-close-filter);
  border: 0;
  border-radius: 8px;
  opacity: var(--bs-btn-close-opacity);
}

/* line 29, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_close.scss */
.btn-close:hover {
  color: var(--bs-btn-close-color);
  text-decoration: none;
  opacity: var(--bs-btn-close-hover-opacity);
}

/* line 35, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_close.scss */
.btn-close:focus {
  outline: 0;
  box-shadow: var(--bs-btn-close-focus-shadow);
  opacity: var(--bs-btn-close-focus-opacity);
}

/* line 41, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_close.scss */
.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  user-select: none;
  opacity: var(--bs-btn-close-disabled-opacity);
}

/* line 53, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_close.scss */
.btn-close-white {
  --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
}

/* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_close.scss */
:root,
[data-bs-theme="light"] {
  --bs-btn-close-filter: ;
}

/* line 16, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_color-mode.scss */
[data-bs-theme="dark"] {
  --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
}

/* line 1, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_toasts.scss */
.toast {
  --bs-toast-zindex: 1090;
  --bs-toast-padding-x: 0.75rem;
  --bs-toast-padding-y: 0.5rem;
  --bs-toast-spacing: 1.5rem;
  --bs-toast-max-width: 350px;
  --bs-toast-font-size: 0.875rem;
  --bs-toast-color: ;
  --bs-toast-bg: rgba(var(--bs-body-bg-rgb), 0.85);
  --bs-toast-border-width: var(--bs-border-width);
  --bs-toast-border-color: var(--bs-border-color-translucent);
  --bs-toast-border-radius: var(--bs-border-radius);
  --bs-toast-box-shadow: var(--bs-box-shadow);
  --bs-toast-header-color: var(--bs-secondary-color);
  --bs-toast-header-bg: rgba(var(--bs-body-bg-rgb), 0.85);
  --bs-toast-header-border-color: var(--bs-border-color-translucent);
  width: var(--bs-toast-max-width);
  max-width: 100%;
  font-size: var(--bs-toast-font-size);
  color: var(--bs-toast-color);
  pointer-events: auto;
  background-color: var(--bs-toast-bg);
  background-clip: padding-box;
  border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
  box-shadow: var(--bs-toast-box-shadow);
  border-radius: var(--bs-toast-border-radius);
}

/* line 31, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_toasts.scss */
.toast.showing {
  opacity: 0;
}

/* line 35, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_toasts.scss */
.toast:not(.show) {
  display: none;
}

/* line 40, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_toasts.scss */
.toast-container {
  --bs-toast-zindex: 1090;
  position: absolute;
  z-index: var(--bs-toast-zindex);
  width: max-content;
  max-width: 100%;
  pointer-events: none;
}

/* line 49, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_toasts.scss */
.toast-container > :not(:last-child) {
  margin-bottom: var(--bs-toast-spacing);
}

/* line 54, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_toasts.scss */
.toast-header {
  display: flex;
  align-items: center;
  padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
  color: var(--bs-toast-header-color);
  background-color: var(--bs-toast-header-bg);
  background-clip: padding-box;
  border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
  border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
  border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
}

/* line 64, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_toasts.scss */
.toast-header .btn-close {
  margin-right: calc(-.5 * var(--bs-toast-padding-x));
  margin-left: var(--bs-toast-padding-x);
}

/* line 70, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_toasts.scss */
.toast-body {
  padding: var(--bs-toast-padding-x);
  word-wrap: break-word;
}

/* line 10, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 500px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: var(--bs-body-color);
  --bs-modal-bg: var(--bs-body-bg);
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: var(--bs-border-width);
  --bs-modal-border-radius: var(--bs-border-radius-lg);
  --bs-modal-box-shadow: var(--bs-box-shadow-sm);
  --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: var(--bs-border-width);
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: var(--bs-border-width);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

/* line 53, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
.modal-dialog {
  position: relative;
  width: auto;
  margin: var(--bs-modal-margin);
  pointer-events: none;
}

/* line 61, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
.modal.fade .modal-dialog {
  transform: translate(0, -50px);
  transition: transform 0.3s ease-out;
}

@media (prefers-reduced-motion: reduce) {
  /* line 61, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
  .modal.fade .modal-dialog {
    transition: none;
  }
}

/* line 65, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
.modal.show .modal-dialog {
  transform: none;
}

/* line 70, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

/* line 75, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
.modal-dialog-scrollable {
  height: calc(100% - var(--bs-modal-margin) * 2);
}

/* line 78, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}

/* line 83, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

/* line 88, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - var(--bs-modal-margin) * 2);
}

/* line 95, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: var(--bs-modal-bg);
  background-clip: padding-box;
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: var(--bs-modal-border-radius);
  outline: 0;
}

/* line 113, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
.modal-backdrop {
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: #000000;
  --bs-backdrop-opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-backdrop-bg);
}

/* line 12, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_backdrop.scss */
.modal-backdrop.fade {
  opacity: 0;
}

/* line 13, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_backdrop.scss */
.modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity);
}

/* line 125, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  padding: var(--bs-modal-header-padding);
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  border-top-left-radius: var(--bs-modal-inner-border-radius);
  border-top-right-radius: var(--bs-modal-inner-border-radius);
}

/* line 133, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
.modal-header .btn-close {
  padding: calc(var(--bs-modal-header-padding-y) * .5) calc(var(--bs-modal-header-padding-x) * .5);
  margin-top: calc(-.5 * var(--bs-modal-header-padding-y));
  margin-right: calc(-.5 * var(--bs-modal-header-padding-x));
  margin-bottom: calc(-.5 * var(--bs-modal-header-padding-y));
  margin-left: auto;
}

/* line 144, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
.modal-title {
  margin-bottom: 0;
  line-height: var(--bs-modal-title-line-height);
}

/* line 151, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: var(--bs-modal-padding);
}

/* line 160, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
.modal-footer {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * .5);
  background-color: var(--bs-modal-footer-bg);
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}

/* line 174, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
.modal-footer > * {
  margin: calc(var(--bs-modal-footer-gap) * .5);
}

@media (min-width: 576px) {
  /* line 181, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
  .modal {
    --bs-modal-margin: 1.75rem;
    --bs-modal-box-shadow: var(--bs-box-shadow);
  }
  /* line 187, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
  .modal-dialog {
    max-width: var(--bs-modal-width);
    margin-right: auto;
    margin-left: auto;
  }
  /* line 193, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
  .modal-sm {
    --bs-modal-width: 300px;
  }
}

@media (min-width: 992px) {
  /* line 199, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
  .modal-lg,
.modal-xl {
    --bs-modal-width: 800px;
  }
}

@media (min-width: 1200px) {
  /* line 206, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
  .modal-xl {
    --bs-modal-width: 1140px;
  }
}

/* line 217, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}

/* line 223, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}

/* line 229, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
.modal-fullscreen .modal-header,
.modal-fullscreen .modal-footer {
  border-radius: 0;
}

/* line 234, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
.modal-fullscreen .modal-body {
  overflow-y: auto;
}

@media (max-width: 575.98px) {
  /* line 217, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  /* line 223, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  /* line 229, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-sm-down .modal-header,
.modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
  /* line 234, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
}

@media (max-width: 767.98px) {
  /* line 217, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  /* line 223, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  /* line 229, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-md-down .modal-header,
.modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
  /* line 234, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
}

@media (max-width: 991.98px) {
  /* line 217, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  /* line 223, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  /* line 229, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-lg-down .modal-header,
.modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
  /* line 234, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
}

@media (max-width: 1199.98px) {
  /* line 217, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  /* line 223, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  /* line 229, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-xl-down .modal-header,
.modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
  /* line 234, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
}

@media (max-width: 1399.98px) {
  /* line 217, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  /* line 223, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  /* line 229, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-xxl-down .modal-header,
.modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
  /* line 234, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
}

/* line 2, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip {
  --bs-tooltip-zindex: 1080;
  --bs-tooltip-max-width: 200px;
  --bs-tooltip-padding-x: 0.5rem;
  --bs-tooltip-padding-y: 0.25rem;
  --bs-tooltip-margin: ;
  --bs-tooltip-font-size: 0.875rem;
  --bs-tooltip-color: var(--bs-body-bg);
  --bs-tooltip-bg: var(--bs-emphasis-color);
  --bs-tooltip-border-radius: var(--bs-border-radius);
  --bs-tooltip-opacity: 0.9;
  --bs-tooltip-arrow-width: 0.8rem;
  --bs-tooltip-arrow-height: 0.4rem;
  z-index: var(--bs-tooltip-zindex);
  display: block;
  margin: var(--bs-tooltip-margin);
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: var(--bs-tooltip-font-size);
  word-wrap: break-word;
  opacity: 0;
}

/* line 30, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.show {
  opacity: var(--bs-tooltip-opacity);
}

/* line 32, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip .tooltip-arrow {
  display: block;
  width: var(--bs-tooltip-arrow-width);
  height: var(--bs-tooltip-arrow-height);
}

/* line 37, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip .tooltip-arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

/* line 46, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_tooltip.scss */
.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow {
  bottom: calc(-1 * var(--bs-tooltip-arrow-height));
}

/* line 49, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_tooltip.scss */
.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before {
  top: -1px;
  border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;
  border-top-color: var(--bs-tooltip-bg);
}

/* rtl:begin:ignore */
/* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_tooltip.scss */
.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow {
  left: calc(-1 * var(--bs-tooltip-arrow-height));
  width: var(--bs-tooltip-arrow-height);
  height: var(--bs-tooltip-arrow-width);
}

/* line 62, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_tooltip.scss */
.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before {
  right: -1px;
  border-width: calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;
  border-right-color: var(--bs-tooltip-bg);
}

/* rtl:end:ignore */
/* line 71, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_tooltip.scss */
.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow {
  top: calc(-1 * var(--bs-tooltip-arrow-height));
}

/* line 74, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_tooltip.scss */
.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before {
  bottom: -1px;
  border-width: 0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);
  border-bottom-color: var(--bs-tooltip-bg);
}

/* rtl:begin:ignore */
/* line 82, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_tooltip.scss */
.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow {
  right: calc(-1 * var(--bs-tooltip-arrow-height));
  width: var(--bs-tooltip-arrow-height);
  height: var(--bs-tooltip-arrow-width);
}

/* line 87, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_tooltip.scss */
.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before {
  left: -1px;
  border-width: calc(var(--bs-tooltip-arrow-width) * .5) 0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);
  border-left-color: var(--bs-tooltip-bg);
}

/* rtl:end:ignore */
/* line 112, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip-inner {
  max-width: var(--bs-tooltip-max-width);
  padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
  color: var(--bs-tooltip-color);
  text-align: center;
  background-color: var(--bs-tooltip-bg);
  border-radius: var(--bs-tooltip-border-radius);
}

/* line 1, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_popover.scss */
.popover {
  --bs-popover-zindex: 1070;
  --bs-popover-max-width: 276px;
  --bs-popover-font-size: 0.875rem;
  --bs-popover-bg: var(--bs-body-bg);
  --bs-popover-border-width: var(--bs-border-width);
  --bs-popover-border-color: var(--bs-border-color-translucent);
  --bs-popover-border-radius: var(--bs-border-radius-lg);
  --bs-popover-inner-border-radius: calc(var(--bs-border-radius-lg) - var(--bs-border-width));
  --bs-popover-box-shadow: var(--bs-box-shadow);
  --bs-popover-header-padding-x: 1rem;
  --bs-popover-header-padding-y: 0.5rem;
  --bs-popover-header-font-size: 1rem;
  --bs-popover-header-color: inherit;
  --bs-popover-header-bg: var(--bs-secondary-bg);
  --bs-popover-body-padding-x: 1rem;
  --bs-popover-body-padding-y: 1rem;
  --bs-popover-body-color: var(--bs-body-color);
  --bs-popover-arrow-width: 1rem;
  --bs-popover-arrow-height: 0.5rem;
  --bs-popover-arrow-border: var(--bs-popover-border-color);
  z-index: var(--bs-popover-zindex);
  display: block;
  max-width: var(--bs-popover-max-width);
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: var(--bs-popover-font-size);
  word-wrap: break-word;
  background-color: var(--bs-popover-bg);
  background-clip: padding-box;
  border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  border-radius: var(--bs-popover-border-radius);
}

/* line 40, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_popover.scss */
.popover .popover-arrow {
  display: block;
  width: var(--bs-popover-arrow-width);
  height: var(--bs-popover-arrow-height);
}

/* line 45, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_popover.scss */
.popover .popover-arrow::before, .popover .popover-arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
  border-width: 0;
}

/* line 58, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow {
  bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
}

/* line 61, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::before, .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::after {
  border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0;
}

/* line 66, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::before {
  bottom: 0;
  border-top-color: var(--bs-popover-arrow-border);
}

/* line 71, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::after {
  bottom: var(--bs-popover-border-width);
  border-top-color: var(--bs-popover-bg);
}

/* rtl:begin:ignore */
/* line 80, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow {
  left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  width: var(--bs-popover-arrow-height);
  height: var(--bs-popover-arrow-width);
}

/* line 85, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::before, .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::after {
  border-width: calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0;
}

/* line 90, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::before {
  left: 0;
  border-right-color: var(--bs-popover-arrow-border);
}

/* line 95, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::after {
  left: var(--bs-popover-border-width);
  border-right-color: var(--bs-popover-bg);
}

/* rtl:end:ignore */
/* line 105, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow {
  top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
}

/* line 108, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::before, .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::after {
  border-width: 0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height);
}

/* line 113, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::before {
  top: 0;
  border-bottom-color: var(--bs-popover-arrow-border);
}

/* line 118, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::after {
  top: var(--bs-popover-border-width);
  border-bottom-color: var(--bs-popover-bg);
}

/* line 125, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^="bottom"] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: var(--bs-popover-arrow-width);
  margin-left: calc(-.5 * var(--bs-popover-arrow-width));
  content: "";
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg);
}

/* rtl:begin:ignore */
/* line 139, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow {
  right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  width: var(--bs-popover-arrow-height);
  height: var(--bs-popover-arrow-width);
}

/* line 144, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::before, .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::after {
  border-width: calc(var(--bs-popover-arrow-width) * .5) 0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height);
}

/* line 149, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::before {
  right: 0;
  border-left-color: var(--bs-popover-arrow-border);
}

/* line 154, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::after {
  right: var(--bs-popover-border-width);
  border-left-color: var(--bs-popover-bg);
}

/* rtl:end:ignore */
/* line 179, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_popover.scss */
.popover-header {
  padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
  margin-bottom: 0;
  font-size: var(--bs-popover-header-font-size);
  color: var(--bs-popover-header-color);
  background-color: var(--bs-popover-header-bg);
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  border-top-left-radius: var(--bs-popover-inner-border-radius);
  border-top-right-radius: var(--bs-popover-inner-border-radius);
}

/* line 188, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_popover.scss */
.popover-header:empty {
  display: none;
}

/* line 193, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_popover.scss */
.popover-body {
  padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
  color: var(--bs-popover-body-color);
}

/* line 14, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_carousel.scss */
.carousel {
  position: relative;
}

/* line 18, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_carousel.scss */
.carousel.pointer-event {
  touch-action: pan-y;
}

/* line 22, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* line 3, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

/* line 29, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  /* line 29, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-item {
    transition: none;
  }
}

/* line 39, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

/* line 45, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
  transform: translateX(100%);
}

/* line 50, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
  transform: translateX(-100%);
}

/* line 61, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1;
}

/* line 74, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}

@media (prefers-reduced-motion: reduce) {
  /* line 74, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    transition: none;
  }
}

/* line 87, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #FFFFFF;
  text-align: center;
  background: none;
  filter: var(--bs-carousel-control-icon-filter);
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
  /* line 87, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-control-prev,
.carousel-control-next {
    transition: none;
  }
}

/* line 108, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #FFFFFF;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

/* line 116, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control-prev {
  left: 0;
}

/* line 120, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control-next {
  right: 0;
}

/* line 126, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}

/* line 136, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0'/%3e%3c/svg%3e") /*rtl:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e")*/;
}

/* line 139, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e") /*rtl:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0'/%3e%3c/svg%3e")*/;
}

/* line 148, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
}

/* line 162, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: var(--bs-carousel-indicator-active-bg);
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  /* line 162, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-indicators [data-bs-target] {
    transition: none;
  }
}

/* line 182, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-indicators .active {
  opacity: 1;
}

/* line 192, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: var(--bs-carousel-caption-color);
  text-align: center;
}

/* line 211, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-dark {
  --bs-carousel-indicator-active-bg: #000000;
  --bs-carousel-caption-color: #000000;
  --bs-carousel-control-icon-filter: invert(1) grayscale(100);
}

/* line 215, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_carousel.scss */
:root,
[data-bs-theme="light"] {
  --bs-carousel-indicator-active-bg: #FFFFFF;
  --bs-carousel-caption-color: #FFFFFF;
  --bs-carousel-control-icon-filter: ;
}

/* line 16, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_color-mode.scss */
[data-bs-theme="dark"] {
  --bs-carousel-indicator-active-bg: #000000;
  --bs-carousel-caption-color: #000000;
  --bs-carousel-control-icon-filter: invert(1) grayscale(100);
}

/* line 5, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_spinners.scss */
.spinner-grow,
.spinner-border {
  display: inline-block;
  width: var(--bs-spinner-width);
  height: var(--bs-spinner-height);
  vertical-align: var(--bs-spinner-vertical-align);
  border-radius: 50%;
  animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg) /* rtl:ignore */;
  }
}

/* line 22, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_spinners.scss */
.spinner-border {
  --bs-spinner-width: 2rem;
  --bs-spinner-height: 2rem;
  --bs-spinner-vertical-align: -0.125em;
  --bs-spinner-border-width: 0.25em;
  --bs-spinner-animation-speed: 0.75s;
  --bs-spinner-animation-name: spinner-border;
  border: var(--bs-spinner-border-width) solid currentcolor;
  border-right-color: transparent;
}

/* line 36, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_spinners.scss */
.spinner-border-sm {
  --bs-spinner-width: 1rem;
  --bs-spinner-height: 1rem;
  --bs-spinner-border-width: 0.2em;
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}

/* line 60, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_spinners.scss */
.spinner-grow {
  --bs-spinner-width: 2rem;
  --bs-spinner-height: 2rem;
  --bs-spinner-vertical-align: -0.125em;
  --bs-spinner-animation-speed: 0.75s;
  --bs-spinner-animation-name: spinner-grow;
  background-color: currentcolor;
  opacity: 0;
}

/* line 73, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_spinners.scss */
.spinner-grow-sm {
  --bs-spinner-width: 1rem;
  --bs-spinner-height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  /* line 80, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_spinners.scss */
  .spinner-border,
.spinner-grow {
    --bs-spinner-animation-speed: 1.5s;
  }
}

/* line 3, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
.offcanvas, .offcanvas-xxl, .offcanvas-xl, .offcanvas-lg, .offcanvas-md, .offcanvas-sm {
  --bs-offcanvas-zindex: 1045;
  --bs-offcanvas-width: 400px;
  --bs-offcanvas-height: 30vh;
  --bs-offcanvas-padding-x: 1rem;
  --bs-offcanvas-padding-y: 1rem;
  --bs-offcanvas-color: var(--bs-body-color);
  --bs-offcanvas-bg: var(--bs-body-bg);
  --bs-offcanvas-border-width: var(--bs-border-width);
  --bs-offcanvas-border-color: var(--bs-border-color-translucent);
  --bs-offcanvas-box-shadow: var(--bs-box-shadow-sm);
  --bs-offcanvas-transition: transform 0.3s ease-in-out;
  --bs-offcanvas-title-line-height: 1.5;
}

@media (max-width: 575.98px) {
  /* line 33, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-sm {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}

@media (max-width: 575.98px) and (prefers-reduced-motion: reduce) {
  /* line 33, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-sm {
    transition: none;
  }
}

@media (max-width: 575.98px) {
  /* line 49, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-sm.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  /* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-sm.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  /* line 65, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-sm.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  /* line 75, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-sm.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  /* line 84, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-sm.showing, .offcanvas-sm.show:not(.hiding) {
    transform: none;
  }
  /* line 89, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-sm.showing, .offcanvas-sm.hiding, .offcanvas-sm.show {
    visibility: visible;
  }
}

@media (min-width: 576px) {
  /* line 33, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-sm {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  /* line 102, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-sm .offcanvas-header {
    display: none;
  }
  /* line 106, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-sm .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 767.98px) {
  /* line 33, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-md {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}

@media (max-width: 767.98px) and (prefers-reduced-motion: reduce) {
  /* line 33, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-md {
    transition: none;
  }
}

@media (max-width: 767.98px) {
  /* line 49, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-md.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  /* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-md.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  /* line 65, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-md.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  /* line 75, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-md.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  /* line 84, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-md.showing, .offcanvas-md.show:not(.hiding) {
    transform: none;
  }
  /* line 89, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-md.showing, .offcanvas-md.hiding, .offcanvas-md.show {
    visibility: visible;
  }
}

@media (min-width: 768px) {
  /* line 33, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-md {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  /* line 102, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-md .offcanvas-header {
    display: none;
  }
  /* line 106, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-md .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 991.98px) {
  /* line 33, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-lg {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}

@media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
  /* line 33, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-lg {
    transition: none;
  }
}

@media (max-width: 991.98px) {
  /* line 49, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-lg.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  /* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-lg.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  /* line 65, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-lg.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  /* line 75, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-lg.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  /* line 84, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-lg.showing, .offcanvas-lg.show:not(.hiding) {
    transform: none;
  }
  /* line 89, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-lg.showing, .offcanvas-lg.hiding, .offcanvas-lg.show {
    visibility: visible;
  }
}

@media (min-width: 992px) {
  /* line 33, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-lg {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  /* line 102, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-lg .offcanvas-header {
    display: none;
  }
  /* line 106, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-lg .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 1199.98px) {
  /* line 33, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-xl {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}

@media (max-width: 1199.98px) and (prefers-reduced-motion: reduce) {
  /* line 33, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-xl {
    transition: none;
  }
}

@media (max-width: 1199.98px) {
  /* line 49, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-xl.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  /* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-xl.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  /* line 65, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-xl.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  /* line 75, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-xl.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  /* line 84, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-xl.showing, .offcanvas-xl.show:not(.hiding) {
    transform: none;
  }
  /* line 89, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-xl.showing, .offcanvas-xl.hiding, .offcanvas-xl.show {
    visibility: visible;
  }
}

@media (min-width: 1200px) {
  /* line 33, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-xl {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  /* line 102, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-xl .offcanvas-header {
    display: none;
  }
  /* line 106, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-xl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 1399.98px) {
  /* line 33, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-xxl {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}

@media (max-width: 1399.98px) and (prefers-reduced-motion: reduce) {
  /* line 33, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-xxl {
    transition: none;
  }
}

@media (max-width: 1399.98px) {
  /* line 49, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-xxl.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  /* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-xxl.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  /* line 65, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-xxl.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  /* line 75, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-xxl.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  /* line 84, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-xxl.showing, .offcanvas-xxl.show:not(.hiding) {
    transform: none;
  }
  /* line 89, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-xxl.showing, .offcanvas-xxl.hiding, .offcanvas-xxl.show {
    visibility: visible;
  }
}

@media (min-width: 1400px) {
  /* line 33, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-xxl {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  /* line 102, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-xxl .offcanvas-header {
    display: none;
  }
  /* line 106, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas-xxl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

/* line 33, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: var(--bs-offcanvas-zindex);
  display: flex;
  flex-direction: column;
  max-width: 100%;
  color: var(--bs-offcanvas-color);
  visibility: hidden;
  background-color: var(--bs-offcanvas-bg);
  background-clip: padding-box;
  outline: 0;
  transition: var(--bs-offcanvas-transition);
}

@media (prefers-reduced-motion: reduce) {
  /* line 33, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas {
    transition: none;
  }
}

/* line 49, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
.offcanvas.offcanvas-start {
  top: 0;
  left: 0;
  width: var(--bs-offcanvas-width);
  border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateX(-100%);
}

/* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
.offcanvas.offcanvas-end {
  top: 0;
  right: 0;
  width: var(--bs-offcanvas-width);
  border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateX(100%);
}

/* line 65, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
.offcanvas.offcanvas-top {
  top: 0;
  right: 0;
  left: 0;
  height: var(--bs-offcanvas-height);
  max-height: 100%;
  border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateY(-100%);
}

/* line 75, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
.offcanvas.offcanvas-bottom {
  right: 0;
  left: 0;
  height: var(--bs-offcanvas-height);
  max-height: 100%;
  border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateY(100%);
}

/* line 84, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
.offcanvas.showing, .offcanvas.show:not(.hiding) {
  transform: none;
}

/* line 89, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
.offcanvas.showing, .offcanvas.hiding, .offcanvas.show {
  visibility: visible;
}

/* line 119, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000000;
}

/* line 12, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_backdrop.scss */
.offcanvas-backdrop.fade {
  opacity: 0;
}

/* line 13, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_backdrop.scss */
.offcanvas-backdrop.show {
  opacity: 0.5;
}

/* line 123, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
.offcanvas-header {
  display: flex;
  align-items: center;
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
}

/* line 128, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
.offcanvas-header .btn-close {
  padding: calc(var(--bs-offcanvas-padding-y) * .5) calc(var(--bs-offcanvas-padding-x) * .5);
  margin-top: calc(-.5 * var(--bs-offcanvas-padding-y));
  margin-right: calc(-.5 * var(--bs-offcanvas-padding-x));
  margin-bottom: calc(-.5 * var(--bs-offcanvas-padding-y));
  margin-left: auto;
}

/* line 138, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
.offcanvas-title {
  margin-bottom: 0;
  line-height: var(--bs-offcanvas-title-line-height);
}

/* line 143, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_offcanvas.scss */
.offcanvas-body {
  flex-grow: 1;
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
  overflow-y: auto;
}

/* line 1, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_placeholders.scss */
.placeholder {
  display: inline-block;
  min-height: 1em;
  vertical-align: middle;
  cursor: wait;
  background-color: currentcolor;
  opacity: 0.5;
}

/* line 9, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_placeholders.scss */
.placeholder.btn::before {
  display: inline-block;
  content: "";
}

/* line 16, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_placeholders.scss */
.placeholder-xs {
  min-height: .6em;
}

/* line 20, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_placeholders.scss */
.placeholder-sm {
  min-height: .8em;
}

/* line 24, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_placeholders.scss */
.placeholder-lg {
  min-height: 1.2em;
}

/* line 30, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_placeholders.scss */
.placeholder-glow .placeholder {
  animation: placeholder-glow 2s ease-in-out infinite;
}

@keyframes placeholder-glow {
  50% {
    opacity: 0.2;
  }
}

/* line 41, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/_placeholders.scss */
.placeholder-wave {
  mask-image: linear-gradient(130deg, #000000 55%, rgba(0, 0, 0, 0.8) 75%, #000000 95%);
  mask-size: 200% 100%;
  animation: placeholder-wave 2s linear infinite;
}

@keyframes placeholder-wave {
  100% {
    mask-position: -200% 0%;
  }
}

/* line 3, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

/* line 3, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_color-bg.scss */
.text-bg-primary {
  color: #FFFFFF !important;
  background-color: RGBA(var(--bs-primary-rgb), var(--bs-bg-opacity, 1)) !important;
}

/* line 3, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_color-bg.scss */
.text-bg-secondary {
  color: #FFFFFF !important;
  background-color: RGBA(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1)) !important;
}

/* line 3, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_color-bg.scss */
.text-bg-success {
  color: #000000 !important;
  background-color: RGBA(var(--bs-success-rgb), var(--bs-bg-opacity, 1)) !important;
}

/* line 3, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_color-bg.scss */
.text-bg-info {
  color: #000000 !important;
  background-color: RGBA(var(--bs-info-rgb), var(--bs-bg-opacity, 1)) !important;
}

/* line 3, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_color-bg.scss */
.text-bg-warning {
  color: #000000 !important;
  background-color: RGBA(var(--bs-warning-rgb), var(--bs-bg-opacity, 1)) !important;
}

/* line 3, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_color-bg.scss */
.text-bg-danger {
  color: #000000 !important;
  background-color: RGBA(var(--bs-danger-rgb), var(--bs-bg-opacity, 1)) !important;
}

/* line 3, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_color-bg.scss */
.text-bg-light {
  color: #000000 !important;
  background-color: RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1)) !important;
}

/* line 3, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_color-bg.scss */
.text-bg-dark {
  color: #FFFFFF !important;
  background-color: RGBA(var(--bs-dark-rgb), var(--bs-bg-opacity, 1)) !important;
}

/* line 3, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_colored-links.scss */
.link-primary {
  color: RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

/* line 8, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_colored-links.scss */
.link-primary:hover, .link-primary:focus {
  color: RGBA(10, 88, 202, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(10, 88, 202, var(--bs-link-underline-opacity, 1)) !important;
}

/* line 3, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_colored-links.scss */
.link-secondary {
  color: RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

/* line 8, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_colored-links.scss */
.link-secondary:hover, .link-secondary:focus {
  color: RGBA(86, 94, 100, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(86, 94, 100, var(--bs-link-underline-opacity, 1)) !important;
}

/* line 3, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_colored-links.scss */
.link-success {
  color: RGBA(var(--bs-success-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

/* line 8, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_colored-links.scss */
.link-success:hover, .link-success:focus {
  color: RGBA(64, 199, 154, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(64, 199, 154, var(--bs-link-underline-opacity, 1)) !important;
}

/* line 3, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_colored-links.scss */
.link-info {
  color: RGBA(var(--bs-info-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

/* line 8, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_colored-links.scss */
.link-info:hover, .link-info:focus {
  color: RGBA(98, 155, 248, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(98, 155, 248, var(--bs-link-underline-opacity, 1)) !important;
}

/* line 3, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_colored-links.scss */
.link-warning {
  color: RGBA(var(--bs-warning-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

/* line 8, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_colored-links.scss */
.link-warning:hover, .link-warning:focus {
  color: RGBA(247, 177, 60, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(247, 177, 60, var(--bs-link-underline-opacity, 1)) !important;
}

/* line 3, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_colored-links.scss */
.link-danger {
  color: RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

/* line 8, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_colored-links.scss */
.link-danger:hover, .link-danger:focus {
  color: RGBA(242, 105, 105, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(242, 105, 105, var(--bs-link-underline-opacity, 1)) !important;
}

/* line 3, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_colored-links.scss */
.link-light {
  color: RGBA(var(--bs-light-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

/* line 8, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_colored-links.scss */
.link-light:hover, .link-light:focus {
  color: RGBA(249, 250, 251, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1)) !important;
}

/* line 3, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_colored-links.scss */
.link-dark {
  color: RGBA(var(--bs-dark-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

/* line 8, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_colored-links.scss */
.link-dark:hover, .link-dark:focus {
  color: RGBA(26, 30, 33, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(26, 30, 33, var(--bs-link-underline-opacity, 1)) !important;
}

/* line 19, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_colored-links.scss */
.link-body-emphasis {
  color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

/* line 24, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_colored-links.scss */
.link-body-emphasis:hover, .link-body-emphasis:focus {
  color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 0.75)) !important;
  text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important;
}

/* line 1, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_focus-ring.scss */
.focus-ring:focus {
  outline: 0;
  box-shadow: var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0) var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width) var(--bs-focus-ring-color);
}

/* line 1, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_icon-link.scss */
.icon-link {
  display: inline-flex;
  gap: 0.375rem;
  align-items: center;
  text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));
  text-underline-offset: 0.25em;
  backface-visibility: hidden;
}

/* line 9, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_icon-link.scss */
.icon-link > .bi {
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  fill: currentcolor;
  transition: 0.2s ease-in-out transform;
}

@media (prefers-reduced-motion: reduce) {
  /* line 9, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_icon-link.scss */
  .icon-link > .bi {
    transition: none;
  }
}

/* line 21, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_icon-link.scss */
.icon-link-hover:hover > .bi, .icon-link-hover:focus-visible > .bi {
  transform: var(--bs-icon-link-transform, translate3d(0.25em, 0, 0));
}

/* line 3, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_ratio.scss */
.ratio {
  position: relative;
  width: 100%;
}

/* line 7, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_ratio.scss */
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}

/* line 13, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_ratio.scss */
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* line 23, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_ratio.scss */
.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

/* line 23, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_ratio.scss */
.ratio-4x3 {
  --bs-aspect-ratio: calc(3 / 4 * 100%);
}

/* line 23, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_ratio.scss */
.ratio-16x9 {
  --bs-aspect-ratio: calc(9 / 16 * 100%);
}

/* line 23, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_ratio.scss */
.ratio-21x9 {
  --bs-aspect-ratio: calc(9 / 21 * 100%);
}

/* line 3, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_position.scss */
.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

/* line 11, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_position.scss */
.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

/* line 24, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_position.scss */
.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

/* line 30, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_position.scss */
.sticky-bottom {
  position: sticky;
  bottom: 0;
  z-index: 1020;
}

@media (min-width: 576px) {
  /* line 24, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_position.scss */
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  /* line 30, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_position.scss */
  .sticky-sm-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}

@media (min-width: 768px) {
  /* line 24, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_position.scss */
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  /* line 30, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_position.scss */
  .sticky-md-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}

@media (min-width: 992px) {
  /* line 24, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_position.scss */
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  /* line 30, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_position.scss */
  .sticky-lg-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}

@media (min-width: 1200px) {
  /* line 24, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_position.scss */
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  /* line 30, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_position.scss */
  .sticky-xl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}

@media (min-width: 1400px) {
  /* line 24, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_position.scss */
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  /* line 30, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_position.scss */
  .sticky-xxl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}

/* line 2, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_stacks.scss */
.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}

/* line 9, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_stacks.scss */
.vstack {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch;
}

/* line 5, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_visually-hidden.scss */
.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* line 19, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_visually-hidden.scss */
.visually-hidden:not(caption),
.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) {
  position: absolute !important;
}

/* line 6, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_stretched-link.scss */
.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

/* line 5, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_text-truncation.scss */
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 1, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/helpers/_vr.scss */
.vr {
  display: inline-block;
  align-self: stretch;
  width: var(--bs-border-width);
  min-height: 1em;
  background-color: currentcolor;
  opacity: 0.25;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-baseline {
  vertical-align: baseline !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-top {
  vertical-align: top !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-middle {
  vertical-align: middle !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-bottom {
  vertical-align: bottom !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-text-bottom {
  vertical-align: text-bottom !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-text-top {
  vertical-align: text-top !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.float-start {
  float: left !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.float-end {
  float: right !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.float-none {
  float: none !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.object-fit-contain {
  object-fit: contain !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.object-fit-cover {
  object-fit: cover !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.object-fit-fill {
  object-fit: fill !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.object-fit-scale {
  object-fit: scale-down !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.object-fit-none {
  object-fit: none !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.opacity-0 {
  opacity: 0 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.opacity-25 {
  opacity: 0.25 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.opacity-50 {
  opacity: 0.5 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.opacity-75 {
  opacity: 0.75 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.opacity-100 {
  opacity: 1 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.overflow-auto {
  overflow: auto !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.overflow-hidden {
  overflow: hidden !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.overflow-visible {
  overflow: visible !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.overflow-scroll {
  overflow: scroll !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.overflow-x-auto {
  overflow-x: auto !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.overflow-x-hidden {
  overflow-x: hidden !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.overflow-x-visible {
  overflow-x: visible !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.overflow-x-scroll {
  overflow-x: scroll !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.overflow-y-auto {
  overflow-y: auto !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.overflow-y-hidden {
  overflow-y: hidden !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.overflow-y-visible {
  overflow-y: visible !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.overflow-y-scroll {
  overflow-y: scroll !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.d-inline {
  display: inline !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.d-inline-block {
  display: inline-block !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.d-block {
  display: block !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.d-grid {
  display: grid !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.d-inline-grid {
  display: inline-grid !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.d-table {
  display: table !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.d-table-row {
  display: table-row !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.d-table-cell {
  display: table-cell !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.d-flex {
  display: flex !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.d-inline-flex {
  display: inline-flex !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.d-none {
  display: none !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.shadow {
  box-shadow: var(--bs-box-shadow) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.shadow-sm {
  box-shadow: var(--bs-box-shadow-sm) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.shadow-lg {
  box-shadow: var(--bs-box-shadow-lg) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.shadow-none {
  box-shadow: none !important;
}

/* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.focus-ring-primary {
  --bs-focus-ring-color: rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity));
}

/* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.focus-ring-secondary {
  --bs-focus-ring-color: rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity));
}

/* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.focus-ring-success {
  --bs-focus-ring-color: rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity));
}

/* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.focus-ring-info {
  --bs-focus-ring-color: rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity));
}

/* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.focus-ring-warning {
  --bs-focus-ring-color: rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity));
}

/* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.focus-ring-danger {
  --bs-focus-ring-color: rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity));
}

/* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.focus-ring-light {
  --bs-focus-ring-color: rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity));
}

/* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.focus-ring-dark {
  --bs-focus-ring-color: rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity));
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.position-static {
  position: static !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.position-relative {
  position: relative !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.position-absolute {
  position: absolute !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.position-fixed {
  position: fixed !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.position-sticky {
  position: sticky !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.top-0 {
  top: 0 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.top-50 {
  top: 50% !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.top-100 {
  top: 100% !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bottom-0 {
  bottom: 0 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bottom-50 {
  bottom: 50% !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bottom-100 {
  bottom: 100% !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.start-0 {
  left: 0 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.start-50 {
  left: 50% !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.start-100 {
  left: 100% !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.end-0 {
  right: 0 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.end-50 {
  right: 50% !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.end-100 {
  right: 100% !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.translate-middle {
  transform: translate(-50%, -50%) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.translate-middle-x {
  transform: translateX(-50%) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.translate-middle-y {
  transform: translateY(-50%) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border {
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-0 {
  border: 0 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-top {
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-top-0 {
  border-top: 0 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-end {
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-end-0 {
  border-right: 0 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-bottom-0 {
  border-bottom: 0 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-start {
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-start-0 {
  border-left: 0 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-primary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-secondary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-success {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-info {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-warning {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-danger {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-light {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-dark {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-black {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-black-rgb), var(--bs-border-opacity)) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-white {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-primary-subtle {
  border-color: var(--bs-primary-border-subtle) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-secondary-subtle {
  border-color: var(--bs-secondary-border-subtle) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-success-subtle {
  border-color: var(--bs-success-border-subtle) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-info-subtle {
  border-color: var(--bs-info-border-subtle) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-warning-subtle {
  border-color: var(--bs-warning-border-subtle) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-danger-subtle {
  border-color: var(--bs-danger-border-subtle) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-light-subtle {
  border-color: var(--bs-light-border-subtle) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-dark-subtle {
  border-color: var(--bs-dark-border-subtle) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-1 {
  border-width: 1px !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-2 {
  border-width: 2px !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-3 {
  border-width: 3px !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-4 {
  border-width: 4px !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-5 {
  border-width: 5px !important;
}

/* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-opacity-10 {
  --bs-border-opacity: 0.1;
}

/* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-opacity-25 {
  --bs-border-opacity: 0.25;
}

/* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-opacity-50 {
  --bs-border-opacity: 0.5;
}

/* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-opacity-75 {
  --bs-border-opacity: 0.75;
}

/* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-opacity-100 {
  --bs-border-opacity: 1;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.w-25 {
  width: 25% !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.w-50 {
  width: 50% !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.w-75 {
  width: 75% !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.w-100 {
  width: 100% !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.w-auto {
  width: auto !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mw-100 {
  max-width: 100% !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.vw-100 {
  width: 100vw !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.min-vw-100 {
  min-width: 100vw !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.h-25 {
  height: 25% !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.h-50 {
  height: 50% !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.h-75 {
  height: 75% !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.h-100 {
  height: 100% !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.h-auto {
  height: auto !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mh-100 {
  max-height: 100% !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.vh-100 {
  height: 100vh !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.min-vh-100 {
  min-height: 100vh !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.flex-fill {
  flex: 1 1 auto !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.flex-row {
  flex-direction: row !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.flex-column {
  flex-direction: column !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.flex-row-reverse {
  flex-direction: row-reverse !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.flex-column-reverse {
  flex-direction: column-reverse !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.flex-grow-0 {
  flex-grow: 0 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.flex-grow-1 {
  flex-grow: 1 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.flex-shrink-0 {
  flex-shrink: 0 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.flex-shrink-1 {
  flex-shrink: 1 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.flex-wrap {
  flex-wrap: wrap !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.flex-nowrap {
  flex-wrap: nowrap !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.justify-content-start {
  justify-content: flex-start !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.justify-content-end {
  justify-content: flex-end !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.justify-content-center {
  justify-content: center !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.justify-content-between {
  justify-content: space-between !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.justify-content-around {
  justify-content: space-around !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.justify-content-evenly {
  justify-content: space-evenly !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-items-start {
  align-items: flex-start !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-items-end {
  align-items: flex-end !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-items-center {
  align-items: center !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-items-baseline {
  align-items: baseline !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-items-stretch {
  align-items: stretch !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-content-start {
  align-content: flex-start !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-content-end {
  align-content: flex-end !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-content-center {
  align-content: center !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-content-between {
  align-content: space-between !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-content-around {
  align-content: space-around !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-content-stretch {
  align-content: stretch !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-self-auto {
  align-self: auto !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-self-start {
  align-self: flex-start !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-self-end {
  align-self: flex-end !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-self-center {
  align-self: center !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-self-baseline {
  align-self: baseline !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-self-stretch {
  align-self: stretch !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.order-first {
  order: -1 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.order-0 {
  order: 0 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.order-1 {
  order: 1 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.order-2 {
  order: 2 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.order-3 {
  order: 3 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.order-4 {
  order: 4 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.order-5 {
  order: 5 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.order-last {
  order: 6 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.m-0 {
  margin: 0 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.m-1 {
  margin: 0.25rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.m-2 {
  margin: 0.5rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.m-3 {
  margin: 1rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.m-4 {
  margin: 1.5rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.m-5 {
  margin: 3rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.m-auto {
  margin: auto !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mt-0 {
  margin-top: 0 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mt-1 {
  margin-top: 0.25rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mt-2 {
  margin-top: 0.5rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mt-3 {
  margin-top: 1rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mt-4 {
  margin-top: 1.5rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mt-5 {
  margin-top: 3rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mt-auto {
  margin-top: auto !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.me-0 {
  margin-right: 0 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.me-1 {
  margin-right: 0.25rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.me-2 {
  margin-right: 0.5rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.me-3 {
  margin-right: 1rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.me-4 {
  margin-right: 1.5rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.me-5 {
  margin-right: 3rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.me-auto {
  margin-right: auto !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mb-0 {
  margin-bottom: 0 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mb-1 {
  margin-bottom: 0.25rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mb-2 {
  margin-bottom: 0.5rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mb-3 {
  margin-bottom: 1rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mb-4 {
  margin-bottom: 1.5rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mb-5 {
  margin-bottom: 3rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mb-auto {
  margin-bottom: auto !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.ms-0 {
  margin-left: 0 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.ms-1 {
  margin-left: 0.25rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.ms-2 {
  margin-left: 0.5rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.ms-3 {
  margin-left: 1rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.ms-4 {
  margin-left: 1.5rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.ms-5 {
  margin-left: 3rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.ms-auto {
  margin-left: auto !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.p-0 {
  padding: 0 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.p-1 {
  padding: 0.25rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.p-2 {
  padding: 0.5rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.p-3 {
  padding: 1rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.p-4 {
  padding: 1.5rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.p-5 {
  padding: 3rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.pt-0 {
  padding-top: 0 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.pt-1 {
  padding-top: 0.25rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.pt-2 {
  padding-top: 0.5rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.pt-3 {
  padding-top: 1rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.pt-4 {
  padding-top: 1.5rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.pt-5 {
  padding-top: 3rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.pe-0 {
  padding-right: 0 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.pe-1 {
  padding-right: 0.25rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.pe-2 {
  padding-right: 0.5rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.pe-3 {
  padding-right: 1rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.pe-4 {
  padding-right: 1.5rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.pe-5 {
  padding-right: 3rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.pb-0 {
  padding-bottom: 0 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.pb-1 {
  padding-bottom: 0.25rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.pb-2 {
  padding-bottom: 0.5rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.pb-3 {
  padding-bottom: 1rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.pb-4 {
  padding-bottom: 1.5rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.pb-5 {
  padding-bottom: 3rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.ps-0 {
  padding-left: 0 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.ps-1 {
  padding-left: 0.25rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.ps-2 {
  padding-left: 0.5rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.ps-3 {
  padding-left: 1rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.ps-4 {
  padding-left: 1.5rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.ps-5 {
  padding-left: 3rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.gap-0 {
  gap: 0 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.gap-1 {
  gap: 0.25rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.gap-2 {
  gap: 0.5rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.gap-3 {
  gap: 1rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.gap-4 {
  gap: 1.5rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.gap-5 {
  gap: 3rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.row-gap-0 {
  row-gap: 0 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.row-gap-1 {
  row-gap: 0.25rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.row-gap-2 {
  row-gap: 0.5rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.row-gap-3 {
  row-gap: 1rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.row-gap-4 {
  row-gap: 1.5rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.row-gap-5 {
  row-gap: 3rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.column-gap-0 {
  column-gap: 0 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.column-gap-1 {
  column-gap: 0.25rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.column-gap-2 {
  column-gap: 0.5rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.column-gap-3 {
  column-gap: 1rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.column-gap-4 {
  column-gap: 1.5rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.column-gap-5 {
  column-gap: 3rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.fs-5 {
  font-size: 1.25rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.fs-6 {
  font-size: 1rem !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.fst-italic {
  font-style: italic !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.fst-normal {
  font-style: normal !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.fw-lighter {
  font-weight: lighter !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.fw-light {
  font-weight: 300 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.fw-normal {
  font-weight: 400 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.fw-medium {
  font-weight: 500 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.fw-semibold {
  font-weight: 600 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.fw-bold {
  font-weight: 700 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.fw-bolder {
  font-weight: bolder !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.lh-1 {
  line-height: 1 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.lh-sm {
  line-height: 1.25 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.lh-base {
  line-height: 1.5 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.lh-lg {
  line-height: 2 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-start {
  text-align: left !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-end {
  text-align: right !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-center {
  text-align: center !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-decoration-none {
  text-decoration: none !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-decoration-underline {
  text-decoration: underline !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-decoration-line-through {
  text-decoration: line-through !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-lowercase {
  text-transform: lowercase !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-uppercase {
  text-transform: uppercase !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-capitalize {
  text-transform: capitalize !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-wrap {
  white-space: normal !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-muted {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-body-secondary {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-body-tertiary {
  --bs-text-opacity: 1;
  color: var(--bs-tertiary-color) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-body-emphasis {
  --bs-text-opacity: 1;
  color: var(--bs-emphasis-color) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-reset {
  --bs-text-opacity: 1;
  color: inherit !important;
}

/* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-opacity-25 {
  --bs-text-opacity: 0.25;
}

/* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-opacity-50 {
  --bs-text-opacity: 0.5;
}

/* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-opacity-75 {
  --bs-text-opacity: 0.75;
}

/* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-opacity-100 {
  --bs-text-opacity: 1;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-primary-emphasis {
  color: var(--bs-primary-text-emphasis) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-secondary-emphasis {
  color: var(--bs-secondary-text-emphasis) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-success-emphasis {
  color: var(--bs-success-text-emphasis) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-info-emphasis {
  color: var(--bs-info-text-emphasis) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-warning-emphasis {
  color: var(--bs-warning-text-emphasis) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-danger-emphasis {
  color: var(--bs-danger-text-emphasis) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-light-emphasis {
  color: var(--bs-light-text-emphasis) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-dark-emphasis {
  color: var(--bs-dark-text-emphasis) !important;
}

/* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.link-opacity-10 {
  --bs-link-opacity: 0.1;
}

/* line 62, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.link-opacity-10-hover:hover {
  --bs-link-opacity: 0.1;
}

/* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.link-opacity-25 {
  --bs-link-opacity: 0.25;
}

/* line 62, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.link-opacity-25-hover:hover {
  --bs-link-opacity: 0.25;
}

/* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.link-opacity-50 {
  --bs-link-opacity: 0.5;
}

/* line 62, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.link-opacity-50-hover:hover {
  --bs-link-opacity: 0.5;
}

/* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.link-opacity-75 {
  --bs-link-opacity: 0.75;
}

/* line 62, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.link-opacity-75-hover:hover {
  --bs-link-opacity: 0.75;
}

/* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.link-opacity-100 {
  --bs-link-opacity: 1;
}

/* line 62, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.link-opacity-100-hover:hover {
  --bs-link-opacity: 1;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.link-offset-1 {
  text-underline-offset: 0.125em !important;
}

/* line 79, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.link-offset-1-hover:hover {
  text-underline-offset: 0.125em !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.link-offset-2 {
  text-underline-offset: 0.25em !important;
}

/* line 79, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.link-offset-2-hover:hover {
  text-underline-offset: 0.25em !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.link-offset-3 {
  text-underline-offset: 0.375em !important;
}

/* line 79, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.link-offset-3-hover:hover {
  text-underline-offset: 0.375em !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.link-underline-primary {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.link-underline-secondary {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.link-underline-success {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.link-underline-info {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.link-underline-warning {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.link-underline-danger {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.link-underline-light {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.link-underline-dark {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.link-underline {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

/* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.link-underline-opacity-0 {
  --bs-link-underline-opacity: 0;
}

/* line 62, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.link-underline-opacity-0-hover:hover {
  --bs-link-underline-opacity: 0;
}

/* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.link-underline-opacity-10 {
  --bs-link-underline-opacity: 0.1;
}

/* line 62, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.link-underline-opacity-10-hover:hover {
  --bs-link-underline-opacity: 0.1;
}

/* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.link-underline-opacity-25 {
  --bs-link-underline-opacity: 0.25;
}

/* line 62, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.link-underline-opacity-25-hover:hover {
  --bs-link-underline-opacity: 0.25;
}

/* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.link-underline-opacity-50 {
  --bs-link-underline-opacity: 0.5;
}

/* line 62, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.link-underline-opacity-50-hover:hover {
  --bs-link-underline-opacity: 0.5;
}

/* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.link-underline-opacity-75 {
  --bs-link-underline-opacity: 0.75;
}

/* line 62, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.link-underline-opacity-75-hover:hover {
  --bs-link-underline-opacity: 0.75;
}

/* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.link-underline-opacity-100 {
  --bs-link-underline-opacity: 1;
}

/* line 62, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.link-underline-opacity-100-hover:hover {
  --bs-link-underline-opacity: 1;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: transparent !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-body-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-body-tertiary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important;
}

/* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}

/* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-opacity-25 {
  --bs-bg-opacity: 0.25;
}

/* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}

/* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-opacity-75 {
  --bs-bg-opacity: 0.75;
}

/* line 57, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-opacity-100 {
  --bs-bg-opacity: 1;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-primary-subtle {
  background-color: var(--bs-primary-bg-subtle) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-secondary-subtle {
  background-color: var(--bs-secondary-bg-subtle) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-success-subtle {
  background-color: var(--bs-success-bg-subtle) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-info-subtle {
  background-color: var(--bs-info-bg-subtle) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-warning-subtle {
  background-color: var(--bs-warning-bg-subtle) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-danger-subtle {
  background-color: var(--bs-danger-bg-subtle) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-light-subtle {
  background-color: var(--bs-light-bg-subtle) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-dark-subtle {
  background-color: var(--bs-dark-bg-subtle) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.user-select-all {
  user-select: all !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.user-select-auto {
  user-select: auto !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.user-select-none {
  user-select: none !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.pe-none {
  pointer-events: none !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.pe-auto {
  pointer-events: auto !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded {
  border-radius: var(--bs-border-radius) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-0 {
  border-radius: 0 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-1 {
  border-radius: var(--bs-border-radius-sm) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-2 {
  border-radius: var(--bs-border-radius) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-3 {
  border-radius: var(--bs-border-radius-lg) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-4 {
  border-radius: var(--bs-border-radius-xl) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-5 {
  border-radius: var(--bs-border-radius-xxl) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-circle {
  border-radius: 50% !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-pill {
  border-radius: var(--bs-border-radius-pill) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-top {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-top-0 {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-top-1 {
  border-top-left-radius: var(--bs-border-radius-sm) !important;
  border-top-right-radius: var(--bs-border-radius-sm) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-top-2 {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-top-3 {
  border-top-left-radius: var(--bs-border-radius-lg) !important;
  border-top-right-radius: var(--bs-border-radius-lg) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-top-4 {
  border-top-left-radius: var(--bs-border-radius-xl) !important;
  border-top-right-radius: var(--bs-border-radius-xl) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-top-5 {
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-top-circle {
  border-top-left-radius: 50% !important;
  border-top-right-radius: 50% !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-top-pill {
  border-top-left-radius: var(--bs-border-radius-pill) !important;
  border-top-right-radius: var(--bs-border-radius-pill) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-end {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-end-0 {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-end-1 {
  border-top-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-end-2 {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-end-3 {
  border-top-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-end-4 {
  border-top-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-end-5 {
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-end-circle {
  border-top-right-radius: 50% !important;
  border-bottom-right-radius: 50% !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-end-pill {
  border-top-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-bottom {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-bottom-0 {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-bottom-1 {
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-bottom-2 {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-bottom-3 {
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-bottom-4 {
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-bottom-5 {
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-bottom-circle {
  border-bottom-right-radius: 50% !important;
  border-bottom-left-radius: 50% !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-bottom-pill {
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-start {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-start-0 {
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-start-1 {
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
  border-top-left-radius: var(--bs-border-radius-sm) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-start-2 {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-start-3 {
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
  border-top-left-radius: var(--bs-border-radius-lg) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-start-4 {
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
  border-top-left-radius: var(--bs-border-radius-xl) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-start-5 {
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-start-circle {
  border-bottom-left-radius: 50% !important;
  border-top-left-radius: 50% !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-start-pill {
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
  border-top-left-radius: var(--bs-border-radius-pill) !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.visible {
  visibility: visible !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.invisible {
  visibility: hidden !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.z-n1 {
  z-index: -1 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.z-0 {
  z-index: 0 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.z-1 {
  z-index: 1 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.z-2 {
  z-index: 2 !important;
}

/* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.z-3 {
  z-index: 3 !important;
}

@media (min-width: 576px) {
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .float-sm-start {
    float: left !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .float-sm-end {
    float: right !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .float-sm-none {
    float: none !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .object-fit-sm-contain {
    object-fit: contain !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .object-fit-sm-cover {
    object-fit: cover !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .object-fit-sm-fill {
    object-fit: fill !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .object-fit-sm-scale {
    object-fit: scale-down !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .object-fit-sm-none {
    object-fit: none !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-sm-inline {
    display: inline !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-sm-inline-block {
    display: inline-block !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-sm-block {
    display: block !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-sm-grid {
    display: grid !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-sm-inline-grid {
    display: inline-grid !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-sm-table {
    display: table !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-sm-table-row {
    display: table-row !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-sm-table-cell {
    display: table-cell !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-sm-flex {
    display: flex !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-sm-none {
    display: none !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-sm-row {
    flex-direction: row !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-sm-column {
    flex-direction: column !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-sm-center {
    justify-content: center !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-sm-center {
    align-items: center !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-sm-center {
    align-content: center !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-sm-between {
    align-content: space-between !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-sm-around {
    align-content: space-around !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-sm-auto {
    align-self: auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-sm-center {
    align-self: center !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-sm-first {
    order: -1 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-sm-0 {
    order: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-sm-1 {
    order: 1 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-sm-2 {
    order: 2 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-sm-3 {
    order: 3 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-sm-4 {
    order: 4 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-sm-5 {
    order: 5 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-sm-last {
    order: 6 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-sm-0 {
    margin: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-sm-3 {
    margin: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-sm-5 {
    margin: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-sm-auto {
    margin: auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-sm-auto {
    margin-top: auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-sm-0 {
    margin-right: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-sm-auto {
    margin-right: auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-sm-auto {
    margin-left: auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-sm-0 {
    padding: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-sm-3 {
    padding: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-sm-5 {
    padding: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-sm-0 {
    gap: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-sm-1 {
    gap: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-sm-2 {
    gap: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-sm-3 {
    gap: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-sm-4 {
    gap: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-sm-5 {
    gap: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .row-gap-sm-0 {
    row-gap: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .row-gap-sm-1 {
    row-gap: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .row-gap-sm-2 {
    row-gap: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .row-gap-sm-3 {
    row-gap: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .row-gap-sm-4 {
    row-gap: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .row-gap-sm-5 {
    row-gap: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .column-gap-sm-0 {
    column-gap: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .column-gap-sm-1 {
    column-gap: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .column-gap-sm-2 {
    column-gap: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .column-gap-sm-3 {
    column-gap: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .column-gap-sm-4 {
    column-gap: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .column-gap-sm-5 {
    column-gap: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .text-sm-start {
    text-align: left !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .text-sm-end {
    text-align: right !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .float-md-start {
    float: left !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .float-md-end {
    float: right !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .float-md-none {
    float: none !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .object-fit-md-contain {
    object-fit: contain !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .object-fit-md-cover {
    object-fit: cover !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .object-fit-md-fill {
    object-fit: fill !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .object-fit-md-scale {
    object-fit: scale-down !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .object-fit-md-none {
    object-fit: none !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-md-inline {
    display: inline !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-md-inline-block {
    display: inline-block !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-md-block {
    display: block !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-md-grid {
    display: grid !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-md-inline-grid {
    display: inline-grid !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-md-table {
    display: table !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-md-table-row {
    display: table-row !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-md-table-cell {
    display: table-cell !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-md-flex {
    display: flex !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-md-none {
    display: none !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-md-row {
    flex-direction: row !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-md-column {
    flex-direction: column !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-md-center {
    justify-content: center !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-md-start {
    align-items: flex-start !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-md-end {
    align-items: flex-end !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-md-center {
    align-items: center !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-md-start {
    align-content: flex-start !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-md-end {
    align-content: flex-end !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-md-center {
    align-content: center !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-md-between {
    align-content: space-between !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-md-around {
    align-content: space-around !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-md-auto {
    align-self: auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-md-start {
    align-self: flex-start !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-md-end {
    align-self: flex-end !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-md-center {
    align-self: center !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-md-first {
    order: -1 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-md-0 {
    order: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-md-1 {
    order: 1 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-md-2 {
    order: 2 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-md-3 {
    order: 3 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-md-4 {
    order: 4 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-md-5 {
    order: 5 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-md-last {
    order: 6 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-md-0 {
    margin: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-md-1 {
    margin: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-md-2 {
    margin: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-md-3 {
    margin: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-md-4 {
    margin: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-md-5 {
    margin: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-md-auto {
    margin: auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-md-0 {
    margin-top: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-md-auto {
    margin-top: auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-md-0 {
    margin-right: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-md-3 {
    margin-right: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-md-5 {
    margin-right: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-md-auto {
    margin-right: auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-md-0 {
    margin-left: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-md-auto {
    margin-left: auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-md-0 {
    padding: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-md-1 {
    padding: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-md-2 {
    padding: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-md-3 {
    padding: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-md-4 {
    padding: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-md-5 {
    padding: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-md-0 {
    padding-top: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-md-0 {
    padding-right: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-md-0 {
    padding-left: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-md-5 {
    padding-left: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-md-0 {
    gap: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-md-1 {
    gap: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-md-2 {
    gap: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-md-3 {
    gap: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-md-4 {
    gap: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-md-5 {
    gap: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .row-gap-md-0 {
    row-gap: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .row-gap-md-1 {
    row-gap: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .row-gap-md-2 {
    row-gap: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .row-gap-md-3 {
    row-gap: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .row-gap-md-4 {
    row-gap: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .row-gap-md-5 {
    row-gap: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .column-gap-md-0 {
    column-gap: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .column-gap-md-1 {
    column-gap: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .column-gap-md-2 {
    column-gap: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .column-gap-md-3 {
    column-gap: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .column-gap-md-4 {
    column-gap: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .column-gap-md-5 {
    column-gap: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .text-md-start {
    text-align: left !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .text-md-end {
    text-align: right !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .float-lg-start {
    float: left !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .float-lg-end {
    float: right !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .float-lg-none {
    float: none !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .object-fit-lg-contain {
    object-fit: contain !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .object-fit-lg-cover {
    object-fit: cover !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .object-fit-lg-fill {
    object-fit: fill !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .object-fit-lg-scale {
    object-fit: scale-down !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .object-fit-lg-none {
    object-fit: none !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-lg-inline {
    display: inline !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-lg-inline-block {
    display: inline-block !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-lg-block {
    display: block !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-lg-grid {
    display: grid !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-lg-inline-grid {
    display: inline-grid !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-lg-table {
    display: table !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-lg-table-row {
    display: table-row !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-lg-table-cell {
    display: table-cell !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-lg-flex {
    display: flex !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-lg-none {
    display: none !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-lg-row {
    flex-direction: row !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-lg-column {
    flex-direction: column !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-lg-center {
    justify-content: center !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-lg-center {
    align-items: center !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-lg-center {
    align-content: center !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-lg-between {
    align-content: space-between !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-lg-around {
    align-content: space-around !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-lg-auto {
    align-self: auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-lg-center {
    align-self: center !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-lg-first {
    order: -1 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-lg-0 {
    order: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-lg-1 {
    order: 1 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-lg-2 {
    order: 2 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-lg-3 {
    order: 3 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-lg-4 {
    order: 4 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-lg-5 {
    order: 5 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-lg-last {
    order: 6 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-lg-0 {
    margin: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-lg-3 {
    margin: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-lg-5 {
    margin: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-lg-auto {
    margin: auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-lg-auto {
    margin-top: auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-lg-0 {
    margin-right: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-lg-auto {
    margin-right: auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-lg-auto {
    margin-left: auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-lg-0 {
    padding: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-lg-3 {
    padding: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-lg-5 {
    padding: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-lg-0 {
    gap: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-lg-1 {
    gap: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-lg-2 {
    gap: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-lg-3 {
    gap: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-lg-4 {
    gap: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-lg-5 {
    gap: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .row-gap-lg-0 {
    row-gap: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .row-gap-lg-1 {
    row-gap: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .row-gap-lg-2 {
    row-gap: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .row-gap-lg-3 {
    row-gap: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .row-gap-lg-4 {
    row-gap: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .row-gap-lg-5 {
    row-gap: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .column-gap-lg-0 {
    column-gap: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .column-gap-lg-1 {
    column-gap: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .column-gap-lg-2 {
    column-gap: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .column-gap-lg-3 {
    column-gap: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .column-gap-lg-4 {
    column-gap: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .column-gap-lg-5 {
    column-gap: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .text-lg-start {
    text-align: left !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .text-lg-end {
    text-align: right !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .float-xl-start {
    float: left !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .float-xl-end {
    float: right !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .float-xl-none {
    float: none !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .object-fit-xl-contain {
    object-fit: contain !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .object-fit-xl-cover {
    object-fit: cover !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .object-fit-xl-fill {
    object-fit: fill !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .object-fit-xl-scale {
    object-fit: scale-down !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .object-fit-xl-none {
    object-fit: none !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xl-inline {
    display: inline !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xl-inline-block {
    display: inline-block !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xl-block {
    display: block !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xl-grid {
    display: grid !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xl-inline-grid {
    display: inline-grid !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xl-table {
    display: table !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xl-table-row {
    display: table-row !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xl-table-cell {
    display: table-cell !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xl-flex {
    display: flex !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xl-none {
    display: none !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xl-row {
    flex-direction: row !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xl-column {
    flex-direction: column !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-xl-center {
    justify-content: center !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-xl-center {
    align-items: center !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-xl-center {
    align-content: center !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-xl-between {
    align-content: space-between !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-xl-around {
    align-content: space-around !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-xl-auto {
    align-self: auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-xl-center {
    align-self: center !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-xl-first {
    order: -1 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-xl-0 {
    order: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-xl-1 {
    order: 1 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-xl-2 {
    order: 2 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-xl-3 {
    order: 3 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-xl-4 {
    order: 4 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-xl-5 {
    order: 5 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-xl-last {
    order: 6 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xl-0 {
    margin: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xl-3 {
    margin: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xl-5 {
    margin: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xl-auto {
    margin: auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xl-auto {
    margin-top: auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xl-0 {
    margin-right: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xl-auto {
    margin-right: auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xl-auto {
    margin-left: auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-xl-0 {
    padding: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-xl-3 {
    padding: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-xl-5 {
    padding: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-xl-0 {
    gap: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-xl-1 {
    gap: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-xl-2 {
    gap: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-xl-3 {
    gap: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-xl-4 {
    gap: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-xl-5 {
    gap: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .row-gap-xl-0 {
    row-gap: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .row-gap-xl-1 {
    row-gap: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .row-gap-xl-2 {
    row-gap: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .row-gap-xl-3 {
    row-gap: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .row-gap-xl-4 {
    row-gap: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .row-gap-xl-5 {
    row-gap: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .column-gap-xl-0 {
    column-gap: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .column-gap-xl-1 {
    column-gap: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .column-gap-xl-2 {
    column-gap: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .column-gap-xl-3 {
    column-gap: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .column-gap-xl-4 {
    column-gap: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .column-gap-xl-5 {
    column-gap: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .text-xl-start {
    text-align: left !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .text-xl-end {
    text-align: right !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .text-xl-center {
    text-align: center !important;
  }
}

@media (min-width: 1400px) {
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .float-xxl-start {
    float: left !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .float-xxl-end {
    float: right !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .float-xxl-none {
    float: none !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .object-fit-xxl-contain {
    object-fit: contain !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .object-fit-xxl-cover {
    object-fit: cover !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .object-fit-xxl-fill {
    object-fit: fill !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .object-fit-xxl-scale {
    object-fit: scale-down !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .object-fit-xxl-none {
    object-fit: none !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xxl-inline {
    display: inline !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xxl-block {
    display: block !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xxl-grid {
    display: grid !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xxl-inline-grid {
    display: inline-grid !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xxl-table {
    display: table !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xxl-table-row {
    display: table-row !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xxl-flex {
    display: flex !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xxl-none {
    display: none !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xxl-row {
    flex-direction: row !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xxl-column {
    flex-direction: column !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-xxl-center {
    align-items: center !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-xxl-center {
    align-content: center !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-xxl-center {
    align-self: center !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-xxl-first {
    order: -1 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-xxl-0 {
    order: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-xxl-1 {
    order: 1 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-xxl-2 {
    order: 2 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-xxl-3 {
    order: 3 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-xxl-4 {
    order: 4 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-xxl-5 {
    order: 5 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-xxl-last {
    order: 6 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xxl-0 {
    margin: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xxl-3 {
    margin: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xxl-5 {
    margin: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xxl-auto {
    margin: auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xxl-auto {
    margin-right: auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-xxl-0 {
    padding: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-xxl-3 {
    padding: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-xxl-5 {
    padding: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-xxl-0 {
    gap: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-xxl-1 {
    gap: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-xxl-2 {
    gap: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-xxl-3 {
    gap: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-xxl-4 {
    gap: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-xxl-5 {
    gap: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .row-gap-xxl-0 {
    row-gap: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .row-gap-xxl-1 {
    row-gap: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .row-gap-xxl-2 {
    row-gap: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .row-gap-xxl-3 {
    row-gap: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .row-gap-xxl-4 {
    row-gap: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .row-gap-xxl-5 {
    row-gap: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .column-gap-xxl-0 {
    column-gap: 0 !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .column-gap-xxl-1 {
    column-gap: 0.25rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .column-gap-xxl-2 {
    column-gap: 0.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .column-gap-xxl-3 {
    column-gap: 1rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .column-gap-xxl-4 {
    column-gap: 1.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .column-gap-xxl-5 {
    column-gap: 3rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .text-xxl-start {
    text-align: left !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .text-xxl-end {
    text-align: right !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .text-xxl-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .fs-1 {
    font-size: 2.5rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .fs-2 {
    font-size: 2rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .fs-3 {
    font-size: 1.75rem !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .fs-4 {
    font-size: 1.5rem !important;
  }
}

@media print {
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-print-inline {
    display: inline !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-print-inline-block {
    display: inline-block !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-print-block {
    display: block !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-print-grid {
    display: grid !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-print-inline-grid {
    display: inline-grid !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-print-table {
    display: table !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-print-table-row {
    display: table-row !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-print-table-cell {
    display: table-cell !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-print-flex {
    display: flex !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  /* line 67, ../usr/local/bundle/ruby/3.4.0/gems/bootstrap-5.3.5/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-print-none {
    display: none !important;
  }
}

/* line 1, app/assets/stylesheets/website/components/_btn.scss */
.btn {
  padding: 5px 5px;
  font-size: 1.1rem;
  border-radius: 10px;
}

/* Exception pour le bouton submit de souscription (orange) */
/* line 8, app/assets/stylesheets/website/components/_btn.scss */
a.btn-submit, button.btn-submit, .btn-submit {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%) !important;
  color: white !important;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3) !important;
  border: none !important;
}

/* line 14, app/assets/stylesheets/website/components/_btn.scss */
a.btn-submit:hover:not(:disabled), button.btn-submit:hover:not(:disabled), .btn-submit:hover:not(:disabled) {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%) !important;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4) !important;
  transform: translateY(-2px);
}

/* line 20, app/assets/stylesheets/website/components/_btn.scss */
a.btn-submit:focus, button.btn-submit:focus, .btn-submit:focus {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%) !important;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3) !important;
}

/* Correction des boutons Bootstrap qui deviennent bleus */
/* line 27, app/assets/stylesheets/website/components/_btn.scss */
.btn-secondary, .crm-action-button.crm-action-button-secondary {
  background-color: rgba(255, 255, 255, 0.15) !important;
  color: white !important;
}

/* line 30, app/assets/stylesheets/website/components/_btn.scss */
.btn-secondary:hover, .crm-action-button.crm-action-button-secondary:hover {
  background-color: rgba(255, 255, 255, 0.25) !important;
  color: white !important;
}

/* Styles pour les thèmes */
/* line 38, app/assets/stylesheets/website/components/_btn.scss */
.lightmode a.btn, .lightmode button.btn, .lightmode .btn {
  background-color: rgba(33, 37, 41, 0.15) !important;
  color: #212529 !important;
  border: 1px solid rgba(33, 37, 41, 0.3) !important;
}

/* line 43, app/assets/stylesheets/website/components/_btn.scss */
.lightmode a.btn:hover, .lightmode button.btn:hover, .lightmode .btn:hover {
  background-color: rgba(33, 37, 41, 0.25) !important;
  color: #212529 !important;
  border-color: rgba(33, 37, 41, 0.4) !important;
}

/* line 49, app/assets/stylesheets/website/components/_btn.scss */
.lightmode a.btn:focus, .lightmode button.btn:focus, .lightmode .btn:focus {
  background-color: rgba(33, 37, 41, 0.25) !important;
  color: #212529 !important;
  border-color: rgba(33, 37, 41, 0.4) !important;
  box-shadow: 0 0 0 0.2rem rgba(33, 37, 41, 0.25) !important;
}

/* line 57, app/assets/stylesheets/website/components/_btn.scss */
.lightmode .btn-secondary, .lightmode .crm-action-button.crm-action-button-secondary {
  background-color: rgba(33, 37, 41, 0.15) !important;
  color: #212529 !important;
  border: 1px solid rgba(33, 37, 41, 0.3) !important;
}

/* line 62, app/assets/stylesheets/website/components/_btn.scss */
.lightmode .btn-secondary:hover, .lightmode .crm-action-button.crm-action-button-secondary:hover {
  background-color: rgba(33, 37, 41, 0.25) !important;
  color: #212529 !important;
}

/* Correction des fonds blancs illisibles sur les pages website */
/* line 70, app/assets/stylesheets/website/components/_btn.scss */
.content {
  background-color: transparent !important;
}

/* line 1, app/assets/stylesheets/website/components/_arrow.scss */
.arrow {
  position: absolute;
  bottom: 12%;
  right: 10%;
  transform: translateY(-50%);
  cursor: pointer;
}

/* line 9, app/assets/stylesheets/website/components/_arrow.scss */
.arrow span {
  display: block;
  width: 1.5vw;
  height: 1.5vw;
  border-bottom: 5px solid white;
  border-right: 5px solid white;
  transform: rotate(45deg);
  margin: -10px;
  animation: animate 2s infinite;
}

/* line 20, app/assets/stylesheets/website/components/_arrow.scss */
.arrow span:nth-child(2) {
  animation-delay: -0.2s;
}

/* line 24, app/assets/stylesheets/website/components/_arrow.scss */
.arrow span:nth-child(3) {
  animation-delay: -0.4s;
}

@keyframes animate {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-20px, -20px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(20px, 20px);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    z-index: -1;
  }
}

/* line 10, app/assets/stylesheets/website/components/_flashes.scss */
.alert {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 5px;
  right: 16px;
  z-index: 1000;
  color: #FFFFFF;
  border-radius: 10px;
  background-color: #A60240;
  animation: fadeOut 3s forwards;
  animation-delay: 2s;
  text-align: center;
}

/* line 26, app/assets/stylesheets/website/components/_flashes.scss */
.btn-close {
  scale: 0.5;
  margin-left: 12px;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.2rem;
  cursor: pointer;
  pointer-events: auto;
}

/* line 37, app/assets/stylesheets/website/components/_flashes.scss */
.notice {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 5px;
  right: 16px;
  z-index: 1000;
  color: #FFFFFF;
  border-radius: 10px;
  background-color: #5bb500b5;
  padding: 12px 20px;
  gap: 8px;
  animation: fadeOut 3s forwards;
  animation-delay: 2s;
  text-align: center;
}

/* line 55, app/assets/stylesheets/website/components/_flashes.scss */
.alert {
  padding: 12px 20px;
  gap: 8px;
}

/* line 61, app/assets/stylesheets/website/components/_flashes.scss */
.alert,
.notice {
  pointer-events: none;
}

/* line 66, app/assets/stylesheets/website/components/_flashes.scss */
.alert button,
.alert a,
.notice button,
.notice a {
  pointer-events: auto;
}

/* line 73, app/assets/stylesheets/website/components/_flashes.scss */
.fade-out {
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Structure principale de la navbar */
/* line 3, app/assets/stylesheets/website/components/_website_navbar.scss */
.navbar-container {
  position: fixed;
  top: 1%;
  left: 1.5%;
  right: 1.5%;
  border-radius: 10px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 3rem;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px) !important;
  /* Transition pour l'apparition/disparition */
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease, visibility 0.6s ease;
  /* État initial - complètement transparent */
  /* État avec fond léger */
  /* État avec fond plus prononcé */
  /* Animation d'entrée */
  animation: navbarFadeIn 0.6s ease-out;
  /* Classe pour l'apparition avec le reveal */
}

/* line 22, app/assets/stylesheets/website/components/_website_navbar.scss */
.navbar-container.navbar-transparent {
  background: rgba(0, 0, 0, 0) !important;
  box-shadow: none !important;
  border: none !important;
}

/* line 29, app/assets/stylesheets/website/components/_website_navbar.scss */
.navbar-container.navbar-light {
  background: rgba(0, 0, 0, 0.4) !important;
  backdrop-filter: blur(12px) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* line 48, app/assets/stylesheets/website/components/_website_navbar.scss */
.navbar-container.navbar-revealed {
  opacity: 1;
  visibility: visible;
  animation: navbarRevealIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Par défaut (desktop/tablette), le CTA mobile n'est pas affiché */
/* line 56, app/assets/stylesheets/website/components/_website_navbar.scss */
.navbar-cta-mobile {
  display: none;
}

/* CTA desktop à droite du burger */
/* line 59, app/assets/stylesheets/website/components/_website_navbar.scss */
.navbar-cta-desktop {
  display: flex;
  align-items: center;
  margin-left: 1rem;
  flex-shrink: 0;
}

/* line 66, app/assets/stylesheets/website/components/_website_navbar.scss */
.btn-cta-navbar {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.5rem 1.2rem;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

/* line 82, app/assets/stylesheets/website/components/_website_navbar.scss */
.btn-cta-navbar:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  text-decoration: none;
  color: #fff;
}

/* line 90, app/assets/stylesheets/website/components/_website_navbar.scss */
.btn-cta-navbar .btn-orizen-logo {
  height: 14px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

/* line 98, app/assets/stylesheets/website/components/_website_navbar.scss */
.btn-cta-navbar span {
  line-height: 1;
}

/* Logo ForgeTheWeb - style récupéré du floating-link */
/* line 104, app/assets/stylesheets/website/components/_website_navbar.scss */
.navbar-logo {
  flex-shrink: 0;
}

/* line 107, app/assets/stylesheets/website/components/_website_navbar.scss */
.navbar-logo .navbar-brand {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  font-size: 2.5rem;
  font-weight: bold;
  font-family: 'Poppins';
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
  /* Style du O avec la ligne qui barre */
  /* Style pour l'image du logo ForgeTheWeb */
}

/* line 122, app/assets/stylesheets/website/components/_website_navbar.scss */
.navbar-logo .navbar-brand:hover {
  color: #FFFFFF;
  transform: scale(1.05);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* line 129, app/assets/stylesheets/website/components/_website_navbar.scss */
.navbar-logo .navbar-brand .o-brandname {
  position: relative;
  display: flex;
  align-items: center;
  padding: 3px;
  margin-right: 6px;
}

/* line 136, app/assets/stylesheets/website/components/_website_navbar.scss */
.navbar-logo .navbar-brand .o-brandname span {
  position: relative;
  font-size: 5.5rem;
  font-weight: bold;
  font-family: 'Poppins';
}

/* line 144, app/assets/stylesheets/website/components/_website_navbar.scss */
.navbar-logo .navbar-brand .cross-line-brandname {
  position: absolute;
  z-index: 300;
  width: 110%;
  height: 0;
  top: 50%;
  left: -5%;
  transform: translateY(-50%);
  border-bottom: 4px solid #FFFFFF;
  margin-right: 6px;
}

/* line 156, app/assets/stylesheets/website/components/_website_navbar.scss */
.navbar-logo .navbar-brand p {
  font-size: 2.2rem;
  font-weight: bold;
  font-family: 'Poppins';
  margin-bottom: 0rem;
  letter-spacing: 0.2em;
}

/* line 165, app/assets/stylesheets/website/components/_website_navbar.scss */
.navbar-logo .navbar-brand .navbar-logo-img {
  height: 50px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: brightness(1.1);
}

/* Navigation centrale - repositionnée à droite et sans fond propre */
/* line 177, app/assets/stylesheets/website/components/_website_navbar.scss */
.nav-bar {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  list-style: none;
  align-items: center;
  background: transparent;
  border: none;
  margin-left: auto;
  /* Pousse le menu vers la droite */
}

/* Suppression des états de background pour nav-bar car maintenant géré par le container */
/* line 192, app/assets/stylesheets/website/components/_website_navbar.scss */
.nav-bar.navbar-transparent,
.nav-bar.navbar-light,
.nav-bar.navbar-solid {
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  border: none;
}

/* Animation d'apparition de la navbar */
@keyframes navbarFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation d'apparition avec le reveal */
@keyframes navbarRevealIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Amélioration de la transition pour tous les éléments enfants */
/* line 226, app/assets/stylesheets/website/components/_website_navbar.scss */
.nav-bar * {
  transition: all 0.3s ease;
}

/* Ajustements responsifs pour l'effet de navigation */
@media (max-width: 768px) {
  /* line 232, app/assets/stylesheets/website/components/_website_navbar.scss */
  .navbar-container {
    padding: 1rem 1.5rem;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 8px;
  }
  /* line 238, app/assets/stylesheets/website/components/_website_navbar.scss */
  .navbar-container.navbar-light {
    backdrop-filter: blur(4px);
  }
  /* line 242, app/assets/stylesheets/website/components/_website_navbar.scss */
  .navbar-container.navbar-solid {
    backdrop-filter: blur(8px);
  }
  /* Ajuster la taille du logo sur mobile */
  /* line 248, app/assets/stylesheets/website/components/_website_navbar.scss */
  .navbar-logo .navbar-brand {
    font-size: 1.5rem;
  }
  /* line 251, app/assets/stylesheets/website/components/_website_navbar.scss */
  .navbar-logo .navbar-brand .o-brandname span {
    font-size: 4rem;
  }
  /* line 255, app/assets/stylesheets/website/components/_website_navbar.scss */
  .navbar-logo .navbar-brand p {
    font-size: 1.5rem;
  }
  /* line 259, app/assets/stylesheets/website/components/_website_navbar.scss */
  .navbar-logo .navbar-brand .navbar-logo-img {
    height: 35px;
    max-width: 150px;
  }
  /* Mobile: n'afficher que le logo + CTA mobile, masquer la navigation desktop */
  /* line 266, app/assets/stylesheets/website/components/_website_navbar.scss */
  .nav-bar {
    display: none !important;
  }
  /* Le logo ne s'étire pas pour laisser la place au CTA */
  /* line 269, app/assets/stylesheets/website/components/_website_navbar.scss */
  .navbar-logo {
    flex: 0 1 auto;
  }
  /* line 270, app/assets/stylesheets/website/components/_website_navbar.scss */
  .navbar-logo .navbar-brand {
    justify-content: flex-start;
    gap: 8px;
    white-space: nowrap;
  }
  /* CTA mobile à droite du logo */
  /* line 273, app/assets/stylesheets/website/components/_website_navbar.scss */
  .navbar-cta-mobile {
    margin-left: auto;
    display: block;
    flex: 0 0 auto;
    margin-right: 0rem;
    /* Ajouter un espacement à droite */
  }
  /* line 279, app/assets/stylesheets/website/components/_website_navbar.scss */
  .btn-preinscription-mobile {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0.4rem 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
  }
  /* line 291, app/assets/stylesheets/website/components/_website_navbar.scss */
  .btn-preinscription-mobile:hover {
    text-decoration: none;
    color: #fff;
  }
  /* line 296, app/assets/stylesheets/website/components/_website_navbar.scss */
  .btn-preinscription-mobile .btn-orizen-logo {
    height: 12px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
  }
  /* line 304, app/assets/stylesheets/website/components/_website_navbar.scss */
  .btn-preinscription-mobile span {
    line-height: 1;
  }
}

@media (max-width: 480px) {
  /* line 311, app/assets/stylesheets/website/components/_website_navbar.scss */
  .navbar-container {
    padding: 0.75rem 1rem;
    flex-direction: row;
    /* conserver logo + CTA sur une ligne */
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
  }
  /* line 320, app/assets/stylesheets/website/components/_website_navbar.scss */
  .navbar-logo .navbar-brand {
    font-size: 1.25rem;
  }
  /* line 323, app/assets/stylesheets/website/components/_website_navbar.scss */
  .navbar-logo .navbar-brand .o-brandname span {
    font-size: 3rem;
  }
  /* line 327, app/assets/stylesheets/website/components/_website_navbar.scss */
  .navbar-logo .navbar-brand p {
    font-size: 1.25rem;
  }
  /* line 331, app/assets/stylesheets/website/components/_website_navbar.scss */
  .navbar-logo .navbar-brand .navbar-logo-img {
    height: 30px;
    max-width: 120px;
  }
  /* line 337, app/assets/stylesheets/website/components/_website_navbar.scss */
  .nav-bar {
    padding: 0.75rem 1rem;
    margin-left: 0;
    /* Reset margin sur mobile */
  }
  /* Assure que le CTA ne passe jamais à la ligne */
  /* line 343, app/assets/stylesheets/website/components/_website_navbar.scss */
  .navbar-cta-mobile {
    display: block;
    flex: 0 0 auto;
  }
  /* line 344, app/assets/stylesheets/website/components/_website_navbar.scss */
  .btn-preinscription-mobile {
    white-space: nowrap;
    font-size: 0.85rem;
  }
  /* Masquer le CTA desktop sur mobile */
  /* line 350, app/assets/stylesheets/website/components/_website_navbar.scss */
  .navbar-cta-desktop {
    display: none !important;
  }
}

/* Support pour les navigateurs qui ne supportent pas backdrop-filter */
@supports not (backdrop-filter: blur(1px)) {
  /* line 356, app/assets/stylesheets/website/components/_website_navbar.scss */
  .navbar-container.navbar-transparent {
    background: rgba(0, 0, 0, 0.1);
  }
  /* line 360, app/assets/stylesheets/website/components/_website_navbar.scss */
  .navbar-container.navbar-light {
    background: rgba(0, 0, 0, 0.4);
  }
  /* line 364, app/assets/stylesheets/website/components/_website_navbar.scss */
  .navbar-container.navbar-solid {
    background: rgba(0, 0, 0, 0.8);
  }
}

/* Suppression de l'outline de focus pour éliminer la bordure blanche */
/* line 371, app/assets/stylesheets/website/components/_website_navbar.scss */
.navbar-container:focus-within {
  outline: none;
}

/* line 375, app/assets/stylesheets/website/components/_website_navbar.scss */
.show {
  opacity: 1 !important;
  visibility: visible !important;
}

/* line 380, app/assets/stylesheets/website/components/_website_navbar.scss */
.nav-item {
  text-align: right;
  transition: color 0.3s ease;
  /* Assurer la lisibilité du texte sur tous les backgrounds */
}

/* line 385, app/assets/stylesheets/website/components/_website_navbar.scss */
.nav-item .nav-link {
  position: relative;
  z-index: 2;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  /* Empêcher le changement de couleur au hover */
}

/* line 394, app/assets/stylesheets/website/components/_website_navbar.scss */
.nav-item .nav-link:hover {
  color: #FFFFFF !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* line 401, app/assets/stylesheets/website/components/_website_navbar.scss */
.nav-item:hover {
  color: #FFFFFF;
  /* Garder la couleur blanche */
}

/* line 405, app/assets/stylesheets/website/components/_website_navbar.scss */
.vertical-line {
  width: 2px;
  /* Épaisseur du trait */
  background-color: #FFFFFF;
  /* Couleur blanche */
  margin: 4px 20px;
  /* Espacement horizontal autour du trait */
  border-radius: 2px;
  /* Optionnel : arrondit les bords pour un effet plus doux */
  height: 25px;
}

@media (min-width: 950px) and (max-width: 1100px) {
  /* line 405, app/assets/stylesheets/website/components/_website_navbar.scss */
  .vertical-line {
    margin: 4px 5px;
  }
}

@media (max-width: 800px) {
  /* line 405, app/assets/stylesheets/website/components/_website_navbar.scss */
  .vertical-line {
    display: none;
  }
}

/* Le bouton "Accéder à Orizen" est maintenant directement visible dans la navbar */
/* line 422, app/assets/stylesheets/website/components/_website_navbar.scss */
.nav-background {
  background: transparent;
  min-height: clamp(64px, 8vw, 100px);
  padding-top: auto;
  padding-bottom: auto;
}

/* line 430, app/assets/stylesheets/website/components/_website_navbar.scss */
.sommaire {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

@media (max-width: 800px) {
  /* line 430, app/assets/stylesheets/website/components/_website_navbar.scss */
  .sommaire {
    display: none;
  }
}

/* .connexion supprimé — le bouton btn-cta-menu est maintenant directement dans .nav-bar */
/* Bouton secondaire "Demander une démo" dans la navbar */
/* line 443, app/assets/stylesheets/website/components/_website_navbar.scss */
.btn-demo-navbar {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 0.5rem 1.2rem;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  text-decoration: none;
  margin-left: 0.75rem;
}

/* line 457, app/assets/stylesheets/website/components/_website_navbar.scss */
.btn-demo-navbar:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  text-decoration: none;
  color: #fff;
}

/* Bouton Accéder à Orizen — réutilise btn-demo-navbar, ajoute layout pour icône/logo */
/* line 467, app/assets/stylesheets/website/components/_website_navbar.scss */
.btn-navbar-login {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 472, app/assets/stylesheets/website/components/_website_navbar.scss */
.btn-navbar-login i {
  font-size: 0.85rem;
}

/* line 476, app/assets/stylesheets/website/components/_website_navbar.scss */
.btn-navbar-login .btn-navbar-login-logo {
  height: 14px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Ordre des éléments dans nav-bar */
/* line 485, app/assets/stylesheets/website/components/_website_navbar.scss */
.navbar-cta-desktop {
  order: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* line 493, app/assets/stylesheets/website/components/_website_navbar.scss */
.nav-bar .btn-navbar-login {
  order: 2;
}

/* Conteneur principal */
/* line 2, app/assets/stylesheets/website/components/_wordslider.scss */
.hero {
  position: relative;
}

/* Conteneur du word-slider */
/* line 7, app/assets/stylesheets/website/components/_wordslider.scss */
.word-slider {
  width: 200px;
  /* Ajustez la largeur selon votre design */
  height: 50px;
  /* Correspond à la hauteur d'un mot */
  overflow: hidden;
  text-align: center;
}

/* Wrapper pour le défilement */
/* line 15, app/assets/stylesheets/website/components/_wordslider.scss */
.word-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  animation: slide 6s infinite;
}

/* Mots individuels */
/* line 23, app/assets/stylesheets/website/components/_wordslider.scss */
.word {
  font-size: 2rem;
  /* Taille ajustée */
  font-weight: bold;
  line-height: 50px;
  /* Alignement vertical */
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A60240;
}

/* Alignement horizontal du texte et du word-slider */
/* line 35, app/assets/stylesheets/website/components/_wordslider.scss */
#hero .text-content .d-flex.align-items-center {
  display: flex;
  align-items: center;
  /* Aligne les items horizontalement */
  gap: 15px;
  /* Espacement entre le <h2> et le word-slider */
}

/* Animation pour le défilement */
@keyframes slide {
  0% {
    transform: translateY(0);
  }
  /* Premier mot visible */
  15% {
    transform: translateY(0);
  }
  /* Premier mot reste visible */
  20% {
    transform: translateY(-10px);
  }
  /* Rebond du premier mot */
  25% {
    transform: translateY(0);
  }
  /* Retour après rebond */
  33% {
    transform: translateY(-50px);
  }
  /* Transition vers le second mot */
  48% {
    transform: translateY(-50px);
  }
  /* Second mot reste visible */
  53% {
    transform: translateY(-60px);
  }
  /* Rebond du second mot */
  58% {
    transform: translateY(-50px);
  }
  /* Retour après rebond */
  66% {
    transform: translateY(-100px);
  }
  /* Transition vers le troisième mot */
  81% {
    transform: translateY(-100px);
  }
  /* Troisième mot reste visible */
  86% {
    transform: translateY(-110px);
  }
  /* Rebond du troisième mot */
  91% {
    transform: translateY(-100px);
  }
  /* Retour après rebond */
  100% {
    transform: translateY(-150px);
  }
  /* Transition vers la copie du premier mot */
}

/* Classe pour cacher le body pendant le chargement initial */
/* line 2, app/assets/stylesheets/website/components/_loading_overlay.scss */
body.loading-page {
  opacity: 0 !important;
  visibility: hidden !important;
  overflow: hidden !important;
}

/* Loader global géré par Stimulus (utilisé pour tout) */
/* line 9, app/assets/stylesheets/website/components/_loading_overlay.scss */
#global-loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  pointer-events: none;
}

/* line 21, app/assets/stylesheets/website/components/_loading_overlay.scss */
#global-loading-overlay.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* line 27, app/assets/stylesheets/website/components/_loading_overlay.scss */
#global-loading-overlay.fading-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* line 34, app/assets/stylesheets/website/components/_loading_overlay.scss */
.loading-overlay-backdrop {
  position: absolute;
  inset: 0;
  /* Dégradé cohérent avec la landing */
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.95) 0%, rgba(166, 2, 64, 0.9) 100%);
  backdrop-filter: blur(8px);
}

/* line 42, app/assets/stylesheets/website/components/_loading_overlay.scss */
.loading-overlay-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0;
  /* pas de carte autour, comme la landing */
  border-radius: 0;
  border: none;
  background: none;
  box-shadow: none;
}

/* line 56, app/assets/stylesheets/website/components/_loading_overlay.scss */
.loading-spinner {
  width: 80px;
  /* comme la landing */
  height: 80px;
  border: 6px solid rgba(255, 255, 255, 0.2);
  border-top: 6px solid #F6E5B3;
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}

/* line 65, app/assets/stylesheets/website/components/_loading_overlay.scss */
.loading-text {
  color: #F6E5B3;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 1px;
  font-family: 'Poppins', sans-serif;
  /* Police cohérente avec la landing */
  animation: pulse 2s ease-in-out infinite;
}

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

@keyframes pulse {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

/* Section Le Problème - Landing Page - Design Moderne */
/* line 3, app/assets/stylesheets/website/components/_problem.scss */
.problem-section {
  background: transparent;
  min-height: 100vh;
  height: auto;
  max-height: none;
  position: relative;
  overflow: visible;
}

/* line 13, app/assets/stylesheets/website/components/_problem.scss */
.problem-section::before {
  display: none;
}

/* line 17, app/assets/stylesheets/website/components/_problem.scss */
.problem-section::after {
  display: none;
}

/* line 24, app/assets/stylesheets/website/components/_problem.scss */
.problem-header-spacer {
  height: 40px;
}

/* line 28, app/assets/stylesheets/website/components/_problem.scss */
.problem-container {
  position: relative;
  z-index: 1;
  padding: 1rem;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-height: calc(100vh - 40px);
  height: auto;
  max-height: none;
  justify-content: center;
  overflow: visible;
}

@media (max-width: 768px) {
  /* line 28, app/assets/stylesheets/website/components/_problem.scss */
  .problem-container {
    padding: 1.5rem 1rem;
    gap: 1.5rem;
  }
}

/* Header amélioré */
/* line 50, app/assets/stylesheets/website/components/_problem.scss */
.problem-header {
  text-align: center;
  margin-bottom: 2rem;
}

/* line 55, app/assets/stylesheets/website/components/_problem.scss */
.problem-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #F6E5B3;
  line-height: 1.1;
  margin: 0 0 20px 0;
}

/* Stats - Design dashboard moderne avec glassmorphism */
/* line 65, app/assets/stylesheets/website/components/_problem.scss */
.problem-stats {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin: 0.5rem 0 0 0;
}

@media (max-width: 768px) {
  /* line 65, app/assets/stylesheets/website/components/_problem.scss */
  .problem-stats {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

/* line 86, app/assets/stylesheets/website/components/_problem.scss */
.stat-card-repetitive {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

/* line 92, app/assets/stylesheets/website/components/_problem.scss */
.stat-card-repetitive .stat-chart {
  flex: 0 0 auto;
  margin-top: 0;
  order: 1;
}

/* line 98, app/assets/stylesheets/website/components/_problem.scss */
.stat-card-repetitive .stat-header {
  flex: 0 0 auto;
  text-align: left;
  order: 2;
}

@media (max-width: 768px) {
  /* line 86, app/assets/stylesheets/website/components/_problem.scss */
  .stat-card-repetitive {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  /* line 109, app/assets/stylesheets/website/components/_problem.scss */
  .stat-card-repetitive .stat-chart {
    order: 1;
  }
  /* line 113, app/assets/stylesheets/website/components/_problem.scss */
  .stat-card-repetitive .stat-header {
    order: 2;
    text-align: center;
  }
}

/* line 121, app/assets/stylesheets/website/components/_problem.scss */
.stat-card-deadlines {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

/* line 127, app/assets/stylesheets/website/components/_problem.scss */
.stat-card-deadlines .stat-header {
  flex: 0 0 auto;
  text-align: left;
}

/* line 132, app/assets/stylesheets/website/components/_problem.scss */
.stat-card-deadlines .stat-chart {
  flex: 0 0 auto;
  margin-top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  /* line 121, app/assets/stylesheets/website/components/_problem.scss */
  .stat-card-deadlines {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  /* line 145, app/assets/stylesheets/website/components/_problem.scss */
  .stat-card-deadlines .stat-header {
    text-align: center;
  }
}

/* line 151, app/assets/stylesheets/website/components/_problem.scss */
.stat-card {
  position: relative;
  background: transparent !important;
  border: none !important;
  border-radius: 0;
  padding: 0;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition: none;
  overflow: visible;
  box-shadow: none !important;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* line 169, app/assets/stylesheets/website/components/_problem.scss */
.stat-card::before {
  display: none !important;
}

/* line 173, app/assets/stylesheets/website/components/_problem.scss */
.stat-card::after {
  display: none !important;
}

/* line 177, app/assets/stylesheets/website/components/_problem.scss */
.stat-card:hover {
  transform: none;
  box-shadow: none !important;
  border-color: transparent !important;
  background: transparent !important;
}

/* line 186, app/assets/stylesheets/website/components/_problem.scss */
.stat-card-hours {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

/* line 192, app/assets/stylesheets/website/components/_problem.scss */
.stat-card-hours .stat-header {
  flex: 0 0 auto;
  text-align: left;
}

/* line 197, app/assets/stylesheets/website/components/_problem.scss */
.stat-card-hours .stat-chart {
  flex: 0 0 auto;
  margin-top: 0;
}

@media (max-width: 768px) {
  /* line 186, app/assets/stylesheets/website/components/_problem.scss */
  .stat-card-hours {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  /* line 207, app/assets/stylesheets/website/components/_problem.scss */
  .stat-card-hours .stat-header {
    text-align: center;
  }
}

/* line 214, app/assets/stylesheets/website/components/_problem.scss */
.stat-card-percentage {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

/* line 220, app/assets/stylesheets/website/components/_problem.scss */
.stat-card-percentage .stat-chart {
  flex: 0 0 auto;
  margin-top: 0;
}

/* line 225, app/assets/stylesheets/website/components/_problem.scss */
.stat-card-percentage .stat-header {
  flex: 0 0 auto;
  text-align: left;
}

@media (max-width: 768px) {
  /* line 214, app/assets/stylesheets/website/components/_problem.scss */
  .stat-card-percentage {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  /* line 235, app/assets/stylesheets/website/components/_problem.scss */
  .stat-card-percentage .stat-header {
    text-align: center;
  }
}

/* line 241, app/assets/stylesheets/website/components/_problem.scss */
.stat-header {
  z-index: 1;
}

/* line 245, app/assets/stylesheets/website/components/_problem.scss */
.stat-number {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 900;
  background: linear-gradient(135deg, #F6E5B3 0%, rgba(246, 229, 179, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -1.5px;
  display: block;
}

/* line 258, app/assets/stylesheets/website/components/_problem.scss */
.stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* line 267, app/assets/stylesheets/website/components/_problem.scss */
.stat-description {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  line-height: 1.3;
  font-weight: 400;
}

/* Graphiques dashboard */
/* line 276, app/assets/stylesheets/website/components/_problem.scss */
.stat-chart {
  position: relative;
  z-index: 1;
}

/* Graphique histogramme pour les heures */
/* line 282, app/assets/stylesheets/website/components/_problem.scss */
.stat-chart-bars {
  height: 120px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

/* line 289, app/assets/stylesheets/website/components/_problem.scss */
.chart-bars-container {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  width: auto;
  height: 100%;
  gap: 0.6rem;
  padding: 0.5rem 0;
}

/* line 299, app/assets/stylesheets/website/components/_problem.scss */
.chart-bar-wrapper {
  flex: 0 0 auto;
  width: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  height: 100%;
}

/* line 309, app/assets/stylesheets/website/components/_problem.scss */
.chart-bar-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 317, app/assets/stylesheets/website/components/_problem.scss */
.chart-bar {
  position: relative;
  width: 50%;
  height: calc(100% - 3rem);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px 6px 0 0;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 329, app/assets/stylesheets/website/components/_problem.scss */
.chart-bar-fill {
  width: 100%;
  border-radius: 6px 6px 0 0;
  transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  height: 0;
}

/* line 337, app/assets/stylesheets/website/components/_problem.scss */
.chart-bar-lost {
  background: linear-gradient(180deg, #FF6B6B 0%, #FF4757 100%);
  box-shadow: 0 0 12px rgba(255, 107, 107, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* line 344, app/assets/stylesheets/website/components/_problem.scss */
.chart-bar-value {
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 700;
  color: #FF6B6B;
  white-space: nowrap;
  opacity: 1;
}

/* Jauge circulaire pour le pourcentage */
/* line 357, app/assets/stylesheets/website/components/_problem.scss */
.stat-chart-gauge {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* line 364, app/assets/stylesheets/website/components/_problem.scss */
.gauge-container {
  position: relative;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

/* line 371, app/assets/stylesheets/website/components/_problem.scss */
.gauge-svg {
  width: 100%;
  height: 100%;
  transform: rotate(0deg);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* line 378, app/assets/stylesheets/website/components/_problem.scss */
.gauge-background {
  transition: stroke 0.3s ease;
}

/* line 382, app/assets/stylesheets/website/components/_problem.scss */
.gauge-progress {
  transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.5));
}

/* line 388, app/assets/stylesheets/website/components/_problem.scss */
.gauge-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

/* line 396, app/assets/stylesheets/website/components/_problem.scss */
.gauge-value {
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #F6E5B3 0%, rgba(246, 229, 179, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -1px;
}

/* Graphique circulaire (pie chart) pour les tâches répétitives */
/* line 409, app/assets/stylesheets/website/components/_problem.scss */
.stat-chart-pie {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* line 416, app/assets/stylesheets/website/components/_problem.scss */
.pie-chart-container {
  position: relative;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

/* line 423, app/assets/stylesheets/website/components/_problem.scss */
.pie-svg {
  width: 100%;
  height: 100%;
  transform: rotate(0deg);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* line 430, app/assets/stylesheets/website/components/_problem.scss */
.pie-background {
  transition: stroke 0.3s ease;
}

/* line 434, app/assets/stylesheets/website/components/_problem.scss */
.pie-segment {
  transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.5));
  animation: pieFill 1.5s ease-out forwards;
}

/* line 440, app/assets/stylesheets/website/components/_problem.scss */
.pie-segment {
  transition: stroke-dasharray 2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 445, app/assets/stylesheets/website/components/_problem.scss */
.pie-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

/* line 453, app/assets/stylesheets/website/components/_problem.scss */
.pie-value {
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #F6E5B3 0%, rgba(246, 229, 179, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -1px;
}

/* Graphique en barres empilées pour les rôles */
/* line 466, app/assets/stylesheets/website/components/_problem.scss */
.stat-chart-stacked {
  height: 140px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

/* line 473, app/assets/stylesheets/website/components/_problem.scss */
.stacked-bars-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  gap: 0.5rem;
  padding: 0.5rem 0;
}

/* line 484, app/assets/stylesheets/website/components/_problem.scss */
.stacked-bar-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 491, app/assets/stylesheets/website/components/_problem.scss */
.stacked-bar-label {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  min-width: 70px;
  text-align: left;
}

/* line 499, app/assets/stylesheets/website/components/_problem.scss */
.stacked-bar {
  flex: 1;
  height: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

/* line 509, app/assets/stylesheets/website/components/_problem.scss */
.stacked-bar-fill {
  height: 100%;
  border-radius: 8px;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  animation: stackedBarGrow 1s ease-out forwards;
  box-shadow: 0 0 8px rgba(255, 107, 107, 0.3);
}

/* line 517, app/assets/stylesheets/website/components/_problem.scss */
.stacked-bar-role-1 {
  background: linear-gradient(90deg, #FF6B6B 0%, #FF4757 100%);
}

/* line 521, app/assets/stylesheets/website/components/_problem.scss */
.stacked-bar-role-2 {
  background: linear-gradient(90deg, #FF8E53 0%, #FF6B35 100%);
}

/* line 525, app/assets/stylesheets/website/components/_problem.scss */
.stacked-bar-role-3 {
  background: linear-gradient(90deg, #FFA07A 0%, #FF8C69 100%);
}

/* line 529, app/assets/stylesheets/website/components/_problem.scss */
.stacked-bar-role-4 {
  background: linear-gradient(90deg, #FFB347 0%, #FFA500 100%);
}

/* line 533, app/assets/stylesheets/website/components/_problem.scss */
.stacked-bar-role-5 {
  background: linear-gradient(90deg, #FF6B6B 0%, #FF8E53 100%);
}

@keyframes stackedBarGrow {
  from {
    width: 0;
  }
  to {
    width: var(--bar-width, 100%);
  }
}

/* Graphique calendrier pour les échéances */
/* line 547, app/assets/stylesheets/website/components/_problem.scss */
.stat-chart-calendar {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 554, app/assets/stylesheets/website/components/_problem.scss */
.calendar-container {
  width: 180px;
  min-width: 180px;
  margin: 0 auto;
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* line 564, app/assets/stylesheets/website/components/_problem.scss */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin: 0;
}

/* line 571, app/assets/stylesheets/website/components/_problem.scss */
.calendar-day {
  position: relative;
  aspect-ratio: 1;
  min-width: 32px;
  min-height: 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* line 585, app/assets/stylesheets/website/components/_problem.scss */
.calendar-day.deadline-day {
  background: rgba(255, 107, 107, 0.15);
  border-color: rgba(255, 107, 107, 0.4);
  box-shadow: 0 0 8px rgba(255, 107, 107, 0.3);
  animation: deadlinePulse 2s ease-in-out infinite;
}

@keyframes deadlinePulse {
  0%, 100% {
    box-shadow: 0 0 8px rgba(255, 107, 107, 0.3);
  }
  50% {
    box-shadow: 0 0 16px rgba(255, 107, 107, 0.5);
  }
}

/* line 601, app/assets/stylesheets/website/components/_problem.scss */
.day-number {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  z-index: 1;
}

/* line 608, app/assets/stylesheets/website/components/_problem.scss */
.deadline-day .day-number {
  color: #FF6B6B;
  font-weight: 700;
}

/* line 613, app/assets/stylesheets/website/components/_problem.scss */
.deadline-marker {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 6px;
  height: 6px;
  background: #FF6B6B;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(255, 107, 107, 0.8);
  animation: markerBlink 1.5s ease-in-out infinite;
}

@keyframes markerBlink {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.9);
  }
}

/* line 636, app/assets/stylesheets/website/components/_problem.scss */
.calendar-legend {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 645, app/assets/stylesheets/website/components/_problem.scss */
.legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* line 651, app/assets/stylesheets/website/components/_problem.scss */
.legend-marker {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF6B6B;
  box-shadow: 0 0 4px rgba(255, 107, 107, 0.6);
}

/* Liste des problèmes - Design moderne */
/* line 660, app/assets/stylesheets/website/components/_problem.scss */
.problem-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 992px) {
  /* line 660, app/assets/stylesheets/website/components/_problem.scss */
  .problem-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* line 671, app/assets/stylesheets/website/components/_problem.scss */
.problem-item {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1rem 1.25rem;
  display: inline-flex;
  gap: 0.75rem;
  align-items: center;
  transition: all 0.3s ease;
  overflow: visible;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

/* line 691, app/assets/stylesheets/website/components/_problem.scss */
.problem-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(246, 229, 179, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(246, 229, 179, 0.1) inset;
}

/* line 701, app/assets/stylesheets/website/components/_problem.scss */
.problem-item::after {
  display: none;
}

/* line 706, app/assets/stylesheets/website/components/_problem.scss */
.problem-icon {
  flex-shrink: 0;
  font-size: 1.5rem;
  line-height: 1;
  opacity: 1;
  color: #F6E5B3;
  font-weight: 400;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 719, app/assets/stylesheets/website/components/_problem.scss */
.problem-icon i {
  font-size: 1.5rem;
  color: #F6E5B3;
  transition: all 0.3s ease;
}

/* line 726, app/assets/stylesheets/website/components/_problem.scss */
.problem-content {
  flex: 1;
  padding-top: 0;
}

/* line 731, app/assets/stylesheets/website/components/_problem.scss */
.problem-item-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: #F6E5B3;
  margin: 0 0 0.4rem 0;
  line-height: 1.3;
  letter-spacing: 0;
}

/* line 740, app/assets/stylesheets/website/components/_problem.scss */
.problem-item-description {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.4;
  font-weight: 400;
}

/* Responsive amélioré */
@media (max-width: 768px) {
  /* line 752, app/assets/stylesheets/website/components/_problem.scss */
  .problem-container {
    padding: 2.5rem 1rem;
    gap: 2.5rem;
  }
  /* line 757, app/assets/stylesheets/website/components/_problem.scss */
  .problem-item {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
  }
  /* line 762, app/assets/stylesheets/website/components/_problem.scss */
  .problem-item:hover {
    transform: translateY(-4px);
  }
  /* line 767, app/assets/stylesheets/website/components/_problem.scss */
  .problem-icon {
    margin: 0 auto;
  }
  /* line 771, app/assets/stylesheets/website/components/_problem.scss */
  .stat-card-hours,
.stat-card-percentage {
    flex-direction: column;
    gap: 1rem;
  }
  /* line 777, app/assets/stylesheets/website/components/_problem.scss */
  .stat-card-hours .stat-header,
.stat-card-percentage .stat-header {
    text-align: center;
  }
  /* line 782, app/assets/stylesheets/website/components/_problem.scss */
  .stat-chart-bars {
    height: 100px;
    justify-content: center;
  }
  /* line 787, app/assets/stylesheets/website/components/_problem.scss */
  .chart-bars-container {
    gap: 0.4rem;
    justify-content: center;
  }
  /* line 792, app/assets/stylesheets/website/components/_problem.scss */
  .chart-bar-wrapper {
    width: 28px;
  }
  /* line 796, app/assets/stylesheets/website/components/_problem.scss */
  .chart-bar-label {
    font-size: 0.65rem;
  }
  /* line 800, app/assets/stylesheets/website/components/_problem.scss */
  .chart-bar-value {
    font-size: 0.65rem;
    top: -1.25rem;
  }
  /* line 805, app/assets/stylesheets/website/components/_problem.scss */
  .stat-chart-gauge {
    justify-content: center;
  }
  /* line 809, app/assets/stylesheets/website/components/_problem.scss */
  .gauge-container {
    width: 90px;
    height: 90px;
  }
  /* line 814, app/assets/stylesheets/website/components/_problem.scss */
  .gauge-value {
    font-size: 1.3rem;
  }
  /* line 818, app/assets/stylesheets/website/components/_problem.scss */
  .stat-card-repetitive,
.stat-card-deadlines {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  /* line 826, app/assets/stylesheets/website/components/_problem.scss */
  .stat-card-repetitive .stat-header,
.stat-card-deadlines .stat-header {
    text-align: center;
  }
  /* line 831, app/assets/stylesheets/website/components/_problem.scss */
  .stat-card-repetitive .stat-chart {
    order: 1;
  }
  /* line 835, app/assets/stylesheets/website/components/_problem.scss */
  .stat-card-repetitive .stat-header {
    order: 2;
  }
  /* line 839, app/assets/stylesheets/website/components/_problem.scss */
  .pie-chart-container {
    width: 90px;
    height: 90px;
  }
  /* line 844, app/assets/stylesheets/website/components/_problem.scss */
  .pie-value {
    font-size: 1.3rem;
  }
  /* line 848, app/assets/stylesheets/website/components/_problem.scss */
  .stat-chart-calendar {
    justify-content: center;
  }
  /* line 852, app/assets/stylesheets/website/components/_problem.scss */
  .calendar-container {
    width: 100%;
    max-width: 180px;
    min-width: 150px;
  }
  /* line 858, app/assets/stylesheets/website/components/_problem.scss */
  .calendar-grid {
    gap: 6px;
  }
  /* line 862, app/assets/stylesheets/website/components/_problem.scss */
  .calendar-day {
    min-width: 28px;
    min-height: 28px;
  }
  /* line 867, app/assets/stylesheets/website/components/_problem.scss */
  .day-number {
    font-size: 0.65rem;
  }
  /* line 871, app/assets/stylesheets/website/components/_problem.scss */
  .deadline-marker {
    width: 5px;
    height: 5px;
  }
}

/* ===== ANIMATIONS SUBTILES ET ÉLÉGANTES ===== */
/* line 880, app/assets/stylesheets/website/components/_problem.scss */
.problem-icon {
  animation: iconPulse 3s ease-in-out infinite !important;
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 5px rgba(246, 229, 179, 0.3));
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(246, 229, 179, 0.6));
  }
}

/* line 896, app/assets/stylesheets/website/components/_problem.scss */
.problem-item {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 900, app/assets/stylesheets/website/components/_problem.scss */
.problem-item:hover .problem-icon {
  animation: none !important;
  transform: scale(1.2);
  filter: drop-shadow(0 0 20px rgba(246, 229, 179, 0.8));
  transition: all 0.3s ease;
}

/* line 910, app/assets/stylesheets/website/components/_problem.scss */
.gauge-container {
  animation: gaugePulseContainer 3s ease-in-out infinite;
}

@keyframes gaugePulseContainer {
  0%, 100% {
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 25px rgba(255, 107, 53, 0.7));
  }
}

/* line 924, app/assets/stylesheets/website/components/_problem.scss */
.pie-chart-container {
  animation: piePulseContainer 3s ease-in-out infinite;
}

@keyframes piePulseContainer {
  0%, 100% {
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 22px rgba(255, 107, 53, 0.65));
  }
}

/* line 938, app/assets/stylesheets/website/components/_problem.scss */
.chart-bar-fill.chart-bar-lost {
  animation: barGlow 2s ease-in-out infinite !important;
}

@keyframes barGlow {
  0%, 100% {
    box-shadow: 0 0 12px rgba(255, 107, 107, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 107, 107, 0.7), 0 0 40px rgba(255, 107, 107, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
}

/* line 957, app/assets/stylesheets/website/components/_problem.scss */
.stat-number, .gauge-value, .pie-value {
  animation: valueGlow 3s ease-in-out infinite !important;
}

@keyframes valueGlow {
  0%, 100% {
    text-shadow: 0 0 10px rgba(246, 229, 179, 0.3);
  }
  50% {
    text-shadow: 0 0 30px rgba(246, 229, 179, 0.7);
  }
}

/* Section Empathy - "Nous l'avons vécu aussi" */
/* line 3, app/assets/stylesheets/website/components/_empathy.scss */
.empathy-section {
  background: transparent;
  padding: 5rem 0;
  position: relative;
  display: flex;
  align-items: center;
}

/* line 11, app/assets/stylesheets/website/components/_empathy.scss */
.empathy-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

/* Layout 2 colonnes */
/* line 19, app/assets/stylesheets/website/components/_empathy.scss */
.empathy-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 6rem;
  align-items: stretch;
}

@media (max-width: 992px) {
  /* line 19, app/assets/stylesheets/website/components/_empathy.scss */
  .empathy-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Colonne gauche */
/* line 32, app/assets/stylesheets/website/components/_empathy.scss */
.empathy-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

/* line 39, app/assets/stylesheets/website/components/_empathy.scss */
.empathy-header {
  text-align: left;
}

@media (max-width: 992px) {
  /* line 39, app/assets/stylesheets/website/components/_empathy.scss */
  .empathy-header {
    text-align: center;
  }
}

/* line 47, app/assets/stylesheets/website/components/_empathy.scss */
.empathy-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #F6E5B3;
  line-height: 1.1;
  margin: 0 0 1rem 0;
}

/* line 55, app/assets/stylesheets/website/components/_empathy.scss */
.empathy-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

/* Photo */
/* line 63, app/assets/stylesheets/website/components/_empathy.scss */
.empathy-photo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem;
  flex: 1;
  max-height: 380px;
  min-height: 280px;
}

@media (max-width: 992px) {
  /* line 63, app/assets/stylesheets/website/components/_empathy.scss */
  .empathy-photo {
    max-width: 280px;
    max-height: 300px;
    margin: 0 auto;
    flex: none;
  }
}

/* line 84, app/assets/stylesheets/website/components/_empathy.scss */
.empathy-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 16px;
  opacity: 0.9;
}

/* Colonne droite */
/* line 95, app/assets/stylesheets/website/components/_empathy.scss */
.empathy-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

/* line 102, app/assets/stylesheets/website/components/_empathy.scss */
.empathy-solution-header {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  /* line 102, app/assets/stylesheets/website/components/_empathy.scss */
  .empathy-solution-header {
    justify-content: center;
  }
}

/* line 113, app/assets/stylesheets/website/components/_empathy.scss */
.empathy-solution-intro {
  font-size: 2.5rem;
  font-weight: 800;
  color: #F6E5B3;
  line-height: 1;
  padding-bottom: 0.15rem;
}

/* line 121, app/assets/stylesheets/website/components/_empathy.scss */
.empathy-orizen-logo {
  height: 2.5rem;
  width: auto;
  display: block;
}

/* Solutions en colonne */
/* line 128, app/assets/stylesheets/website/components/_empathy.scss */
.empathy-solutions {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1;
  justify-content: flex-end;
}

/* Cards */
/* line 137, app/assets/stylesheets/website/components/_empathy.scss */
.empathy-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
  min-height: 110px;
  /* État initial pour l'animation */
  opacity: 0;
  transform: translateX(30px);
  /* État visible */
}

/* line 156, app/assets/stylesheets/website/components/_empathy.scss */
.empathy-card.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* line 161, app/assets/stylesheets/website/components/_empathy.scss */
.empathy-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(246, 229, 179, 0.3);
  transform: translateX(0) scale(1.02);
}

/* line 166, app/assets/stylesheets/website/components/_empathy.scss */
.empathy-card.is-visible:hover {
  transform: translateX(0) scale(1.02);
}

/* line 171, app/assets/stylesheets/website/components/_empathy.scss */
.empathy-card--highlighted {
  background: rgba(255, 107, 53, 0.08);
  border-color: rgba(255, 107, 53, 0.3);
}

/* line 175, app/assets/stylesheets/website/components/_empathy.scss */
.empathy-card--highlighted:hover {
  background: rgba(255, 107, 53, 0.12);
  border-color: rgba(255, 107, 53, 0.5);
}

/* line 180, app/assets/stylesheets/website/components/_empathy.scss */
.empathy-card--highlighted .empathy-icon {
  background: rgba(255, 107, 53, 0.2);
}

/* line 183, app/assets/stylesheets/website/components/_empathy.scss */
.empathy-card--highlighted .empathy-icon i {
  color: #FF6B35;
}

/* line 190, app/assets/stylesheets/website/components/_empathy.scss */
.empathy-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  background: rgba(246, 229, 179, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 200, app/assets/stylesheets/website/components/_empathy.scss */
.empathy-icon i {
  font-size: 1.35rem;
  color: #F6E5B3;
}

/* line 206, app/assets/stylesheets/website/components/_empathy.scss */
.empathy-card-content {
  flex: 1;
}

/* line 210, app/assets/stylesheets/website/components/_empathy.scss */
.empathy-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #F6E5B3;
  margin: 0 0 0.35rem 0;
}

/* line 217, app/assets/stylesheets/website/components/_empathy.scss */
.empathy-card-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.45;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  /* line 226, app/assets/stylesheets/website/components/_empathy.scss */
  .empathy-section {
    padding: 3rem 0;
    min-height: auto;
  }
  /* line 231, app/assets/stylesheets/website/components/_empathy.scss */
  .empathy-title {
    font-size: 2rem;
  }
  /* line 235, app/assets/stylesheets/website/components/_empathy.scss */
  .empathy-subtitle {
    font-size: 1rem;
  }
  /* line 239, app/assets/stylesheets/website/components/_empathy.scss */
  .empathy-solution-intro {
    font-size: 1.75rem;
  }
  /* line 243, app/assets/stylesheets/website/components/_empathy.scss */
  .empathy-orizen-logo {
    height: 1.75rem;
  }
  /* line 247, app/assets/stylesheets/website/components/_empathy.scss */
  .empathy-card {
    padding: 1.25rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    min-height: auto;
    /* Animation vient d'en bas sur mobile */
    transform: translateY(20px);
  }
  /* line 257, app/assets/stylesheets/website/components/_empathy.scss */
  .empathy-card.is-visible {
    transform: translateY(0);
  }
  /* line 261, app/assets/stylesheets/website/components/_empathy.scss */
  .empathy-card.is-visible:hover {
    transform: translateY(0) scale(1.02);
  }
  /* line 266, app/assets/stylesheets/website/components/_empathy.scss */
  .empathy-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
  }
  /* line 271, app/assets/stylesheets/website/components/_empathy.scss */
  .empathy-icon i {
    font-size: 1.1rem;
  }
  /* line 276, app/assets/stylesheets/website/components/_empathy.scss */
  .empathy-card-title {
    font-size: 1rem;
  }
  /* line 280, app/assets/stylesheets/website/components/_empathy.scss */
  .empathy-card-description {
    font-size: 0.85rem;
  }
}

/* Section Les métiers clefs */
/* line 6, app/assets/stylesheets/website/components/_key_trades.scss */
.key-trades-section {
  background: transparent;
  min-height: 100vh;
  padding: 4rem 0;
  position: relative;
  display: flex;
  align-items: center;
}

/* line 15, app/assets/stylesheets/website/components/_key_trades.scss */
.key-trades-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

/* line 22, app/assets/stylesheets/website/components/_key_trades.scss */
.key-trades-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

/* line 27, app/assets/stylesheets/website/components/_key_trades.scss */
.key-trades-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #F6E5B3;
  line-height: 1.1;
  margin: 0 0 0.75rem 0;
}

/* line 35, app/assets/stylesheets/website/components/_key_trades.scss */
.key-trades-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Wrapper pour positionner le hub au centre */
/* line 44, app/assets/stylesheets/website/components/_key_trades.scss */
.key-trades-wrapper {
  position: relative;
}

/* Grille des 4 métiers */
/* line 49, app/assets/stylesheets/website/components/_key_trades.scss */
.key-trades-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 3.5rem;
  column-gap: 6rem;
}

@media (max-width: 768px) {
  /* line 49, app/assets/stylesheets/website/components/_key_trades.scss */
  .key-trades-grid {
    grid-template-columns: 1fr;
    row-gap: 1.25rem;
    column-gap: 0;
  }
}

/* Cards des métiers */
/* line 63, app/assets/stylesheets/website/components/_key_trades.scss */
.trade-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  overflow: visible;
}

/* line 76, app/assets/stylesheets/website/components/_key_trades.scss */
.trade-card--top-left {
  border-bottom-right-radius: 70px;
}

/* line 80, app/assets/stylesheets/website/components/_key_trades.scss */
.trade-card--top-right {
  border-bottom-left-radius: 70px;
}

/* line 84, app/assets/stylesheets/website/components/_key_trades.scss */
.trade-card--bottom-left {
  border-top-right-radius: 70px;
}

/* line 88, app/assets/stylesheets/website/components/_key_trades.scss */
.trade-card--bottom-right {
  border-top-left-radius: 70px;
}

/* line 93, app/assets/stylesheets/website/components/_key_trades.scss */
.trade-card--sales {
  --trade-color: #4CAF50;
}

/* line 96, app/assets/stylesheets/website/components/_key_trades.scss */
.trade-card--sales .trade-icon {
  background: rgba(76, 175, 80, 0.15);
}

/* line 98, app/assets/stylesheets/website/components/_key_trades.scss */
.trade-card--sales .trade-icon i {
  color: #4CAF50;
}

/* line 102, app/assets/stylesheets/website/components/_key_trades.scss */
.trade-card--backoffice {
  --trade-color: #2196F3;
}

/* line 105, app/assets/stylesheets/website/components/_key_trades.scss */
.trade-card--backoffice .trade-icon {
  background: rgba(33, 150, 243, 0.15);
}

/* line 107, app/assets/stylesheets/website/components/_key_trades.scss */
.trade-card--backoffice .trade-icon i {
  color: #2196F3;
}

/* line 111, app/assets/stylesheets/website/components/_key_trades.scss */
.trade-card--mobility {
  --trade-color: #FF6B35;
}

/* line 114, app/assets/stylesheets/website/components/_key_trades.scss */
.trade-card--mobility .trade-icon {
  background: rgba(255, 107, 53, 0.15);
}

/* line 116, app/assets/stylesheets/website/components/_key_trades.scss */
.trade-card--mobility .trade-icon i {
  color: #FF6B35;
}

/* line 120, app/assets/stylesheets/website/components/_key_trades.scss */
.trade-card--management {
  --trade-color: #9C27B0;
}

/* line 123, app/assets/stylesheets/website/components/_key_trades.scss */
.trade-card--management .trade-icon {
  background: rgba(156, 39, 176, 0.15);
}

/* line 125, app/assets/stylesheets/website/components/_key_trades.scss */
.trade-card--management .trade-icon i {
  color: #9C27B0;
}

/* Header avec icon + title inline */
/* line 131, app/assets/stylesheets/website/components/_key_trades.scss */
.trade-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

/* line 138, app/assets/stylesheets/website/components/_key_trades.scss */
.trade-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(246, 229, 179, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

/* line 149, app/assets/stylesheets/website/components/_key_trades.scss */
.trade-icon i {
  font-size: 1.25rem;
  color: #F6E5B3;
}

/* line 155, app/assets/stylesheets/website/components/_key_trades.scss */
.trade-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #F6E5B3;
  margin: 0;
}

/* line 162, app/assets/stylesheets/website/components/_key_trades.scss */
.trade-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  margin: 0 0 1rem 0;
}

/* Features tags */
/* line 170, app/assets/stylesheets/website/components/_key_trades.scss */
.trade-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

/* line 176, app/assets/stylesheets/website/components/_key_trades.scss */
.trade-feature {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
}

/* line 188, app/assets/stylesheets/website/components/_key_trades.scss */
.trade-feature i {
  font-size: 0.65rem;
  opacity: 0.7;
}

/* line 193, app/assets/stylesheets/website/components/_key_trades.scss */
.trade-feature:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

/* Hub central positionné au milieu */
/* line 200, app/assets/stylesheets/website/components/_key_trades.scss */
.connector-hub {
  position: absolute;
  top: calc(50% + 1.5rem);
  left: 50%;
  transform: translate(-50%, -60%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
}

@media (max-width: 768px) {
  /* line 200, app/assets/stylesheets/website/components/_key_trades.scss */
  .connector-hub {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-top: 1.5rem;
  }
}

/* line 220, app/assets/stylesheets/website/components/_key_trades.scss */
.hub-icon {
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(139, 69, 89, 0.85) 0%, rgba(100, 40, 60, 0.9) 100%);
  border: 2px solid rgba(246, 229, 179, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.15), 0 0 40px rgba(139, 69, 89, 0.2);
}

/* line 233, app/assets/stylesheets/website/components/_key_trades.scss */
.hub-icon i {
  font-size: 2.5rem;
  color: #F6E5B3;
}

/* line 238, app/assets/stylesheets/website/components/_key_trades.scss */
.hub-icon .hub-orizen-logo {
  width: 60%;
  height: auto;
  object-fit: contain;
  animation: hub-rotate 8s linear infinite;
  filter: brightness(1.2) saturate(0.6) hue-rotate(10deg);
}

/* line 248, app/assets/stylesheets/website/components/_key_trades.scss */
.hub-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #F6E5B3;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* Animation du hub */
/* line 257, app/assets/stylesheets/website/components/_key_trades.scss */
.connector-hub {
  opacity: 0;
  transform: translate(-50%, -60%) scale(0.5);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* line 262, app/assets/stylesheets/website/components/_key_trades.scss */
.connector-hub.is-visible {
  opacity: 1;
  transform: translate(-50%, -60%) scale(1);
}

@media (max-width: 768px) {
  /* line 257, app/assets/stylesheets/website/components/_key_trades.scss */
  .connector-hub {
    transform: scale(0.5);
  }
  /* line 270, app/assets/stylesheets/website/components/_key_trades.scss */
  .connector-hub.is-visible {
    transform: scale(1);
  }
}

/* Animation pulse permanente sur le hub - subtile */
/* line 277, app/assets/stylesheets/website/components/_key_trades.scss */
.hub-icon {
  animation: hub-pulse 4s ease-in-out infinite;
}

@keyframes hub-pulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.15), 0 0 40px rgba(139, 69, 89, 0.2);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.25), 0 0 50px rgba(139, 69, 89, 0.3);
    transform: scale(1.02);
  }
}

/* Animation de rotation douce sur l'icône infinity */
/* line 297, app/assets/stylesheets/website/components/_key_trades.scss */
.hub-icon i {
  animation: hub-rotate 8s linear infinite;
  margin-top: 4px;
  /* Ajustement vertical pour centrage optique */
}

@keyframes hub-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive */
@media (max-width: 768px) {
  /* line 313, app/assets/stylesheets/website/components/_key_trades.scss */
  .key-trades-section {
    padding: 3rem 0;
    min-height: auto;
  }
  /* line 318, app/assets/stylesheets/website/components/_key_trades.scss */
  .key-trades-title {
    font-size: 1.75rem;
  }
  /* line 322, app/assets/stylesheets/website/components/_key_trades.scss */
  .key-trades-subtitle {
    font-size: 0.95rem;
  }
  /* line 326, app/assets/stylesheets/website/components/_key_trades.scss */
  .trade-card {
    padding: 1.25rem;
  }
  /* line 330, app/assets/stylesheets/website/components/_key_trades.scss */
  .trade-card--top-left, .trade-card--top-right, .trade-card--bottom-left, .trade-card--bottom-right {
    border-radius: 16px;
  }
  /* line 338, app/assets/stylesheets/website/components/_key_trades.scss */
  .trade-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
  }
  /* line 343, app/assets/stylesheets/website/components/_key_trades.scss */
  .trade-icon i {
    font-size: 1.1rem;
  }
  /* line 348, app/assets/stylesheets/website/components/_key_trades.scss */
  .trade-title {
    font-size: 1.15rem;
  }
  /* line 352, app/assets/stylesheets/website/components/_key_trades.scss */
  .trade-description {
    font-size: 0.85rem;
  }
  /* line 356, app/assets/stylesheets/website/components/_key_trades.scss */
  .hub-icon {
    width: 90px;
    height: 90px;
  }
  /* line 360, app/assets/stylesheets/website/components/_key_trades.scss */
  .hub-icon i {
    font-size: 2rem;
  }
  /* line 365, app/assets/stylesheets/website/components/_key_trades.scss */
  .hub-label {
    font-size: 0.75rem;
  }
}

/* Section Pourquoi Orizen - Landing Page */
/* line 3, app/assets/stylesheets/website/components/_why_orizen.scss */
.why-orizen-section {
  background: transparent;
  min-height: 100vh;
  height: auto;
  max-height: none;
  position: relative;
  overflow: visible;
}

/* line 13, app/assets/stylesheets/website/components/_why_orizen.scss */
.why-orizen-section::before {
  display: none;
}

/* line 18, app/assets/stylesheets/website/components/_why_orizen.scss */
.why-orizen-header-spacer {
  height: 40px;
}

/* line 22, app/assets/stylesheets/website/components/_why_orizen.scss */
.why-orizen-container {
  position: relative;
  z-index: 1;
  padding: 1rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-height: calc(100vh - 40px);
  height: auto;
  max-height: none;
  justify-content: center;
  overflow: visible;
}

@media (max-width: 768px) {
  /* line 22, app/assets/stylesheets/website/components/_why_orizen.scss */
  .why-orizen-container {
    padding: 1.5rem 1rem;
    gap: 1.5rem;
  }
}

/* Header */
/* line 44, app/assets/stylesheets/website/components/_why_orizen.scss */
.why-orizen-header {
  text-align: center;
  margin-bottom: 0;
}

/* line 49, app/assets/stylesheets/website/components/_why_orizen.scss */
.why-orizen-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  color: #F6E5B3 !important;
  line-height: 1.1;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #F6E5B3 0%, rgba(246, 229, 179, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@supports not (-webkit-background-clip: text) {
  /* line 49, app/assets/stylesheets/website/components/_why_orizen.scss */
  .why-orizen-title {
    color: #F6E5B3;
    background: none;
  }
}

/* line 70, app/assets/stylesheets/website/components/_why_orizen.scss */
.why-orizen-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 0.75rem 0;
  font-weight: 400;
  line-height: 1.4;
}

/* Grille des 4 atouts - Style aligné sur problem-item */
/* line 79, app/assets/stylesheets/website/components/_why_orizen.scss */
.why-orizen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 992px) {
  /* line 79, app/assets/stylesheets/website/components/_why_orizen.scss */
  .why-orizen-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Cartes des atouts - Style glassmorphism compact aligné sur problem-item */
/* line 91, app/assets/stylesheets/website/components/_why_orizen.scss */
.why-orizen-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1rem 1.25rem;
  display: inline-flex;
  gap: 0.75rem;
  align-items: center;
  transition: all 0.3s ease;
  overflow: visible;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

/* line 111, app/assets/stylesheets/website/components/_why_orizen.scss */
.why-orizen-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(246, 229, 179, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(246, 229, 179, 0.1) inset;
}

/* line 121, app/assets/stylesheets/website/components/_why_orizen.scss */
.why-orizen-card::before {
  display: none;
}

/* line 125, app/assets/stylesheets/website/components/_why_orizen.scss */
.why-orizen-card::after {
  display: none;
}

/* line 130, app/assets/stylesheets/website/components/_why_orizen.scss */
.why-orizen-icon {
  flex-shrink: 0;
  font-size: 1.5rem;
  line-height: 1;
  opacity: 1;
  color: #F6E5B3;
  font-weight: 400;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 142, app/assets/stylesheets/website/components/_why_orizen.scss */
.why-orizen-icon i {
  font-size: 1.5rem;
  color: #F6E5B3;
  transition: all 0.4s ease;
}

/* line 149, app/assets/stylesheets/website/components/_why_orizen.scss */
.why-orizen-content {
  flex: 1;
  padding-top: 0.25rem;
}

/* line 154, app/assets/stylesheets/website/components/_why_orizen.scss */
.why-orizen-item-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #F6E5B3;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

/* line 163, app/assets/stylesheets/website/components/_why_orizen.scss */
.why-orizen-item-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.5;
  font-weight: 400;
}

/* Features list */
/* line 172, app/assets/stylesheets/website/components/_why_orizen.scss */
.card-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* line 178, app/assets/stylesheets/website/components/_why_orizen.scss */
.feature-point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

/* line 188, app/assets/stylesheets/website/components/_why_orizen.scss */
.feature-point:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(246, 229, 179, 0.3);
  transform: translateX(4px);
}

/* line 194, app/assets/stylesheets/website/components/_why_orizen.scss */
.feature-point i {
  flex-shrink: 0;
  color: #28a745;
  font-size: 1.1rem;
  margin-top: 0.1rem;
}

/* line 201, app/assets/stylesheets/website/components/_why_orizen.scss */
.feature-point span {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

/* Modes (pour la carte Hybride) */
/* line 209, app/assets/stylesheets/website/components/_why_orizen.scss */
.card-modes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* line 215, app/assets/stylesheets/website/components/_why_orizen.scss */
.mode-block {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

/* line 222, app/assets/stylesheets/website/components/_why_orizen.scss */
.mode-block:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(246, 229, 179, 0.4);
  transform: translateX(4px);
}

/* line 229, app/assets/stylesheets/website/components/_why_orizen.scss */
.mode-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

/* line 235, app/assets/stylesheets/website/components/_why_orizen.scss */
.mode-header i {
  font-size: 1.3rem;
  color: #F6E5B3;
}

/* line 240, app/assets/stylesheets/website/components/_why_orizen.scss */
.mode-header .mode-name {
  font-size: 1rem;
  font-weight: 700;
  color: #F6E5B3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 249, app/assets/stylesheets/website/components/_why_orizen.scss */
.mode-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.6;
  padding-left: 2rem;
}

/* ============================================
   NOUVEAUX 3 PILIERS - Layout moderne
   ============================================ */
/* line 261, app/assets/stylesheets/website/components/_why_orizen.scss */
.why-orizen-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  /* line 261, app/assets/stylesheets/website/components/_why_orizen.scss */
  .why-orizen-pillars {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 500px;
  }
}

/* line 275, app/assets/stylesheets/website/components/_why_orizen.scss */
.why-orizen-pillar {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

/* line 289, app/assets/stylesheets/website/components/_why_orizen.scss */
.why-orizen-pillar:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(246, 229, 179, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(246, 229, 179, 0.1) inset;
}

/* line 298, app/assets/stylesheets/website/components/_why_orizen.scss */
.why-orizen-pillar.pillar--highlighted {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(246, 229, 179, 0.3);
  transform: scale(1.02);
}

/* line 303, app/assets/stylesheets/website/components/_why_orizen.scss */
.why-orizen-pillar.pillar--highlighted:hover {
  transform: scale(1.02) translateY(-4px);
}

/* line 309, app/assets/stylesheets/website/components/_why_orizen.scss */
.pillar-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* line 325, app/assets/stylesheets/website/components/_why_orizen.scss */
.pillar-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(246, 229, 179, 0.15) 0%, rgba(246, 229, 179, 0.05) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(246, 229, 179, 0.2);
}

/* line 336, app/assets/stylesheets/website/components/_why_orizen.scss */
.pillar-icon i {
  font-size: 2rem;
  color: #F6E5B3;
}

/* line 341, app/assets/stylesheets/website/components/_why_orizen.scss */
.pillar-icon.pillar-icon--360 i {
  color: #4FC3F7;
}

/* line 342, app/assets/stylesheets/website/components/_why_orizen.scss */
.pillar-icon.pillar-icon--ia i {
  color: #FF6B35;
}

/* line 343, app/assets/stylesheets/website/components/_why_orizen.scss */
.pillar-icon.pillar-icon--team i {
  color: #81C784;
}

/* line 346, app/assets/stylesheets/website/components/_why_orizen.scss */
.pillar-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #F6E5B3;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.5px;
}

/* line 354, app/assets/stylesheets/website/components/_why_orizen.scss */
.pillar-tagline {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1rem 0;
}

/* line 361, app/assets/stylesheets/website/components/_why_orizen.scss */
.pillar-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
}

/* line 368, app/assets/stylesheets/website/components/_why_orizen.scss */
.pillar-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

/* line 374, app/assets/stylesheets/website/components/_why_orizen.scss */
.pillar-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* line 383, app/assets/stylesheets/website/components/_why_orizen.scss */
.pillar-features li:last-child {
  border-bottom: none;
}

/* line 387, app/assets/stylesheets/website/components/_why_orizen.scss */
.pillar-features li i {
  color: #28a745;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Responsive pillars */
@media (max-width: 768px) {
  /* line 397, app/assets/stylesheets/website/components/_why_orizen.scss */
  .why-orizen-pillar {
    padding: 1.5rem;
  }
  /* line 400, app/assets/stylesheets/website/components/_why_orizen.scss */
  .why-orizen-pillar.pillar--highlighted {
    transform: none;
    order: -1;
  }
  /* line 406, app/assets/stylesheets/website/components/_why_orizen.scss */
  .pillar-icon {
    width: 64px;
    height: 64px;
  }
  /* line 410, app/assets/stylesheets/website/components/_why_orizen.scss */
  .pillar-icon i {
    font-size: 1.5rem;
  }
  /* line 415, app/assets/stylesheets/website/components/_why_orizen.scss */
  .pillar-title {
    font-size: 1.5rem;
  }
}

/* Section Valeurs */
/* line 421, app/assets/stylesheets/website/components/_why_orizen.scss */
.why-orizen-values {
  margin-top: 2rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(246, 229, 179, 0.2);
}

/* line 427, app/assets/stylesheets/website/components/_why_orizen.scss */
.values-title {
  font-size: 2rem;
  font-weight: 700;
  color: #F6E5B3;
  text-align: center;
  margin: 0 0 2rem 0;
}

/* line 435, app/assets/stylesheets/website/components/_why_orizen.scss */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  /* line 435, app/assets/stylesheets/website/components/_why_orizen.scss */
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* line 446, app/assets/stylesheets/website/components/_why_orizen.scss */
.value-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(246, 229, 179, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

/* line 455, app/assets/stylesheets/website/components/_why_orizen.scss */
.value-item:hover {
  transform: translateY(-4px);
  border-color: rgba(246, 229, 179, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

/* line 462, app/assets/stylesheets/website/components/_why_orizen.scss */
.value-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(246, 229, 179, 0.2) 0%, rgba(246, 229, 179, 0.1) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border: 1px solid rgba(246, 229, 179, 0.2);
}

/* line 473, app/assets/stylesheets/website/components/_why_orizen.scss */
.value-icon i {
  font-size: 1.75rem;
  color: #F6E5B3;
}

/* line 479, app/assets/stylesheets/website/components/_why_orizen.scss */
.value-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #F6E5B3;
  margin: 0 0 0.75rem 0;
}

/* line 486, app/assets/stylesheets/website/components/_why_orizen.scss */
.value-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  /* line 495, app/assets/stylesheets/website/components/_why_orizen.scss */
  .why-orizen-card {
    padding: 2rem 1.5rem;
  }
  /* line 499, app/assets/stylesheets/website/components/_why_orizen.scss */
  .card-icon {
    width: 64px;
    height: 64px;
  }
  /* line 503, app/assets/stylesheets/website/components/_why_orizen.scss */
  .card-icon i {
    font-size: 1.75rem;
  }
  /* line 508, app/assets/stylesheets/website/components/_why_orizen.scss */
  .card-title {
    font-size: 1.5rem;
  }
  /* line 512, app/assets/stylesheets/website/components/_why_orizen.scss */
  .mode-text {
    padding-left: 0;
  }
}

/* Section Social Proof - Landing Page */
/* line 3, app/assets/stylesheets/website/components/_social_proof.scss */
.social-proof-section {
  background: transparent;
  height: auto;
  max-height: none;
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
}

/* line 12, app/assets/stylesheets/website/components/_social_proof.scss */
.social-proof-section::before {
  display: none;
}

/* line 17, app/assets/stylesheets/website/components/_social_proof.scss */
.social-proof-header-spacer {
  height: 40px;
}

/* line 21, app/assets/stylesheets/website/components/_social_proof.scss */
.social-proof-container {
  position: relative;
  z-index: 1;
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 768px) {
  /* line 21, app/assets/stylesheets/website/components/_social_proof.scss */
  .social-proof-container {
    padding: 1.5rem 1rem;
  }
}

/* Layout deux colonnes */
/* line 35, app/assets/stylesheets/website/components/_social_proof.scss */
.social-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 992px) {
  /* line 35, app/assets/stylesheets/website/components/_social_proof.scss */
  .social-proof-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* line 47, app/assets/stylesheets/website/components/_social_proof.scss */
.social-proof-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Titre commun pour les deux colonnes */
/* line 54, app/assets/stylesheets/website/components/_social_proof.scss */
.social-proof-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #F6E5B3;
  line-height: 1.2;
  margin: 0 0 1rem 0;
}

/* Partenaires - Colonne gauche */
/* line 64, app/assets/stylesheets/website/components/_social_proof.scss */
.social-proof-partners .partners-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  align-items: stretch;
}

@media (max-width: 768px) {
  /* line 64, app/assets/stylesheets/website/components/_social_proof.scss */
  .social-proof-partners .partners-logos {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  /* line 64, app/assets/stylesheets/website/components/_social_proof.scss */
  .social-proof-partners .partners-logos {
    grid-template-columns: 1fr;
  }
}

/* line 80, app/assets/stylesheets/website/components/_social_proof.scss */
.partner-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

/* line 91, app/assets/stylesheets/website/components/_social_proof.scss */
.partner-logo-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(246, 229, 179, 0.3);
}

/* line 97, app/assets/stylesheets/website/components/_social_proof.scss */
.partner-logo {
  max-width: 100%;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.8);
  transition: all 0.3s ease;
}

/* line 106, app/assets/stylesheets/website/components/_social_proof.scss */
.partner-logo-item:hover .partner-logo {
  filter: brightness(0) invert(1) opacity(1);
}

/* Témoignages - Colonne droite - Style aligné sur feature-item */
/* line 113, app/assets/stylesheets/website/components/_social_proof.scss */
.social-proof-testimonials .testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* line 120, app/assets/stylesheets/website/components/_social_proof.scss */
.testimonial-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  transition: all 0.3s ease;
}

/* line 132, app/assets/stylesheets/website/components/_social_proof.scss */
.testimonial-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(246, 229, 179, 0.3);
}

/* line 137, app/assets/stylesheets/website/components/_social_proof.scss */
.testimonial-item .testimonial-icon {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background: rgba(246, 229, 179, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 147, app/assets/stylesheets/website/components/_social_proof.scss */
.testimonial-item .testimonial-icon i {
  font-size: 1.1rem;
  color: #F6E5B3;
}

/* line 153, app/assets/stylesheets/website/components/_social_proof.scss */
.testimonial-item .testimonial-content {
  flex: 1;
}

/* line 156, app/assets/stylesheets/website/components/_social_proof.scss */
.testimonial-item .testimonial-content .testimonial-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin: 0 0 0.75rem 0;
  font-style: italic;
}

/* line 164, app/assets/stylesheets/website/components/_social_proof.scss */
.testimonial-item .testimonial-content .testimonial-author {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

/* line 169, app/assets/stylesheets/website/components/_social_proof.scss */
.testimonial-item .testimonial-content .testimonial-author .author-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #F6E5B3;
}

/* line 175, app/assets/stylesheets/website/components/_social_proof.scss */
.testimonial-item .testimonial-content .testimonial-author .author-role {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* line 179, app/assets/stylesheets/website/components/_social_proof.scss */
.testimonial-item .testimonial-content .testimonial-author .author-role::before {
  content: "•";
  margin-right: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  /* line 190, app/assets/stylesheets/website/components/_social_proof.scss */
  .social-proof-title {
    text-align: center;
  }
  /* line 194, app/assets/stylesheets/website/components/_social_proof.scss */
  .testimonial-item {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
  }
  /* line 199, app/assets/stylesheets/website/components/_social_proof.scss */
  .testimonial-item .testimonial-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto;
  }
  /* line 204, app/assets/stylesheets/website/components/_social_proof.scss */
  .testimonial-item .testimonial-icon i {
    font-size: 1rem;
  }
  /* line 210, app/assets/stylesheets/website/components/_social_proof.scss */
  .testimonial-item .testimonial-content .testimonial-author {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ===== SECTION ADAPTABILITÉ ===== */
/* line 3, app/assets/stylesheets/website/components/_adaptability.scss */
.adaptability-section {
  position: relative;
  height: 100vh;
  max-height: 100vh;
  padding: 2rem 0;
  background: transparent;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* line 15, app/assets/stylesheets/website/components/_adaptability.scss */
.adaptability-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(106, 27, 154, 0.15), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 1024px) {
  /* line 3, app/assets/stylesheets/website/components/_adaptability.scss */
  .adaptability-section {
    height: auto;
    min-height: 100vh;
    max-height: none;
    padding: 3rem 0;
  }
}

/* line 35, app/assets/stylesheets/website/components/_adaptability.scss */
.adaptability-header-spacer {
  height: 60px;
}

@media (max-width: 1024px) {
  /* line 35, app/assets/stylesheets/website/components/_adaptability.scss */
  .adaptability-header-spacer {
    height: 80px;
  }
}

/* line 43, app/assets/stylesheets/website/components/_adaptability.scss */
.adaptability-container {
  position: relative;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* ===== HEADER DE LA SECTION ===== */
/* line 59, app/assets/stylesheets/website/components/_adaptability.scss */
.adaptability-header {
  text-align: center !important;
  margin-bottom: 2.5rem;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* line 69, app/assets/stylesheets/website/components/_adaptability.scss */
.adaptability-header * {
  text-align: center !important;
}

/* line 73, app/assets/stylesheets/website/components/_adaptability.scss */
.adaptability-header .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #F6E5B3;
  margin-bottom: 0.1rem;
  margin-left: auto !important;
  margin-right: auto !important;
  line-height: 1.15;
  text-align: center !important;
  align-self: center !important;
  width: 100%;
  max-width: 100%;
  display: block;
}

@media (max-width: 768px) {
  /* line 73, app/assets/stylesheets/website/components/_adaptability.scss */
  .adaptability-header .section-title {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }
}

/* line 92, app/assets/stylesheets/website/components/_adaptability.scss */
.adaptability-header .section-subtitle-text {
  font-size: clamp(1rem, 4vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  font-style: italic;
  max-width: 700px;
  margin: 0.1rem auto 0.3rem;
  text-align: center;
}

@media (max-width: 768px) {
  /* line 92, app/assets/stylesheets/website/components/_adaptability.scss */
  .adaptability-header .section-subtitle-text {
    font-size: clamp(0.9rem, 3.5vw, 1.1rem);
  }
}

/* ===== GRILLE DES CARTES ===== */
/* line 109, app/assets/stylesheets/website/components/_adaptability.scss */
.adaptability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  /* line 109, app/assets/stylesheets/website/components/_adaptability.scss */
  .adaptability-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto 0;
  }
}

/* ===== CARTES ===== */
/* line 125, app/assets/stylesheets/website/components/_adaptability.scss */
.adaptability-card {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* line 145, app/assets/stylesheets/website/components/_adaptability.scss */
.adaptability-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

/* line 150, app/assets/stylesheets/website/components/_adaptability.scss */
.adaptability-card:hover .card-hover-effect {
  opacity: 1;
}

/* line 154, app/assets/stylesheets/website/components/_adaptability.scss */
.adaptability-card:hover .icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

@media (max-width: 1024px) {
  /* line 125, app/assets/stylesheets/website/components/_adaptability.scss */
  .adaptability-card {
    padding: 1.25rem;
  }
}

/* ===== EFFET HOVER BACKGROUND ===== */
/* line 166, app/assets/stylesheets/website/components/_adaptability.scss */
.card-hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

/* line 178, app/assets/stylesheets/website/components/_adaptability.scss */
.ai-card .card-hover-effect {
  background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.1), transparent);
}

/* line 182, app/assets/stylesheets/website/components/_adaptability.scss */
.modularity-card .card-hover-effect {
  background: radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.1), transparent);
}

/* line 186, app/assets/stylesheets/website/components/_adaptability.scss */
.interconnection-card .card-hover-effect {
  background: radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.1), transparent);
}

/* ===== ICÔNE EN HAUT À DROITE ===== */
/* line 192, app/assets/stylesheets/website/components/_adaptability.scss */
.card-icon-top-right {
  flex-shrink: 0;
  align-self: center;
}

/* line 197, app/assets/stylesheets/website/components/_adaptability.scss */
.card-icon-top-right .icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  position: relative;
}

@media (max-width: 1024px) {
  /* line 197, app/assets/stylesheets/website/components/_adaptability.scss */
  .card-icon-top-right .icon-wrapper {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

/* line 214, app/assets/stylesheets/website/components/_adaptability.scss */
.card-icon-top-right .icon-wrapper i {
  z-index: 2;
}

/* line 219, app/assets/stylesheets/website/components/_adaptability.scss */
.card-icon-top-right .icon-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  opacity: 0.3;
  filter: blur(15px);
  z-index: 1;
}

/* ===== ILLUSTRATION PRINCIPALE ===== */
/* line 235, app/assets/stylesheets/website/components/_adaptability.scss */
.card-illustration {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 120px;
  flex-shrink: 0;
  position: relative;
  text-align: center;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02), transparent 70%);
}

/* line 250, app/assets/stylesheets/website/components/_adaptability.scss */
.card-illustration::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, rgba(100, 1, 39, 0.1) 0%, rgba(20, 13, 35, 0.1) 100%);
  border-radius: 8px;
  z-index: -1;
}

@media (max-width: 1024px) {
  /* line 235, app/assets/stylesheets/website/components/_adaptability.scss */
  .card-illustration {
    min-height: 100px;
  }
}

/* line 270, app/assets/stylesheets/website/components/_adaptability.scss */
.main-illustration {
  max-width: 100%;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  image-rendering: auto;
  image-rendering: smooth;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3)) blur(0.3px) contrast(1.08) brightness(0.99) saturate(1.02);
}

/* line 297, app/assets/stylesheets/website/components/_adaptability.scss */
.main-illustration::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  filter: contrast(1.15) brightness(1.03) saturate(1.08);
  opacity: 0.2;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}

/* line 316, app/assets/stylesheets/website/components/_adaptability.scss */
.main-illustration::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(100, 1, 39, 0.03) 0%, transparent 50%, rgba(20, 13, 35, 0.03) 100%);
  pointer-events: none;
  z-index: 2;
}

@media (max-width: 1024px) {
  /* line 270, app/assets/stylesheets/website/components/_adaptability.scss */
  .main-illustration {
    max-height: 100px;
  }
}

/* ===== MOCKUP SÉPARÉ ===== */
/* line 339, app/assets/stylesheets/website/components/_adaptability.scss */
.card-mockup {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  /* line 339, app/assets/stylesheets/website/components/_adaptability.scss */
  .card-mockup {
    min-height: 90px;
  }
}

/* line 352, app/assets/stylesheets/website/components/_adaptability.scss */
.icon-wrapper {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  transition: transform 0.3s ease;
  position: relative;
}

@media (max-width: 1024px) {
  /* line 352, app/assets/stylesheets/website/components/_adaptability.scss */
  .icon-wrapper {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
  }
}

/* line 369, app/assets/stylesheets/website/components/_adaptability.scss */
.icon-wrapper i {
  z-index: 2;
}

/* line 374, app/assets/stylesheets/website/components/_adaptability.scss */
.icon-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  opacity: 0.3;
  filter: blur(20px);
  z-index: 1;
}

/* line 389, app/assets/stylesheets/website/components/_adaptability.scss */
.ai-card .card-icon-top-right .icon-wrapper {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(99, 102, 241, 0.4));
}

/* line 392, app/assets/stylesheets/website/components/_adaptability.scss */
.ai-card .card-icon-top-right .icon-wrapper i {
  color: #6366f1;
}

/* line 396, app/assets/stylesheets/website/components/_adaptability.scss */
.ai-card .card-icon-top-right .icon-wrapper::before {
  background: #6366f1;
}

/* line 401, app/assets/stylesheets/website/components/_adaptability.scss */
.modularity-card .card-icon-top-right .icon-wrapper {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.4));
}

/* line 404, app/assets/stylesheets/website/components/_adaptability.scss */
.modularity-card .card-icon-top-right .icon-wrapper i {
  color: #f59e0b;
}

/* line 408, app/assets/stylesheets/website/components/_adaptability.scss */
.modularity-card .card-icon-top-right .icon-wrapper::before {
  background: #f59e0b;
}

/* line 413, app/assets/stylesheets/website/components/_adaptability.scss */
.interconnection-card .card-icon-top-right .icon-wrapper {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.4));
}

/* line 416, app/assets/stylesheets/website/components/_adaptability.scss */
.interconnection-card .card-icon-top-right .icon-wrapper i {
  color: #10b981;
}

/* line 420, app/assets/stylesheets/website/components/_adaptability.scss */
.interconnection-card .card-icon-top-right .icon-wrapper::before {
  background: #10b981;
}

/* ===== CONTENU DE LA CARTE ===== */
/* line 427, app/assets/stylesheets/website/components/_adaptability.scss */
.card-content {
  position: relative;
  z-index: 1;
}

/* line 432, app/assets/stylesheets/website/components/_adaptability.scss */
.card-header {
  margin-bottom: 1.25rem;
  border-radius: 15px !important;
  border: none !important;
  border-width: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  padding: 0;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
}

/* line 467, app/assets/stylesheets/website/components/_adaptability.scss */
.card-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #f6f6f7;
  margin-bottom: 0;
  text-align: left;
  flex: 1;
  margin-right: 1rem;
  text-transform: lowercase !important;
  align-self: center;
}

/* line 479, app/assets/stylesheets/website/components/_adaptability.scss */
.card-title::first-letter {
  text-transform: lowercase !important;
}

@media (max-width: 1024px) {
  /* line 467, app/assets/stylesheets/website/components/_adaptability.scss */
  .card-title {
    font-size: 1.5rem;
  }
}

/* ===== BADGES (SUPPRIMÉS) ===== */
/* line 490, app/assets/stylesheets/website/components/_adaptability.scss */
.card-description {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(246, 246, 247, 0.75);
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  /* line 490, app/assets/stylesheets/website/components/_adaptability.scss */
  .card-description {
    font-size: 0.95rem;
  }
}

/* ===== FEATURES DE LA CARTE (SUPPRIMÉES) ===== */
/* ===== CTA FINAL (SUPPRIMÉ) ===== */
/* ===== ANIMATIONS D'APPARITION ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* line 518, app/assets/stylesheets/website/components/_adaptability.scss */
.adaptability-card {
  animation: fadeInUp 0.6s ease-out both;
}

/* line 521, app/assets/stylesheets/website/components/_adaptability.scss */
.adaptability-card:nth-child(1) {
  animation-delay: 0.1s;
}

/* line 525, app/assets/stylesheets/website/components/_adaptability.scss */
.adaptability-card:nth-child(2) {
  animation-delay: 0.2s;
}

/* line 529, app/assets/stylesheets/website/components/_adaptability.scss */
.adaptability-card:nth-child(3) {
  animation-delay: 0.3s;
}

/* ===== MOCKUP OVERLAY - SUPPRIMÉ ===== */
/* ===== CARTE 1 : CONVERSATION IA ===== */
/* line 538, app/assets/stylesheets/website/components/_adaptability.scss */
.ai-conversation-demo {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(99, 102, 241, 0.2);
  width: 100%;
  max-width: 280px;
}

/* line 551, app/assets/stylesheets/website/components/_adaptability.scss */
.ai-bubble {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

/* line 560, app/assets/stylesheets/website/components/_adaptability.scss */
.ai-bubble i {
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* line 565, app/assets/stylesheets/website/components/_adaptability.scss */
.ai-bubble span {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

/* line 571, app/assets/stylesheets/website/components/_adaptability.scss */
.user-bubble {
  background: rgba(99, 102, 241, 0.25);
  border: 1px solid rgba(99, 102, 241, 0.4);
  animation: conversationSequence 10s ease-in-out infinite;
  animation-delay: 0s;
}

/* line 577, app/assets/stylesheets/website/components/_adaptability.scss */
.user-bubble i {
  color: #818cf8;
}

/* line 582, app/assets/stylesheets/website/components/_adaptability.scss */
.assistant-bubble {
  background: rgba(16, 185, 129, 0.25);
  border: 1px solid rgba(16, 185, 129, 0.4);
  animation: conversationSequence 10s ease-in-out infinite;
  animation-delay: 3s;
}

/* line 588, app/assets/stylesheets/website/components/_adaptability.scss */
.assistant-bubble i {
  color: #34d399;
}

/* line 593, app/assets/stylesheets/website/components/_adaptability.scss */
.suggestion-bubble {
  background: rgba(245, 158, 11, 0.25);
  border: 1px solid rgba(245, 158, 11, 0.4);
  animation: conversationSequence 10s ease-in-out infinite;
  animation-delay: 6s;
}

/* line 599, app/assets/stylesheets/website/components/_adaptability.scss */
.suggestion-bubble i {
  color: #fbbf24;
}

@keyframes conversationSequence {
  0%, 85%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  92% {
    transform: scale(1.05);
    opacity: 1;
  }
}

/* ===== CARTE 2 : TIMELINE DE CROISSANCE ===== */
/* line 617, app/assets/stylesheets/website/components/_adaptability.scss */
.modularity-card .growth-timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 158, 11, 0.2);
  gap: 0.5rem;
  width: 100%;
  max-width: 280px;
}

/* line 631, app/assets/stylesheets/website/components/_adaptability.scss */
.modularity-card .timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  flex: 1;
  position: relative;
}

/* line 639, app/assets/stylesheets/website/components/_adaptability.scss */
.modularity-card .timeline-item > i {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
}

/* line 644, app/assets/stylesheets/website/components/_adaptability.scss */
.modularity-card .timeline-item span {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  text-transform: uppercase;
}

/* line 652, app/assets/stylesheets/website/components/_adaptability.scss */
.modularity-card .timeline-item.item-module-1 > i {
  animation: iconColorChange1 10s ease-in-out infinite;
}

/* line 656, app/assets/stylesheets/website/components/_adaptability.scss */
.modularity-card .timeline-item.item-module-2 > i {
  animation: iconColorChange2 10s ease-in-out infinite;
}

/* line 660, app/assets/stylesheets/website/components/_adaptability.scss */
.modularity-card .timeline-item.item-module-3 > i {
  animation: iconColorChange3 10s ease-in-out infinite;
}

/* line 664, app/assets/stylesheets/website/components/_adaptability.scss */
.modularity-card .timeline-item.item-module-4 > i {
  animation: iconColorChange4 10s ease-in-out infinite;
}

/* line 668, app/assets/stylesheets/website/components/_adaptability.scss */
.modularity-card .timeline-item .timeline-badge {
  font-size: 0.6rem;
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 1.2rem;
  min-height: 1.2rem;
}

/* line 680, app/assets/stylesheets/website/components/_adaptability.scss */
.modularity-card .timeline-item .timeline-badge i {
  font-size: 0.5rem;
}

/* line 685, app/assets/stylesheets/website/components/_adaptability.scss */
.modularity-card .timeline-item .timeline-badge.module-1 {
  animation: moduleProgression1 10s ease-in-out infinite;
  background: rgba(245, 158, 11, 0.3);
  color: #f59e0b;
  position: relative;
}

/* line 691, app/assets/stylesheets/website/components/_adaptability.scss */
.modularity-card .timeline-item .timeline-badge.module-1::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.8rem;
  font-weight: bold;
  animation: checkmarkShow1 10s ease-in-out infinite;
}

/* line 702, app/assets/stylesheets/website/components/_adaptability.scss */
.modularity-card .timeline-item .timeline-badge.module-1 i {
  animation: iconHide1 10s ease-in-out infinite;
}

/* line 707, app/assets/stylesheets/website/components/_adaptability.scss */
.modularity-card .timeline-item .timeline-badge.module-2 {
  animation: moduleProgression2 10s ease-in-out infinite;
  background: rgba(245, 158, 11, 0.3);
  color: #f59e0b;
  position: relative;
}

/* line 713, app/assets/stylesheets/website/components/_adaptability.scss */
.modularity-card .timeline-item .timeline-badge.module-2::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.8rem;
  font-weight: bold;
  animation: checkmarkShow2 10s ease-in-out infinite;
}

/* line 724, app/assets/stylesheets/website/components/_adaptability.scss */
.modularity-card .timeline-item .timeline-badge.module-2 i {
  animation: iconHide2 10s ease-in-out infinite;
}

/* line 729, app/assets/stylesheets/website/components/_adaptability.scss */
.modularity-card .timeline-item .timeline-badge.module-3 {
  animation: moduleProgression3 10s ease-in-out infinite;
  background: rgba(245, 158, 11, 0.3);
  color: #f59e0b;
  position: relative;
}

/* line 735, app/assets/stylesheets/website/components/_adaptability.scss */
.modularity-card .timeline-item .timeline-badge.module-3::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.8rem;
  font-weight: bold;
  animation: checkmarkShow3 10s ease-in-out infinite;
}

/* line 746, app/assets/stylesheets/website/components/_adaptability.scss */
.modularity-card .timeline-item .timeline-badge.module-3 i {
  animation: iconHide3 10s ease-in-out infinite;
}

/* line 751, app/assets/stylesheets/website/components/_adaptability.scss */
.modularity-card .timeline-item .timeline-badge.module-4 {
  animation: moduleProgression4 10s ease-in-out infinite;
  background: rgba(245, 158, 11, 0.3);
  color: #f59e0b;
  position: relative;
}

/* line 757, app/assets/stylesheets/website/components/_adaptability.scss */
.modularity-card .timeline-item .timeline-badge.module-4::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.8rem;
  font-weight: bold;
  animation: checkmarkShow4 10s ease-in-out infinite;
}

/* line 768, app/assets/stylesheets/website/components/_adaptability.scss */
.modularity-card .timeline-item .timeline-badge.module-4 i {
  animation: iconHide4 10s ease-in-out infinite;
}

/* line 775, app/assets/stylesheets/website/components/_adaptability.scss */
.modularity-card .timeline-item.active i {
  color: #34d399;
}

/* line 779, app/assets/stylesheets/website/components/_adaptability.scss */
.modularity-card .timeline-item.active span {
  color: rgba(255, 255, 255, 0.95);
}

/* line 783, app/assets/stylesheets/website/components/_adaptability.scss */
.modularity-card .timeline-item.active .timeline-badge.success {
  background: rgba(16, 185, 129, 0.3);
  color: #34d399;
}

/* line 790, app/assets/stylesheets/website/components/_adaptability.scss */
.modularity-card .timeline-item.pending i {
  color: #fbbf24;
}

/* line 794, app/assets/stylesheets/website/components/_adaptability.scss */
.modularity-card .timeline-item.pending .timeline-badge.pending {
  background: rgba(245, 158, 11, 0.3);
  color: #fbbf24;
  font-size: 0.8rem;
  font-weight: bold;
  border: 1px solid rgba(245, 158, 11, 0.4);
}

/* line 804, app/assets/stylesheets/website/components/_adaptability.scss */
.modularity-card .timeline-item.future i {
  color: rgba(255, 255, 255, 0.4);
}

/* line 808, app/assets/stylesheets/website/components/_adaptability.scss */
.modularity-card .timeline-item.future .timeline-badge.future {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.5rem;
  padding: 0.1rem 0.3rem;
  font-style: italic;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes moduleProgression1 {
  0%, 15% {
    background: rgba(245, 158, 11, 0.3);
    color: #f59e0b;
  }
  20% {
    background: rgba(16, 185, 129, 0.4);
    color: #34d399;
    transform: scale(1.1);
  }
  25%, 95% {
    background: rgba(16, 185, 129, 0.3);
    color: #34d399;
    transform: scale(1);
  }
  96%, 100% {
    background: rgba(245, 158, 11, 0.3);
    color: #f59e0b;
  }
}

@keyframes moduleProgression2 {
  0%, 35% {
    background: rgba(245, 158, 11, 0.3);
    color: #f59e0b;
  }
  40% {
    background: rgba(16, 185, 129, 0.4);
    color: #34d399;
    transform: scale(1.1);
  }
  45%, 95% {
    background: rgba(16, 185, 129, 0.3);
    color: #34d399;
    transform: scale(1);
  }
  96%, 100% {
    background: rgba(245, 158, 11, 0.3);
    color: #f59e0b;
  }
}

@keyframes moduleProgression3 {
  0%, 55% {
    background: rgba(245, 158, 11, 0.3);
    color: #f59e0b;
  }
  60% {
    background: rgba(16, 185, 129, 0.4);
    color: #34d399;
    transform: scale(1.1);
  }
  65%, 95% {
    background: rgba(16, 185, 129, 0.3);
    color: #34d399;
    transform: scale(1);
  }
  96%, 100% {
    background: rgba(245, 158, 11, 0.3);
    color: #f59e0b;
  }
}

@keyframes moduleProgression4 {
  0%, 75% {
    background: rgba(245, 158, 11, 0.3);
    color: #f59e0b;
  }
  80% {
    background: rgba(16, 185, 129, 0.4);
    color: #34d399;
    transform: scale(1.1);
  }
  85%, 95% {
    background: rgba(16, 185, 129, 0.3);
    color: #34d399;
    transform: scale(1);
  }
  96%, 100% {
    background: rgba(245, 158, 11, 0.3);
    color: #f59e0b;
  }
}

@keyframes iconHide1 {
  0%, 15% {
    opacity: 1;
  }
  20%, 95% {
    opacity: 0;
  }
  96%, 100% {
    opacity: 1;
  }
}

@keyframes checkmarkShow1 {
  0%, 15% {
    opacity: 0;
  }
  20%, 95% {
    opacity: 1;
  }
  96%, 100% {
    opacity: 0;
  }
}

@keyframes iconHide2 {
  0%, 35% {
    opacity: 1;
  }
  40%, 95% {
    opacity: 0;
  }
  96%, 100% {
    opacity: 1;
  }
}

@keyframes checkmarkShow2 {
  0%, 35% {
    opacity: 0;
  }
  40%, 95% {
    opacity: 1;
  }
  96%, 100% {
    opacity: 0;
  }
}

@keyframes iconHide3 {
  0%, 55% {
    opacity: 1;
  }
  60%, 95% {
    opacity: 0;
  }
  96%, 100% {
    opacity: 1;
  }
}

@keyframes checkmarkShow3 {
  0%, 55% {
    opacity: 0;
  }
  60%, 95% {
    opacity: 1;
  }
  96%, 100% {
    opacity: 0;
  }
}

@keyframes iconHide4 {
  0%, 75% {
    opacity: 1;
  }
  80%, 95% {
    opacity: 0;
  }
  96%, 100% {
    opacity: 1;
  }
}

@keyframes checkmarkShow4 {
  0%, 75% {
    opacity: 0;
  }
  80%, 95% {
    opacity: 1;
  }
  96%, 100% {
    opacity: 0;
  }
}

@keyframes iconColorChange1 {
  0%, 15% {
    color: rgba(255, 255, 255, 0.4);
  }
  20%, 95% {
    color: #34d399;
  }
  96%, 100% {
    color: rgba(255, 255, 255, 0.4);
  }
}

@keyframes iconColorChange2 {
  0%, 35% {
    color: rgba(255, 255, 255, 0.4);
  }
  40%, 95% {
    color: #34d399;
  }
  96%, 100% {
    color: rgba(255, 255, 255, 0.4);
  }
}

@keyframes iconColorChange3 {
  0%, 55% {
    color: rgba(255, 255, 255, 0.4);
  }
  60%, 95% {
    color: #34d399;
  }
  96%, 100% {
    color: rgba(255, 255, 255, 0.4);
  }
}

@keyframes iconColorChange4 {
  0%, 75% {
    color: rgba(255, 255, 255, 0.4);
  }
  80%, 95% {
    color: #34d399;
  }
  96%, 100% {
    color: rgba(255, 255, 255, 0.4);
  }
}

/* ===== CARTE 3 : RÉSEAU WI-FI ===== */
/* line 1017, app/assets/stylesheets/website/components/_adaptability.scss */
.wifi-network {
  position: relative;
  padding: 1rem 0.75rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(16, 185, 129, 0.2);
  min-height: 140px;
  width: 100%;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* ===== ROUTEUR WI-FI ===== */
/* line 1036, app/assets/stylesheets/website/components/_adaptability.scss */
.wifi-router {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

/* line 1043, app/assets/stylesheets/website/components/_adaptability.scss */
.router-device {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.75rem 1rem;
  background: rgba(16, 185, 129, 0.25);
  border: 2px solid rgba(16, 185, 129, 0.7);
  border-radius: 10px;
  backdrop-filter: blur(5px);
  position: relative;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

/* line 1057, app/assets/stylesheets/website/components/_adaptability.scss */
.router-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.3);
  border-radius: 50%;
}

/* line 1066, app/assets/stylesheets/website/components/_adaptability.scss */
.router-icon i {
  font-size: 1.2rem;
  color: #34d399;
}

/* line 1072, app/assets/stylesheets/website/components/_adaptability.scss */
.router-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
  text-align: center;
}

/* line 1079, app/assets/stylesheets/website/components/_adaptability.scss */
.signal-indicator {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 12px;
  height: 12px;
  background: #34d399;
  border-radius: 50%;
  animation: signalPulse 2s ease-in-out infinite;
  z-index: 10;
}

/* ===== ONDES WI-FI ===== */
/* line 1093, app/assets/stylesheets/website/components/_adaptability.scss */
.wifi-waves {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

/* line 1102, app/assets/stylesheets/website/components/_adaptability.scss */
.wave {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(16, 185, 129, 0.6);
  border-radius: 50%;
  animation: waveExpand 3s ease-in-out infinite;
  z-index: 1;
}

/* line 1112, app/assets/stylesheets/website/components/_adaptability.scss */
.wave.wave-1 {
  width: 40px;
  height: 40px;
  animation-delay: 0s;
  border-color: rgba(16, 185, 129, 0.8);
}

/* line 1119, app/assets/stylesheets/website/components/_adaptability.scss */
.wave.wave-2 {
  width: 60px;
  height: 60px;
  animation-delay: 0.5s;
  border-color: rgba(16, 185, 129, 0.6);
}

/* line 1126, app/assets/stylesheets/website/components/_adaptability.scss */
.wave.wave-3 {
  width: 80px;
  height: 80px;
  animation-delay: 1s;
  border-color: rgba(16, 185, 129, 0.4);
}

/* ===== APPAREILS CONNECTÉS ===== */
/* line 1136, app/assets/stylesheets/website/components/_adaptability.scss */
.connected-devices {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  max-width: 220px;
  z-index: 2;
  margin-top: 10px;
}

/* line 1146, app/assets/stylesheets/website/components/_adaptability.scss */
.device {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 8px;
  backdrop-filter: blur(5px);
  position: relative;
  min-width: 60px;
  animation: fadeInUp 0.6s ease-out both;
}

/* line 1161, app/assets/stylesheets/website/components/_adaptability.scss */
.device.device-1 {
  animation-delay: 0.8s;
}

/* line 1165, app/assets/stylesheets/website/components/_adaptability.scss */
.device.device-2 {
  animation-delay: 1s;
}

/* line 1169, app/assets/stylesheets/website/components/_adaptability.scss */
.device.device-3 {
  animation-delay: 1.2s;
}

/* line 1174, app/assets/stylesheets/website/components/_adaptability.scss */
.device-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.2);
  border-radius: 6px;
}

/* line 1183, app/assets/stylesheets/website/components/_adaptability.scss */
.device-icon i {
  font-size: 0.9rem;
  color: #34d399;
}

/* line 1189, app/assets/stylesheets/website/components/_adaptability.scss */
.device-label {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  text-align: center;
}

/* line 1196, app/assets/stylesheets/website/components/_adaptability.scss */
.connection-status {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 8px;
  height: 8px;
  background: #34d399;
  border-radius: 50%;
  animation: connectionBlink 1.5s ease-in-out infinite;
  z-index: 5;
}

/* ===== CONNEXIONS PUZZLE INTÉGRÉES ===== */
/* ===== PIÈCES PÉRIPHÉRIQUES ===== */
/* line 1215, app/assets/stylesheets/website/components/_adaptability.scss */
.puzzle-periphery {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  max-width: 220px;
  z-index: 2;
}

/* line 1224, app/assets/stylesheets/website/components/_adaptability.scss */
.peripheral-piece {
  flex: 1;
  min-width: 65px;
}

/* line 1229, app/assets/stylesheets/website/components/_adaptability.scss */
.flow-arrow {
  position: absolute;
  width: 3px;
  height: 40px;
  background: linear-gradient(to bottom, #34d399, #10b981, transparent);
  animation: flowPulse 2s ease-in-out infinite;
  border-radius: 2px;
}

/* line 1238, app/assets/stylesheets/website/components/_adaptability.scss */
.flow-arrow::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 8px solid #10b981;
}

/* line 1251, app/assets/stylesheets/website/components/_adaptability.scss */
.flow-arrow.arrow-1 {
  top: 30%;
  left: 25%;
  transform: rotate(-30deg);
  animation-delay: 0s;
  background: linear-gradient(to bottom, #34d399, #059669, transparent);
}

/* line 1258, app/assets/stylesheets/website/components/_adaptability.scss */
.flow-arrow.arrow-1::after {
  border-top-color: #059669;
}

/* line 1263, app/assets/stylesheets/website/components/_adaptability.scss */
.flow-arrow.arrow-2 {
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0.3s;
  background: linear-gradient(to bottom, #34d399, #059669, transparent);
}

/* line 1270, app/assets/stylesheets/website/components/_adaptability.scss */
.flow-arrow.arrow-2::after {
  border-top-color: #059669;
}

/* line 1275, app/assets/stylesheets/website/components/_adaptability.scss */
.flow-arrow.arrow-3 {
  top: 30%;
  right: 25%;
  transform: rotate(30deg);
  animation-delay: 0.6s;
  background: linear-gradient(to bottom, #34d399, #059669, transparent);
}

/* line 1282, app/assets/stylesheets/website/components/_adaptability.scss */
.flow-arrow.arrow-3::after {
  border-top-color: #059669;
}

/* line 1288, app/assets/stylesheets/website/components/_adaptability.scss */
.flow-targets {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

/* line 1294, app/assets/stylesheets/website/components/_adaptability.scss */
.flow-target {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  padding: 0.5rem;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 8px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  animation: fadeInFlow 0.6s ease-out forwards;
  opacity: 0;
  transition: all 0.3s ease;
  position: relative;
}

/* line 1310, app/assets/stylesheets/website/components/_adaptability.scss */
.flow-target::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: #34d399;
  border-radius: 50%;
  opacity: 0;
  animation: receiveData 2s ease-in-out infinite;
}

/* line 1324, app/assets/stylesheets/website/components/_adaptability.scss */
.flow-target:nth-child(1) {
  animation-delay: 0.3s;
}

/* line 1326, app/assets/stylesheets/website/components/_adaptability.scss */
.flow-target:nth-child(1)::before {
  animation-delay: 0.5s;
}

/* line 1328, app/assets/stylesheets/website/components/_adaptability.scss */
.flow-target:nth-child(2) {
  animation-delay: 0.4s;
}

/* line 1330, app/assets/stylesheets/website/components/_adaptability.scss */
.flow-target:nth-child(2)::before {
  animation-delay: 0.8s;
}

/* line 1332, app/assets/stylesheets/website/components/_adaptability.scss */
.flow-target:nth-child(3) {
  animation-delay: 0.5s;
}

/* line 1334, app/assets/stylesheets/website/components/_adaptability.scss */
.flow-target:nth-child(3)::before {
  animation-delay: 1.1s;
}

/* line 1337, app/assets/stylesheets/website/components/_adaptability.scss */
.flow-target i {
  font-size: 0.9rem;
  color: #34d399;
  transition: color 0.3s ease;
}

/* line 1343, app/assets/stylesheets/website/components/_adaptability.scss */
.flow-target span {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  text-align: center;
}

/* line 1351, app/assets/stylesheets/website/components/_adaptability.scss */
.flow-target:hover {
  background: rgba(16, 185, 129, 0.25);
  border-color: rgba(16, 185, 129, 0.5);
  transform: scale(1.05);
}

/* line 1356, app/assets/stylesheets/website/components/_adaptability.scss */
.flow-target:hover i {
  color: #10b981;
}

@keyframes pulseGlow {
  0%, 100% {
    filter: drop-shadow(0 0 5px rgba(16, 185, 129, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.6));
  }
}

@keyframes flowPulse {
  0% {
    opacity: 0.2;
    transform: scaleY(0.8);
  }
  25% {
    opacity: 0.8;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.1);
  }
  75% {
    opacity: 0.6;
    transform: scaleY(1);
  }
  100% {
    opacity: 0.2;
    transform: scaleY(0.8);
  }
}

@keyframes fadeInFlow {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes receiveData {
  0%, 90% {
    opacity: 0;
    transform: translateX(-50%) scale(0);
  }
  10%, 80% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
  85% {
    opacity: 0.5;
    transform: translateX(-50%) scale(1.2);
  }
}

/* ===== ANIMATIONS RÉSEAU WI-FI ===== */
@keyframes signalPulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes waveExpand {
  0% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(0.8);
  }
  50% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1.2);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.5);
  }
}

@keyframes connectionBlink {
  0%, 50% {
    opacity: 1;
    transform: scale(1);
  }
  25%, 75% {
    opacity: 0.3;
    transform: scale(0.8);
  }
}

/* ===== PRÉPARATION POUR ILLUSTRATIONS FUTURES ===== */
/* line 1464, app/assets/stylesheets/website/components/_adaptability.scss */
.card-illustration {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* line 1472, app/assets/stylesheets/website/components/_adaptability.scss */
.card-illustration.svg-illustration {
  fill: currentColor;
}

/* line 1477, app/assets/stylesheets/website/components/_adaptability.scss */
.card-illustration.image-illustration {
  object-fit: contain;
}

/* ===== SECTION ASSISTANT IA CONVERSATIONNEL ===== */
/* line 3, app/assets/stylesheets/website/components/_ai_assistant.scss */
.ai-assistant-section {
  position: relative;
  min-height: 100vh;
  padding: 2rem 0;
  background: transparent;
  overflow: visible;
  display: flex;
  align-items: center;
}

/* line 13, app/assets/stylesheets/website/components/_ai_assistant.scss */
.ai-assistant-section::before {
  display: none;
}

@media (max-height: 800px) {
  /* line 3, app/assets/stylesheets/website/components/_ai_assistant.scss */
  .ai-assistant-section {
    min-height: auto;
    padding: 3rem 0;
  }
}

@media (max-width: 1024px) {
  /* line 3, app/assets/stylesheets/website/components/_ai_assistant.scss */
  .ai-assistant-section {
    min-height: auto;
    padding: 3rem 0;
  }
}

/* line 29, app/assets/stylesheets/website/components/_ai_assistant.scss */
.ai-assistant-header-spacer {
  height: 40px;
}

@media (max-width: 1024px) {
  /* line 29, app/assets/stylesheets/website/components/_ai_assistant.scss */
  .ai-assistant-header-spacer {
    height: 60px;
  }
}

/* line 37, app/assets/stylesheets/website/components/_ai_assistant.scss */
.ai-assistant-container {
  position: relative;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Header */
/* line 51, app/assets/stylesheets/website/components/_ai_assistant.scss */
.ai-assistant-header {
  text-align: center;
  margin-bottom: 2rem;
  width: 100%;
}

/* line 57, app/assets/stylesheets/website/components/_ai_assistant.scss */
.ai-assistant-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #F6E5B3;
  line-height: 1.1;
  margin: 0 0 0.75rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* line 70, app/assets/stylesheets/website/components/_ai_assistant.scss */
.ai-assistant-orizen-logo {
  height: 2.25rem;
  width: auto;
  display: inline-block;
  vertical-align: baseline;
}

/* line 77, app/assets/stylesheets/website/components/_ai_assistant.scss */
.ai-assistant-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

/* Contenu principal */
/* line 85, app/assets/stylesheets/website/components/_ai_assistant.scss */
.ai-assistant-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

@media (max-width: 992px) {
  /* line 85, app/assets/stylesheets/website/components/_ai_assistant.scss */
  .ai-assistant-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Illustration - style aligné sur modularity-illustration */
/* line 100, app/assets/stylesheets/website/components/_ai_assistant.scss */
.ai-assistant-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

/* line 107, app/assets/stylesheets/website/components/_ai_assistant.scss */
.ai-assistant-illustration {
  position: relative;
}

/* line 110, app/assets/stylesheets/website/components/_ai_assistant.scss */
.ai-assistant-illustration .main-illustration {
  max-width: 90px;
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(246, 229, 179, 0.3));
}

/* line 116, app/assets/stylesheets/website/components/_ai_assistant.scss */
.ai-assistant-illustration::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(246, 229, 179, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: aiAssistantGlow 3s ease-in-out infinite;
}

@keyframes aiAssistantGlow {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* line 142, app/assets/stylesheets/website/components/_ai_assistant.scss */
.ai-assistant-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: #F6E5B3;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Mockup conversation - Chat simulation */
/* line 151, app/assets/stylesheets/website/components/_ai_assistant.scss */
.ai-assistant-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  max-height: 280px;
}

/* line 159, app/assets/stylesheets/website/components/_ai_assistant.scss */
.ai-chat-demo {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 380px;
  padding: 1rem;
}

/* line 168, app/assets/stylesheets/website/components/_ai_assistant.scss */
.chat-message {
  max-width: 85%;
  padding: 0.75rem 1rem;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(10px);
  animation: chatAppear 8s ease-out infinite;
}

/* line 178, app/assets/stylesheets/website/components/_ai_assistant.scss */
.chat-message span {
  display: block;
  color: rgba(255, 255, 255, 0.95);
}

/* Messages utilisateur - alignés à droite, style orange/corail */
/* line 185, app/assets/stylesheets/website/components/_ai_assistant.scss */
.user-message {
  align-self: flex-end;
  background: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
  border-radius: 16px 16px 4px 16px;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

/* line 191, app/assets/stylesheets/website/components/_ai_assistant.scss */
.user-message span {
  color: #1a1a2e;
  font-weight: 500;
}

/* Messages assistant - alignés à gauche, style sombre avec bordure */
/* line 198, app/assets/stylesheets/website/components/_ai_assistant.scss */
.assistant-message {
  align-self: flex-start;
  background: rgba(30, 30, 50, 0.8);
  border: 1px solid rgba(246, 229, 179, 0.2);
  border-radius: 16px 16px 16px 4px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* line 206, app/assets/stylesheets/website/components/_ai_assistant.scss */
.assistant-message span {
  color: rgba(255, 255, 255, 0.9);
}

/* line 211, app/assets/stylesheets/website/components/_ai_assistant.scss */
.chat-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: #F6E5B3;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

/* line 220, app/assets/stylesheets/website/components/_ai_assistant.scss */
.chat-link:hover {
  color: #F59E0B;
}

/* Animation séquentielle des messages */
/* line 226, app/assets/stylesheets/website/components/_ai_assistant.scss */
.chat-message:nth-child(1) {
  animation-delay: 0s;
}

/* line 230, app/assets/stylesheets/website/components/_ai_assistant.scss */
.chat-message:nth-child(2) {
  animation-delay: 1.5s;
}

/* line 234, app/assets/stylesheets/website/components/_ai_assistant.scss */
.chat-message:nth-child(3) {
  animation-delay: 4s;
}

/* line 238, app/assets/stylesheets/website/components/_ai_assistant.scss */
.chat-message:nth-child(4) {
  animation-delay: 5.5s;
}

@keyframes chatAppear {
  0%, 100% {
    opacity: 0;
    transform: translateY(10px);
  }
  5% {
    opacity: 1;
    transform: translateY(0);
  }
  85% {
    opacity: 1;
    transform: translateY(0);
  }
  95% {
    opacity: 0;
    transform: translateY(-5px);
  }
}

/* Features - style aligné sur modularity-examples */
/* line 262, app/assets/stylesheets/website/components/_ai_assistant.scss */
.ai-assistant-features {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  /* line 262, app/assets/stylesheets/website/components/_ai_assistant.scss */
  .ai-assistant-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* line 275, app/assets/stylesheets/website/components/_ai_assistant.scss */
.feature-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  transition: all 0.3s ease;
}

/* line 287, app/assets/stylesheets/website/components/_ai_assistant.scss */
.feature-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(246, 229, 179, 0.3);
}

/* line 292, app/assets/stylesheets/website/components/_ai_assistant.scss */
.feature-item .feature-icon {
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  background: rgba(246, 229, 179, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 302, app/assets/stylesheets/website/components/_ai_assistant.scss */
.feature-item .feature-icon i {
  font-size: 1.35rem;
  color: #F6E5B3;
}

/* line 308, app/assets/stylesheets/website/components/_ai_assistant.scss */
.feature-item .feature-content {
  flex: 1;
}

/* line 311, app/assets/stylesheets/website/components/_ai_assistant.scss */
.feature-item .feature-content h3, .feature-item .feature-content .h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #F6E5B3;
  margin: 0 0 0.35rem 0;
}

/* line 318, app/assets/stylesheets/website/components/_ai_assistant.scss */
.feature-item .feature-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  /* line 329, app/assets/stylesheets/website/components/_ai_assistant.scss */
  .ai-assistant-container {
    padding: 0 1rem;
  }
  /* line 333, app/assets/stylesheets/website/components/_ai_assistant.scss */
  .ai-assistant-title {
    font-size: 1.75rem;
  }
  /* line 337, app/assets/stylesheets/website/components/_ai_assistant.scss */
  .ai-assistant-orizen-logo {
    height: 1.5rem;
  }
  /* line 341, app/assets/stylesheets/website/components/_ai_assistant.scss */
  .ai-assistant-subtitle {
    font-size: 0.95rem;
  }
  /* line 345, app/assets/stylesheets/website/components/_ai_assistant.scss */
  .ai-assistant-illustration .main-illustration {
    max-width: 70px;
  }
  /* line 349, app/assets/stylesheets/website/components/_ai_assistant.scss */
  .ai-assistant-label {
    font-size: 0.9rem;
  }
  /* line 353, app/assets/stylesheets/website/components/_ai_assistant.scss */
  .ai-assistant-content {
    gap: 2rem;
  }
  /* line 357, app/assets/stylesheets/website/components/_ai_assistant.scss */
  .ai-assistant-mockup {
    min-height: 180px;
    max-height: 240px;
  }
  /* line 362, app/assets/stylesheets/website/components/_ai_assistant.scss */
  .ai-chat-demo {
    max-width: 100%;
    padding: 0.75rem;
  }
  /* line 367, app/assets/stylesheets/website/components/_ai_assistant.scss */
  .chat-message {
    max-width: 90%;
    padding: 0.6rem 0.85rem;
    font-size: 0.85rem;
  }
  /* line 373, app/assets/stylesheets/website/components/_ai_assistant.scss */
  .ai-assistant-features {
    gap: 1rem;
  }
  /* line 377, app/assets/stylesheets/website/components/_ai_assistant.scss */
  .feature-item {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
  }
  /* line 382, app/assets/stylesheets/website/components/_ai_assistant.scss */
  .feature-item .feature-icon {
    width: 50px;
    height: 50px;
  }
  /* line 386, app/assets/stylesheets/website/components/_ai_assistant.scss */
  .feature-item .feature-icon i {
    font-size: 1.1rem;
  }
  /* line 391, app/assets/stylesheets/website/components/_ai_assistant.scss */
  .feature-item .feature-content h3, .feature-item .feature-content .h3 {
    font-size: 1rem;
  }
  /* line 395, app/assets/stylesheets/website/components/_ai_assistant.scss */
  .feature-item .feature-content p {
    font-size: 0.85rem;
  }
}

/* ===== SECTION MODULARITÉ ===== */
/* line 3, app/assets/stylesheets/website/components/_modularity.scss */
.modularity-section {
  background: transparent;
  min-height: 100vh;
  padding: 4rem 0;
  position: relative;
  display: flex;
  align-items: center;
}

/* line 12, app/assets/stylesheets/website/components/_modularity.scss */
.modularity-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

/* Header pleine largeur */
/* line 20, app/assets/stylesheets/website/components/_modularity.scss */
.modularity-header {
  text-align: center;
  margin-bottom: 2rem;
}

@media (max-width: 992px) {
  /* line 20, app/assets/stylesheets/website/components/_modularity.scss */
  .modularity-header {
    margin-bottom: 1.5rem;
  }
}

/* line 29, app/assets/stylesheets/website/components/_modularity.scss */
.modularity-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #F6E5B3;
  line-height: 1.1;
  margin: 0 0 0.75rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* line 42, app/assets/stylesheets/website/components/_modularity.scss */
.modularity-orizen-logo {
  height: 2.25rem;
  width: auto;
  display: inline-block;
  vertical-align: baseline;
}

/* line 49, app/assets/stylesheets/website/components/_modularity.scss */
.modularity-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

/* Layout 2 colonnes */
/* line 57, app/assets/stylesheets/website/components/_modularity.scss */
.modularity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
}

@media (max-width: 992px) {
  /* line 57, app/assets/stylesheets/website/components/_modularity.scss */
  .modularity-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: stretch;
  }
}

/* Colonne gauche */
/* line 71, app/assets/stylesheets/website/components/_modularity.scss */
.modularity-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: flex-end;
}

/* Modulaire - mise en valeur */
/* line 79, app/assets/stylesheets/website/components/_modularity.scss */
.modularity-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

/* line 86, app/assets/stylesheets/website/components/_modularity.scss */
.modularity-illustration {
  position: relative;
}

/* line 89, app/assets/stylesheets/website/components/_modularity.scss */
.modularity-illustration .main-illustration {
  max-width: 90px;
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(246, 229, 179, 0.3));
}

/* line 95, app/assets/stylesheets/website/components/_modularity.scss */
.modularity-illustration::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(246, 229, 179, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: modularityGlow 3s ease-in-out infinite;
}

@keyframes modularityGlow {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* line 121, app/assets/stylesheets/website/components/_modularity.scss */
.modularity-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: #F6E5B3;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Growth board - style glassmorphism comme circuit-board */
/* line 130, app/assets/stylesheets/website/components/_modularity.scss */
.growth-board {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1rem;
  display: flex;
  justify-content: center;
}

/* line 144, app/assets/stylesheets/website/components/_modularity.scss */
.growth-timeline {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  padding: 0;
  border-radius: 0;
}

/* line 157, app/assets/stylesheets/website/components/_modularity.scss */
.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  flex: 0 0 auto;
  position: relative;
  /* Animations par module */
}

/* line 165, app/assets/stylesheets/website/components/_modularity.scss */
.timeline-item .timeline-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* line 176, app/assets/stylesheets/website/components/_modularity.scss */
.timeline-item .timeline-icon i {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

/* line 182, app/assets/stylesheets/website/components/_modularity.scss */
.timeline-item .timeline-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  white-space: nowrap;
}

/* line 190, app/assets/stylesheets/website/components/_modularity.scss */
.timeline-item .timeline-badge {
  font-size: 0.55rem;
  padding: 0.12rem 0.35rem;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.3);
  color: #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 1.1rem;
  min-height: 1.1rem;
  position: relative;
}

/* line 203, app/assets/stylesheets/website/components/_modularity.scss */
.timeline-item .timeline-badge i {
  font-size: 0.45rem;
}

/* line 207, app/assets/stylesheets/website/components/_modularity.scss */
.timeline-item .timeline-badge::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.65rem;
  font-weight: bold;
  opacity: 0;
}

/* line 221, app/assets/stylesheets/website/components/_modularity.scss */
.timeline-item.item-module-1 .timeline-icon i {
  animation: iconColorChange1 12s ease-in-out infinite;
}

/* line 222, app/assets/stylesheets/website/components/_modularity.scss */
.timeline-item.item-module-1 .timeline-badge {
  animation: moduleProgression1 12s ease-in-out infinite;
}

/* line 223, app/assets/stylesheets/website/components/_modularity.scss */
.timeline-item.item-module-1 .timeline-badge i {
  animation: iconHide1 12s ease-in-out infinite;
}

/* line 224, app/assets/stylesheets/website/components/_modularity.scss */
.timeline-item.item-module-1 .timeline-badge::after {
  animation: checkmarkShow1 12s ease-in-out infinite;
}

/* line 228, app/assets/stylesheets/website/components/_modularity.scss */
.timeline-item.item-module-2 .timeline-icon i {
  animation: iconColorChange2 12s ease-in-out infinite;
}

/* line 229, app/assets/stylesheets/website/components/_modularity.scss */
.timeline-item.item-module-2 .timeline-badge {
  animation: moduleProgression2 12s ease-in-out infinite;
}

/* line 230, app/assets/stylesheets/website/components/_modularity.scss */
.timeline-item.item-module-2 .timeline-badge i {
  animation: iconHide2 12s ease-in-out infinite;
}

/* line 231, app/assets/stylesheets/website/components/_modularity.scss */
.timeline-item.item-module-2 .timeline-badge::after {
  animation: checkmarkShow2 12s ease-in-out infinite;
}

/* line 235, app/assets/stylesheets/website/components/_modularity.scss */
.timeline-item.item-module-3 .timeline-icon i {
  animation: iconColorChange3 12s ease-in-out infinite;
}

/* line 236, app/assets/stylesheets/website/components/_modularity.scss */
.timeline-item.item-module-3 .timeline-badge {
  animation: moduleProgression3 12s ease-in-out infinite;
}

/* line 237, app/assets/stylesheets/website/components/_modularity.scss */
.timeline-item.item-module-3 .timeline-badge i {
  animation: iconHide3 12s ease-in-out infinite;
}

/* line 238, app/assets/stylesheets/website/components/_modularity.scss */
.timeline-item.item-module-3 .timeline-badge::after {
  animation: checkmarkShow3 12s ease-in-out infinite;
}

/* line 242, app/assets/stylesheets/website/components/_modularity.scss */
.timeline-item.item-module-4 .timeline-icon i {
  animation: iconColorChange4 12s ease-in-out infinite;
}

/* line 243, app/assets/stylesheets/website/components/_modularity.scss */
.timeline-item.item-module-4 .timeline-badge {
  animation: moduleProgression4 12s ease-in-out infinite;
}

/* line 244, app/assets/stylesheets/website/components/_modularity.scss */
.timeline-item.item-module-4 .timeline-badge i {
  animation: iconHide4 12s ease-in-out infinite;
}

/* line 245, app/assets/stylesheets/website/components/_modularity.scss */
.timeline-item.item-module-4 .timeline-badge::after {
  animation: checkmarkShow4 12s ease-in-out infinite;
}

/* line 249, app/assets/stylesheets/website/components/_modularity.scss */
.timeline-item.item-module-5 .timeline-icon i {
  animation: iconColorChange5 12s ease-in-out infinite;
}

/* line 250, app/assets/stylesheets/website/components/_modularity.scss */
.timeline-item.item-module-5 .timeline-badge {
  animation: moduleProgression5 12s ease-in-out infinite;
}

/* line 251, app/assets/stylesheets/website/components/_modularity.scss */
.timeline-item.item-module-5 .timeline-badge i {
  animation: iconHide5 12s ease-in-out infinite;
}

/* line 252, app/assets/stylesheets/website/components/_modularity.scss */
.timeline-item.item-module-5 .timeline-badge::after {
  animation: checkmarkShow5 12s ease-in-out infinite;
}

/* line 256, app/assets/stylesheets/website/components/_modularity.scss */
.timeline-item.item-module-6 .timeline-icon i {
  animation: iconColorChange6 12s ease-in-out infinite;
}

/* line 257, app/assets/stylesheets/website/components/_modularity.scss */
.timeline-item.item-module-6 .timeline-badge {
  animation: moduleProgression6 12s ease-in-out infinite;
}

/* line 258, app/assets/stylesheets/website/components/_modularity.scss */
.timeline-item.item-module-6 .timeline-badge i {
  animation: iconHide6 12s ease-in-out infinite;
}

/* line 259, app/assets/stylesheets/website/components/_modularity.scss */
.timeline-item.item-module-6 .timeline-badge::after {
  animation: checkmarkShow6 12s ease-in-out infinite;
}

/* line 263, app/assets/stylesheets/website/components/_modularity.scss */
.timeline-item--more .timeline-icon {
  background: rgba(246, 229, 179, 0.08);
  border: 1px dashed rgba(246, 229, 179, 0.3);
}

/* line 267, app/assets/stylesheets/website/components/_modularity.scss */
.timeline-item--more .timeline-icon i {
  font-size: 0.8rem;
  color: rgba(246, 229, 179, 0.7);
}

/* line 273, app/assets/stylesheets/website/components/_modularity.scss */
.timeline-item--more .timeline-label {
  color: rgba(246, 229, 179, 0.7);
  font-weight: 700;
}

/* Colonne droite : Exemples - style aligné avec interconnection-examples */
/* line 281, app/assets/stylesheets/website/components/_modularity.scss */
.modularity-right {
  display: flex;
  align-items: flex-end;
}

/* line 286, app/assets/stylesheets/website/components/_modularity.scss */
.modularity-examples {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

/* line 293, app/assets/stylesheets/website/components/_modularity.scss */
.modularity-examples .example-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  transition: all 0.3s ease;
}

/* line 305, app/assets/stylesheets/website/components/_modularity.scss */
.modularity-examples .example-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(246, 229, 179, 0.3);
}

/* line 310, app/assets/stylesheets/website/components/_modularity.scss */
.modularity-examples .example-card .example-icon {
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  background: rgba(246, 229, 179, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 320, app/assets/stylesheets/website/components/_modularity.scss */
.modularity-examples .example-card .example-icon i {
  font-size: 1.35rem;
  color: #F6E5B3;
}

/* line 326, app/assets/stylesheets/website/components/_modularity.scss */
.modularity-examples .example-card .example-content {
  flex: 1;
}

/* line 329, app/assets/stylesheets/website/components/_modularity.scss */
.modularity-examples .example-card .example-content h3, .modularity-examples .example-card .example-content .h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #F6E5B3;
  margin: 0 0 0.35rem 0;
}

/* line 336, app/assets/stylesheets/website/components/_modularity.scss */
.modularity-examples .example-card .example-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  margin: 0;
}

/* Animations de progression des modules - 6 modules sur 12s */
@keyframes moduleProgression1 {
  0%, 8% {
    background: rgba(245, 158, 11, 0.3);
    color: #f59e0b;
  }
  12% {
    background: rgba(16, 185, 129, 0.4);
    color: #34d399;
    transform: scale(1.1);
  }
  16%, 92% {
    background: rgba(16, 185, 129, 0.3);
    color: #34d399;
    transform: scale(1);
  }
  96%, 100% {
    background: rgba(245, 158, 11, 0.3);
    color: #f59e0b;
  }
}

@keyframes moduleProgression2 {
  0%, 20% {
    background: rgba(245, 158, 11, 0.3);
    color: #f59e0b;
  }
  24% {
    background: rgba(16, 185, 129, 0.4);
    color: #34d399;
    transform: scale(1.1);
  }
  28%, 92% {
    background: rgba(16, 185, 129, 0.3);
    color: #34d399;
    transform: scale(1);
  }
  96%, 100% {
    background: rgba(245, 158, 11, 0.3);
    color: #f59e0b;
  }
}

@keyframes moduleProgression3 {
  0%, 32% {
    background: rgba(245, 158, 11, 0.3);
    color: #f59e0b;
  }
  36% {
    background: rgba(16, 185, 129, 0.4);
    color: #34d399;
    transform: scale(1.1);
  }
  40%, 92% {
    background: rgba(16, 185, 129, 0.3);
    color: #34d399;
    transform: scale(1);
  }
  96%, 100% {
    background: rgba(245, 158, 11, 0.3);
    color: #f59e0b;
  }
}

@keyframes moduleProgression4 {
  0%, 44% {
    background: rgba(245, 158, 11, 0.3);
    color: #f59e0b;
  }
  48% {
    background: rgba(16, 185, 129, 0.4);
    color: #34d399;
    transform: scale(1.1);
  }
  52%, 92% {
    background: rgba(16, 185, 129, 0.3);
    color: #34d399;
    transform: scale(1);
  }
  96%, 100% {
    background: rgba(245, 158, 11, 0.3);
    color: #f59e0b;
  }
}

@keyframes moduleProgression5 {
  0%, 56% {
    background: rgba(245, 158, 11, 0.3);
    color: #f59e0b;
  }
  60% {
    background: rgba(16, 185, 129, 0.4);
    color: #34d399;
    transform: scale(1.1);
  }
  64%, 92% {
    background: rgba(16, 185, 129, 0.3);
    color: #34d399;
    transform: scale(1);
  }
  96%, 100% {
    background: rgba(245, 158, 11, 0.3);
    color: #f59e0b;
  }
}

@keyframes moduleProgression6 {
  0%, 68% {
    background: rgba(245, 158, 11, 0.3);
    color: #f59e0b;
  }
  72% {
    background: rgba(16, 185, 129, 0.4);
    color: #34d399;
    transform: scale(1.1);
  }
  76%, 92% {
    background: rgba(16, 185, 129, 0.3);
    color: #34d399;
    transform: scale(1);
  }
  96%, 100% {
    background: rgba(245, 158, 11, 0.3);
    color: #f59e0b;
  }
}

@keyframes iconHide1 {
  0%, 8% {
    opacity: 1;
  }
  12%, 92% {
    opacity: 0;
  }
  96%, 100% {
    opacity: 1;
  }
}

@keyframes checkmarkShow1 {
  0%, 8% {
    opacity: 0;
  }
  12%, 92% {
    opacity: 1;
  }
  96%, 100% {
    opacity: 0;
  }
}

@keyframes iconHide2 {
  0%, 20% {
    opacity: 1;
  }
  24%, 92% {
    opacity: 0;
  }
  96%, 100% {
    opacity: 1;
  }
}

@keyframes checkmarkShow2 {
  0%, 20% {
    opacity: 0;
  }
  24%, 92% {
    opacity: 1;
  }
  96%, 100% {
    opacity: 0;
  }
}

@keyframes iconHide3 {
  0%, 32% {
    opacity: 1;
  }
  36%, 92% {
    opacity: 0;
  }
  96%, 100% {
    opacity: 1;
  }
}

@keyframes checkmarkShow3 {
  0%, 32% {
    opacity: 0;
  }
  36%, 92% {
    opacity: 1;
  }
  96%, 100% {
    opacity: 0;
  }
}

@keyframes iconHide4 {
  0%, 44% {
    opacity: 1;
  }
  48%, 92% {
    opacity: 0;
  }
  96%, 100% {
    opacity: 1;
  }
}

@keyframes checkmarkShow4 {
  0%, 44% {
    opacity: 0;
  }
  48%, 92% {
    opacity: 1;
  }
  96%, 100% {
    opacity: 0;
  }
}

@keyframes iconHide5 {
  0%, 56% {
    opacity: 1;
  }
  60%, 92% {
    opacity: 0;
  }
  96%, 100% {
    opacity: 1;
  }
}

@keyframes checkmarkShow5 {
  0%, 56% {
    opacity: 0;
  }
  60%, 92% {
    opacity: 1;
  }
  96%, 100% {
    opacity: 0;
  }
}

@keyframes iconHide6 {
  0%, 68% {
    opacity: 1;
  }
  72%, 92% {
    opacity: 0;
  }
  96%, 100% {
    opacity: 1;
  }
}

@keyframes checkmarkShow6 {
  0%, 68% {
    opacity: 0;
  }
  72%, 92% {
    opacity: 1;
  }
  96%, 100% {
    opacity: 0;
  }
}

@keyframes iconColorChange1 {
  0%, 8% {
    color: rgba(255, 255, 255, 0.5);
  }
  12%, 92% {
    color: #34d399;
  }
  96%, 100% {
    color: rgba(255, 255, 255, 0.5);
  }
}

@keyframes iconColorChange2 {
  0%, 20% {
    color: rgba(255, 255, 255, 0.5);
  }
  24%, 92% {
    color: #34d399;
  }
  96%, 100% {
    color: rgba(255, 255, 255, 0.5);
  }
}

@keyframes iconColorChange3 {
  0%, 32% {
    color: rgba(255, 255, 255, 0.5);
  }
  36%, 92% {
    color: #34d399;
  }
  96%, 100% {
    color: rgba(255, 255, 255, 0.5);
  }
}

@keyframes iconColorChange4 {
  0%, 44% {
    color: rgba(255, 255, 255, 0.5);
  }
  48%, 92% {
    color: #34d399;
  }
  96%, 100% {
    color: rgba(255, 255, 255, 0.5);
  }
}

@keyframes iconColorChange5 {
  0%, 56% {
    color: rgba(255, 255, 255, 0.5);
  }
  60%, 92% {
    color: #34d399;
  }
  96%, 100% {
    color: rgba(255, 255, 255, 0.5);
  }
}

@keyframes iconColorChange6 {
  0%, 68% {
    color: rgba(255, 255, 255, 0.5);
  }
  72%, 92% {
    color: #34d399;
  }
  96%, 100% {
    color: rgba(255, 255, 255, 0.5);
  }
}

/* Responsive */
@media (max-width: 768px) {
  /* line 498, app/assets/stylesheets/website/components/_modularity.scss */
  .modularity-section {
    padding: 3rem 0;
    min-height: auto;
  }
  /* line 503, app/assets/stylesheets/website/components/_modularity.scss */
  .modularity-title {
    font-size: 1.75rem;
  }
  /* line 507, app/assets/stylesheets/website/components/_modularity.scss */
  .modularity-orizen-logo {
    height: 1.5rem;
  }
  /* line 511, app/assets/stylesheets/website/components/_modularity.scss */
  .modularity-subtitle {
    font-size: 0.95rem;
  }
  /* line 515, app/assets/stylesheets/website/components/_modularity.scss */
  .modularity-illustration .main-illustration {
    max-width: 70px;
  }
  /* line 519, app/assets/stylesheets/website/components/_modularity.scss */
  .modularity-label {
    font-size: 0.9rem;
  }
  /* line 523, app/assets/stylesheets/website/components/_modularity.scss */
  .growth-board {
    padding: 0.75rem;
  }
  /* line 527, app/assets/stylesheets/website/components/_modularity.scss */
  .growth-timeline {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  /* line 533, app/assets/stylesheets/website/components/_modularity.scss */
  .timeline-item {
    flex: 0 0 auto;
  }
  /* line 536, app/assets/stylesheets/website/components/_modularity.scss */
  .timeline-item .timeline-icon {
    width: 36px;
    height: 36px;
  }
  /* line 540, app/assets/stylesheets/website/components/_modularity.scss */
  .timeline-item .timeline-icon i {
    font-size: 0.8rem;
  }
  /* line 545, app/assets/stylesheets/website/components/_modularity.scss */
  .timeline-item .timeline-label {
    font-size: 0.6rem;
  }
  /* line 550, app/assets/stylesheets/website/components/_modularity.scss */
  .modularity-examples .example-card {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
  }
  /* line 555, app/assets/stylesheets/website/components/_modularity.scss */
  .modularity-examples .example-card .example-icon {
    width: 50px;
    height: 50px;
  }
  /* line 559, app/assets/stylesheets/website/components/_modularity.scss */
  .modularity-examples .example-card .example-icon i {
    font-size: 1.1rem;
  }
  /* line 564, app/assets/stylesheets/website/components/_modularity.scss */
  .modularity-examples .example-card .example-content h3, .modularity-examples .example-card .example-content .h3 {
    font-size: 1rem;
  }
  /* line 568, app/assets/stylesheets/website/components/_modularity.scss */
  .modularity-examples .example-card .example-content p {
    font-size: 0.85rem;
  }
}

/* ===== SECTION INTERCONNEXION ===== */
/* line 3, app/assets/stylesheets/website/components/_interconnection.scss */
.interconnection-section {
  background: transparent;
  min-height: 100vh;
  padding: 4rem 0;
  position: relative;
  display: flex;
  align-items: center;
}

/* line 12, app/assets/stylesheets/website/components/_interconnection.scss */
.interconnection-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

/* Header pleine largeur */
/* line 20, app/assets/stylesheets/website/components/_interconnection.scss */
.interconnection-header {
  text-align: center;
  margin-bottom: 2rem;
}

@media (max-width: 992px) {
  /* line 20, app/assets/stylesheets/website/components/_interconnection.scss */
  .interconnection-header {
    margin-bottom: 1.5rem;
  }
}

/* line 29, app/assets/stylesheets/website/components/_interconnection.scss */
.interconnection-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #F6E5B3;
  line-height: 1.1;
  margin: 0 0 0.75rem 0;
}

/* line 37, app/assets/stylesheets/website/components/_interconnection.scss */
.interconnection-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

/* Layout 2 colonnes */
/* line 45, app/assets/stylesheets/website/components/_interconnection.scss */
.interconnection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
}

@media (max-width: 992px) {
  /* line 45, app/assets/stylesheets/website/components/_interconnection.scss */
  .interconnection-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: stretch;
  }
}

/* Colonne gauche */
/* line 59, app/assets/stylesheets/website/components/_interconnection.scss */
.interconnection-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: flex-end;
}

/* Écosystème connecté - mise en valeur */
/* line 67, app/assets/stylesheets/website/components/_interconnection.scss */
.ecosystem-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

/* line 74, app/assets/stylesheets/website/components/_interconnection.scss */
.ecosystem-illustration {
  position: relative;
}

/* line 77, app/assets/stylesheets/website/components/_interconnection.scss */
.ecosystem-illustration .main-illustration {
  max-width: 90px;
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(246, 229, 179, 0.3));
}

/* line 83, app/assets/stylesheets/website/components/_interconnection.scss */
.ecosystem-illustration::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(246, 229, 179, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: ecosystemGlow 3s ease-in-out infinite;
}

@keyframes ecosystemGlow {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* line 109, app/assets/stylesheets/website/components/_interconnection.scss */
.ecosystem-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: #F6E5B3;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Circuit imprimé */
/* line 118, app/assets/stylesheets/website/components/_interconnection.scss */
.circuit-board {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hub central */
/* line 132, app/assets/stylesheets/website/components/_interconnection.scss */
.circuit-hub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  z-index: 2;
}

/* line 139, app/assets/stylesheets/website/components/_interconnection.scss */
.circuit-hub .hub-icon {
  width: 50px;
  height: 50px;
  background: rgba(246, 229, 179, 0.15);
  border: 2px solid rgba(246, 229, 179, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 149, app/assets/stylesheets/website/components/_interconnection.scss */
.circuit-hub .hub-icon i {
  font-size: 1.25rem;
  color: #F6E5B3;
}

/* line 155, app/assets/stylesheets/website/components/_interconnection.scss */
.circuit-hub .hub-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #F6E5B3;
}

/* SVG Circuit paths */
/* line 163, app/assets/stylesheets/website/components/_interconnection.scss */
.circuit-paths {
  width: 100%;
  max-width: 320px;
  height: 100px;
  margin: -10px 0;
}

/* line 170, app/assets/stylesheets/website/components/_interconnection.scss */
.circuit-line {
  fill: none;
  stroke: rgba(246, 229, 179, 0.2);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* line 178, app/assets/stylesheets/website/components/_interconnection.scss */
.circuit-current {
  fill: none;
  stroke: #F6E5B3;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 20 200;
  stroke-dashoffset: 0;
}

/* line 188, app/assets/stylesheets/website/components/_interconnection.scss */
.circuit-current-1 {
  animation: currentFlow1 2.5s ease-in-out infinite;
}

/* line 192, app/assets/stylesheets/website/components/_interconnection.scss */
.circuit-current-2 {
  animation: currentFlow2 2.5s ease-in-out infinite 0.3s;
}

/* line 196, app/assets/stylesheets/website/components/_interconnection.scss */
.circuit-current-3 {
  animation: currentFlow3 2.5s ease-in-out infinite 0.6s;
}

/* line 200, app/assets/stylesheets/website/components/_interconnection.scss */
.circuit-current-4 {
  animation: currentFlow4 2.5s ease-in-out infinite 0.9s;
}

@keyframes currentFlow1 {
  0% {
    stroke-dashoffset: 200;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    stroke-dashoffset: -200;
    opacity: 0;
  }
}

@keyframes currentFlow2 {
  0% {
    stroke-dashoffset: 150;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    stroke-dashoffset: -150;
    opacity: 0;
  }
}

@keyframes currentFlow3 {
  0% {
    stroke-dashoffset: 200;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    stroke-dashoffset: -200;
    opacity: 0;
  }
}

@keyframes currentFlow4 {
  0% {
    stroke-dashoffset: 220;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    stroke-dashoffset: -220;
    opacity: 0;
  }
}

/* line 272, app/assets/stylesheets/website/components/_interconnection.scss */
.circuit-node {
  fill: rgba(246, 229, 179, 0.6);
  animation: nodePulse 2s ease-in-out infinite;
}

@keyframes nodePulse {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

/* Modules connectés */
/* line 287, app/assets/stylesheets/website/components/_interconnection.scss */
.circuit-modules {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 270px;
  z-index: 2;
}

/* line 295, app/assets/stylesheets/website/components/_interconnection.scss */
.circuit-module {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

/* line 301, app/assets/stylesheets/website/components/_interconnection.scss */
.circuit-module .module-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* line 312, app/assets/stylesheets/website/components/_interconnection.scss */
.circuit-module .module-icon i {
  font-size: 1rem;
  color: #F6E5B3;
}

/* line 317, app/assets/stylesheets/website/components/_interconnection.scss */
.circuit-module .module-icon:hover {
  background: rgba(246, 229, 179, 0.1);
  border-color: rgba(246, 229, 179, 0.3);
}

/* line 323, app/assets/stylesheets/website/components/_interconnection.scss */
.circuit-module .module-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

/* line 330, app/assets/stylesheets/website/components/_interconnection.scss */
.circuit-module--more .module-icon {
  background: rgba(246, 229, 179, 0.08);
  border: 1px dashed rgba(246, 229, 179, 0.3);
  border-radius: 12px;
}

/* line 335, app/assets/stylesheets/website/components/_interconnection.scss */
.circuit-module--more .module-icon i {
  font-size: 0.9rem;
  color: rgba(246, 229, 179, 0.7);
}

/* line 341, app/assets/stylesheets/website/components/_interconnection.scss */
.circuit-module--more .module-label {
  color: rgba(246, 229, 179, 0.7);
  font-weight: 700;
}

/* Colonne droite : Exemples */
/* line 349, app/assets/stylesheets/website/components/_interconnection.scss */
.interconnection-right {
  display: flex;
  align-items: flex-end;
}

/* line 354, app/assets/stylesheets/website/components/_interconnection.scss */
.interconnection-examples {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

/* line 361, app/assets/stylesheets/website/components/_interconnection.scss */
.example-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  transition: all 0.3s ease;
}

/* line 373, app/assets/stylesheets/website/components/_interconnection.scss */
.example-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(246, 229, 179, 0.3);
}

/* line 378, app/assets/stylesheets/website/components/_interconnection.scss */
.example-card .example-icon {
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  background: rgba(246, 229, 179, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 388, app/assets/stylesheets/website/components/_interconnection.scss */
.example-card .example-icon i {
  font-size: 1.35rem;
  color: #F6E5B3;
}

/* line 394, app/assets/stylesheets/website/components/_interconnection.scss */
.example-card .example-content {
  flex: 1;
}

/* line 397, app/assets/stylesheets/website/components/_interconnection.scss */
.example-card .example-content h3, .example-card .example-content .h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #F6E5B3;
  margin: 0 0 0.35rem 0;
}

/* line 404, app/assets/stylesheets/website/components/_interconnection.scss */
.example-card .example-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  /* line 415, app/assets/stylesheets/website/components/_interconnection.scss */
  .interconnection-section {
    padding: 3rem 0;
    min-height: auto;
  }
  /* line 420, app/assets/stylesheets/website/components/_interconnection.scss */
  .interconnection-title {
    font-size: 1.75rem;
  }
  /* line 424, app/assets/stylesheets/website/components/_interconnection.scss */
  .interconnection-subtitle {
    font-size: 0.95rem;
  }
  /* line 428, app/assets/stylesheets/website/components/_interconnection.scss */
  .ecosystem-illustration .main-illustration {
    max-width: 70px;
  }
  /* line 432, app/assets/stylesheets/website/components/_interconnection.scss */
  .ecosystem-label {
    font-size: 0.9rem;
  }
  /* line 436, app/assets/stylesheets/website/components/_interconnection.scss */
  .circuit-board {
    padding: 0.75rem;
  }
  /* line 440, app/assets/stylesheets/website/components/_interconnection.scss */
  .circuit-hub .hub-icon {
    width: 42px;
    height: 42px;
  }
  /* line 444, app/assets/stylesheets/website/components/_interconnection.scss */
  .circuit-hub .hub-icon i {
    font-size: 1rem;
  }
  /* line 449, app/assets/stylesheets/website/components/_interconnection.scss */
  .circuit-modules {
    max-width: 280px;
  }
  /* line 453, app/assets/stylesheets/website/components/_interconnection.scss */
  .circuit-module .module-icon {
    width: 40px;
    height: 40px;
  }
  /* line 458, app/assets/stylesheets/website/components/_interconnection.scss */
  .example-card {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
  }
  /* line 463, app/assets/stylesheets/website/components/_interconnection.scss */
  .example-card .example-icon {
    width: 50px;
    height: 50px;
  }
  /* line 467, app/assets/stylesheets/website/components/_interconnection.scss */
  .example-card .example-icon i {
    font-size: 1.1rem;
  }
  /* line 472, app/assets/stylesheets/website/components/_interconnection.scss */
  .example-card .example-content h3, .example-card .example-content .h3 {
    font-size: 1rem;
  }
  /* line 476, app/assets/stylesheets/website/components/_interconnection.scss */
  .example-card .example-content p {
    font-size: 0.85rem;
  }
}

/* Section FAQ */
/* line 2, app/assets/stylesheets/website/components/_faq.scss */
.faq-section {
  min-height: auto;
  padding: 60px 0;
}

/* line 7, app/assets/stylesheets/website/components/_faq.scss */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* line 13, app/assets/stylesheets/website/components/_faq.scss */
.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* line 18, app/assets/stylesheets/website/components/_faq.scss */
.faq-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #F6E5B3;
  margin-bottom: 0.5rem;
}

/* line 26, app/assets/stylesheets/website/components/_faq.scss */
.faq-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* line 33, app/assets/stylesheets/website/components/_faq.scss */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* line 39, app/assets/stylesheets/website/components/_faq.scss */
.faq-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: background 0.3s ease, border-color 0.3s ease;
}

/* line 46, app/assets/stylesheets/website/components/_faq.scss */
.faq-item:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
}

/* line 51, app/assets/stylesheets/website/components/_faq.scss */
.faq-item[open] {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

/* line 55, app/assets/stylesheets/website/components/_faq.scss */
.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

/* line 61, app/assets/stylesheets/website/components/_faq.scss */
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  list-style: none;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
}

/* line 73, app/assets/stylesheets/website/components/_faq.scss */
.faq-question::-webkit-details-marker {
  display: none;
}

/* line 77, app/assets/stylesheets/website/components/_faq.scss */
.faq-question::marker {
  display: none;
  content: '';
}

/* line 83, app/assets/stylesheets/website/components/_faq.scss */
.faq-chevron {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

/* line 91, app/assets/stylesheets/website/components/_faq.scss */
.faq-answer {
  padding: 0 1.5rem 1.25rem;
}

/* line 94, app/assets/stylesheets/website/components/_faq.scss */
.faq-answer p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* line 102, app/assets/stylesheets/website/components/_faq.scss */
.faq-answer strong {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  /* line 109, app/assets/stylesheets/website/components/_faq.scss */
  .faq-container {
    padding: 0 1.25rem;
  }
  /* line 113, app/assets/stylesheets/website/components/_faq.scss */
  .faq-question {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
  }
  /* line 118, app/assets/stylesheets/website/components/_faq.scss */
  .faq-answer {
    padding: 0 1.25rem 1rem;
  }
  /* line 121, app/assets/stylesheets/website/components/_faq.scss */
  .faq-answer p {
    font-size: 0.9rem;
  }
}

/* Section Aperçu de l'application */
/* line 2, app/assets/stylesheets/website/components/_app_preview.scss */
.app-preview-section {
  min-height: auto;
  padding: 60px 0;
}

/* line 7, app/assets/stylesheets/website/components/_app_preview.scss */
.app-preview-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* line 13, app/assets/stylesheets/website/components/_app_preview.scss */
.app-preview-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* line 18, app/assets/stylesheets/website/components/_app_preview.scss */
.app-preview-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #F6E5B3;
  margin-bottom: 0.5rem;
}

/* line 26, app/assets/stylesheets/website/components/_app_preview.scss */
.app-preview-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* line 33, app/assets/stylesheets/website/components/_app_preview.scss */
.app-preview-content {
  display: flex;
  justify-content: center;
}

/* line 38, app/assets/stylesheets/website/components/_app_preview.scss */
.app-preview-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

/* line 50, app/assets/stylesheets/website/components/_app_preview.scss */
.app-preview-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* line 57, app/assets/stylesheets/website/components/_app_preview.scss */
.app-preview-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 107, 53, 0.9);
  color: white;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
  z-index: 2;
}

/* line 77, app/assets/stylesheets/website/components/_app_preview.scss */
.app-preview-play-btn i {
  margin-left: 4px;
}

/* line 81, app/assets/stylesheets/website/components/_app_preview.scss */
.app-preview-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.6);
}

/* line 86, app/assets/stylesheets/website/components/_app_preview.scss */
.app-preview-play-btn.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.8);
}

/* Responsive */
@media (max-width: 768px) {
  /* line 95, app/assets/stylesheets/website/components/_app_preview.scss */
  .app-preview-container {
    padding: 0 1.25rem;
  }
  /* line 99, app/assets/stylesheets/website/components/_app_preview.scss */
  .app-preview-play-btn {
    width: 56px;
    height: 56px;
    font-size: 1.2rem;
  }
}

/* Modales plein écran sur mobile */
@media (max-width: 768px) {
  /* line 22, app/assets/stylesheets/website/components/_index.scss */
  .modal,
.modal-dialog {
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
  }
  /* line 24, app/assets/stylesheets/website/components/_index.scss */
  .modal,
.modal-backdrop {
    position: fixed !important;
    inset: 0 !important;
  }
  /* line 26, app/assets/stylesheets/website/components/_index.scss */
  .modal-content {
    height: 100vh !important;
    border-radius: 0 !important;
  }
  /* line 27, app/assets/stylesheets/website/components/_index.scss */
  .modal-body {
    overflow-y: auto;
    height: calc(100vh - 120px);
  }
}

/* Page de contact – cohérente avec la landing Orizen */
/* line 3, app/assets/stylesheets/website/pages/_contact.scss */
body:has(.contact-page) {
  min-height: 100vh;
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
  color: #FFFFFF;
  overflow-x: hidden;
}

/* line 10, app/assets/stylesheets/website/pages/_contact.scss */
.contact-header {
  max-width: 760px;
  margin: 24px auto 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* line 20, app/assets/stylesheets/website/pages/_contact.scss */
.contact-actions {
  align-self: flex-start;
  margin-bottom: 8px;
}

/* line 25, app/assets/stylesheets/website/pages/_contact.scss */
.contact-title {
  text-align: center;
  color: #F6E5B3;
  font-weight: 700;
  font-size: 1.8rem;
  margin: 0;
}

/* line 33, app/assets/stylesheets/website/pages/_contact.scss */
.contact-container-card {
  max-width: 760px;
  margin: 24px auto 56px auto;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
}

/* line 44, app/assets/stylesheets/website/pages/_contact.scss */
.contact-grid {
  display: grid;
  gap: 16px;
}

/* line 45, app/assets/stylesheets/website/pages/_contact.scss */
.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 700px) {
  /* line 46, app/assets/stylesheets/website/pages/_contact.scss */
  .contact-row {
    grid-template-columns: 1fr;
  }
}

/* line 48, app/assets/stylesheets/website/pages/_contact.scss */
.contact-input {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1rem;
  transition: all .25s ease;
  min-height: 48px;
  box-sizing: border-box;
}

/* line 59, app/assets/stylesheets/website/pages/_contact.scss */
.contact-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 60, app/assets/stylesheets/website/pages/_contact.scss */
.contact-input:focus {
  outline: none;
  border-color: #F6E5B3;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(246, 229, 179, 0.18);
}

/* line 61, app/assets/stylesheets/website/pages/_contact.scss */
.contact-textarea {
  min-height: 120px;
  resize: vertical;
}

/* line 63, app/assets/stylesheets/website/pages/_contact.scss */
.contact-actions {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

/* line 64, app/assets/stylesheets/website/pages/_contact.scss */
.contact-submit {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: #fff;
  padding: 14px 22px;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  font-size: 1.05rem;
  min-width: 220px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  transition: all .3s ease;
}

/* line 71, app/assets/stylesheets/website/pages/_contact.scss */
.contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Wrapper pour les highlights + photo fondateurs */
/* line 74, app/assets/stylesheets/website/pages/_contact.scss */
.contact-highlights-wrapper {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 12px;
}

/* line 82, app/assets/stylesheets/website/pages/_contact.scss */
.contact-highlights {
  display: grid;
  gap: 12px;
  margin-bottom: 0;
}

/* line 83, app/assets/stylesheets/website/pages/_contact.scss */
.contact-highlights li {
  list-style: none;
  color: rgba(255, 255, 255, 0.9);
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  align-items: center;
}

/* line 84, app/assets/stylesheets/website/pages/_contact.scss */
.contact-highlights img {
  width: 70px;
  height: 70px;
}

/* line 86, app/assets/stylesheets/website/pages/_contact.scss */
.contact-highlights .content h5, .contact-highlights .content .h5 {
  color: #F6E5B3;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

/* line 93, app/assets/stylesheets/website/pages/_contact.scss */
.contact-highlights .content p {
  font-size: 0.85rem;
  margin: 0;
}

/* Photo des fondateurs */
/* line 99, app/assets/stylesheets/website/pages/_contact.scss */
.contact-founders-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 105, app/assets/stylesheets/website/pages/_contact.scss */
.founders-photo {
  width: 260px;
  height: auto;
  border-radius: 16px;
  opacity: 0.85;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(246, 229, 179, 0.25);
  transition: all 0.3s ease;
}

/* line 114, app/assets/stylesheets/website/pages/_contact.scss */
.founders-photo:hover {
  opacity: 1;
  border-color: rgba(246, 229, 179, 0.5);
  transform: scale(1.02);
}

@media (max-width: 700px) {
  /* line 122, app/assets/stylesheets/website/pages/_contact.scss */
  .contact-highlights-wrapper {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  /* line 127, app/assets/stylesheets/website/pages/_contact.scss */
  .contact-founders-visual {
    order: -1;
    /* Photo en haut sur mobile */
  }
  /* line 131, app/assets/stylesheets/website/pages/_contact.scss */
  .founders-photo {
    width: 200px;
  }
}

/* line 136, app/assets/stylesheets/website/pages/_contact.scss */
.contact-consent {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  color: rgba(255, 255, 255, 0.92) !important;
  font-weight: 400 !important;
}

/* line 143, app/assets/stylesheets/website/pages/_contact.scss */
.contact-container-card label.contact-consent {
  opacity: 1 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 0.95rem !important;
  color: rgba(255, 255, 255, 0.92) !important;
}

/* line 150, app/assets/stylesheets/website/pages/_contact.scss */
.contact-container-card label.contact-consent * {
  opacity: 1 !important;
}

/* line 151, app/assets/stylesheets/website/pages/_contact.scss */
.contact-row-consent {
  grid-template-columns: 1fr;
  align-items: center;
}

/* Conteneur pour les cases à cocher groupées */
/* line 154, app/assets/stylesheets/website/pages/_contact.scss */
.consent-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 160, app/assets/stylesheets/website/pages/_contact.scss */
.consent-checkboxes .contact-consent {
  margin-bottom: 0;
}

/* line 164, app/assets/stylesheets/website/pages/_contact.scss */
.consent-checkboxes .contact-consent:last-child {
  margin-top: 8px !important;
}

/* line 167, app/assets/stylesheets/website/pages/_contact.scss */
.contact-consent input[type="checkbox"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  border-radius: 3px !important;
  border: 2px solid #F6E5B3 !important;
  background: transparent !important;
  display: inline-block !important;
  position: relative !important;
  box-shadow: none !important;
}

/* line 181, app/assets/stylesheets/website/pages/_contact.scss */
.contact-consent input[type="checkbox"]:checked {
  background: #F6E5B3 !important;
  border-color: #F6E5B3 !important;
}

/* line 182, app/assets/stylesheets/website/pages/_contact.scss */
.contact-consent input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 4px;
  width: 5px;
  height: 9px;
  border: solid #1a1a1a;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* line 187, app/assets/stylesheets/website/pages/_contact.scss */
.input-wrapper {
  position: relative;
}

/* line 192, app/assets/stylesheets/website/pages/_contact.scss */
.validation-message {
  font-size: 0.7rem;
  margin-top: 0.25rem;
  transition: all 0.3s ease;
  display: none;
}

/* line 199, app/assets/stylesheets/website/pages/_contact.scss */
.validation-message.error {
  color: #ff6b6b;
  display: block;
}

/* line 204, app/assets/stylesheets/website/pages/_contact.scss */
.validation-message.success {
  color: #51cf66;
  display: block;
}

/* line 210, app/assets/stylesheets/website/pages/_contact.scss */
.contact-input {
  position: relative;
  padding-right: 40px;
}

/* line 215, app/assets/stylesheets/website/pages/_contact.scss */
.contact-input::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* line 227, app/assets/stylesheets/website/pages/_contact.scss */
.contact-input.valid::after {
  content: '✓';
  background: #51cf66;
  color: white;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 237, app/assets/stylesheets/website/pages/_contact.scss */
.contact-input.invalid::after {
  content: '✗';
  background: #ff6b6b;
  color: white;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  /* line 249, app/assets/stylesheets/website/pages/_contact.scss */
  .contact-header {
    padding: 0 16px;
  }
  /* line 253, app/assets/stylesheets/website/pages/_contact.scss */
  .contact-container-card {
    margin: 16px auto 32px auto;
    padding: 24px;
  }
  /* line 258, app/assets/stylesheets/website/pages/_contact.scss */
  .contact-title {
    font-size: 1.5rem;
  }
  /* line 262, app/assets/stylesheets/website/pages/_contact.scss */
  .contact-highlights .content h5, .contact-highlights .content .h5 {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  /* line 268, app/assets/stylesheets/website/pages/_contact.scss */
  .contact-container-card {
    margin: 12px auto;
    padding: 20px;
  }
  /* line 273, app/assets/stylesheets/website/pages/_contact.scss */
  .contact-title {
    font-size: 1.3rem;
  }
}

/* line 278, app/assets/stylesheets/website/pages/_contact.scss */
.contact-container {
  display: grid;
  grid-template-columns: 40% 60%;
  width: 100%;
  height: 50vh;
  margin-top: 20vh;
}

@media screen and (max-width: 768px) {
  /* line 278, app/assets/stylesheets/website/pages/_contact.scss */
  .contact-container {
    display: block;
    margin: 200px auto;
  }
}

/* line 291, app/assets/stylesheets/website/pages/_contact.scss */
.contact-container h1, .contact-container .h1 {
  margin-bottom: 40px;
}

/* line 294, app/assets/stylesheets/website/pages/_contact.scss */
.contact-container .content-title {
  gap: 20px;
  justify-content: flex-end;
}

/* line 298, app/assets/stylesheets/website/pages/_contact.scss */
.contact-container .contact-content {
  padding: 10px 20px;
  border-radius: 4px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}

/* line 308, app/assets/stylesheets/website/pages/_contact.scss */
.contact-container .contact-content::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #ffffff57;
}

/* line 317, app/assets/stylesheets/website/pages/_contact.scss */
.contact-container .contact-content li {
  display: flex;
  align-items: start;
  justify-content: flex-end;
  gap: 20px;
}

/* line 323, app/assets/stylesheets/website/pages/_contact.scss */
.contact-container .contact-content li img {
  margin-bottom: 40px;
}

/* line 326, app/assets/stylesheets/website/pages/_contact.scss */
.contact-container .contact-content li .content {
  text-align: end;
  margin-bottom: 20px;
}

/* line 330, app/assets/stylesheets/website/pages/_contact.scss */
.contact-container .contact-content li .content p {
  color: #A60240;
  margin-top: 10px;
  max-width: 350px;
}

@media screen and (max-width: 768px) {
  /* line 298, app/assets/stylesheets/website/pages/_contact.scss */
  .contact-container .contact-content {
    display: none;
  }
}

/* line 344, app/assets/stylesheets/website/pages/_contact.scss */
.contact-container .form-container {
  padding: 10px 30px;
  display: flex;
  flex-direction: column;
  align-items: start;
  margin-left: 10%;
  justify-content: start;
}

/* line 351, app/assets/stylesheets/website/pages/_contact.scss */
.contact-container .form-container .form-content-container {
  gap: 20px;
}

/* line 353, app/assets/stylesheets/website/pages/_contact.scss */
.contact-container .form-container .form-content-container input {
  background-color: #140D23;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #FFFFFF;
  transition: box-shadow 0.4s ease, border-bottom 0.4s ease;
}

/* line 358, app/assets/stylesheets/website/pages/_contact.scss */
.contact-container .form-container .form-content-container input::placeholder {
  color: rgba(255, 255, 255, 0.502);
  font-weight: lighter;
  font-style: italic;
}

/* line 364, app/assets/stylesheets/website/pages/_contact.scss */
.contact-container .form-container .form-content-container input:focus {
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  outline: none;
}

/* line 373, app/assets/stylesheets/website/pages/_contact.scss */
.contact-container .form-container textarea {
  background-color: #140D23;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.6);
  max-width: 480px;
  transition: box-shadow 0.4s ease, border-bottom 0.4s ease;
}

/* line 379, app/assets/stylesheets/website/pages/_contact.scss */
.contact-container .form-container textarea::placeholder {
  color: rgba(255, 255, 255, 0.502);
  font-weight: lighter;
  font-style: italic;
}

/* line 384, app/assets/stylesheets/website/pages/_contact.scss */
.contact-container .form-container textarea:focus {
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  outline: none;
}

/* Mentions légales – cohérence visuelle avec la landing */
/* line 2, app/assets/stylesheets/website/pages/_static_pages.scss */
.legal-page {
  width: 100%;
  margin-inline: auto;
  color: #FFFFFF;
  /* Fond landing-like + scroll doux */
  min-height: 100vh;
  padding: 24px;
  /* remonter l'ensemble */
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 14, app/assets/stylesheets/website/pages/_static_pages.scss */
.legal-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-bottom: 0;
}

/* line 15, app/assets/stylesheets/website/pages/_static_pages.scss */
.legal-actions {
  position: static;
  transform: none;
  display: flex;
  justify-content: flex-start;
  margin: 0;
}

/* line 16, app/assets/stylesheets/website/pages/_static_pages.scss */
.legal-back {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: #F6E5B3;
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: all 0.25s ease;
}

/* line 28, app/assets/stylesheets/website/pages/_static_pages.scss */
.legal-back:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

/* line 29, app/assets/stylesheets/website/pages/_static_pages.scss */
.legal-back svg {
  margin-right: 4px;
}

/* Background plein écran fixé (cohérent hero) */
/* line 32, app/assets/stylesheets/website/pages/_static_pages.scss */
body:has(.legal-page) {
  background: linear-gradient(151deg, #140D23 25%, #640127 100%) !important;
  background-attachment: fixed !important;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* line 38, app/assets/stylesheets/website/pages/_static_pages.scss */
body:has(.legal-page)::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* line 40, app/assets/stylesheets/website/pages/_static_pages.scss */
.legal-title {
  position: static;
  text-align: center;
  margin: 0 0 1rem 0;
  font-size: 2.25rem;
  font-weight: 800;
  color: #F6E5B3;
  text-shadow: 0 0 20px rgba(246, 229, 179, 0.25);
  justify-self: center;
}

/* line 51, app/assets/stylesheets/website/pages/_static_pages.scss */
.legal-toc {
  position: static;
  /* plus de fixation */
  top: auto;
  left: auto;
  transform: none;
  z-index: auto;
  margin: 0 auto;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 0.65rem 1rem;
  /* élargi */
  width: 100%;
}

/* line 66, app/assets/stylesheets/website/pages/_static_pages.scss */
.legal-toc__title {
  font-size: .9rem;
  color: #F6E5B3;
  margin-right: .75rem;
}

/* line 69, app/assets/stylesheets/website/pages/_static_pages.scss */
.legal-toc__list {
  display: inline-flex;
  flex-wrap: wrap;
  gap: .5rem .75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* line 70, app/assets/stylesheets/website/pages/_static_pages.scss */
.legal-toc__list a {
  display: inline-block;
  padding: .35rem .6rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* line 75, app/assets/stylesheets/website/pages/_static_pages.scss */
.legal-toc__list a:hover, .legal-toc__list a.is-active {
  color: #1a1a1a;
  background: rgba(246, 229, 179, 0.85);
  border-color: rgba(246, 229, 179, 0.9);
}

/* line 79, app/assets/stylesheets/website/pages/_static_pages.scss */
.legal-section {
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 80, app/assets/stylesheets/website/pages/_static_pages.scss */
.legal-section:last-of-type {
  border-bottom: none;
}

/* line 81, app/assets/stylesheets/website/pages/_static_pages.scss */
.legal-section__title {
  font-size: 1.25rem;
  margin: 1.25rem 0 .75rem 0;
  color: #F6E5B3;
}

/* line 83, app/assets/stylesheets/website/pages/_static_pages.scss */
.legal-page p {
  line-height: 1.6;
  font-size: 1rem;
  margin: 0 0 .75rem 0;
  color: rgba(255, 255, 255, 0.92);
}

/* line 84, app/assets/stylesheets/website/pages/_static_pages.scss */
.legal-page ul {
  list-style: none;
  padding-left: 0;
  margin: .25rem 0 1rem 0;
}

/* line 85, app/assets/stylesheets/website/pages/_static_pages.scss */
.legal-page li {
  position: relative;
  padding-left: 1.25rem;
  margin: .25rem 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
}

/* line 86, app/assets/stylesheets/website/pages/_static_pages.scss */
.legal-page li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #F6E5B3;
}

/* line 87, app/assets/stylesheets/website/pages/_static_pages.scss */
.legal-page a {
  color: #F6E5B3;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* line 88, app/assets/stylesheets/website/pages/_static_pages.scss */
.legal-page a:hover {
  color: #fff;
}

/* line 89, app/assets/stylesheets/website/pages/_static_pages.scss */
.legal-page a.external-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

/* line 90, app/assets/stylesheets/website/pages/_static_pages.scss */
.legal-page a.external-link:hover {
  text-decoration: underline;
}

/* line 92, app/assets/stylesheets/website/pages/_static_pages.scss */
.legal-updated {
  text-align: right;
  font-size: .85rem;
  opacity: .8;
  margin-top: .5rem;
}

@media (max-width: 768px) {
  /* line 95, app/assets/stylesheets/website/pages/_static_pages.scss */
  .legal-title {
    position: static;
    top: auto;
    transform: none;
  }
  /* line 96, app/assets/stylesheets/website/pages/_static_pages.scss */
  .legal-toc {
    position: static;
    top: auto;
    width: 100%;
    transform: none;
  }
  /* line 97, app/assets/stylesheets/website/pages/_static_pages.scss */
  .legal-page {
    padding-top: 16px;
  }
}

/* Impression */
@media print {
  /* line 102, app/assets/stylesheets/website/pages/_static_pages.scss */
  .legal-toc {
    display: none;
  }
  /* line 103, app/assets/stylesheets/website/pages/_static_pages.scss */
  .legal-page {
    color: #000;
  }
  /* line 104, app/assets/stylesheets/website/pages/_static_pages.scss */
  .legal-page a::after {
    content: " (" attr(href) ")";
    font-size: .9em;
  }
}

/* Page d'authentification – cohérente avec la landing Orizen */
/* Activer le décor global quand la page auth est présente */
/* line 4, app/assets/stylesheets/website/pages/_auth.scss */
body:has(.auth-page) {
  min-height: 100vh;
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
  color: #FFFFFF;
  overflow-x: hidden;
}

/* Variable partagée pour aligner header et carte */
/* line 12, app/assets/stylesheets/website/pages/_auth.scss */
.auth-page {
  --auth-card-max: 680px;
  --auth-card-min: 500px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* line 20, app/assets/stylesheets/website/pages/_auth.scss */
.auth-header {
  max-width: var(--auth-card-max);
  /* aligné sur la carte */
  margin: 0 auto;
  /* centré horizontalement */
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  padding: 24px 16px 0;
  width: 100%;
}

/* line 31, app/assets/stylesheets/website/pages/_auth.scss */
.auth-actions {
  order: 1;
}

/* line 35, app/assets/stylesheets/website/pages/_auth.scss */
.auth-title {
  order: 2;
  text-align: left;
  /* Aligné à gauche sous le bouton pour meilleure ergonomie (par défaut pour passwords/new) */
  color: #F6E5B3;
  font-weight: 800;
  font-size: 2.25rem;
  letter-spacing: 0.3px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* line 50, app/assets/stylesheets/website/pages/_auth.scss */
.auth-title-logo {
  height: 2rem;
  vertical-align: middle;
}

/* Sur la page de connexion, garder le titre centré pour cohérence */
/* line 56, app/assets/stylesheets/website/pages/_auth.scss */
.auth-page:has(form[action*="/session"]) .auth-title {
  text-align: center;
  width: 100%;
}

/* line 61, app/assets/stylesheets/website/pages/_auth.scss */
.auth-back, .legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: #F6E5B3;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: all 0.25s ease;
}

/* line 73, app/assets/stylesheets/website/pages/_auth.scss */
.auth-back:hover, .legal-back:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

/* line 75, app/assets/stylesheets/website/pages/_auth.scss */
.auth-container {
  flex: 1;
  /* Prend l'espace disponible */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px 56px;
  max-width: var(--auth-card-max);
  margin: 0 auto;
  gap: 20px;
  /* Espace entre le titre et la card */
}

/* line 87, app/assets/stylesheets/website/pages/_auth.scss */
.auth-container .auth-title {
  text-align: left;
  width: 100%;
  margin: 0;
  order: 1;
}

/* line 94, app/assets/stylesheets/website/pages/_auth.scss */
.auth-container .auth-card {
  order: 2;
}

/* line 98, app/assets/stylesheets/website/pages/_auth.scss */
.auth-card {
  width: 100%;
  min-width: var(--auth-card-min);
  max-width: var(--auth-card-max);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 32px 32px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  /* Centrer verticalement les éléments internes et supprimer les décalages */
  display: grid;
  align-content: center;
}

/* line 115, app/assets/stylesheets/website/pages/_auth.scss */
.auth-card form {
  display: grid;
  gap: 16px;
  justify-items: center;
  /* centrer horizontalement tous les enfants */
}

/* line 121, app/assets/stylesheets/website/pages/_auth.scss */
.auth-flashes {
  margin-bottom: 8px;
}

/* line 122, app/assets/stylesheets/website/pages/_auth.scss */
.auth-flash {
  font-size: 0.95rem;
  padding: 8px 12px;
  border-radius: 10px;
  margin-bottom: 6px;
}

/* line 123, app/assets/stylesheets/website/pages/_auth.scss */
.auth-flash--alert {
  background: rgba(244, 67, 54, 0.12);
  color: #ffb4ab;
  border: 1px solid rgba(244, 67, 54, 0.35);
}

/* line 124, app/assets/stylesheets/website/pages/_auth.scss */
.auth-flash--notice {
  background: rgba(76, 175, 80, 0.12);
  color: #c8ffb4;
  border: 1px solid rgba(76, 175, 80, 0.35);
}

/* line 126, app/assets/stylesheets/website/pages/_auth.scss */
.form-group {
  width: 100%;
  margin-bottom: 0;
}

/* line 127, app/assets/stylesheets/website/pages/_auth.scss */
.form-group label {
  display: none;
}

/* line 129, app/assets/stylesheets/website/pages/_auth.scss */
.auth-input {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1rem;
  transition: all 0.25s ease;
  min-height: 48px;
  box-sizing: border-box;
}

/* line 141, app/assets/stylesheets/website/pages/_auth.scss */
.auth-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 142, app/assets/stylesheets/website/pages/_auth.scss */
.auth-input:focus {
  outline: none;
  border-color: #F6E5B3;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(246, 229, 179, 0.18);
  transform: none;
}

/* Container pour les champs avec toggle password/email */
/* line 145, app/assets/stylesheets/website/pages/_auth.scss */
.password-input-container {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.25s ease;
}

/* line 155, app/assets/stylesheets/website/pages/_auth.scss */
.password-input-container:focus-within {
  border-color: #F6E5B3;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(246, 229, 179, 0.18);
}

/* line 161, app/assets/stylesheets/website/pages/_auth.scss */
.password-input-container .auth-input {
  flex: 1;
  border: none;
  border-radius: 0;
  padding-right: 48px;
  background: transparent;
}

/* line 168, app/assets/stylesheets/website/pages/_auth.scss */
.password-input-container .auth-input:focus {
  box-shadow: none;
  border: none;
  background: transparent;
}

/* line 175, app/assets/stylesheets/website/pages/_auth.scss */
.password-input-container .toggle-password {
  position: absolute;
  right: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.2s ease;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
}

/* line 191, app/assets/stylesheets/website/pages/_auth.scss */
.password-input-container .toggle-password:hover, .password-input-container .toggle-password:focus {
  color: #F6E5B3;
  outline: none;
}

/* line 197, app/assets/stylesheets/website/pages/_auth.scss */
.password-input-container .toggle-password:focus-visible {
  outline: 2px solid #F6E5B3;
  outline-offset: -2px;
  border-radius: 4px;
}

/* line 203, app/assets/stylesheets/website/pages/_auth.scss */
.password-input-container .toggle-password i {
  font-size: 1.1rem;
  pointer-events: none;
}

/* line 210, app/assets/stylesheets/website/pages/_auth.scss */
.form-actions {
  width: 100%;
  margin-top: 6px;
  display: flex;
  justify-content: center !important;
  /* centrage strict */
}

/* line 216, app/assets/stylesheets/website/pages/_auth.scss */
.auth-card .form-actions .auth-submit {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* line 217, app/assets/stylesheets/website/pages/_auth.scss */
.auth-submit {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: #fff;
  padding: 14px 22px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  border: none;
  min-width: 220px;
}

/* line 231, app/assets/stylesheets/website/pages/_auth.scss */
.auth-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
}

/* line 233, app/assets/stylesheets/website/pages/_auth.scss */
.auth-links {
  margin-top: 14px;
  text-align: center;
}

/* line 234, app/assets/stylesheets/website/pages/_auth.scss */
.auth-link {
  color: #F6E5B3 !important;
  text-decoration: none !important;
  opacity: 0.9;
  transition: opacity 0.2s;
}

/* line 235, app/assets/stylesheets/website/pages/_auth.scss */
.auth-link:hover {
  opacity: 1 !important;
  text-decoration: none !important;
  color: #F6E5B3 !important;
}

/* Message informatif entre le champ et le bouton */
/* line 238, app/assets/stylesheets/website/pages/_auth.scss */
.auth-info-message {
  width: 100%;
  margin: 8px 0;
  text-align: center;
}

/* line 243, app/assets/stylesheets/website/pages/_auth.scss */
.auth-info-message p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  padding: 0 8px;
}

/* Règles de sécurité du mot de passe */
/* line 253, app/assets/stylesheets/website/pages/_auth.scss */
.auth-password-rules {
  width: 100%;
  margin: 12px 0;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* line 262, app/assets/stylesheets/website/pages/_auth.scss */
.auth-password-rules-title {
  margin: 0 0 12px 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

/* line 269, app/assets/stylesheets/website/pages/_auth.scss */
.auth-password-rules-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 278, app/assets/stylesheets/website/pages/_auth.scss */
.auth-password-rule {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}

/* line 286, app/assets/stylesheets/website/pages/_auth.scss */
.auth-password-rule i {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease;
}

/* line 292, app/assets/stylesheets/website/pages/_auth.scss */
.auth-password-rule.valid {
  color: rgba(200, 255, 180, 0.9);
}

/* line 295, app/assets/stylesheets/website/pages/_auth.scss */
.auth-password-rule.valid i {
  color: #4caf50;
}

/* line 300, app/assets/stylesheets/website/pages/_auth.scss */
.auth-password-rule.invalid {
  color: rgba(255, 180, 171, 0.9);
}

/* line 303, app/assets/stylesheets/website/pages/_auth.scss */
.auth-password-rule.invalid i {
  color: #f44336;
}

/* Messages d'erreur inline sous les champs */
/* line 310, app/assets/stylesheets/website/pages/_auth.scss */
.auth-field-error {
  width: 100%;
  margin-top: 6px;
  padding: 8px 12px;
  font-size: 0.875rem;
  color: #ffb4ab;
  background: rgba(244, 67, 54, 0.12);
  border: 1px solid rgba(244, 67, 54, 0.35);
  border-radius: 8px;
  text-align: left;
}

/* État d'erreur pour les champs */
/* line 323, app/assets/stylesheets/website/pages/_auth.scss */
.auth-input.is-invalid {
  border-color: rgba(244, 67, 54, 0.6) !important;
  background: rgba(244, 67, 54, 0.08) !important;
}

/* line 327, app/assets/stylesheets/website/pages/_auth.scss */
.auth-input.is-invalid:focus {
  border-color: #f44336 !important;
  box-shadow: 0 0 0 4px rgba(244, 67, 54, 0.18) !important;
}

/* line 333, app/assets/stylesheets/website/pages/_auth.scss */
.password-input-container:has(.is-invalid) {
  border-color: rgba(244, 67, 54, 0.6) !important;
  background: rgba(244, 67, 54, 0.08) !important;
}

/* line 337, app/assets/stylesheets/website/pages/_auth.scss */
.password-input-container:has(.is-invalid):focus-within {
  border-color: #f44336 !important;
  box-shadow: 0 0 0 4px rgba(244, 67, 54, 0.18) !important;
}

@media (max-width: 600px) {
  /* line 344, app/assets/stylesheets/website/pages/_auth.scss */
  .auth-title {
    font-size: 1.8rem;
    flex-direction: column;
    gap: 0.25rem;
  }
  /* line 349, app/assets/stylesheets/website/pages/_auth.scss */
  .auth-title-logo {
    height: 1.5rem;
  }
  /* line 352, app/assets/stylesheets/website/pages/_auth.scss */
  .auth-card {
    padding: 18px 16px;
    min-width: 100%;
  }
}

/* Page de souscription Orizen */
/* line 5, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-page {
  height: 100vh;
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
  color: #fefefe;
  overflow-x: hidden;
  overflow-y: auto;
  padding-top: 20px;
}

/* line 14, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-container-card {
  padding: 3rem 0 2rem;
}

/* line 18, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-grid {
  margin: 0 auto;
  padding: 0 1rem;
  margin: 0px 20px;
}

/* line 25, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-layout {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

/* line 30, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-layout > div:first-child {
  flex: 1;
  min-width: 0;
}

/* line 35, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-layout .cart-sidebar {
  flex: 0 0 400px;
  max-width: 400px;
}

/* line 41, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-form {
  width: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
}

/* line 51, app/assets/stylesheets/website/pages/_subscription.scss */
.form-header {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 1rem;
}

/* line 57, app/assets/stylesheets/website/pages/_subscription.scss */
.form-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

/* line 64, app/assets/stylesheets/website/pages/_subscription.scss */
.form-header h1, .form-header .h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
  color: #1f2937;
}

/* line 71, app/assets/stylesheets/website/pages/_subscription.scss */
.form-header p {
  color: #6b7280;
  font-size: 1rem;
  margin: 0;
}

/* line 77, app/assets/stylesheets/website/pages/_subscription.scss */
.form-section {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* line 83, app/assets/stylesheets/website/pages/_subscription.scss */
.form-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

/* Layout en deux colonnes pour engagement et utilisateurs */
/* line 89, app/assets/stylesheets/website/pages/_subscription.scss */
.form-row-two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* line 96, app/assets/stylesheets/website/pages/_subscription.scss */
.form-column {
  display: flex;
  flex-direction: column;
}

/* line 101, app/assets/stylesheets/website/pages/_subscription.scss */
.form-column h2, .form-column .h2 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

/* Styles pour le slider de nombre d'utilisateurs */
/* line 107, app/assets/stylesheets/website/pages/_subscription.scss */
.user-count-slider-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* line 113, app/assets/stylesheets/website/pages/_subscription.scss */
.user-count-input {
  width: 100%;
  max-width: 120px;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #f8fafc;
  font-size: 0.9rem;
  text-align: center;
  font-weight: 600;
  margin: 0 auto;
}

/* line 127, app/assets/stylesheets/website/pages/_subscription.scss */
.user-count-input:focus {
  outline: none;
  border-color: #7dd3fc;
  box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.2);
}

/* line 133, app/assets/stylesheets/website/pages/_subscription.scss */
.user-count-slider {
  position: relative;
  margin-top: 0.5rem;
}

/* line 138, app/assets/stylesheets/website/pages/_subscription.scss */
.slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

/* line 149, app/assets/stylesheets/website/pages/_subscription.scss */
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7dd3fc 0%, #3b82f6 100%);
  cursor: pointer;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
  transition: all 0.2s ease;
}

/* line 162, app/assets/stylesheets/website/pages/_subscription.scss */
.slider::-webkit-slider-thumb:hover {
  background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
  transform: scale(1.1);
  box-shadow: 0 3px 12px rgba(59, 130, 246, 0.5);
}

/* line 168, app/assets/stylesheets/website/pages/_subscription.scss */
.slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7dd3fc 0%, #3b82f6 100%);
  cursor: pointer;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
}

/* line 178, app/assets/stylesheets/website/pages/_subscription.scss */
.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

/* line 186, app/assets/stylesheets/website/pages/_subscription.scss */
.user-discount-notice {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.5rem 0.75rem;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 6px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
}

/* line 198, app/assets/stylesheets/website/pages/_subscription.scss */
.user-discount-notice i {
  color: #22c55e;
  font-size: 0.9rem;
}

/* line 203, app/assets/stylesheets/website/pages/_subscription.scss */
.user-discount-notice strong {
  color: #22c55e;
  font-weight: 600;
}

/* Styles pour le toggle button */
/* line 210, app/assets/stylesheets/website/pages/_subscription.scss */
.toggle-container {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}

/* line 216, app/assets/stylesheets/website/pages/_subscription.scss */
.toggle-switch {
  position: relative;
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 227, app/assets/stylesheets/website/pages/_subscription.scss */
.toggle-switch:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(125, 211, 252, 0.3);
}

/* line 232, app/assets/stylesheets/website/pages/_subscription.scss */
.toggle-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  z-index: 2;
  position: relative;
  min-width: 120px;
  justify-content: center;
}

/* line 248, app/assets/stylesheets/website/pages/_subscription.scss */
.toggle-option i {
  font-size: 0.875rem;
}

/* line 252, app/assets/stylesheets/website/pages/_subscription.scss */
.toggle-option.active {
  color: #ffffff;
  font-weight: 600;
}

/* line 257, app/assets/stylesheets/website/pages/_subscription.scss */
.toggle-slider {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  background: linear-gradient(135deg, #7dd3fc 0%, #3b82f6 100%);
  border-radius: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
  z-index: 1;
}

/* line 270, app/assets/stylesheets/website/pages/_subscription.scss */
.toggle-switch[data-value="business"] .toggle-slider {
  transform: translateX(100%);
}

/* line 274, app/assets/stylesheets/website/pages/_subscription.scss */
.toggle-switch[data-value="business"] .toggle-option[data-value="business"] {
  color: #ffffff;
  font-weight: 600;
}

/* line 279, app/assets/stylesheets/website/pages/_subscription.scss */
.toggle-switch[data-value="individual"] .toggle-option[data-value="individual"] {
  color: #ffffff;
  font-weight: 600;
}

/* line 284, app/assets/stylesheets/website/pages/_subscription.scss */
.form-section h2, .form-section .h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #f5f7fb;
  font-size: 1.1rem;
  font-weight: 600;
}

/* line 294, app/assets/stylesheets/website/pages/_subscription.scss */
.form-section h2 i, .form-section .h2 i {
  color: #7dd3fc;
}

/* Navigation par chevrons pour les offres */
/* line 299, app/assets/stylesheets/website/pages/_subscription.scss */
.offers-navigation-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* line 306, app/assets/stylesheets/website/pages/_subscription.scss */
.nav-chevron {
  position: relative;
  z-index: 10;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.8) 0%, rgba(125, 211, 252, 0.6) 100%);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* line 322, app/assets/stylesheets/website/pages/_subscription.scss */
.nav-chevron:hover {
  background: linear-gradient(135deg, #3b82f6 0%, rgba(125, 211, 252, 0.8) 100%);
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

/* line 328, app/assets/stylesheets/website/pages/_subscription.scss */
.nav-chevron:active {
  transform: scale(0.95);
}

/* line 332, app/assets/stylesheets/website/pages/_subscription.scss */
.nav-chevron:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* line 338, app/assets/stylesheets/website/pages/_subscription.scss */
.nav-chevron i {
  font-size: 1rem;
  font-weight: bold;
}

/* line 344, app/assets/stylesheets/website/pages/_subscription.scss */
.nav-chevron-left {
  margin-right: 0.5rem;
}

/* line 348, app/assets/stylesheets/website/pages/_subscription.scss */
.nav-chevron-right {
  margin-left: 0.5rem;
}

/* Masquer les chevrons quand les cartes sont en grid */
/* line 354, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-offers-container.grid-mode .nav-chevron-left,
.subscription-offers-container.grid-mode .nav-chevron-right {
  display: none !important;
}

/* Masquer les chevrons du conteneur parent quand en mode grid */
/* line 362, app/assets/stylesheets/website/pages/_subscription.scss */
.offers-navigation-container.grid-mode .nav-chevron-left,
.offers-navigation-container.grid-mode .nav-chevron-right {
  display: none !important;
}

/* Styles pour les colonnes pleine largeur */
/* line 369, app/assets/stylesheets/website/pages/_subscription.scss */
.form-column-full {
  width: 100%;
  margin-bottom: 1.5rem;
}

/* Styles pour la section nombre d'utilisateurs - Layout en row */
/* line 375, app/assets/stylesheets/website/pages/_subscription.scss */
.user-count-layout {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

/* line 381, app/assets/stylesheets/website/pages/_subscription.scss */
.user-count-selection {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-radius: 8px;
  backdrop-filter: blur(8px);
  min-height: 162px;
  justify-content: flex-end;
  align-self: flex-end;
}

/* line 396, app/assets/stylesheets/website/pages/_subscription.scss */
.user-count-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* line 403, app/assets/stylesheets/website/pages/_subscription.scss */
.user-count-display-compact {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

/* line 408, app/assets/stylesheets/website/pages/_subscription.scss */
.user-count-display-compact .user-count-value {
  font-size: 2rem;
  font-weight: 700;
  color: #22c55e;
  text-shadow: 0 1px 2px rgba(34, 197, 94, 0.3);
  line-height: 1;
}

/* line 416, app/assets/stylesheets/website/pages/_subscription.scss */
.user-count-display-compact .user-count-label {
  font-size: 0.9rem;
  color: rgba(248, 250, 252, 0.7);
  text-transform: lowercase;
}

/* line 423, app/assets/stylesheets/website/pages/_subscription.scss */
.user-count-buttons-compact {
  display: flex;
  gap: 0.5rem;
}

/* line 428, app/assets/stylesheets/website/pages/_subscription.scss */
.user-count-btn-compact {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(125, 211, 252, 0.4);
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  color: #f8fafc;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* line 442, app/assets/stylesheets/website/pages/_subscription.scss */
.user-count-btn-compact:hover {
  border-color: #22c55e;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.08) 100%);
  transform: scale(1.05);
}

/* line 448, app/assets/stylesheets/website/pages/_subscription.scss */
.user-count-btn-compact:active {
  transform: scale(0.95);
}

/* line 452, app/assets/stylesheets/website/pages/_subscription.scss */
.user-count-btn-compact:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

/* line 459, app/assets/stylesheets/website/pages/_subscription.scss */
.user-count-slider-compact {
  position: relative;
  padding: 0.5rem 0;
}

/* line 464, app/assets/stylesheets/website/pages/_subscription.scss */
.user-count-slider {
  width: 100%;
  height: 6px;
  background: rgba(125, 211, 252, 0.15);
  outline: none;
  cursor: pointer;
  border-radius: 3px;
  appearance: none;
  -webkit-appearance: none;
}

/* line 474, app/assets/stylesheets/website/pages/_subscription.scss */
.user-count-slider::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #22c55e;
  cursor: pointer;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
  transition: all 0.2s ease;
}

/* line 486, app/assets/stylesheets/website/pages/_subscription.scss */
.user-count-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 3px 12px rgba(34, 197, 94, 0.5);
}

/* line 491, app/assets/stylesheets/website/pages/_subscription.scss */
.user-count-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #22c55e;
  cursor: pointer;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
  border: none;
}

/* line 502, app/assets/stylesheets/website/pages/_subscription.scss */
.user-count-slider::-moz-range-track {
  height: 6px;
  background: rgba(125, 211, 252, 0.15);
  border-radius: 3px;
  border: none;
}

/* line 510, app/assets/stylesheets/website/pages/_subscription.scss */
.slider-labels-compact {
  display: flex;
  justify-content: space-between;
  margin-top: 0.3rem;
}

/* line 515, app/assets/stylesheets/website/pages/_subscription.scss */
.slider-labels-compact span {
  font-size: 0.7rem;
  color: rgba(248, 250, 252, 0.5);
  font-weight: 500;
}

/* Section des remises (droite) */
/* line 523, app/assets/stylesheets/website/pages/_subscription.scss */
.user-discounts-section {
  flex: 0 0 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  justify-content: flex-start;
}

/* line 532, app/assets/stylesheets/website/pages/_subscription.scss */
.discounts-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #22c55e;
}

/* line 540, app/assets/stylesheets/website/pages/_subscription.scss */
.discounts-title i {
  font-size: 0.8rem;
}

/* line 545, app/assets/stylesheets/website/pages/_subscription.scss */
.discount-cards {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  width: 100%;
}

/* line 552, app/assets/stylesheets/website/pages/_subscription.scss */
.discount-card-opportunity {
  flex: 1;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(34, 197, 94, 0.03) 100%);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* line 566, app/assets/stylesheets/website/pages/_subscription.scss */
.discount-card-opportunity:hover {
  border-color: rgba(34, 197, 94, 0.4);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.12) 0%, rgba(34, 197, 94, 0.06) 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15);
}

/* line 573, app/assets/stylesheets/website/pages/_subscription.scss */
.discount-card-opportunity.active {
  border-color: #22c55e;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.08) 100%);
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
}

/* line 578, app/assets/stylesheets/website/pages/_subscription.scss */
.discount-card-opportunity.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
}

/* line 590, app/assets/stylesheets/website/pages/_subscription.scss */
.discount-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

/* line 596, app/assets/stylesheets/website/pages/_subscription.scss */
.discount-card-header .discount-percentage {
  font-size: 1.4rem;
  font-weight: 700;
  color: #22c55e;
  text-shadow: 0 1px 2px rgba(34, 197, 94, 0.3);
}

/* line 603, app/assets/stylesheets/website/pages/_subscription.scss */
.discount-card-header .discount-icon {
  width: 30px;
  height: 30px;
  background: rgba(34, 197, 94, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 612, app/assets/stylesheets/website/pages/_subscription.scss */
.discount-card-header .discount-icon i {
  color: #22c55e;
  font-size: 0.75rem;
}

/* line 619, app/assets/stylesheets/website/pages/_subscription.scss */
.discount-card-content {
  margin-bottom: 0.75rem;
}

/* line 622, app/assets/stylesheets/website/pages/_subscription.scss */
.discount-card-content .discount-threshold {
  font-size: 0.85rem;
  font-weight: 600;
  color: #f8fafc;
  margin-bottom: 0.2rem;
}

/* line 629, app/assets/stylesheets/website/pages/_subscription.scss */
.discount-card-content .discount-description {
  font-size: 0.75rem;
  color: rgba(248, 250, 252, 0.7);
}

/* line 635, app/assets/stylesheets/website/pages/_subscription.scss */
.discount-status {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  padding: 0.3rem 0.5rem;
  background: rgba(125, 211, 252, 0.1);
  border-radius: 4px;
  border: 1px solid rgba(125, 211, 252, 0.2);
}

/* line 645, app/assets/stylesheets/website/pages/_subscription.scss */
.discount-status i {
  color: rgba(125, 211, 252, 0.7);
  font-size: 0.6rem;
}

/* line 650, app/assets/stylesheets/website/pages/_subscription.scss */
.discount-status span {
  color: rgba(248, 250, 252, 0.7);
}

/* line 654, app/assets/stylesheets/website/pages/_subscription.scss */
.discount-status.achieved {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.3);
}

/* line 658, app/assets/stylesheets/website/pages/_subscription.scss */
.discount-status.achieved i {
  color: #22c55e;
}

/* line 662, app/assets/stylesheets/website/pages/_subscription.scss */
.discount-status.achieved span {
  color: #22c55e;
  font-weight: 600;
}

/* Styles pour la section informations client - Version compacte */
/* line 670, app/assets/stylesheets/website/pages/_subscription.scss */
.professional-toggle-row {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

/* line 676, app/assets/stylesheets/website/pages/_subscription.scss */
.toggle-switch-compact {
  position: relative;
  display: flex;
  background: rgba(125, 211, 252, 0.1);
  border-radius: 8px;
  padding: 2px;
  border: 1px solid rgba(125, 211, 252, 0.2);
  width: 280px;
  height: 44px;
}

/* line 687, app/assets/stylesheets/website/pages/_subscription.scss */
.toggle-option-compact {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.6rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(248, 250, 252, 0.7);
  position: relative;
  z-index: 2;
}

/* line 703, app/assets/stylesheets/website/pages/_subscription.scss */
.toggle-option-compact i {
  font-size: 0.9rem;
}

/* line 707, app/assets/stylesheets/website/pages/_subscription.scss */
.toggle-option-compact.active {
  color: #ffffff;
  font-weight: 600;
}

/* line 713, app/assets/stylesheets/website/pages/_subscription.scss */
.toggle-slider-compact {
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(50% - 2px);
  height: calc(100% - 4px);
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 6px;
  transition: transform 0.3s ease;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

/* line 726, app/assets/stylesheets/website/pages/_subscription.scss */
.toggle-switch-compact[data-value="individual"] .toggle-slider-compact {
  transform: translateX(100%);
}

/* Grille de formulaire compacte */
/* line 731, app/assets/stylesheets/website/pages/_subscription.scss */
.form-grid-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

/* line 738, app/assets/stylesheets/website/pages/_subscription.scss */
.form-group-compact {
  display: flex;
  flex-direction: column;
}

/* line 743, app/assets/stylesheets/website/pages/_subscription.scss */
.form-input-compact {
  width: 100%;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-radius: 6px;
  color: #f8fafc;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

/* line 753, app/assets/stylesheets/website/pages/_subscription.scss */
.form-input-compact::placeholder {
  color: rgba(248, 250, 252, 0.5);
}

/* line 757, app/assets/stylesheets/website/pages/_subscription.scss */
.form-input-compact:focus {
  outline: none;
  border-color: #22c55e;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

/* line 764, app/assets/stylesheets/website/pages/_subscription.scss */
.form-input-compact:hover {
  border-color: rgba(125, 211, 252, 0.4);
  background: rgba(255, 255, 255, 0.07);
}

/* Styles pour le groupe SIRET avec bouton de vérification */
/* line 771, app/assets/stylesheets/website/pages/_subscription.scss */
.siret-input-group {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
  width: 100%;
}

/* line 777, app/assets/stylesheets/website/pages/_subscription.scss */
.siret-input-group .form-input-compact {
  flex: 1;
  margin: 0;
}

/* line 782, app/assets/stylesheets/website/pages/_subscription.scss */
.siret-input-group .btn-verify-siret {
  white-space: nowrap;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: auto;
  min-height: 44px;
}

/* line 801, app/assets/stylesheets/website/pages/_subscription.scss */
.siret-input-group .btn-verify-siret i {
  font-size: 0.85rem;
}

/* line 805, app/assets/stylesheets/website/pages/_subscription.scss */
.siret-input-group .btn-verify-siret:hover {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

/* line 811, app/assets/stylesheets/website/pages/_subscription.scss */
.siret-input-group .btn-verify-siret:active {
  transform: translateY(0);
}

/* line 815, app/assets/stylesheets/website/pages/_subscription.scss */
.siret-input-group .btn-verify-siret:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Résultat de vérification SIRET */
/* line 824, app/assets/stylesheets/website/pages/_subscription.scss */
#siret-verification-result {
  margin-top: 0.5rem;
  font-size: 0.85rem;
}

/* line 828, app/assets/stylesheets/website/pages/_subscription.scss */
#siret-verification-result .alert {
  padding: 0.75rem;
  border-radius: 6px;
  margin: 0;
}

/* line 833, app/assets/stylesheets/website/pages/_subscription.scss */
#siret-verification-result .alert.alert-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

/* line 839, app/assets/stylesheets/website/pages/_subscription.scss */
#siret-verification-result .alert.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

/* line 845, app/assets/stylesheets/website/pages/_subscription.scss */
#siret-verification-result .alert.alert-info {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #3b82f6;
}

/* Styles pour les cartes d'engagement */
/* line 854, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-form .commitment-options {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 0.75rem !important;
  width: 100% !important;
}

/* line 861, app/assets/stylesheets/website/pages/_subscription.scss */
.commitment-options {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 0.75rem !important;
  width: 100% !important;
}

/* line 868, app/assets/stylesheets/website/pages/_subscription.scss */
.commitment-option-card {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.5rem !important;
  padding: 0.75rem !important;
  border: 1px solid rgba(125, 211, 252, 0.3) !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%) !important;
  color: #f8fafc !important;
  backdrop-filter: blur(12px) !important;
  position: relative !important;
  overflow: hidden !important;
  min-height: auto !important;
  width: 100% !important;
}

/* line 885, app/assets/stylesheets/website/pages/_subscription.scss */
.commitment-option-card:has(.commitment-radio:checked) {
  border-color: #22c55e;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.08) 100%);
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
}

/* line 891, app/assets/stylesheets/website/pages/_subscription.scss */
.commitment-option-card:hover {
  border-color: rgba(125, 211, 252, 0.5);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
}

/* line 897, app/assets/stylesheets/website/pages/_subscription.scss */
.commitment-option-card[style*="pointer-events: none"], .commitment-option-card[style*="opacity: 0.5"], .commitment-option-card.is-disabled {
  opacity: 0.5 !important;
  pointer-events: none !important;
  cursor: not-allowed !important;
  filter: grayscale(0.3);
}

/* line 905, app/assets/stylesheets/website/pages/_subscription.scss */
.commitment-option-card[style*="pointer-events: none"]:hover, .commitment-option-card[style*="opacity: 0.5"]:hover, .commitment-option-card.is-disabled:hover {
  border-color: rgba(125, 211, 252, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
}

/* line 910, app/assets/stylesheets/website/pages/_subscription.scss */
.commitment-option-card[style*="pointer-events: none"] .commitment-radio, .commitment-option-card[style*="opacity: 0.5"] .commitment-radio, .commitment-option-card.is-disabled .commitment-radio {
  cursor: not-allowed !important;
  opacity: 0.5;
}

/* line 915, app/assets/stylesheets/website/pages/_subscription.scss */
.commitment-option-card[style*="pointer-events: none"] label, .commitment-option-card[style*="opacity: 0.5"] label, .commitment-option-card.is-disabled label {
  cursor: not-allowed !important;
  opacity: 0.7;
}

/* line 921, app/assets/stylesheets/website/pages/_subscription.scss */
.commitment-option-card .commitment-radio {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(125, 211, 252, 0.5);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* line 936, app/assets/stylesheets/website/pages/_subscription.scss */
.commitment-option-card .commitment-radio:checked {
  background: #22c55e;
  border-color: #22c55e;
}

/* line 940, app/assets/stylesheets/website/pages/_subscription.scss */
.commitment-option-card .commitment-radio:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* line 954, app/assets/stylesheets/website/pages/_subscription.scss */
.commitment-option-card .commitment-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-right: 1.5rem;
  /* Espace pour le radio button */
}

/* line 962, app/assets/stylesheets/website/pages/_subscription.scss */
.commitment-option-card .commitment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.3rem;
}

/* line 968, app/assets/stylesheets/website/pages/_subscription.scss */
.commitment-option-card .commitment-header h4, .commitment-option-card .commitment-header .h4 {
  margin: 0;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
  flex: 1;
}

/* line 977, app/assets/stylesheets/website/pages/_subscription.scss */
.commitment-option-card .commitment-header .engagement-badge {
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 985, app/assets/stylesheets/website/pages/_subscription.scss */
.commitment-option-card .commitment-header .engagement-badge .badge-text {
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* line 990, app/assets/stylesheets/website/pages/_subscription.scss */
.commitment-option-card .commitment-header .engagement-badge.engagement-badge-yearly {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  box-shadow: 0 3px 6px rgba(59, 130, 246, 0.4);
}

/* line 995, app/assets/stylesheets/website/pages/_subscription.scss */
.commitment-option-card .commitment-header .engagement-badge.engagement-badge-yearly_2 {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  box-shadow: 0 3px 6px rgba(139, 92, 246, 0.4);
}

/* line 1000, app/assets/stylesheets/website/pages/_subscription.scss */
.commitment-option-card .commitment-header .engagement-badge.engagement-badge-yearly_3 {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 3px 6px rgba(245, 158, 11, 0.4);
}

/* line 1007, app/assets/stylesheets/website/pages/_subscription.scss */
.commitment-option-card .commitment-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

/* line 1013, app/assets/stylesheets/website/pages/_subscription.scss */
.commitment-option-card .commitment-benefit {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: rgba(248, 250, 252, 0.8);
  text-transform: none;
  /* Pas de majuscules */
}

/* line 1021, app/assets/stylesheets/website/pages/_subscription.scss */
.commitment-option-card .commitment-benefit i {
  color: #22c55e;
  font-size: 0.65rem;
  flex-shrink: 0;
}

/* line 1027, app/assets/stylesheets/website/pages/_subscription.scss */
.commitment-option-card .commitment-benefit span {
  line-height: 1.2;
  text-transform: none;
  /* Pas de majuscules */
}

/* line 1032, app/assets/stylesheets/website/pages/_subscription.scss */
.commitment-option-card .commitment-benefit .discount-highlight {
  color: #22c55e !important;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  text-shadow: 0 1px 2px rgba(34, 197, 94, 0.3);
}

/* line 1040, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-offers-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-auto-rows: 1fr;
  /* Toutes les cartes ont la même hauteur */
  gap: 1rem;
  align-items: stretch;
  /* Étirer les cartes pour remplir la hauteur */
  overflow-x: auto;
  /* Réactivation du scroll pour la navigation par chevrons */
  overflow-y: hidden;
  padding-bottom: 10px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  flex: 1;
  /* Prendre l'espace disponible entre les chevrons */
  /* Masquer la barre de scroll */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
}

/* line 1057, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-offers-container::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

/* line 1061, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-offers-container .subscription-offer-card,
.subscription-offers-container .subscription-app-card {
  flex: 0 0 240px;
  /* Largeur réduite pour chaque carte */
  min-width: 240px;
  scroll-snap-align: start;
  height: auto;
  /* Hauteur automatique pour s'adapter au contenu */
}

/* line 1068, app/assets/stylesheets/website/pages/_subscription.scss */
o
.offer-card,
.commitment-option,
.toggle-option,
.form-label,
.commitment-label,
.toggle-switch label {
  opacity: 1 !important;
  /* Force l'opacité pour contrer la règle globale */
}

/* Correction spécifique pour les éléments de formulaire */
/* line 1081, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-form label,
.subscription-form .offer-card,
.subscription-form .commitment-option,
.subscription-form .toggle-option {
  opacity: 1 !important;
}

/* Nouvelle classe spécifique pour les cartes d'offres de souscription */
/* line 1089, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-offer-card, .subscription-app-card {
  display: flex;
  flex-direction: column;
  padding: 0.75rem;
  border: 1px solid rgba(125, 211, 252, 0.3);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  color: #f8fafc;
  backdrop-filter: blur(12px);
  min-height: 140px;
  /* Hauteur minimale au lieu de hauteur fixe */
  height: auto;
  /* Hauteur automatique pour s'adapter au contenu */
  position: relative;
  overflow: hidden;
  /* Effet de sélection avec style vert */
  /* Contenu de la carte */
  /* Header de l'offre */
  /* Description de l'offre */
  /* Prix */
  /* Check picto stylisé */
}

/* line 1106, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-offer-card:has(.subscription-offer-radio:checked), .subscription-app-card:has(.subscription-offer-radio:checked) {
  border-color: #22c55e;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.08) 100%);
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
  /* Suppression du transform pour éviter le débordement */
}

/* line 1114, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-offer-card .subscription-offer-content, .subscription-app-card .subscription-offer-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* Aligner en haut au lieu de space-between */
  gap: 0.5rem;
  /* Espacement entre les éléments */
}

/* line 1125, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-offer-card .subscription-offer-header, .subscription-app-card .subscription-offer-header {
  margin-bottom: 0.5rem;
}

/* line 1128, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-offer-card .subscription-offer-header h4, .subscription-app-card .subscription-offer-header h4, .subscription-offer-card .subscription-offer-header .h4, .subscription-app-card .subscription-offer-header .h4 {
  margin: 0 0 0.2rem 0;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
}

/* line 1135, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-offer-card .subscription-offer-header .subscription-offer-badge, .subscription-app-card .subscription-offer-header .subscription-offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.7rem;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #ffffff;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 6px rgba(59, 130, 246, 0.3);
}

/* line 1148, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-offer-card .subscription-offer-header .subscription-offer-badge i, .subscription-app-card .subscription-offer-header .subscription-offer-badge i {
  font-size: 0.8rem;
}

/* line 1153, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-offer-card .subscription-offer-header .subscription-offer-badge.storage-badge, .subscription-app-card .subscription-offer-header .subscription-offer-badge.storage-badge {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

/* line 1159, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-offer-card .subscription-offer-description, .subscription-app-card .subscription-offer-description {
  margin: 0.5rem 0;
  padding: 0.5rem 0;
  border-top: 1px solid rgba(125, 211, 252, 0.2);
  border-bottom: 1px solid rgba(125, 211, 252, 0.2);
}

/* line 1165, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-offer-card .subscription-offer-description p, .subscription-app-card .subscription-offer-description p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(248, 250, 252, 0.8);
  line-height: 1.4;
  text-align: center;
  text-transform: none;
  /* Pas de majuscules */
}

/* line 1176, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-offer-card .subscription-offer-pricing, .subscription-app-card .subscription-offer-pricing {
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

/* line 1182, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-offer-card .subscription-offer-pricing .subscription-price-badge, .subscription-app-card .subscription-offer-pricing .subscription-price-badge {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.08) 100%);
  color: #22c55e;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(34, 197, 94, 0.3);
  box-shadow: 0 2px 6px rgba(34, 197, 94, 0.1);
  text-align: center;
  width: fit-content;
  margin: 0 auto;
  text-transform: uppercase;
  /* Majuscules pour le prix */
}

/* line 1200, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-offer-card .subscription-offer-radio, .subscription-app-card .subscription-offer-radio {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 24px;
  height: 24px;
  border: 2px solid rgba(125, 211, 252, 0.5);
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* line 1215, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-offer-card .subscription-offer-radio:checked, .subscription-app-card .subscription-offer-radio:checked {
  background: #22c55e;
  border-color: #22c55e;
}

/* line 1219, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-offer-card .subscription-offer-radio:checked::after, .subscription-app-card .subscription-offer-radio:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 14px;
  font-weight: bold;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Classe pour les applications à la carte */
/* line 1238, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-app-card .subscription-app-checkbox {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(125, 211, 252, 0.5);
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 1250, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-app-card .subscription-app-checkbox:checked {
  background: #3b82f6;
  border-color: #3b82f6;
}

/* line 1254, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-app-card .subscription-app-checkbox:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 10px;
  font-weight: bold;
}

/* Header de la section applications */
/* line 1269, app/assets/stylesheets/website/pages/_subscription.scss */
.apps-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

/* line 1275, app/assets/stylesheets/website/pages/_subscription.scss */
.apps-section-header h2, .apps-section-header .h2 {
  margin: 0;
  flex: 1;
}

/* line 1280, app/assets/stylesheets/website/pages/_subscription.scss */
.apps-section-header .apps-price-info {
  display: flex;
  align-items: center;
}

/* line 1284, app/assets/stylesheets/website/pages/_subscription.scss */
.apps-section-header .apps-price-info .price-label {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.08) 100%);
  color: #22c55e;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(34, 197, 94, 0.3);
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.1);
}

/* Nouvelle grille pour les applications - style ultra-compact */
/* line 1298, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-form .apps-grid-container {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 0.75rem !important;
  margin-bottom: 1rem !important;
}

/* line 1305, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-form .subscription-app-card-grid {
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  padding: 0.75rem !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 10px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  background: rgba(255, 255, 255, 0.05) !important;
  color: #f8fafc !important;
  backdrop-filter: blur(10px) !important;
  position: relative !important;
  overflow: hidden !important;
  min-height: 60px !important;
  flex-direction: row !important;
}

/* line 1322, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-form .subscription-app-card-grid:has(.subscription-app-checkbox:checked) {
  border-color: #22c55e !important;
  background: rgba(34, 197, 94, 0.1) !important;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.2) !important;
}

/* line 1328, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-form .subscription-app-card-grid .app-icon {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2) !important;
}

/* line 1340, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-form .subscription-app-card-grid .app-icon i {
  font-size: 0.9rem !important;
  color: white !important;
}

/* line 1346, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-form .subscription-app-card-grid .app-content {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.2rem !important;
  min-width: 0 !important;
}

/* line 1353, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-form .subscription-app-card-grid .app-content h4, .subscription-form .subscription-app-card-grid .app-content .h4 {
  margin: 0 !important;
  color: #ffffff !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  text-transform: none !important;
  cursor: help !important;
  position: relative !important;
}

/* line 1366, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-form .subscription-app-card-grid .app-content h4:hover::after, .subscription-form .subscription-app-card-grid .app-content .h4:hover::after {
  content: attr(data-tooltip) !important;
  position: absolute !important;
  bottom: calc(100% + 8px) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: rgba(0, 0, 0, 0.95) !important;
  color: white !important;
  padding: 0.75rem 1rem !important;
  border-radius: 8px !important;
  font-size: 0.8rem !important;
  white-space: normal !important;
  width: 280px !important;
  z-index: 1000 !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(10px) !important;
  pointer-events: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* line 1389, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-form .subscription-app-card-grid .app-content .app-description {
  font-size: 0.75rem !important;
  color: rgba(255, 255, 255, 0.6) !important;
  line-height: 1.3 !important;
  margin-top: 0.2rem !important;
  text-align: left !important;
  font-weight: 400 !important;
  letter-spacing: 0.1px !important;
  width: fit-content !important;
}

/* line 1401, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-form .subscription-app-card-grid .subscription-app-checkbox {
  width: 28px !important;
  height: 28px !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.1) !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  flex-shrink: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
}

/* line 1418, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-form .subscription-app-card-grid .subscription-app-checkbox:checked {
  background: #22c55e !important;
  border-color: #22c55e !important;
}

/* line 1422, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-form .subscription-app-card-grid .subscription-app-checkbox:checked::after {
  content: '+' !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  color: white !important;
  font-size: 14px !important;
  font-weight: bold !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

/* line 1435, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-form .subscription-app-card-grid .subscription-app-checkbox:not(:checked)::after {
  content: '+' !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 14px !important;
  font-weight: bold !important;
}

/* Effet hover supprimé selon les demandes */
/* line 1450, app/assets/stylesheets/website/pages/_subscription.scss */
.offer-card:has(.offer-radio:checked) {
  border-color: #3b82f6;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(125, 211, 252, 0.15) 100%);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
  transform: translateY(-1px);
}

/* line 1457, app/assets/stylesheets/website/pages/_subscription.scss */
.offer-content h4, .offer-content .h4 {
  margin: 0 0 0.75rem 0;
  color: #f8fafc;
  font-size: 1.1rem;
  font-weight: 600;
}

/* line 1464, app/assets/stylesheets/website/pages/_subscription.scss */
.offer-pricing {
  margin-bottom: 0.5rem;
}

/* line 1468, app/assets/stylesheets/website/pages/_subscription.scss */
.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
}

/* line 1474, app/assets/stylesheets/website/pages/_subscription.scss */
.period {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
}

/* line 1479, app/assets/stylesheets/website/pages/_subscription.scss */
.yearly-price {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
}

/* line 1484, app/assets/stylesheets/website/pages/_subscription.scss */
.commitment-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* line 1490, app/assets/stylesheets/website/pages/_subscription.scss */
.commitment-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  background: rgba(255, 255, 255, 0.06);
  color: #f8fafc;
}

/* line 1503, app/assets/stylesheets/website/pages/_subscription.scss */
.commitment-option:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

/* line 1508, app/assets/stylesheets/website/pages/_subscription.scss */
.commitment-option:has(.commitment-radio:checked) {
  border-color: rgba(125, 211, 252, 0.8);
  background: rgba(125, 211, 252, 0.15);
}

/* line 1513, app/assets/stylesheets/website/pages/_subscription.scss */
.commitment-label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* line 1519, app/assets/stylesheets/website/pages/_subscription.scss */
.commitment-label strong {
  font-weight: 600;
  color: #ffffff;
}

/* line 1524, app/assets/stylesheets/website/pages/_subscription.scss */
.commitment-label small, .commitment-label .small {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

/* line 1529, app/assets/stylesheets/website/pages/_subscription.scss */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* line 1535, app/assets/stylesheets/website/pages/_subscription.scss */
.form-group {
  margin-bottom: 1.5rem;
}

/* line 1539, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
  transition: all 0.2s;
}

/* line 1550, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

/* line 1554, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-input:focus {
  outline: none;
  border-color: rgba(125, 211, 252, 0.8);
  box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.2);
}

/* line 1560, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
  resize: vertical;
  transition: all 0.2s;
}

/* line 1572, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

/* line 1576, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-textarea:focus {
  outline: none;
  border-color: rgba(125, 211, 252, 0.8);
  box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.2);
}

/* line 1582, app/assets/stylesheets/website/pages/_subscription.scss */
.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

/* line 1591, app/assets/stylesheets/website/pages/_subscription.scss */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

/* line 1604, app/assets/stylesheets/website/pages/_subscription.scss */
.btn-cancel {
  background-color: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* line 1610, app/assets/stylesheets/website/pages/_subscription.scss */
.btn-cancel:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

/* line 1614, app/assets/stylesheets/website/pages/_subscription.scss */
.btn-submit {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%) !important;
  color: white !important;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3) !important;
  border: none !important;
  transition: all 0.3s ease;
}

/* line 1622, app/assets/stylesheets/website/pages/_subscription.scss */
.btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4) !important;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%) !important;
}

/* line 1628, app/assets/stylesheets/website/pages/_subscription.scss */
.btn-submit:disabled {
  background-color: #9ca3af;
  cursor: not-allowed;
}

/* line 1633, app/assets/stylesheets/website/pages/_subscription.scss */
.btn-loading {
  display: none;
}

/* line 1637, app/assets/stylesheets/website/pages/_subscription.scss */
.btn-submit.loading .btn-text {
  display: none;
}

/* line 1641, app/assets/stylesheets/website/pages/_subscription.scss */
.btn-submit.loading .btn-loading {
  display: inline-flex;
}

/* line 1645, app/assets/stylesheets/website/pages/_subscription.scss */
.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* line 1664, app/assets/stylesheets/website/pages/_subscription.scss */
.checkbox-group {
  margin-bottom: 1rem;
}

/* line 1668, app/assets/stylesheets/website/pages/_subscription.scss */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

/* line 1675, app/assets/stylesheets/website/pages/_subscription.scss */
.checkbox-label input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 1.5rem;
  height: 1.5rem;
  min-width: 1.5rem;
  min-height: 1.5rem;
  cursor: pointer;
  flex-shrink: 0;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 4px;
  position: relative;
  transition: all 0.2s ease;
}

/* line 1693, app/assets/stylesheets/website/pages/_subscription.scss */
.checkbox-label input[type="checkbox"]:hover {
  border-color: rgba(255, 255, 255, 0.5) !important;
  background-color: rgba(255, 255, 255, 0.15) !important;
}

/* line 1698, app/assets/stylesheets/website/pages/_subscription.scss */
.checkbox-label input[type="checkbox"]:checked {
  background-color: #F6E5B3 !important;
  border-color: #F6E5B3 !important;
}

/* Style checkbox pour la page de souscription - surcharge TOUS les autres styles */
/* line 1704, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-page .checkbox-label input[type="checkbox"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
}

/* Supprimer TOUS les ::before qui pourraient créer des ticks */
/* line 1711, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-page .checkbox-label input[type="checkbox"]:checked::before {
  display: none !important;
  content: '' !important;
  width: 0 !important;
  height: 0 !important;
  border: none !important;
  border-width: 0 !important;
  background: none !important;
  position: static !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
}

/* Style du tick centré et visible */
/* line 1726, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-page .checkbox-label input[type="checkbox"]:checked::after {
  content: '✓' !important;
  display: block !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  color: #140D23 !important;
  font-size: 1.3rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-shadow: none !important;
  width: auto !important;
  height: auto !important;
  border: none !important;
  background: none !important;
  border-width: 0 !important;
  border-style: none !important;
}

/* line 1746, app/assets/stylesheets/website/pages/_subscription.scss */
.checkbox-text {
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

/* line 1752, app/assets/stylesheets/website/pages/_subscription.scss */
.checkbox-text a {
  color: #7dd3fc;
  text-decoration: underline;
  font-weight: 500;
  transition: all 0.2s ease;
}

/* line 1759, app/assets/stylesheets/website/pages/_subscription.scss */
.checkbox-text a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-shadow: 0 0 4px rgba(125, 211, 252, 0.5);
}

/* line 1765, app/assets/stylesheets/website/pages/_subscription.scss */
.checkbox-text a:focus {
  outline: 2px solid #7dd3fc;
  outline-offset: 2px;
  border-radius: 2px;
}

/* Options supplémentaires - Style aligné sur les engagements */
/* line 1772, app/assets/stylesheets/website/pages/_subscription.scss */
.additional-options-section {
  margin-top: 1.5rem;
}

/* line 1776, app/assets/stylesheets/website/pages/_subscription.scss */
.additional-options-section .commitment-options {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 0.75rem !important;
  width: 100% !important;
}

/* line 1783, app/assets/stylesheets/website/pages/_subscription.scss */
.additional-option-card {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.75rem;
  border: 1px solid rgba(125, 211, 252, 0.3);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  color: #f8fafc;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  min-height: auto;
  width: 100%;
}

/* line 1801, app/assets/stylesheets/website/pages/_subscription.scss */
.additional-option-card:hover {
  border-color: rgba(125, 211, 252, 0.5);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
}

/* line 1806, app/assets/stylesheets/website/pages/_subscription.scss */
.additional-option-card:has(.additional-option-checkbox:checked) {
  border-color: #22c55e;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.08) 100%);
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
}

/* line 1812, app/assets/stylesheets/website/pages/_subscription.scss */
.additional-option-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  margin: 0;
  width: 100%;
}

/* line 1821, app/assets/stylesheets/website/pages/_subscription.scss */
.additional-option-checkbox {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(125, 211, 252, 0.5);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  flex-shrink: 0;
}

/* line 1838, app/assets/stylesheets/website/pages/_subscription.scss */
.additional-option-checkbox:checked {
  background: #22c55e;
  border-color: #22c55e;
}

/* line 1843, app/assets/stylesheets/website/pages/_subscription.scss */
.additional-option-checkbox:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* line 1855, app/assets/stylesheets/website/pages/_subscription.scss */
.additional-option-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-right: 1.5rem;
  /* Espace pour le checkbox */
}

/* line 1863, app/assets/stylesheets/website/pages/_subscription.scss */
.additional-option-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.3rem;
}

/* line 1870, app/assets/stylesheets/website/pages/_subscription.scss */
.additional-option-header h4, .additional-option-header .h4 {
  margin: 0;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: none !important;
  /* Pas de majuscules forcées */
}

/* line 1883, app/assets/stylesheets/website/pages/_subscription.scss */
.additional-option-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: #F6E5B3;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  text-transform: none !important;
  /* Pas de majuscules forcées */
}

/* line 1891, app/assets/stylesheets/website/pages/_subscription.scss */
.additional-option-description {
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  text-transform: none !important;
  /* Pas de majuscules forcées */
}

/* line 1899, app/assets/stylesheets/website/pages/_subscription.scss */
.additional-option-description strong {
  color: #F6E5B3;
  font-weight: 600;
}

/* line 1904, app/assets/stylesheets/website/pages/_subscription.scss */
.legal-section {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 1.5rem;
  color: #e5e7eb;
}

/* Section dédiée aux liens juridiques - Haute visibilité */
/* line 1913, app/assets/stylesheets/website/pages/_subscription.scss */
.legal-links-section {
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: rgba(59, 130, 246, 0.12);
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: 10px;
  backdrop-filter: blur(8px);
}

/* line 1922, app/assets/stylesheets/website/pages/_subscription.scss */
.legal-links-intro {
  margin: 0 0 1rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #f5f7fb;
  text-align: center;
  line-height: 1.5;
}

/* line 1931, app/assets/stylesheets/website/pages/_subscription.scss */
.legal-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* line 1937, app/assets/stylesheets/website/pages/_subscription.scss */
.legal-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(125, 211, 252, 0.3);
  border-radius: 8px;
  color: #7dd3fc;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* line 1952, app/assets/stylesheets/website/pages/_subscription.scss */
.legal-link:hover {
  background: rgba(125, 211, 252, 0.15);
  border-color: rgba(125, 211, 252, 0.5);
  color: #ffffff;
  transform: translateX(4px);
  box-shadow: 0 2px 8px rgba(125, 211, 252, 0.2);
}

/* line 1960, app/assets/stylesheets/website/pages/_subscription.scss */
.legal-link:focus {
  outline: 2px solid #7dd3fc;
  outline-offset: 2px;
}

/* line 1965, app/assets/stylesheets/website/pages/_subscription.scss */
.legal-link i:first-child {
  font-size: 1.1rem;
  color: #7dd3fc;
  flex-shrink: 0;
}

/* line 1971, app/assets/stylesheets/website/pages/_subscription.scss */
.legal-link span {
  flex: 1;
  color: inherit;
}

/* line 1976, app/assets/stylesheets/website/pages/_subscription.scss */
.legal-link i:last-child {
  font-size: 0.75rem;
  color: rgba(125, 211, 252, 0.7);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

/* line 1983, app/assets/stylesheets/website/pages/_subscription.scss */
.legal-link:hover i:last-child {
  color: #ffffff;
  transform: translate(2px, -2px);
}

/* line 1989, app/assets/stylesheets/website/pages/_subscription.scss */
.legal-info {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

/* line 1995, app/assets/stylesheets/website/pages/_subscription.scss */
.legal-info p {
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

/* line 2002, app/assets/stylesheets/website/pages/_subscription.scss */
.legal-info p:last-child {
  margin-bottom: 0;
}

/* Section rappel des liens juridiques avant validation */
/* line 2007, app/assets/stylesheets/website/pages/_subscription.scss */
.legal-reminder-section {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 8px;
  border-left: 4px solid #22c55e;
}

/* line 2017, app/assets/stylesheets/website/pages/_subscription.scss */
.legal-reminder-content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

/* line 2022, app/assets/stylesheets/website/pages/_subscription.scss */
.legal-reminder-content i {
  color: #22c55e;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* line 2029, app/assets/stylesheets/website/pages/_subscription.scss */
.legal-reminder-content p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
}

/* line 2036, app/assets/stylesheets/website/pages/_subscription.scss */
.legal-reminder-content p a {
  color: #7dd3fc;
  text-decoration: underline;
  font-weight: 600;
  transition: all 0.2s ease;
}

/* line 2042, app/assets/stylesheets/website/pages/_subscription.scss */
.legal-reminder-content p a:hover {
  color: #ffffff;
  text-shadow: 0 0 4px rgba(125, 211, 252, 0.5);
}

/* line 2047, app/assets/stylesheets/website/pages/_subscription.scss */
.legal-reminder-content p a:focus {
  outline: 2px solid #7dd3fc;
  outline-offset: 2px;
  border-radius: 2px;
}

/* line 2056, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-sidebar {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 2rem;
}

/* line 2066, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-sidebar .cart-header {
  color: #f5f7fb;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* line 2077, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-sidebar .cart-header .cart-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 2082, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-sidebar .cart-header .cart-title i {
  color: #7dd3fc;
  font-size: 1.1rem;
}

/* line 2088, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-sidebar .cart-header .cart-frequency-info {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(125, 211, 252, 0.8);
  margin-top: 0.25rem;
  padding: 0.3rem 0.6rem;
  background: rgba(125, 211, 252, 0.1);
  border-radius: 6px;
  border: 1px solid rgba(125, 211, 252, 0.2);
  align-self: center;
}

/* line 2102, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-sidebar .cart-header .cart-frequency-info i {
  color: rgba(125, 211, 252, 0.9);
  font-size: 0.75rem;
}

/* line 2107, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-sidebar .cart-header .cart-frequency-info span {
  font-size: 0.8rem;
  letter-spacing: 0.3px;
}

/* line 2114, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-sidebar .cart-lines {
  margin-bottom: 1rem;
}

/* line 2117, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-sidebar .cart-lines .cart-collapsable-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}

/* line 2124, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-sidebar .cart-lines .cart-collapsable-content.is-collapsed {
  max-height: 0;
  opacity: 0;
}

/* line 2130, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-sidebar .cart-lines .cart-collapsable-content.is-expanded {
  max-height: var(--dynamic-max-height, 5000px);
  opacity: 1;
}

/* line 2136, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-sidebar .cart-lines .cart-line {
  padding: 0.5rem 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* line 2144, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-sidebar .cart-lines .cart-line.empty {
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  justify-content: center;
}

/* line 2150, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-sidebar .cart-lines .cart-line.cart-subtotal {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

/* line 2157, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-sidebar .cart-lines .cart-line.cart-subtotal.cart-subtotal-toggle {
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s ease;
}

/* line 2162, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-sidebar .cart-lines .cart-line.cart-subtotal.cart-subtotal-toggle:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

/* line 2166, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-sidebar .cart-lines .cart-line.cart-subtotal.cart-subtotal-toggle .cart-subtotal-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 2171, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-sidebar .cart-lines .cart-line.cart-subtotal.cart-subtotal-toggle .cart-subtotal-label .cart-subtotal-chevron {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
  color: rgba(255, 255, 255, 0.6);
}

/* line 2180, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-sidebar .cart-lines .cart-line.cart-discount {
  color: #22c55e;
  font-weight: 500;
}

/* line 2185, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-sidebar .cart-lines .cart-line.cart-subtotal-after-discounts {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

/* line 2193, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-sidebar .cart-lines .cart-line.cart-tva {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

/* line 2198, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-sidebar .cart-lines .cart-line .cart-show-more-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin: 0.5rem 0;
  transition: all 0.2s ease;
}

/* line 2214, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-sidebar .cart-lines .cart-line .cart-show-more-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.95);
}

/* line 2220, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-sidebar .cart-lines .cart-line .cart-show-more-btn i {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

/* line 2226, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-sidebar .cart-lines .cart-line.cart-included-apps-inline {
  flex-direction: column;
  padding: 0.75rem;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 8px;
  margin-top: 0.5rem;
}

/* line 2234, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-sidebar .cart-lines .cart-line.cart-included-apps-inline .apps-inline-title {
  color: #22c55e;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

/* line 2241, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-sidebar .cart-lines .cart-line.cart-included-apps-inline .apps-inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

/* line 2246, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-sidebar .cart-lines .cart-line.cart-included-apps-inline .apps-inline-list .cart-app-tag-inline {
  padding: 0.2rem 0.5rem;
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 500;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

/* line 2255, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-sidebar .cart-lines .cart-line.cart-included-apps-inline .apps-inline-list .cart-app-tag-inline.cart-app-tag-additional {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

/* line 2266, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-sidebar .cart-included-apps {
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 8px;
}

/* line 2273, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-sidebar .cart-included-apps .cart-included-apps-title {
  color: #22c55e;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* line 2280, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-sidebar .cart-included-apps .cart-included-apps-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

/* line 2285, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-sidebar .cart-included-apps .cart-included-apps-list .cart-app-tag {
  padding: 0.2rem 0.5rem;
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

/* line 2294, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-sidebar .cart-included-apps .cart-included-apps-list .cart-app-tag.cart-app-tag-additional {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

/* line 2303, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-sidebar .cart-total-payment {
  margin-top: 1.5rem;
  padding: 0.75rem;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 8px;
  display: block !important;
  /* Forcer l'affichage */
}

/* line 2311, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-sidebar .cart-total-payment .total-payment-header {
  font-size: 0.75rem;
  font-weight: 600;
  color: #60a5fa;
  text-align: left;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.15);
}

/* line 2320, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-sidebar .cart-total-payment .total-payment-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
}

/* line 2327, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-sidebar .cart-total-payment .total-payment-line span {
  opacity: 0.8;
  text-align: left;
}

/* line 2332, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-sidebar .cart-total-payment .total-payment-line strong {
  font-weight: 600;
  font-size: 0.8rem;
  text-align: right;
}

/* line 2338, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-sidebar .cart-total-payment .total-payment-line .total-payment-highlight {
  color: #60a5fa;
  font-size: 0.85rem;
}

/* line 2343, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-sidebar .cart-total-payment .total-payment-line .promo-discount-amount {
  color: #22c55e;
}

/* line 2348, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-sidebar .cart-total-payment .total-payment-note {
  text-align: left;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  padding-top: 0.3rem;
  border-top: 1px solid rgba(59, 130, 246, 0.1);
  line-height: 1.3;
}

/* line 2359, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-sidebar .cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 600;
  color: #f5f7fb;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  /* line 2372, app/assets/stylesheets/website/pages/_subscription.scss */
  .subscription-layout {
    flex-direction: column;
  }
  /* line 2375, app/assets/stylesheets/website/pages/_subscription.scss */
  .subscription-layout .cart-sidebar {
    flex: none;
    max-width: none;
    position: static;
    order: -1;
  }
  /* line 2383, app/assets/stylesheets/website/pages/_subscription.scss */
  .form-row {
    grid-template-columns: 1fr;
  }
  /* line 2387, app/assets/stylesheets/website/pages/_subscription.scss */
  .offers-grid {
    grid-template-columns: 1fr;
  }
  /* line 2391, app/assets/stylesheets/website/pages/_subscription.scss */
  .commitment-options {
    grid-template-columns: 1fr;
  }
  /* line 2395, app/assets/stylesheets/website/pages/_subscription.scss */
  .form-actions {
    flex-direction: column;
  }
  /* line 2399, app/assets/stylesheets/website/pages/_subscription.scss */
  .form-row-two-columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  /* line 2404, app/assets/stylesheets/website/pages/_subscription.scss */
  .toggle-switch {
    width: 100%;
    max-width: 300px;
  }
  /* line 2409, app/assets/stylesheets/website/pages/_subscription.scss */
  .toggle-option {
    min-width: auto;
    flex: 1;
  }
  /* line 2414, app/assets/stylesheets/website/pages/_subscription.scss */
  .form-header-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  /* Responsive pour les liens juridiques */
  /* line 2421, app/assets/stylesheets/website/pages/_subscription.scss */
  .legal-links-section {
    padding: 1rem;
  }
  /* line 2425, app/assets/stylesheets/website/pages/_subscription.scss */
  .legal-links-intro {
    font-size: 0.875rem;
    text-align: left;
  }
  /* line 2430, app/assets/stylesheets/website/pages/_subscription.scss */
  .legal-links-list {
    gap: 0.5rem;
  }
  /* line 2434, app/assets/stylesheets/website/pages/_subscription.scss */
  .legal-link {
    padding: 0.75rem;
    font-size: 0.85rem;
  }
  /* line 2438, app/assets/stylesheets/website/pages/_subscription.scss */
  .legal-link i:first-child {
    font-size: 1rem;
  }
  /* line 2443, app/assets/stylesheets/website/pages/_subscription.scss */
  .legal-reminder-section {
    padding: 0.875rem 1rem;
  }
  /* line 2447, app/assets/stylesheets/website/pages/_subscription.scss */
  .legal-reminder-content {
    flex-direction: column;
    gap: 0.5rem;
  }
  /* line 2451, app/assets/stylesheets/website/pages/_subscription.scss */
  .legal-reminder-content i {
    align-self: flex-start;
  }
  /* line 2455, app/assets/stylesheets/website/pages/_subscription.scss */
  .legal-reminder-content p {
    font-size: 0.8rem;
    line-height: 1.5;
  }
}

/* Section Code Promo */
/* line 2464, app/assets/stylesheets/website/pages/_subscription.scss */
.promo-code-section .promo-code-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* line 2470, app/assets/stylesheets/website/pages/_subscription.scss */
.promo-code-section .promo-code-field {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

/* line 2476, app/assets/stylesheets/website/pages/_subscription.scss */
.promo-code-section .promo-code-input {
  flex: 1;
  padding: 0.6rem 0.9rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  height: 42px;
}

/* line 2486, app/assets/stylesheets/website/pages/_subscription.scss */
.promo-code-section .promo-code-apply-btn {
  padding: 0.6rem 1.2rem;
  height: 42px;
  background: rgba(59, 130, 246, 0.2);
  color: #7dd3fc;
  border: 1px solid rgba(59, 130, 246, 0.4);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

/* line 2502, app/assets/stylesheets/website/pages/_subscription.scss */
.promo-code-section .promo-code-apply-btn:hover {
  background: rgba(59, 130, 246, 0.3);
  border-color: rgba(59, 130, 246, 0.6);
  color: #ffffff;
}

/* line 2508, app/assets/stylesheets/website/pages/_subscription.scss */
.promo-code-section .promo-code-apply-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* line 2513, app/assets/stylesheets/website/pages/_subscription.scss */
.promo-code-section .promo-code-apply-btn i {
  font-size: 0.85rem;
}

/* line 2518, app/assets/stylesheets/website/pages/_subscription.scss */
.promo-code-section .promo-code-feedback {
  display: none;
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 0.9rem;
}

/* line 2525, app/assets/stylesheets/website/pages/_subscription.scss */
.promo-code-section .promo-code-success,
.promo-code-section .promo-code-error {
  display: none;
  padding: 0.75rem;
  border-radius: 8px;
  align-items: center;
  gap: 0.5rem;
}

/* line 2533, app/assets/stylesheets/website/pages/_subscription.scss */
.promo-code-section .promo-code-success i,
.promo-code-section .promo-code-error i {
  font-size: 1.2rem;
}

/* line 2538, app/assets/stylesheets/website/pages/_subscription.scss */
.promo-code-section .promo-code-success {
  background: rgba(76, 175, 80, 0.15);
  color: #4caf50;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

/* line 2544, app/assets/stylesheets/website/pages/_subscription.scss */
.promo-code-section .promo-code-error {
  background: rgba(244, 67, 54, 0.15);
  color: #f44336;
  border: 1px solid rgba(244, 67, 54, 0.3);
}

/* line 2550, app/assets/stylesheets/website/pages/_subscription.scss */
.promo-code-section .promo-code-examples {
  padding: 0.5rem;
  font-size: 0.85rem;
}

/* line 2554, app/assets/stylesheets/website/pages/_subscription.scss */
.promo-code-section .promo-code-examples i {
  color: #F6E5B3;
  margin-right: 0.25rem;
}

/* Badge stockage inclus */
/* line 2562, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-storage-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(76, 175, 80, 0.15);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 6px;
  font-size: 0.85rem;
  color: #4caf50;
  margin-top: 0.5rem;
}

/* line 2574, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-storage-badge i {
  font-size: 1rem;
}

/* Section Hébergement Supplémentaire */
/* line 2581, app/assets/stylesheets/website/pages/_subscription.scss */
.storage-section .storage-info-box {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

/* line 2590, app/assets/stylesheets/website/pages/_subscription.scss */
.storage-section .storage-info-box .storage-current, .storage-section .storage-info-box .storage-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

/* line 2596, app/assets/stylesheets/website/pages/_subscription.scss */
.storage-section .storage-info-box .storage-current i, .storage-section .storage-info-box .storage-price i {
  color: #7dd3fc;
}

/* line 2602, app/assets/stylesheets/website/pages/_subscription.scss */
.storage-section .storage-slider-container {
  margin-bottom: 1.5rem;
}

/* line 2605, app/assets/stylesheets/website/pages/_subscription.scss */
.storage-section .storage-slider-container .storage-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

/* line 2611, app/assets/stylesheets/website/pages/_subscription.scss */
.storage-section .storage-slider-container .storage-header .storage-label {
  font-size: 1rem;
  color: #f5f7fb;
}

/* line 2615, app/assets/stylesheets/website/pages/_subscription.scss */
.storage-section .storage-slider-container .storage-header .storage-label strong {
  color: #7dd3fc;
}

/* line 2620, app/assets/stylesheets/website/pages/_subscription.scss */
.storage-section .storage-slider-container .storage-header .storage-cost {
  font-size: 1.1rem;
  font-weight: 600;
  color: #22c55e;
}

/* line 2627, app/assets/stylesheets/website/pages/_subscription.scss */
.storage-section .storage-slider-container .storage-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  -webkit-appearance: none;
}

/* line 2635, app/assets/stylesheets/website/pages/_subscription.scss */
.storage-section .storage-slider-container .storage-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7dd3fc 0%, #3b82f6 100%);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
}

/* line 2646, app/assets/stylesheets/website/pages/_subscription.scss */
.storage-section .storage-slider-container .storage-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7dd3fc 0%, #3b82f6 100%);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
}

/* line 2657, app/assets/stylesheets/website/pages/_subscription.scss */
.storage-section .storage-slider-container .storage-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* line 2666, app/assets/stylesheets/website/pages/_subscription.scss */
.storage-section .storage-recommendations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

/* line 2671, app/assets/stylesheets/website/pages/_subscription.scss */
.storage-section .storage-recommendations .recommendation-card {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

/* line 2678, app/assets/stylesheets/website/pages/_subscription.scss */
.storage-section .storage-recommendations .recommendation-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(125, 211, 252, 0.3);
}

/* line 2683, app/assets/stylesheets/website/pages/_subscription.scss */
.storage-section .storage-recommendations .recommendation-card .recommendation-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* line 2689, app/assets/stylesheets/website/pages/_subscription.scss */
.storage-section .storage-recommendations .recommendation-card .recommendation-content strong {
  display: block;
  margin-bottom: 0.5rem;
  color: #f5f7fb;
  font-size: 0.9rem;
}

/* line 2696, app/assets/stylesheets/website/pages/_subscription.scss */
.storage-section .storage-recommendations .recommendation-card .recommendation-content p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

/* line 2703, app/assets/stylesheets/website/pages/_subscription.scss */
.storage-section .storage-recommendations .recommendation-card .recommendation-content .recommendation-value {
  font-size: 0.85rem;
  color: #7dd3fc;
}

/* line 2707, app/assets/stylesheets/website/pages/_subscription.scss */
.storage-section .storage-recommendations .recommendation-card .recommendation-content .recommendation-value strong {
  display: inline;
  color: #7dd3fc;
}

/* Section Code Promo dans le Panier */
/* line 2718, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-promo {
  padding: 0.75rem;
  margin: 0.5rem 0;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 8px;
}

/* line 2725, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-promo .cart-promo-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* line 2730, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-promo .cart-promo-line .promo-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #4caf50;
}

/* line 2737, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-promo .cart-promo-line .promo-label i {
  font-size: 1rem;
}

/* line 2741, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-promo .cart-promo-line .promo-label strong {
  color: #4caf50;
  font-weight: 600;
}

/* line 2747, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-promo .cart-promo-line .promo-discount {
  font-size: 1rem;
  font-weight: 700;
  color: #4caf50;
}

/* line 2748, app/assets/stylesheets/website/pages/_subscription.scss */
.cart-promo .cart-promo-line .promo-discount .promo-discount-subtitle {
  font-size: 0.7rem;
  opacity: 0.6;
}

/* ==========================================================================
   VALIDATION DES CHAMPS DE FORMULAIRE
   Styles pour la validation progressive des champs avec feedback visuel
   ========================================================================== */
/* line 2766, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-form .required-asterisk {
  color: #ef4444;
  font-weight: bold;
  margin-left: 3px;
}

/* line 2773, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-form .required-legend {
  font-size: 0.8rem;
  color: rgba(248, 250, 252, 0.7);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* line 2781, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-form .required-legend .required-asterisk {
  margin-right: 3px;
  margin-left: 0;
}

/* line 2788, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-form .form-label-compact {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(248, 250, 252, 0.9);
}

/* line 2797, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-form .form-input-compact {
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

/* line 2801, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-form .form-input-compact.is-valid {
  border-color: #22c55e !important;
  background: rgba(34, 197, 94, 0.08) !important;
}

/* line 2805, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-form .form-input-compact.is-valid:focus {
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15) !important;
}

/* line 2811, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-form .form-input-compact.is-invalid {
  border-color: #ef4444 !important;
  background: rgba(239, 68, 68, 0.08) !important;
}

/* line 2815, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-form .form-input-compact.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
}

/* line 2822, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-form .form-group-compact {
  position: relative;
}

/* line 2828, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-form .form-group-compact.has-validation-icon > .form-input-compact {
  padding-right: 2.5rem;
}

/* line 2833, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-form .form-group-compact.has-validation-icon > .validation-icon {
  position: absolute;
  top: calc(22px + 20px);
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 1rem;
  transition: all 0.2s ease;
  opacity: 0;
  z-index: 10;
  right: 12px;
}

/* line 2846, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-form .form-group-compact.has-validation-icon > .validation-icon.icon-visible {
  opacity: 1;
}

/* line 2850, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-form .form-group-compact.has-validation-icon > .validation-icon.icon-valid {
  color: #22c55e;
}

/* line 2854, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-form .form-group-compact.has-validation-icon > .validation-icon.icon-invalid {
  color: #ef4444;
}

/* line 2860, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-form .form-group-compact.has-validation-icon .siret-input-group {
  position: relative;
}

/* line 2863, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-form .form-group-compact.has-validation-icon .siret-input-group .form-input-compact {
  padding-right: 2.5rem;
}

/* line 2870, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-form .form-group-compact.has-validation-icon .siret-input-group ~ .validation-icon {
  right: calc(93px + 12px);
}

/* line 2878, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-form .validation-message {
  min-height: 0;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  overflow: hidden;
  transition: all 0.2s ease;
}

/* line 2888, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-form .validation-message:empty {
  min-height: 0;
  margin-top: 0;
}

/* line 2893, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-form .validation-message.error-message {
  color: #ef4444;
}

/* line 2896, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-form .validation-message.error-message::before {
  content: "⚠️ ";
}

/* line 2901, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-form .validation-message.success-message {
  color: #22c55e;
}

/* line 2904, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-form .validation-message.success-message::before {
  content: "✓ ";
}

/* line 2911, app/assets/stylesheets/website/pages/_subscription.scss */
.subscription-form .form-input-compact:focus-visible {
  outline: 2px solid #7dd3fc;
  outline-offset: 2px;
}

@media (max-width: 768px) {
  /* line 2920, app/assets/stylesheets/website/pages/_subscription.scss */
  .subscription-form .validation-message {
    font-size: 0.7rem;
  }
  /* line 2924, app/assets/stylesheets/website/pages/_subscription.scss */
  .subscription-form .form-label-compact {
    font-size: 0.8rem;
  }
  /* line 2928, app/assets/stylesheets/website/pages/_subscription.scss */
  .subscription-form .required-legend {
    font-size: 0.75rem;
  }
  /* line 2934, app/assets/stylesheets/website/pages/_subscription.scss */
  .subscription-form .form-group-compact.has-validation-icon .siret-input-group ~ .validation-icon {
    right: calc(80px + 10px);
  }
}

/* Page de confirmation de souscription - Style Orizen */
/* line 5, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
}

/* line 16, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-container {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

/* line 22, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-content {
  text-align: center;
  color: #f6f6f7;
  position: relative;
  z-index: 2;
}

/* Icône de succès animée */
/* line 30, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 3rem;
}

/* line 36, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-icon-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(246, 229, 179, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(246, 229, 179, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  animation: successIconPulse 2s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* line 51, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-icon-circle i {
  font-size: 3.5rem;
  color: #F6E5B3;
  animation: successCheck 0.6s ease-out 0.3s backwards;
}

/* line 58, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-icon-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid rgba(246, 229, 179, 0.4);
  animation: ripple 2s ease-out infinite;
}

@keyframes successIconPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(246, 229, 179, 0.2);
  }
}

@keyframes successCheck {
  0% {
    transform: scale(0) rotate(-45deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.2) rotate(5deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes ripple {
  0% {
    width: 120px;
    height: 120px;
    opacity: 1;
  }
  100% {
    width: 200px;
    height: 200px;
    opacity: 0;
  }
}

/* Titre principal */
/* line 109, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin: 0 0 1.5rem 0;
  color: #F6E5B3;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* Message de bienvenue */
/* line 119, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-welcome-message {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 400;
  margin: 0 0 3rem 0;
  color: rgba(246, 246, 247, 0.95);
  line-height: 1.5;
  font-style: italic;
}

/* Carte d'information */
/* line 129, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-info-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.26);
}

/* line 139, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-info-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(246, 246, 247, 0.75);
  margin: 0;
}

/* Prochaines étapes - Liste détaillée */
/* line 147, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-step-list {
  text-align: left;
}

/* line 150, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-step-list .success-step-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #22c55e;
}

/* line 158, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-step-list .success-step-title i {
  font-size: 1.3rem;
}

/* line 164, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

/* line 169, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-steps .success-step {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

/* line 174, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-steps .success-step:last-child {
  margin-bottom: 0;
}

/* line 178, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-steps .success-step .step-number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

/* line 193, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-steps .success-step .step-content {
  flex: 1;
}

/* line 196, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-steps .success-step .step-content strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #f5f7fb;
  font-size: 0.95rem;
}

/* line 203, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-steps .success-step .step-content p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

/* line 209, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-steps .success-step .step-content p strong {
  display: inline;
  color: #F6E5B3;
  font-size: inherit;
}

/* line 219, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-timing-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* line 229, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-timing-info i {
  color: #60a5fa;
  font-size: 1rem;
  flex-shrink: 0;
}

/* line 235, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-timing-info span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

/* line 239, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-timing-info span strong {
  color: #60a5fa;
}

/* line 245, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-spam-notice {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 8px;
}

/* line 253, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-spam-notice > i {
  color: #f59e0b;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* line 260, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-spam-notice > div {
  flex: 1;
}

/* line 263, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-spam-notice > div strong {
  color: #fbbf24;
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

/* line 270, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-spam-notice > div p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

/* line 276, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-spam-notice > div p strong {
  display: inline;
  color: #fbbf24;
  font-size: inherit;
}

/* Actions */
/* line 286, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-actions {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Styles spécifiques pour les boutons de la page de confirmation - ne pas utiliser .btn pour éviter les conflits */
/* line 294, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-btn {
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  font-size: 1rem;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

/* line 308, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-btn i {
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

/* line 314, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-btn .btn-orizen-logo {
  height: 1.2rem;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  position: relative;
  z-index: 1;
}

/* line 323, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

/* line 336, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-btn:hover::before {
  width: 300px;
  height: 300px;
}

/* line 341, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-btn span {
  position: relative;
  z-index: 1;
}

/* line 347, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-btn-primary {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* line 353, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: white;
}

/* line 360, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-btn-primary:active {
  transform: translateY(0);
}

/* line 365, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #f6f6f7;
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

/* line 371, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  color: #f6f6f7;
}

/* line 379, app/assets/stylesheets/website/pages/_subscription_success.scss */
.success-btn-secondary:active {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  /* line 386, app/assets/stylesheets/website/pages/_subscription_success.scss */
  .success-page {
    padding: 1.5rem;
  }
  /* line 390, app/assets/stylesheets/website/pages/_subscription_success.scss */
  .success-icon-circle {
    width: 100px;
    height: 100px;
  }
  /* line 394, app/assets/stylesheets/website/pages/_subscription_success.scss */
  .success-icon-circle i {
    font-size: 2.5rem;
  }
  /* line 399, app/assets/stylesheets/website/pages/_subscription_success.scss */
  .success-icon-ripple {
    width: 100px;
    height: 100px;
  }
  /* line 404, app/assets/stylesheets/website/pages/_subscription_success.scss */
  .success-info-card {
    padding: 1.5rem;
  }
  /* line 408, app/assets/stylesheets/website/pages/_subscription_success.scss */
  .success-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  /* line 414, app/assets/stylesheets/website/pages/_subscription_success.scss */
  .success-btn {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.5rem;
  }
  /* Responsive pour les prochaines étapes */
  /* line 422, app/assets/stylesheets/website/pages/_subscription_success.scss */
  .success-steps .success-step .step-number {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
  /* line 429, app/assets/stylesheets/website/pages/_subscription_success.scss */
  .success-steps .success-step .step-content strong {
    font-size: 0.9rem;
  }
  /* line 433, app/assets/stylesheets/website/pages/_subscription_success.scss */
  .success-steps .success-step .step-content p {
    font-size: 0.85rem;
  }
  /* line 439, app/assets/stylesheets/website/pages/_subscription_success.scss */
  .success-timing-info {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  /* line 444, app/assets/stylesheets/website/pages/_subscription_success.scss */
  .success-timing-info span {
    font-size: 0.85rem;
  }
  /* line 449, app/assets/stylesheets/website/pages/_subscription_success.scss */
  .success-spam-notice {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  /* line 454, app/assets/stylesheets/website/pages/_subscription_success.scss */
  .success-spam-notice > i {
    margin-top: 0;
  }
  /* line 459, app/assets/stylesheets/website/pages/_subscription_success.scss */
  .success-spam-notice > div strong {
    font-size: 0.85rem;
  }
  /* line 463, app/assets/stylesheets/website/pages/_subscription_success.scss */
  .success-spam-notice > div p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  /* line 471, app/assets/stylesheets/website/pages/_subscription_success.scss */
  .success-page {
    padding: 1rem;
  }
  /* line 475, app/assets/stylesheets/website/pages/_subscription_success.scss */
  .success-icon-wrapper {
    margin-bottom: 2rem;
  }
  /* line 479, app/assets/stylesheets/website/pages/_subscription_success.scss */
  .success-title {
    margin-bottom: 1rem;
  }
  /* line 483, app/assets/stylesheets/website/pages/_subscription_success.scss */
  .success-welcome-message {
    margin-bottom: 2rem;
  }
  /* line 487, app/assets/stylesheets/website/pages/_subscription_success.scss */
  .success-info-card {
    padding: 1.25rem;
    margin-bottom: 2rem;
  }
}

/* Landing page RSVP – Soirée de lancement Orizen */
/* line 18, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: #f6f6f7;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* line 30, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-hero {
  text-align: center;
  padding: 24px 20px 0px;
}

/* line 35, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-hero-inner {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 20px;
}

/* line 41, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-logo {
  width: 250px;
  max-width: 55%;
  margin-bottom: 30px;
  margin-top: 20px;
  filter: none;
}

/* line 50, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-hero-split {
  display: flex;
  align-items: center;
  gap: 24px;
  text-align: left;
}

/* line 57, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-hero-text {
  flex: 1;
}

/* line 61, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-headline {
  font-size: 1.25rem;
  font-weight: 600;
  color: #F6E5B3;
  margin-bottom: 8px;
  line-height: 1.3;
}

/* line 69, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-programme {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin: 0;
}

/* line 75, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-programme span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: rgba(246, 246, 247, 0.75);
}

/* line 82, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-programme span i {
  color: #F6E5B3;
  font-size: 0.85rem;
}

/* line 89, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-hero-visual {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* line 98, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* line 108, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-letter {
  max-width: 840px;
  width: 100%;
  margin: 0 auto;
  padding: 16px 20px 0;
}

/* line 115, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-letter-inner {
  background: rgba(250, 248, 244, 0.12);
  border-radius: 6px;
  padding: 20px 36px;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 0.95rem;
  line-height: 1.75;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* line 125, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-letter-inner p {
  margin: 0 0 0.6em;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
}

/* line 133, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-letter-signature {
  font-family: 'Dancing Script', cursive !important;
  font-size: 1.6rem !important;
  font-weight: 700 !important;
  color: #F6E5B3 !important;
  margin-top: 1em !important;
  margin-bottom: 0 !important;
  line-height: 1.3;
}

/* line 143, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-letter-role {
  font-size: 0.8rem !important;
  color: rgba(246, 246, 247, 0.75) !important;
  margin-bottom: 0 !important;
  font-style: italic;
}

/* line 153, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 20px 24px;
  gap: 20px;
  max-width: 840px;
  margin: 0 auto;
  width: 100%;
}

/* line 168, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-form-inner {
  width: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 18px 24px;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

/* line 178, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-form-title {
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 4px;
  color: #F6E5B3;
}

/* line 186, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-form-subtitle {
  text-align: center;
  color: rgba(246, 246, 247, 0.75);
  margin-bottom: 14px;
  font-size: 0.9rem;
}

/* line 194, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-choice-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* line 200, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-choice-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 14px;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  color: #f6f6f7;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* line 214, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-choice-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* line 219, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-choice-card h3, .event-rsvp-choice-card .h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

/* line 225, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-choice-card p {
  font-size: 0.8rem;
  color: rgba(246, 246, 247, 0.75);
  margin: 0;
}

/* line 231, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-choice-card--confirm {
  border-color: rgba(81, 207, 102, 0.3);
}

/* line 234, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-choice-card--confirm:hover {
  background: rgba(81, 207, 102, 0.1);
  border-color: rgba(81, 207, 102, 0.6);
}

/* line 239, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-choice-card--confirm .event-rsvp-choice-icon {
  color: #51cf66;
}

/* line 244, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-choice-card--decline {
  border-color: rgba(255, 107, 107, 0.3);
}

/* line 247, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-choice-card--decline:hover {
  background: rgba(255, 107, 107, 0.1);
  border-color: rgba(255, 107, 107, 0.6);
}

/* line 252, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-choice-card--decline .event-rsvp-choice-icon {
  color: #ff6b6b;
}

/* line 258, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-choice-icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

/* line 264, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-venue-compact {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 14px 18px;
  backdrop-filter: blur(10px);
  width: 100%;
}

/* line 276, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-venue-thumb {
  width: 120px;
  min-width: 120px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* line 284, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-venue-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* line 291, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-venue-info-compact {
  flex: 1;
}

/* line 294, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-venue-info-compact h2, .event-rsvp-venue-info-compact .h2 {
  font-size: 1rem;
  font-weight: 600;
  color: #F6E5B3;
  margin: 0 0 3px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* line 303, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-venue-info-compact h2 i, .event-rsvp-venue-info-compact .h2 i {
  font-size: 0.9rem;
}

/* line 308, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-venue-info-compact p {
  color: rgba(246, 246, 247, 0.75);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.4;
}

/* line 316, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(246, 229, 179, 0.15);
  border: 1px solid #F6E5B3;
  border-radius: 50px;
  color: #F6E5B3;
  font-weight: 600;
  font-size: 0.8rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* line 330, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-date-badge i {
  font-size: 0.85rem;
}

/* line 336, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* line 342, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* line 348, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 353, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-form-group label {
  font-weight: 500;
  color: #F6E5B3;
  font-size: 0.85rem;
}

/* line 358, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-form-group label.required::after {
  content: ' *';
  color: #ff6b6b;
}

/* line 365, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-input,
.event-rsvp-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #f6f6f7;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

/* line 378, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-input::placeholder,
.event-rsvp-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* line 382, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-input:focus,
.event-rsvp-textarea:focus {
  outline: none;
  border-color: #F6E5B3;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(246, 229, 179, 0.15);
}

/* line 390, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-textarea {
  min-height: 60px;
  resize: vertical;
}

/* line 396, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-form-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 4px;
}

/* line 404, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* line 419, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-btn--confirm {
  background: linear-gradient(135deg, #D4A843 0%, #F6E5B3 100%);
  color: #2D1040;
}

/* line 423, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-btn--confirm:hover {
  transform: translateY(-2px);
  color: #2D1040;
}

/* line 429, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-btn--decline {
  background: rgba(255, 107, 107, 0.15);
  color: #ff6b6b;
  border: 1px solid rgba(255, 107, 107, 0.3);
}

/* line 434, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-btn--decline:hover {
  background: rgba(255, 107, 107, 0.25);
  color: #ff6b6b;
}

/* line 440, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(246, 246, 247, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* line 445, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #f6f6f7;
}

/* line 451, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-btn--landing {
  background: linear-gradient(135deg, #D4A843 0%, #F6E5B3 100%);
  color: #2D1040;
  padding: 10px 28px;
  font-size: 0.9rem;
}

/* line 457, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-btn--landing:hover {
  transform: translateY(-2px);
  color: #2D1040;
}

/* line 465, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-already-responded {
  text-align: center;
  padding: 16px 0;
}

/* line 469, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-already-responded h2, .event-rsvp-already-responded .h2 {
  font-size: 1.2rem;
  color: #F6E5B3;
  margin-bottom: 8px;
}

/* line 475, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-already-responded p {
  color: rgba(246, 246, 247, 0.75);
  font-size: 0.9rem;
}

/* line 481, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-already-icon {
  font-size: 2.5rem;
  color: #51cf66;
  margin-bottom: 12px;
}

/* line 490, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-thank-you {
  padding: 40px 20px 80px;
}

/* line 494, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-thank-you-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 48px 40px;
  backdrop-filter: blur(12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* line 506, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-thank-you-icon {
  font-size: 4rem;
  margin-bottom: 24px;
}

/* line 510, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-thank-you-icon--confirmed {
  color: #51cf66;
}

/* line 514, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-thank-you-icon--declined {
  color: #F6E5B3;
}

/* line 519, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-thank-you-title {
  font-size: 2rem;
  font-weight: 600;
  color: #F6E5B3;
  margin-bottom: 16px;
}

/* line 526, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-thank-you-message {
  font-size: 1.05rem;
  color: rgba(246, 246, 247, 0.75);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* line 532, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-thank-you-message strong {
  color: #f6f6f7;
}

/* line 537, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-thank-you-recap {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 548, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-thank-you-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

/* line 554, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-thank-you-detail i {
  color: #F6E5B3;
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

/* line 562, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-thank-you-note {
  font-size: 0.95rem;
  color: rgba(246, 246, 247, 0.75);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* line 569, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-thank-you-contact {
  margin-top: 8px;
}

/* line 576, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-invalid {
  padding: 40px 20px 80px;
}

/* line 580, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-invalid-inner {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 48px 40px;
  backdrop-filter: blur(12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* line 592, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-invalid-icon {
  font-size: 3.5rem;
  color: #ff6b6b;
  margin-bottom: 20px;
}

/* line 598, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-invalid-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #f6f6f7;
  margin-bottom: 12px;
}

/* line 605, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-invalid-message {
  color: rgba(246, 246, 247, 0.75);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* line 613, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-invalid-contact p {
  color: rgba(246, 246, 247, 0.75);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

/* line 623, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 20px 10px;
  margin-top: auto;
}

/* line 629, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* line 639, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

/* line 645, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-footer-brand .brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f6f6f7;
}

/* line 651, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-footer-brand .event-rsvp-btn--landing {
  font-size: 0.8rem;
  padding: 7px 18px;
}

/* line 657, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-ftw-link {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

/* line 662, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-ftw-link:hover {
  color: #F6E5B3;
}

/* line 665, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-ftw-link:hover .brand {
  color: #F6E5B3;
}

/* line 671, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-footer-contact {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* line 676, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-footer-contact a, .event-rsvp-footer-contact span {
  color: rgba(246, 246, 247, 0.75);
  text-decoration: none;
  font-size: 0.8rem;
}

/* line 681, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-footer-contact a:hover, .event-rsvp-footer-contact span:hover {
  color: #F6E5B3;
}

/* line 687, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-footer-social {
  display: flex;
  gap: 14px;
}

/* line 691, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-footer-social a {
  color: rgba(246, 246, 247, 0.75);
  transition: color 0.2s ease;
}

/* line 695, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-footer-social a:hover {
  color: #F6E5B3;
}

/* line 701, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-footer-bottom {
  text-align: center;
  margin-top: 8px;
}

/* line 705, app/assets/stylesheets/website/pages/_event_rsvp.scss */
.event-rsvp-footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
}

@media (max-width: 768px) {
  /* line 715, app/assets/stylesheets/website/pages/_event_rsvp.scss */
  .event-rsvp-hero {
    padding: 20px 16px 10px;
  }
  /* line 719, app/assets/stylesheets/website/pages/_event_rsvp.scss */
  .event-rsvp-hero-split {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
  /* line 725, app/assets/stylesheets/website/pages/_event_rsvp.scss */
  .event-rsvp-hero-visual {
    width: 100px;
    height: 100px;
  }
  /* line 730, app/assets/stylesheets/website/pages/_event_rsvp.scss */
  .event-rsvp-headline {
    font-size: 1.1rem;
  }
  /* line 734, app/assets/stylesheets/website/pages/_event_rsvp.scss */
  .event-rsvp-logo {
    width: 180px;
  }
  /* line 738, app/assets/stylesheets/website/pages/_event_rsvp.scss */
  .event-rsvp-venue-compact {
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 12px;
  }
  /* line 744, app/assets/stylesheets/website/pages/_event_rsvp.scss */
  .event-rsvp-venue-thumb {
    width: 60px;
    min-width: 60px;
    height: 44px;
  }
  /* line 750, app/assets/stylesheets/website/pages/_event_rsvp.scss */
  .event-rsvp-date-badge {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
  }
  /* line 756, app/assets/stylesheets/website/pages/_event_rsvp.scss */
  .event-rsvp-letter {
    padding: 12px 16px 0;
  }
  /* line 760, app/assets/stylesheets/website/pages/_event_rsvp.scss */
  .event-rsvp-letter-inner {
    padding: 24px 20px;
    font-size: 0.88rem;
  }
  /* line 765, app/assets/stylesheets/website/pages/_event_rsvp.scss */
  .event-rsvp-form-inner {
    padding: 20px 16px;
  }
  /* line 769, app/assets/stylesheets/website/pages/_event_rsvp.scss */
  .event-rsvp-choice-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  /* line 774, app/assets/stylesheets/website/pages/_event_rsvp.scss */
  .event-rsvp-choice-card {
    padding: 16px 14px;
  }
  /* line 778, app/assets/stylesheets/website/pages/_event_rsvp.scss */
  .event-rsvp-form-row {
    grid-template-columns: 1fr;
  }
  /* line 782, app/assets/stylesheets/website/pages/_event_rsvp.scss */
  .event-rsvp-form-actions {
    flex-direction: column;
  }
  /* line 785, app/assets/stylesheets/website/pages/_event_rsvp.scss */
  .event-rsvp-form-actions .event-rsvp-btn {
    width: 100%;
  }
  /* line 790, app/assets/stylesheets/website/pages/_event_rsvp.scss */
  .event-rsvp-footer-inner {
    flex-direction: column;
    text-align: center;
  }
  /* line 795, app/assets/stylesheets/website/pages/_event_rsvp.scss */
  .event-rsvp-footer-brand {
    align-items: center;
  }
  /* line 799, app/assets/stylesheets/website/pages/_event_rsvp.scss */
  .event-rsvp-footer-contact {
    flex-direction: column;
    gap: 6px;
  }
  /* line 804, app/assets/stylesheets/website/pages/_event_rsvp.scss */
  .event-rsvp-thank-you-inner {
    padding: 32px 20px;
  }
}

@media (max-width: 480px) {
  /* line 810, app/assets/stylesheets/website/pages/_event_rsvp.scss */
  .event-rsvp-hero {
    padding: 16px 12px 8px;
  }
  /* line 814, app/assets/stylesheets/website/pages/_event_rsvp.scss */
  .event-rsvp-headline {
    font-size: 1rem;
  }
  /* line 818, app/assets/stylesheets/website/pages/_event_rsvp.scss */
  .event-rsvp-programme {
    font-size: 0.78rem;
  }
  /* line 822, app/assets/stylesheets/website/pages/_event_rsvp.scss */
  .event-rsvp-main {
    padding: 12px 12px 16px;
    gap: 14px;
  }
}

/* Page RSVP calendrier – classes spécifiques non couvertes par _auth.scss */
/* Icône de statut animée */
/* line 6, app/assets/stylesheets/website/pages/_rsvp.scss */
.rsvp-status-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  animation: rsvpIconPulse 2s ease-in-out infinite;
}

/* line 16, app/assets/stylesheets/website/pages/_rsvp.scss */
.rsvp-status-icon i {
  font-size: 2.5rem;
  color: #fff;
}

/* line 22, app/assets/stylesheets/website/pages/_rsvp.scss */
.rsvp-status-accepted {
  background: rgba(34, 197, 94, 0.2);
  border: 2px solid rgba(34, 197, 94, 0.4);
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.2);
}

/* line 27, app/assets/stylesheets/website/pages/_rsvp.scss */
.rsvp-status-accepted i {
  color: #22c55e;
}

/* line 30, app/assets/stylesheets/website/pages/_rsvp.scss */
.rsvp-status-declined {
  background: rgba(239, 68, 68, 0.2);
  border: 2px solid rgba(239, 68, 68, 0.4);
  box-shadow: 0 8px 32px rgba(239, 68, 68, 0.2);
}

/* line 35, app/assets/stylesheets/website/pages/_rsvp.scss */
.rsvp-status-declined i {
  color: #ef4444;
}

/* line 38, app/assets/stylesheets/website/pages/_rsvp.scss */
.rsvp-status-error {
  background: rgba(245, 158, 11, 0.2);
  border: 2px solid rgba(245, 158, 11, 0.4);
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.2);
}

/* line 43, app/assets/stylesheets/website/pages/_rsvp.scss */
.rsvp-status-error i {
  color: #f59e0b;
}

@keyframes rsvpIconPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Carte info événement */
/* line 56, app/assets/stylesheets/website/pages/_rsvp.scss */
.rsvp-event-info {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 4px solid #F6E5B3;
  border-radius: 20px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

/* line 67, app/assets/stylesheets/website/pages/_rsvp.scss */
.rsvp-event-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #f6f6f7;
  margin: 0 0 0.75rem;
}

/* line 74, app/assets/stylesheets/website/pages/_rsvp.scss */
.rsvp-event-detail {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.95rem;
  color: rgba(246, 246, 247, 0.75);
  margin: 0.375rem 0;
}

/* line 82, app/assets/stylesheets/website/pages/_rsvp.scss */
.rsvp-event-detail i {
  width: 1rem;
  text-align: center;
  color: #F6E5B3;
  font-size: 0.85rem;
}

/* Messages textuels */
/* line 91, app/assets/stylesheets/website/pages/_rsvp.scss */
.rsvp-message {
  text-align: center;
  font-size: 1.05rem;
  color: #f6f6f7;
  margin: 0 0 1.25rem;
  line-height: 1.6;
}

/* line 98, app/assets/stylesheets/website/pages/_rsvp.scss */
.rsvp-message strong {
  color: #F6E5B3;
}

/* line 103, app/assets/stylesheets/website/pages/_rsvp.scss */
.rsvp-message-dim {
  color: rgba(246, 246, 247, 0.75);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Zone actions / boutons */
/* line 110, app/assets/stylesheets/website/pages/_rsvp.scss */
.rsvp-actions {
  text-align: center;
}

/* line 113, app/assets/stylesheets/website/pages/_rsvp.scss */
.rsvp-actions form {
  display: inline;
}

/* Bouton décliner */
/* line 119, app/assets/stylesheets/website/pages/_rsvp.scss */
.rsvp-btn-decline {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.05rem;
  border: 2px solid rgba(239, 68, 68, 0.35);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 220px;
  justify-content: center;
}

/* line 135, app/assets/stylesheets/website/pages/_rsvp.scss */
.rsvp-btn-decline:hover {
  background: rgba(239, 68, 68, 0.25);
  border-color: rgba(239, 68, 68, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.2);
}

/* Footer */
/* line 144, app/assets/stylesheets/website/pages/_rsvp.scss */
.rsvp-footer {
  margin-top: 2rem;
  text-align: center;
}

/* line 148, app/assets/stylesheets/website/pages/_rsvp.scss */
.rsvp-footer p {
  font-size: 0.85rem;
  color: rgba(246, 246, 247, 0.75);
  margin: 0;
}

/* Responsive */
@media (max-width: 600px) {
  /* line 157, app/assets/stylesheets/website/pages/_rsvp.scss */
  .rsvp-status-icon {
    width: 70px;
    height: 70px;
  }
  /* line 161, app/assets/stylesheets/website/pages/_rsvp.scss */
  .rsvp-status-icon i {
    font-size: 2rem;
  }
  /* line 164, app/assets/stylesheets/website/pages/_rsvp.scss */
  .rsvp-event-info {
    padding: 1rem 1.25rem;
  }
  /* line 168, app/assets/stylesheets/website/pages/_rsvp.scss */
  .rsvp-btn-decline {
    width: 100%;
    min-width: auto;
    padding: 12px 18px;
  }
}

/* Namespace landing Orizen – styles isolés */
/* Import des sections */
/* Section Pricing - Design moderne et attractif optimisé pour 100vh */
/* line 4, app/assets/stylesheets/website/_pricing.scss */
.pricing-section {
  min-height: 100vh;
  background: linear-gradient(60deg, #140D23 15%, #640127 140%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 0 0;
  /* Volume pour le menu */
}

/* line 15, app/assets/stylesheets/website/_pricing.scss */
.pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(246,229,179,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(246,229,179,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(246,229,179,0.1)"/></svg>');
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

/* line 28, app/assets/stylesheets/website/_pricing.scss */
.pricing-container {
  max-width: 1400px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
}

/* line 38, app/assets/stylesheets/website/_pricing.scss */
.pricing-content {
  display: grid;
  grid-template-columns: 50% 50%;
  /* Répartition exacte 50/50 */
  gap: 2rem;
  flex: 1;
  min-height: 0;
  position: relative;
  /* Séparateur visuel entre les colonnes */
  /* Effet de glow autour du séparateur */
}

/* line 47, app/assets/stylesheets/website/_pricing.scss */
.pricing-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: calc(50% + 1rem);
  /* Position exacte au centre du gap */
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(246, 229, 179, 0.1) 20%, rgba(246, 229, 179, 0.3) 50%, rgba(246, 229, 179, 0.1) 80%, transparent 100%);
  box-shadow: 0 0 20px rgba(246, 229, 179, 0.2), 0 0 40px rgba(246, 229, 179, 0.1);
  z-index: 1;
  animation: separatorGlow 3s ease-in-out infinite;
}

/* line 70, app/assets/stylesheets/website/_pricing.scss */
.pricing-content::after {
  content: '';
  position: absolute;
  top: 0;
  left: calc(50% + 1rem);
  /* Position exacte au centre du gap */
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(246, 229, 179, 0.05) 20%, rgba(246, 229, 179, 0.1) 50%, rgba(246, 229, 179, 0.05) 80%, transparent 100%);
  filter: blur(2px);
  z-index: 0;
}

/* Colonne gauche - Offres groupées */
/* line 91, app/assets/stylesheets/website/_pricing.scss */
.packages-column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  z-index: 2;
  padding-right: 1rem;
  /* Espacement supplémentaire vers la droite */
}

/* Masquer les colonnes desktop sur mobile */
@media (max-width: 767px) {
  /* line 102, app/assets/stylesheets/website/_pricing.scss */
  .packages-column.desktop-only,
.a-la-carte-column.desktop-only {
    display: none !important;
  }
}

/* line 108, app/assets/stylesheets/website/_pricing.scss */
.packages-header {
  text-align: center;
  margin-bottom: 1rem;
}

/* line 112, app/assets/stylesheets/website/_pricing.scss */
.packages-header h3, .packages-header .h3 {
  font-size: 1.4rem;
  /* Réduit de 1.8rem */
  font-weight: 600;
  color: #F6E5B3;
  font-family: 'Poppins', sans-serif;
  text-transform: none;
  /* Suppression de uppercase */
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

/* line 122, app/assets/stylesheets/website/_pricing.scss */
.packages-header .commitment-label {
  margin-top: 0.5rem;
}

/* line 125, app/assets/stylesheets/website/_pricing.scss */
.packages-header .commitment-label span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* line 136, app/assets/stylesheets/website/_pricing.scss */
.packages-carousel {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  /* Cache le débordement des cartes */
  padding: 0 60px;
  /* Espace pour les flèches */
}

/* line 144, app/assets/stylesheets/website/_pricing.scss */
.carousel-container {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: auto;
  /* évite d'étirer les cartes verticalement */
  width: 100%;
  /* Assure que le conteneur prend toute la largeur */
  flex-wrap: nowrap;
  /* Empêche le retour à la ligne */
  gap: 2rem;
  /* Espacement entre les cartes */
}

/* line 153, app/assets/stylesheets/website/_pricing.scss */
.package-card {
  min-width: 100%;
  /* Largeur fixe pour chaque carte */
  width: 100%;
  /* Assure que chaque carte prend toute la largeur disponible */
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1.5rem;
  backdrop-filter: blur(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 500px;
  /* Hauteur fixe impérative pour alignement */
  max-height: 450px;
  /* Hauteur maximale impérative */
  flex-shrink: 0;
  /* Empêche la compression des cartes */
  opacity: 0;
  /* Cartes non actives plus discrètes */
  /* Badge de réduction en haut à droite */
}

/* line 172, app/assets/stylesheets/website/_pricing.scss */
.package-card .discount-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  color: white;
  padding: 0.3rem 0.6rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 8px rgba(74, 222, 128, 0.3);
  z-index: 100;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

/* line 191, app/assets/stylesheets/website/_pricing.scss */
.package-card .discount-badge.visible {
  opacity: 1;
  transform: translateY(0);
}

/* line 197, app/assets/stylesheets/website/_pricing.scss */
.package-card.active {
  opacity: 1;
  /* Carte active complètement visible */
}

/* line 202, app/assets/stylesheets/website/_pricing.scss */
.package-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(246, 229, 179, 0.3);
}

/* line 207, app/assets/stylesheets/website/_pricing.scss */
.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(246, 229, 179, 0.5) 50%, transparent 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

/* line 219, app/assets/stylesheets/website/_pricing.scss */
.package-card:hover::before {
  transform: scaleX(1);
}

/* line 224, app/assets/stylesheets/website/_pricing.scss */
.package-header {
  text-align: center;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

/* line 232, app/assets/stylesheets/website/_pricing.scss */
.package-header .package-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

/* line 239, app/assets/stylesheets/website/_pricing.scss */
.package-header .package-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #F6E5B3;
  font-family: 'Poppins', sans-serif;
  text-transform: none;
  letter-spacing: 0.5px;
  margin-bottom: 0;
  white-space: normal;
  /* Permet le retour à la ligne */
}

/* line 249, app/assets/stylesheets/website/_pricing.scss */
.package-header .package-title .price-period {
  font-size: 0.9rem;
  color: #e8e8e8;
  font-weight: 400;
}

/* line 256, app/assets/stylesheets/website/_pricing.scss */
.package-header .package-savings {
  font-size: 0.8rem;
  color: #4ade80;
  /* Vert pour les économies */
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  margin-bottom: 0;
}

/* line 265, app/assets/stylesheets/website/_pricing.scss */
.package-features {
  flex: 1;
  /* Prend l'espace disponible dans la carte */
  margin-bottom: 1.5rem;
  max-height: 200px;
  /* Hauteur maximale pour les features */
  overflow-y: auto;
  /* Scroll si le contenu dépasse */
  overflow-x: hidden;
  /* Layout en deux colonnes */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

/* line 272, app/assets/stylesheets/website/_pricing.scss */
.package-features::-webkit-scrollbar {
  width: 6px;
}

/* line 276, app/assets/stylesheets/website/_pricing.scss */
.package-features::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

/* line 281, app/assets/stylesheets/website/_pricing.scss */
.package-features::-webkit-scrollbar-thumb {
  background: #C38761;
  /* $goldsummer */
  border-radius: 3px;
  transition: background 0.3s ease;
}

/* line 286, app/assets/stylesheets/website/_pricing.scss */
.package-features::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
  /* $white */
}

/* line 291, app/assets/stylesheets/website/_pricing.scss */
.package-features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  /* Taille réduite */
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Poppins', sans-serif;
}

/* line 300, app/assets/stylesheets/website/_pricing.scss */
.package-features .feature-item .feature-icon {
  color: #F6E5B3;
  font-size: 0.7rem;
  /* Taille réduite */
  transform: rotate(0deg);
  /* Suppression de la rotation pour une meilleure visibilité */
}

/* line 313, app/assets/stylesheets/website/_pricing.scss */
.package-cta {
  text-align: center;
}

/* line 316, app/assets/stylesheets/website/_pricing.scss */
.package-cta .cta-button {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 330, app/assets/stylesheets/website/_pricing.scss */
.package-cta .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

/* line 337, app/assets/stylesheets/website/_pricing.scss */
.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* Flèches de navigation du carousel */
/* line 345, app/assets/stylesheets/website/_pricing.scss */
.carousel-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  /* Permet de cliquer à travers */
  z-index: 20;
  /* Au-dessus du conteneur avec overflow hidden */
  padding: 0 10px;
  /* Espacement supplémentaire */
}

/* line 359, app/assets/stylesheets/website/_pricing.scss */
.carousel-arrow {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(246, 229, 179, 0.3);
  color: #F6E5B3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  /* Réactive les clics sur les flèches */
  backdrop-filter: blur(10px);
  font-size: 1rem;
  /* Positionnement des flèches */
}

/* line 375, app/assets/stylesheets/website/_pricing.scss */
.carousel-arrow:hover {
  background: rgba(246, 229, 179, 0.2);
  border-color: #F6E5B3;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(246, 229, 179, 0.3);
}

/* line 382, app/assets/stylesheets/website/_pricing.scss */
.carousel-arrow:active {
  transform: scale(0.95);
}

/* line 387, app/assets/stylesheets/website/_pricing.scss */
.carousel-arrow.carousel-arrow-prev {
  margin-left: 0;
  /* Suppression de la marge négative */
}

/* line 391, app/assets/stylesheets/website/_pricing.scss */
.carousel-arrow.carousel-arrow-next {
  margin-right: 0;
  /* Suppression de la marge négative */
}

/* line 396, app/assets/stylesheets/website/_pricing.scss */
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 404, app/assets/stylesheets/website/_pricing.scss */
.carousel-dot.active {
  background: #F6E5B3;
  transform: scale(1.2);
}

/* line 409, app/assets/stylesheets/website/_pricing.scss */
.carousel-dot:hover {
  background: rgba(246, 229, 179, 0.5);
}

/* Colonne droite - Applications à la carte */
/* line 415, app/assets/stylesheets/website/_pricing.scss */
.a-la-carte-column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  z-index: 2;
  padding-left: 1rem;
  /* Espacement supplémentaire vers la gauche */
}

/* line 424, app/assets/stylesheets/website/_pricing.scss */
.a-la-carte-header {
  text-align: center;
  margin-bottom: 1rem;
}

/* line 428, app/assets/stylesheets/website/_pricing.scss */
.a-la-carte-header h3, .a-la-carte-header .h3 {
  font-size: 1.4rem;
  /* Réduit de 1.8rem */
  font-weight: 600;
  color: #F6E5B3;
  font-family: 'Poppins', sans-serif;
  text-transform: none;
  /* Suppression de uppercase */
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

/* line 438, app/assets/stylesheets/website/_pricing.scss */
.a-la-carte-header .no-commitment-label {
  margin-top: 0.5rem;
}

/* line 441, app/assets/stylesheets/website/_pricing.scss */
.a-la-carte-header .no-commitment-label span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ===== CLASSES RESPONSIVE PERSONNALISÉES ===== */
/* line 453, app/assets/stylesheets/website/_pricing.scss */
.desktop-only {
  display: block;
}

/* line 457, app/assets/stylesheets/website/_pricing.scss */
.mobile-only {
  display: none;
}

/* ===== VERSION MOBILE OPTIMISÉE ===== */
@media (max-width: 767px) {
  /* Masquer complètement le contenu desktop sur mobile */
  /* line 464, app/assets/stylesheets/website/_pricing.scss */
  .desktop-only {
    display: none !important;
  }
  /* line 468, app/assets/stylesheets/website/_pricing.scss */
  .mobile-only {
    display: block !important;
  }
  /* Section d'introduction mobile */
  /* line 473, app/assets/stylesheets/website/_pricing.scss */
  .mobile-pricing-intro {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(246, 229, 179, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    margin-bottom: 1.5rem;
  }
  /* line 482, app/assets/stylesheets/website/_pricing.scss */
  .mobile-pricing-intro .intro-content .intro-title {
    color: #F6E5B3;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-family: 'Poppins', sans-serif;
  }
  /* line 490, app/assets/stylesheets/website/_pricing.scss */
  .mobile-pricing-intro .intro-content .intro-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }
  /* Accordéon mobile avec style personnalisé */
  /* line 501, app/assets/stylesheets/website/_pricing.scss */
  .mobile-pricing-accordion {
    margin-top: 0;
  }
  /* line 504, app/assets/stylesheets/website/_pricing.scss */
  .mobile-pricing-accordion .accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: rgba(246, 229, 179, 0.2);
    --bs-accordion-border-width: 1px;
    --bs-accordion-border-radius: 12px;
    --bs-accordion-inner-border-radius: 10px;
    --bs-accordion-btn-padding-x: 1.25rem;
    --bs-accordion-btn-padding-y: 1rem;
    --bs-accordion-btn-color: rgba(255, 255, 255, 0.9);
    --bs-accordion-btn-bg: rgba(255, 255, 255, 0.05);
    --bs-accordion-btn-focus-border-color: rgba(246, 229, 179, 0.3);
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(246, 229, 179, 0.1);
    --bs-accordion-body-padding-x: 1.25rem;
    --bs-accordion-body-padding-y: 1rem;
    --bs-accordion-active-color: #F6E5B3;
    --bs-accordion-active-bg: rgba(246, 229, 179, 0.1);
  }
  /* line 522, app/assets/stylesheets/website/_pricing.scss */
  .mobile-pricing-accordion .accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(246, 229, 179, 0.2);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    backdrop-filter: blur(10px);
  }
  /* line 529, app/assets/stylesheets/website/_pricing.scss */
  .mobile-pricing-accordion .accordion-item:last-child {
    margin-bottom: 0;
  }
  /* line 534, app/assets/stylesheets/website/_pricing.scss */
  .mobile-pricing-accordion .accordion-button {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
  }
  /* line 543, app/assets/stylesheets/website/_pricing.scss */
  .mobile-pricing-accordion .accordion-button:not(.collapsed) {
    background: rgba(246, 229, 179, 0.15);
    color: #F6E5B3;
    box-shadow: 0 0 20px rgba(246, 229, 179, 0.2);
  }
  /* line 549, app/assets/stylesheets/website/_pricing.scss */
  .mobile-pricing-accordion .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(246, 229, 179, 0.1);
    border-color: rgba(246, 229, 179, 0.3);
  }
  /* line 554, app/assets/stylesheets/website/_pricing.scss */
  .mobile-pricing-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F6E5B3'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    filter: none;
  }
  /* line 559, app/assets/stylesheets/website/_pricing.scss */
  .mobile-pricing-accordion .accordion-button i {
    color: #F6E5B3;
    font-size: 1.1rem;
  }
  /* line 564, app/assets/stylesheets/website/_pricing.scss */
  .mobile-pricing-accordion .accordion-button .badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
  }
  /* line 570, app/assets/stylesheets/website/_pricing.scss */
  .mobile-pricing-accordion .accordion-body {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0 0 12px 12px;
    padding: 1.5rem 1.25rem;
  }
  /* Options d'engagement mobile */
  /* line 579, app/assets/stylesheets/website/_pricing.scss */
  .mobile-engagement-options .mobile-toggle-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(246, 229, 179, 0.2);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 0.75rem 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  /* line 589, app/assets/stylesheets/website/_pricing.scss */
  .mobile-engagement-options .mobile-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(246, 229, 179, 0.4);
    color: rgba(255, 255, 255, 0.95);
  }
  /* line 595, app/assets/stylesheets/website/_pricing.scss */
  .mobile-engagement-options .mobile-toggle-btn.active {
    background: rgba(246, 229, 179, 0.2);
    border-color: #F6E5B3;
    color: #F6E5B3;
    box-shadow: 0 0 10px rgba(246, 229, 179, 0.3);
  }
  /* line 602, app/assets/stylesheets/website/_pricing.scss */
  .mobile-engagement-options .mobile-toggle-btn small, .mobile-engagement-options .mobile-toggle-btn .small {
    font-size: 0.7rem;
    font-weight: 600;
  }
  /* Cartes des offres mobiles */
  /* line 610, app/assets/stylesheets/website/_pricing.scss */
  .mobile-package-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(246, 229, 179, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }
  /* line 619, app/assets/stylesheets/website/_pricing.scss */
  .mobile-package-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(246, 229, 179, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }
  /* line 626, app/assets/stylesheets/website/_pricing.scss */
  .mobile-package-card:last-child {
    margin-bottom: 0;
  }
  /* line 631, app/assets/stylesheets/website/_pricing.scss */
  .mobile-package-card .package-header {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  /* line 635, app/assets/stylesheets/website/_pricing.scss */
  .mobile-package-card .package-header .package-title {
    color: #F6E5B3;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
  }
  /* line 643, app/assets/stylesheets/website/_pricing.scss */
  .mobile-package-card .package-header .package-price {
    margin-bottom: 0.5rem;
  }
  /* line 646, app/assets/stylesheets/website/_pricing.scss */
  .mobile-package-card .package-header .package-price .price-amount {
    color: rgba(255, 255, 255, 0.95);
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
  }
  /* line 653, app/assets/stylesheets/website/_pricing.scss */
  .mobile-package-card .package-header .package-price .price-period {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-left: 0.5rem;
  }
  /* line 660, app/assets/stylesheets/website/_pricing.scss */
  .mobile-package-card .package-header .package-savings {
    color: rgba(246, 229, 179, 0.8);
    font-size: 0.85rem;
    font-style: italic;
  }
  /* line 667, app/assets/stylesheets/website/_pricing.scss */
  .mobile-package-card .package-features {
    margin-bottom: 1.5rem;
  }
  /* line 670, app/assets/stylesheets/website/_pricing.scss */
  .mobile-package-card .package-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
  }
  /* line 677, app/assets/stylesheets/website/_pricing.scss */
  .mobile-package-card .package-features .feature-item:last-child {
    margin-bottom: 0;
  }
  /* line 681, app/assets/stylesheets/website/_pricing.scss */
  .mobile-package-card .package-features .feature-item i {
    color: #28a745;
    font-size: 0.9rem;
  }
  /* line 689, app/assets/stylesheets/website/_pricing.scss */
  .mobile-package-card .package-cta .btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  /* line 695, app/assets/stylesheets/website/_pricing.scss */
  .mobile-package-card .package-cta .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  /* Cartes des modules mobiles */
  /* line 703, app/assets/stylesheets/website/_pricing.scss */
  .mobile-module-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(246, 229, 179, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }
  /* line 711, app/assets/stylesheets/website/_pricing.scss */
  .mobile-module-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(246, 229, 179, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }
  /* line 719, app/assets/stylesheets/website/_pricing.scss */
  .mobile-module-card .module-header {
    text-align: center;
    margin-bottom: 1rem;
  }
  /* line 723, app/assets/stylesheets/website/_pricing.scss */
  .mobile-module-card .module-header .module-title {
    color: #F6E5B3;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
  }
  /* line 731, app/assets/stylesheets/website/_pricing.scss */
  .mobile-module-card .module-header .module-price {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
  }
  /* line 738, app/assets/stylesheets/website/_pricing.scss */
  .mobile-module-card .module-description {
    margin-bottom: 1.5rem;
  }
  /* line 741, app/assets/stylesheets/website/_pricing.scss */
  .mobile-module-card .module-description p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
  }
  /* line 749, app/assets/stylesheets/website/_pricing.scss */
  .mobile-module-card .module-features {
    margin-bottom: 1.5rem;
  }
  /* line 752, app/assets/stylesheets/website/_pricing.scss */
  .mobile-module-card .module-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
  }
  /* line 759, app/assets/stylesheets/website/_pricing.scss */
  .mobile-module-card .module-features .feature-item:last-child {
    margin-bottom: 0;
  }
  /* line 763, app/assets/stylesheets/website/_pricing.scss */
  .mobile-module-card .module-features .feature-item i {
    color: #28a745;
    font-size: 0.8rem;
  }
  /* Section de footer mobile */
  /* line 771, app/assets/stylesheets/website/_pricing.scss */
  .mobile-pricing-footer {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(246, 229, 179, 0.1);
    border-radius: 12px;
    padding: 1.25rem;
    backdrop-filter: blur(8px);
  }
  /* line 779, app/assets/stylesheets/website/_pricing.scss */
  .mobile-pricing-footer .footer-content .footer-badges {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
  }
  /* line 785, app/assets/stylesheets/website/_pricing.scss */
  .mobile-pricing-footer .footer-content .footer-badges .footer-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(246, 229, 179, 0.2);
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  /* line 797, app/assets/stylesheets/website/_pricing.scss */
  .mobile-pricing-footer .footer-content .footer-badges .footer-badge:hover {
    background: rgba(246, 229, 179, 0.1);
    border-color: rgba(246, 229, 179, 0.4);
    color: #F6E5B3;
  }
  /* line 803, app/assets/stylesheets/website/_pricing.scss */
  .mobile-pricing-footer .footer-content .footer-badges .footer-badge i {
    font-size: 0.8rem;
    color: #F6E5B3;
  }
  /* line 810, app/assets/stylesheets/website/_pricing.scss */
  .mobile-pricing-footer .footer-content .footer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin: 0;
    font-style: italic;
  }
  /* line 816, app/assets/stylesheets/website/_pricing.scss */
  .mobile-pricing-footer .footer-content .footer-text i {
    color: rgba(246, 229, 179, 0.7);
  }
}

/* ===== VERSION DESKTOP (768px+) ===== */
@media (min-width: 768px) {
  /* line 826, app/assets/stylesheets/website/_pricing.scss */
  .desktop-only {
    display: block !important;
  }
  /* line 830, app/assets/stylesheets/website/_pricing.scss */
  .mobile-only {
    display: none !important;
  }
  /* S'assurer que le layout desktop reste en grid (côte à côte) */
  /* line 835, app/assets/stylesheets/website/_pricing.scss */
  .pricing-content.desktop-only {
    display: grid !important;
    grid-template-columns: 50% 50% !important;
    /* Répartition exacte 50/50 */
    flex-direction: unset !important;
  }
  /* line 841, app/assets/stylesheets/website/_pricing.scss */
  .packages-column.desktop-only,
.a-la-carte-column.desktop-only {
    display: flex !important;
    flex-direction: column !important;
  }
}

/* line 849, app/assets/stylesheets/website/_pricing.scss */
.pricing-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

/* line 853, app/assets/stylesheets/website/_pricing.scss */
.pricing-header .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #F6E5B3;
  margin-bottom: 2rem;
  /* Ajout de marge en bas */
  font-family: 'Poppins', sans-serif;
  text-align: center !important;
  /* Centrage horizontal explicite */
  display: block !important;
  /* Force le display block pour éviter flex */
  align-self: unset !important;
  /* Supprime align-self */
}

/* line 866, app/assets/stylesheets/website/_pricing.scss */
.engagement-options {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.5rem;
}

/* line 873, app/assets/stylesheets/website/_pricing.scss */
.engagement-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

/* line 880, app/assets/stylesheets/website/_pricing.scss */
.toggle-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* line 889, app/assets/stylesheets/website/_pricing.scss */
.toggle-buttons {
  display: flex;
  gap: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 0.3rem;
  backdrop-filter: blur(10px);
}

/* line 898, app/assets/stylesheets/website/_pricing.scss */
.toggle-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  position: relative;
}

/* line 914, app/assets/stylesheets/website/_pricing.scss */
.toggle-btn:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
}

/* line 919, app/assets/stylesheets/website/_pricing.scss */
.toggle-btn.active {
  background: rgba(246, 229, 179, 0.2);
  color: #F6E5B3;
  box-shadow: 0 0 5px rgba(246, 229, 179, 0.3);
  border: 1px solid rgba(246, 229, 179, 0.1);
}

/* line 926, app/assets/stylesheets/website/_pricing.scss */
.toggle-btn .discount-badge {
  background: rgba(246, 229, 179, 0.2);
  color: #F6E5B3;
  font-size: 0.7rem;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-weight: 600;
}

/* line 937, app/assets/stylesheets/website/_pricing.scss */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-bottom: 2rem;
  max-height: none;
}

/* line 946, app/assets/stylesheets/website/_pricing.scss */
.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1.2rem;
  backdrop-filter: blur(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: auto;
  /* ajusté à son contenu */
  max-height: none;
}

/* line 960, app/assets/stylesheets/website/_pricing.scss */
.pricing-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(246, 229, 179, 0.3);
}

/* line 966, app/assets/stylesheets/website/_pricing.scss */
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(246, 229, 179, 0.5) 50%, transparent 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

/* line 978, app/assets/stylesheets/website/_pricing.scss */
.pricing-card:hover::before {
  transform: scaleX(1);
}

/* line 983, app/assets/stylesheets/website/_pricing.scss */
.card-header {
  text-align: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 990, app/assets/stylesheets/website/_pricing.scss */
.card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #F6E5B3;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.3rem;
}

/* line 1000, app/assets/stylesheets/website/_pricing.scss */
.card-subtitle {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* line 1008, app/assets/stylesheets/website/_pricing.scss */
.price-container {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.3rem;
  margin-top: 0.5rem;
}

/* line 1016, app/assets/stylesheets/website/_pricing.scss */
.price-amount {
  font-size: 1.8rem;
  font-weight: 700;
  color: #F6E5B3;
  font-family: 'Poppins', sans-serif;
}

/* line 1023, app/assets/stylesheets/website/_pricing.scss */
.price-period {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Poppins', sans-serif;
}

/* line 1030, app/assets/stylesheets/website/_pricing.scss */
.card-features {
  flex: 0 1 auto;
  /* évite l'espace vide sous la liste */
  margin-bottom: 1rem;
}

/* line 1034, app/assets/stylesheets/website/_pricing.scss */
.card-features .features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* 2 colonnes */
  gap: 0.5rem;
}

/* line 1042, app/assets/stylesheets/website/_pricing.scss */
.card-features .features-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Poppins', sans-serif;
}

/* line 1050, app/assets/stylesheets/website/_pricing.scss */
.card-features .features-list li i {
  color: #F6E5B3;
  font-size: 0.7rem;
}

/* line 1058, app/assets/stylesheets/website/_pricing.scss */
.card-footer {
  text-align: center;
  margin-top: auto;
  padding-top: 1.75rem;
  /* espace visuel avant le bouton */
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  /* séparation douce */
}

/* line 1065, app/assets/stylesheets/website/_pricing.scss */
.cta-button {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 100%;
}

/* line 1080, app/assets/stylesheets/website/_pricing.scss */
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

/* line 1085, app/assets/stylesheets/website/_pricing.scss */
.cta-button.secondary {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: white;
  border: none;
}

/* line 1090, app/assets/stylesheets/website/_pricing.scss */
.cta-button.secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

/* line 1098, app/assets/stylesheets/website/_pricing.scss */
.shopping-cart-container {
  display: flex;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

/* line 1105, app/assets/stylesheets/website/_pricing.scss */
.available-modules {
  flex: 1;
  overflow-y: auto;
  padding-right: 0.5rem;
  max-height: 95%;
  /* Plus d'espace sans zone panier */
  padding-bottom: 1.2rem;
  /* évite que le bouton morde le contenu au-dessus */
}

/* line 1112, app/assets/stylesheets/website/_pricing.scss */
.available-modules::-webkit-scrollbar {
  width: 4px;
}

/* line 1116, app/assets/stylesheets/website/_pricing.scss */
.available-modules::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

/* line 1121, app/assets/stylesheets/website/_pricing.scss */
.available-modules::-webkit-scrollbar-thumb {
  background: rgba(246, 229, 179, 0.3);
  border-radius: 2px;
}

/* line 1125, app/assets/stylesheets/website/_pricing.scss */
.available-modules::-webkit-scrollbar-thumb:hover {
  background: rgba(246, 229, 179, 0.5);
}

/* Ajustements spécifiques à la carte modules-selector */
/* line 1132, app/assets/stylesheets/website/_pricing.scss */
.pricing-card.modules-selector {
  display: flex;
  flex-direction: column;
  min-height: 53vh !important;
  max-height: 60vh !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
}

/* line 1141, app/assets/stylesheets/website/_pricing.scss */
.pricing-card.modules-selector .card-footer {
  /* assure un espacement suffisant avec le contenu scrollable */
  padding-top: 1.2rem;
}

/* line 1146, app/assets/stylesheets/website/_pricing.scss */
.modules-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* line 1153, app/assets/stylesheets/website/_pricing.scss */
.module-category .category-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(246, 229, 179, 0.8);
  margin-bottom: 0.5rem;
  font-family: 'Poppins', sans-serif;
  border-bottom: 1px solid rgba(246, 229, 179, 0.2);
  padding-bottom: 0.2rem;
}

/* line 1164, app/assets/stylesheets/website/_pricing.scss */
.module-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* 2 colonnes */
  gap: 0.3rem 0.5rem;
  /* Gap vertical et horizontal */
}

/* line 1170, app/assets/stylesheets/website/_pricing.scss */
.module-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  /* Réduit pour s'adapter aux 2 colonnes */
  padding: 0.3rem;
  /* Réduit */
  border-radius: 6px;
  /* Réduit */
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
  position: relative;
}

/* line 1181, app/assets/stylesheets/website/_pricing.scss */
.module-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(246, 229, 179, 0.2);
}

/* line 1186, app/assets/stylesheets/website/_pricing.scss */
.module-item.selected {
  background: rgba(246, 229, 179, 0.1);
  border-color: rgba(246, 229, 179, 0.3);
  box-shadow: 0 0 10px rgba(246, 229, 179, 0.2);
}

/* line 1192, app/assets/stylesheets/website/_pricing.scss */
.module-item .module-icon {
  font-size: 1rem;
  width: 32px;
  /* Augmenté pour plus d'élégance */
  height: 32px;
  /* Hauteur définie pour forme circulaire */
  text-align: center;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  /* Forme circulaire élégante */
  background: transparent;
  /* Fond transparent */
  border: 2px solid rgba(246, 229, 179, 0.6);
  /* Bordure colorée avec couleur de votre charte */
  color: #F6E5B3;
  /* Icônes colorées avec couleur de votre charte */
  transition: all 0.3s ease;
  /* Effet hover avec animation */
  /* Animation subtile au survol */
}

/* line 1208, app/assets/stylesheets/website/_pricing.scss */
.module-item .module-icon:hover {
  border-color: #F6E5B3;
  background: rgba(246, 229, 179, 0.1);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(246, 229, 179, 0.3);
}

/* line 1216, app/assets/stylesheets/website/_pricing.scss */
.module-item .module-icon:active {
  transform: scale(0.95);
}

/* line 1221, app/assets/stylesheets/website/_pricing.scss */
.module-item .module-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
  /* Pour permettre le truncate */
}

/* line 1229, app/assets/stylesheets/website/_pricing.scss */
.module-item .module-name {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.65rem;
  /* Réduit */
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 1239, app/assets/stylesheets/website/_pricing.scss */
.module-item .module-price {
  color: rgba(246, 229, 179, 0.8);
  font-size: 0.55rem;
  /* Réduit */
  font-family: 'Poppins', sans-serif;
}

/* line 1245, app/assets/stylesheets/website/_pricing.scss */
.module-item .add-to-cart-btn {
  background: rgba(246, 229, 179, 0.1);
  border: 1px solid rgba(246, 229, 179, 0.3);
  color: #F6E5B3;
  width: 20px;
  /* Réduit */
  height: 20px;
  /* Réduit */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  font-size: 0.5rem;
  /* Réduit */
}

/* line 1260, app/assets/stylesheets/website/_pricing.scss */
.module-item .add-to-cart-btn:hover {
  background: rgba(246, 229, 179, 0.2);
  transform: scale(1.1);
}

/* line 1265, app/assets/stylesheets/website/_pricing.scss */
.module-item .add-to-cart-btn.added {
  background: rgba(246, 229, 179, 0.3);
  border-color: #F6E5B3;
}

/* line 1269, app/assets/stylesheets/website/_pricing.scss */
.module-item .add-to-cart-btn.added i {
  transform: rotate(0deg);
  /* Suppression de la rotation pour une meilleure visibilité */
}

/* line 1277, app/assets/stylesheets/website/_pricing.scss */
.selection-summary {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 1283, app/assets/stylesheets/website/_pricing.scss */
.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

@media (max-width: 768px) {
  /* line 1297, app/assets/stylesheets/website/_pricing.scss */
  .pricing-section {
    height: auto !important;
    padding: 80px 0.5rem 2rem 0.5rem !important;
    overflow: visible !important;
  }
  /* line 1304, app/assets/stylesheets/website/_pricing.scss */
  .pricing-container {
    padding: 0 !important;
    height: auto !important;
    max-width: 100% !important;
    overflow: visible !important;
  }
  /* line 1311, app/assets/stylesheets/website/_pricing.scss */
  .pricing-header {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-bottom: 2rem !important;
  }
  /* line 1318, app/assets/stylesheets/website/_pricing.scss */
  .pricing-header .section-title {
    font-size: clamp(1.4rem, 5vw, 1.8rem) !important;
    color: #F6E5B3 !important;
    text-align: center !important;
    margin-bottom: 1.5rem !important;
    /* Ajout de marge en bas pour mobile */
  }
  /* line 1325, app/assets/stylesheets/website/_pricing.scss */
  .pricing-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 10rem !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
  }
  /* SUPPRIMER TOUS LES SÉPARATEURS */
  /* line 1335, app/assets/stylesheets/website/_pricing.scss */
  .pricing-content::before,
.pricing-content::after {
    display: none !important;
  }
  /* COLONNES EN PLEINE LARGEUR */
  /* line 1341, app/assets/stylesheets/website/_pricing.scss */
  .packages-column,
.modules-column {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
  }
  /* HEADERS FORCÉS À ÊTRE VISIBLES */
  /* line 1351, app/assets/stylesheets/website/_pricing.scss */
  .packages-header,
.a-la-carte-header {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-bottom: 1.5rem !important;
    text-align: center !important;
    width: 100% !important;
  }
  /* line 1361, app/assets/stylesheets/website/_pricing.scss */
  .packages-header h3, .packages-header .h3,
.a-la-carte-header h3,
.a-la-carte-header .h3 {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: clamp(1.2rem, 4vw, 1.4rem) !important;
    color: #F6E5B3 !important;
    margin-bottom: 0.5rem !important;
    font-weight: 600 !important;
  }
  /* line 1372, app/assets/stylesheets/website/_pricing.scss */
  .commitment-label,
.no-commitment-label {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-top: 0.5rem !important;
  }
  /* line 1380, app/assets/stylesheets/website/_pricing.scss */
  .commitment-label span,
.no-commitment-label span {
    display: inline !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
  }
  /* OPTIONS D'ENGAGEMENT FORCÉES */
  /* line 1390, app/assets/stylesheets/website/_pricing.scss */
  .engagement-options {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: column !important;
    gap: 1rem !important;
    margin-bottom: 2rem !important;
    width: 100% !important;
  }
  /* line 1400, app/assets/stylesheets/website/_pricing.scss */
  .engagement-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    justify-content: center !important;
  }
  /* line 1408, app/assets/stylesheets/website/_pricing.scss */
  .toggle-buttons {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-wrap: nowrap !important;
    gap: 1rem !important;
    justify-content: center !important;
    padding: 0.1rem !important;
  }
  /* line 1420, app/assets/stylesheets/website/_pricing.scss */
  .toggle-btn {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-width: auto !important;
    padding: 0.2rem 0.3rem !important;
    font-size: clamp(0.5rem, 1.8vw, 0.7rem) !important;
    flex: 1 1 auto !important;
    max-width: 24% !important;
    white-space: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }
  /* CAROUSEL DES PACKAGES */
  /* line 1436, app/assets/stylesheets/website/_pricing.scss */
  .packages-carousel {
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
  }
  /* line 1442, app/assets/stylesheets/website/_pricing.scss */
  .carousel-container {
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
  }
  /* line 1448, app/assets/stylesheets/website/_pricing.scss */
  .package-card {
    width: 100% !important;
    max-width: 100% !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding: 1rem !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    max-height: 60vh !important;
  }
  /* line 1459, app/assets/stylesheets/website/_pricing.scss */
  .package-features {
    max-height: 150px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    width: 100% !important;
    padding-right: 0.5rem !important;
  }
  /* Scrollbar personnalisée pour package-card et package-features */
  /* line 1468, app/assets/stylesheets/website/_pricing.scss */
  .package-card::-webkit-scrollbar,
.package-features::-webkit-scrollbar,
.pricing-card.modules-selector::-webkit-scrollbar,
.available-modules::-webkit-scrollbar {
    width: 8px !important;
  }
  /* line 1475, app/assets/stylesheets/website/_pricing.scss */
  .package-card::-webkit-scrollbar-track,
.package-features::-webkit-scrollbar-track,
.pricing-card.modules-selector::-webkit-scrollbar-track,
.available-modules::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
  }
  /* line 1483, app/assets/stylesheets/website/_pricing.scss */
  .package-card::-webkit-scrollbar-thumb,
.package-features::-webkit-scrollbar-thumb,
.pricing-card.modules-selector::-webkit-scrollbar-thumb,
.available-modules::-webkit-scrollbar-thumb {
    background: #C38761 !important;
    /* $goldsummer */
    border-radius: 10px !important;
    transition: background 0.3s ease !important;
  }
  /* line 1492, app/assets/stylesheets/website/_pricing.scss */
  .package-card::-webkit-scrollbar-thumb:hover,
.package-features::-webkit-scrollbar-thumb:hover,
.pricing-card.modules-selector::-webkit-scrollbar-thumb:hover,
.available-modules::-webkit-scrollbar-thumb:hover {
    background: #FFFFFF !important;
    /* $white */
  }
  /* MODULES À LA CARTE */
  /* line 1500, app/assets/stylesheets/website/_pricing.scss */
  .a-la-carte-column {
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
  }
  /* line 1506, app/assets/stylesheets/website/_pricing.scss */
  .module-item {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0.8rem !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    overflow: visible !important;
  }
  /* line 1515, app/assets/stylesheets/website/_pricing.scss */
  .available-modules {
    max-height: 50vh !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    width: 100% !important;
    padding-right: 0.5rem !important;
  }
  /* line 1523, app/assets/stylesheets/website/_pricing.scss */
  .module-items {
    grid-template-columns: 1fr !important;
    gap: 0.5rem !important;
    width: 100% !important;
  }
  /* CTA BOUTONS */
  /* line 1530, app/assets/stylesheets/website/_pricing.scss */
  .cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    gap: 0.1rem !important;
    justify-content: center !important;
    padding: 0.1rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  /* line 1541, app/assets/stylesheets/website/_pricing.scss */
  .toggle-btn {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-width: auto !important;
    padding: 0.2rem 0.3rem !important;
    font-size: clamp(0.5rem, 1.8vw, 0.7rem) !important;
    flex: 1 1 auto !important;
    max-width: 24% !important;
    white-space: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }
  /* CAROUSEL DES PACKAGES */
  /* line 1557, app/assets/stylesheets/website/_pricing.scss */
  .packages-carousel {
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
  }
  /* line 1563, app/assets/stylesheets/website/_pricing.scss */
  .carousel-container {
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
  }
  /* line 1569, app/assets/stylesheets/website/_pricing.scss */
  .package-card {
    width: 100% !important;
    max-width: 100% !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding: 1rem !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    max-height: 60vh !important;
  }
  /* line 1580, app/assets/stylesheets/website/_pricing.scss */
  .package-features {
    max-height: 150px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    width: 100% !important;
    padding-right: 0.5rem !important;
  }
  /* Scrollbar personnalisée pour package-card et package-features */
  /* line 1589, app/assets/stylesheets/website/_pricing.scss */
  .package-card::-webkit-scrollbar,
.package-features::-webkit-scrollbar,
.pricing-card.modules-selector::-webkit-scrollbar,
.available-modules::-webkit-scrollbar {
    width: 8px !important;
  }
  /* line 1596, app/assets/stylesheets/website/_pricing.scss */
  .package-card::-webkit-scrollbar-track,
.package-features::-webkit-scrollbar-track,
.pricing-card.modules-selector::-webkit-scrollbar-track,
.available-modules::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
  }
  /* line 1604, app/assets/stylesheets/website/_pricing.scss */
  .package-card::-webkit-scrollbar-thumb,
.package-features::-webkit-scrollbar-thumb,
.pricing-card.modules-selector::-webkit-scrollbar-thumb,
.available-modules::-webkit-scrollbar-thumb {
    background: #C38761 !important;
    /* $goldsummer */
    border-radius: 10px !important;
    transition: background 0.3s ease !important;
  }
  /* line 1613, app/assets/stylesheets/website/_pricing.scss */
  .package-card::-webkit-scrollbar-thumb:hover,
.package-features::-webkit-scrollbar-thumb:hover,
.pricing-card.modules-selector::-webkit-scrollbar-thumb:hover,
.available-modules::-webkit-scrollbar-thumb:hover {
    background: #FFFFFF !important;
    /* $white */
  }
  /* MODULES À LA CARTE */
  /* line 1621, app/assets/stylesheets/website/_pricing.scss */
  .a-la-carte-column {
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
  }
  /* line 1627, app/assets/stylesheets/website/_pricing.scss */
  .module-item {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0.8rem !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    overflow: visible !important;
  }
  /* line 1636, app/assets/stylesheets/website/_pricing.scss */
  .available-modules {
    max-height: 50vh !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    width: 100% !important;
    padding-right: 0.5rem !important;
  }
  /* line 1644, app/assets/stylesheets/website/_pricing.scss */
  .module-items {
    grid-template-columns: 1fr !important;
    gap: 0.5rem !important;
    width: 100% !important;
  }
  /* CTA BOUTONS */
  /* line 1651, app/assets/stylesheets/website/_pricing.scss */
  .cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  /* line 1657, app/assets/stylesheets/website/_pricing.scss */
  .shopping-cart-container {
    flex-direction: column !important;
    gap: 1rem !important;
    width: 100% !important;
  }
  /* MASQUER LES BADGES DE RÉDUCTION */
  /* line 1664, app/assets/stylesheets/website/_pricing.scss */
  .discount-badge {
    display: none !important;
  }
  /* line 1668, app/assets/stylesheets/website/_pricing.scss */
  .module-item {
    gap: 0.5rem;
    padding: 0.4rem;
    border-radius: 8px;
  }
  /* line 1673, app/assets/stylesheets/website/_pricing.scss */
  .module-item .module-icon {
    font-size: 1.2rem;
    width: 24px;
  }
  /* line 1678, app/assets/stylesheets/website/_pricing.scss */
  .module-item .module-name {
    font-size: 0.7rem;
  }
  /* line 1682, app/assets/stylesheets/website/_pricing.scss */
  .module-item .module-price {
    font-size: 0.6rem;
  }
  /* line 1686, app/assets/stylesheets/website/_pricing.scss */
  .module-item .add-to-cart-btn {
    width: 24px;
    height: 24px;
    font-size: 0.6rem;
  }
  /* line 1694, app/assets/stylesheets/website/_pricing.scss */
  .business-start .features-list {
    grid-template-columns: 1fr;
  }
  /* line 1700, app/assets/stylesheets/website/_pricing.scss */
  .toggle-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
  }
  /* line 1705, app/assets/stylesheets/website/_pricing.scss */
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }
  /* line 1710, app/assets/stylesheets/website/_pricing.scss */
  .info-item {
    padding: 0.6rem;
  }
  /* Responsive pour package header et features */
  /* line 1715, app/assets/stylesheets/website/_pricing.scss */
  .package-header {
    flex-direction: column;
    gap: 0.3rem;
  }
  /* line 1720, app/assets/stylesheets/website/_pricing.scss */
  .package-features {
    grid-template-columns: 1fr;
    max-height: 150px;
  }
  /* Responsive pour les flèches du carousel */
  /* line 1726, app/assets/stylesheets/website/_pricing.scss */
  .carousel-arrow {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  /* line 1731, app/assets/stylesheets/website/_pricing.scss */
  .carousel-arrow.carousel-arrow-prev {
    margin-left: 0;
  }
  /* line 1735, app/assets/stylesheets/website/_pricing.scss */
  .carousel-arrow.carousel-arrow-next {
    margin-right: 0;
  }
  /* Ajustement du padding du carousel sur mobile */
  /* line 1741, app/assets/stylesheets/website/_pricing.scss */
  .packages-carousel {
    padding: 0 30px;
    /* Réduction du padding sur mobile */
  }
  /* Ajustement de l'espacement et des cartes sur mobile */
  /* line 1746, app/assets/stylesheets/website/_pricing.scss */
  .carousel-container {
    gap: 1.5rem;
    /* Espacement réduit sur mobile */
  }
  /* line 1750, app/assets/stylesheets/website/_pricing.scss */
  .package-card {
    min-width: 100%;
    /* Largeur fixe maintenue sur mobile */
    width: 100%;
    height: 400px;
    /* Hauteur réduite sur mobile */
    max-height: 400px;
  }
  /* line 1757, app/assets/stylesheets/website/_pricing.scss */
  .package-features {
    max-height: 150px;
    /* Hauteur réduite sur mobile */
  }
}

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

@keyframes separatorGlow {
  0%, 100% {
    opacity: 0.7;
    box-shadow: 0 0 20px rgba(246, 229, 179, 0.2), 0 0 40px rgba(246, 229, 179, 0.1);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 30px rgba(246, 229, 179, 0.3), 0 0 60px rgba(246, 229, 179, 0.2);
  }
}

/* line 1787, app/assets/stylesheets/website/_pricing.scss */
.empty-cart {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  font-family: 'Poppins', sans-serif;
  padding: 1rem;
  font-style: italic;
}

/* line 1797, app/assets/stylesheets/website/_pricing.scss */
.mission-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 1805, app/assets/stylesheets/website/_pricing.scss */
.mission-section .mission-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

/* line 1813, app/assets/stylesheets/website/_pricing.scss */
.mission-section .mission-background .gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(120, 119, 198, 0.1) 0%, transparent 50%), radial-gradient(circle at 70% 30%, rgba(255, 119, 198, 0.1) 0%, transparent 50%);
  animation: gradient-shift 15s ease-in-out infinite;
}

/* line 1826, app/assets/stylesheets/website/_pricing.scss */
.mission-container {
  max-width: 1200px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 20;
  /* Augmenté de 10 à 20 */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* Changé de center à space-between */
  gap: 1rem;
  /* Réduit de 2rem à 1rem */
}

/* line 1841, app/assets/stylesheets/website/_pricing.scss */
.mission-header {
  text-align: center;
  margin-bottom: 1rem;
  /* Réduit de 2rem à 1rem */
}

/* line 1845, app/assets/stylesheets/website/_pricing.scss */
.mission-header .mission-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #F6E5B3;
  margin-bottom: 0;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* line 1858, app/assets/stylesheets/website/_pricing.scss */
.mission-header .mission-orizen-logo {
  height: 2.25rem;
  width: auto;
  display: inline-block;
  vertical-align: baseline;
}

/* line 1865, app/assets/stylesheets/website/_pricing.scss */
.mission-header .mission-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  opacity: 0;
  animation: fadeIn 1s ease-out 1s forwards;
}

/* line 1876, app/assets/stylesheets/website/_pricing.scss */
.mission-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  height: 300px;
}

/* line 1885, app/assets/stylesheets/website/_pricing.scss */
.mission-card,
.approach-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  overflow: hidden;
  cursor: pointer;
}

/* line 1899, app/assets/stylesheets/website/_pricing.scss */
.mission-card.animate-in,
.approach-card.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* line 1905, app/assets/stylesheets/website/_pricing.scss */
.mission-card .card-glow,
.approach-card .card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* line 1917, app/assets/stylesheets/website/_pricing.scss */
.mission-card:hover,
.approach-card:hover {
  border-color: rgba(246, 229, 179, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* line 1921, app/assets/stylesheets/website/_pricing.scss */
.mission-card:hover .card-glow,
.approach-card:hover .card-glow {
  opacity: 1;
}

/* line 1926, app/assets/stylesheets/website/_pricing.scss */
.mission-card .card-content,
.approach-card .card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* line 1935, app/assets/stylesheets/website/_pricing.scss */
.mission-card .card-icon,
.approach-card .card-icon {
  text-align: center;
  margin-bottom: 1.5rem;
}

/* line 1939, app/assets/stylesheets/website/_pricing.scss */
.mission-card .card-icon i,
.approach-card .card-icon i {
  font-size: 2.5rem;
  color: #F6E5B3;
  opacity: 0;
  animation: fadeInScale 0.6s ease-out 0.3s forwards;
}

/* line 1947, app/assets/stylesheets/website/_pricing.scss */
.mission-card h3, .mission-card .h3,
.approach-card h3,
.approach-card .h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #F6E5B3;
  text-align: center;
  margin-bottom: 1.5rem;
  font-family: 'Poppins', sans-serif;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.5s forwards;
}

/* line 1960, app/assets/stylesheets/website/_pricing.scss */
.mission-statement {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* line 1965, app/assets/stylesheets/website/_pricing.scss */
.mission-statement .statement-line {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  opacity: 0;
  animation: fadeInLeft 0.6s ease-out forwards;
}

/* line 1973, app/assets/stylesheets/website/_pricing.scss */
.mission-statement .statement-line:nth-child(1) {
  animation-delay: 0.7s;
}

/* line 1974, app/assets/stylesheets/website/_pricing.scss */
.mission-statement .statement-line:nth-child(2) {
  animation-delay: 0.9s;
}

/* line 1975, app/assets/stylesheets/website/_pricing.scss */
.mission-statement .statement-line:nth-child(3) {
  animation-delay: 1.1s;
}

/* line 1976, app/assets/stylesheets/website/_pricing.scss */
.mission-statement .statement-line:nth-child(4) {
  animation-delay: 1.3s;
}

/* line 1978, app/assets/stylesheets/website/_pricing.scss */
.mission-statement .statement-line .highlight {
  background: linear-gradient(135deg, #F6E5B3 0%, #E6D5A3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* line 1990, app/assets/stylesheets/website/_pricing.scss */
.approach-content p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Poppins', sans-serif;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.7s forwards;
}

/* line 1999, app/assets/stylesheets/website/_pricing.scss */
.approach-content p strong {
  color: #F6E5B3;
  font-weight: 600;
}

/* line 2004, app/assets/stylesheets/website/_pricing.scss */
.approach-content p .highlight {
  background: linear-gradient(135deg, #F6E5B3 0%, #E6D5A3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* line 2013, app/assets/stylesheets/website/_pricing.scss */
.approach-content .approach-values {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* line 2019, app/assets/stylesheets/website/_pricing.scss */
.approach-content .approach-values .value-tag {
  background: rgba(246, 229, 179, 0.1);
  border: 1px solid rgba(246, 229, 179, 0.3);
  color: #F6E5B3;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  opacity: 0;
  animation: fadeInScale 0.6s ease-out 0.9s forwards;
}

/* line 2036, app/assets/stylesheets/website/_pricing.scss */
.founders-row .founders-header {
  text-align: center;
  margin-bottom: 2rem;
}

/* line 2040, app/assets/stylesheets/website/_pricing.scss */
.founders-row .founders-header h3, .founders-row .founders-header .h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #F6E5B3;
  margin-bottom: 0.5rem;
  font-family: 'Poppins', sans-serif;
}

/* line 2048, app/assets/stylesheets/website/_pricing.scss */
.founders-row .founders-header .founders-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Poppins', sans-serif;
}

/* line 2055, app/assets/stylesheets/website/_pricing.scss */
.founders-row .founders-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  height: 400px;
}

/* line 2064, app/assets/stylesheets/website/_pricing.scss */
.founder-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  overflow: hidden;
  cursor: pointer;
}

/* line 2077, app/assets/stylesheets/website/_pricing.scss */
.founder-card.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* line 2085, app/assets/stylesheets/website/_pricing.scss */
.founder-card .founder-photo-container {
  position: relative;
  text-align: center;
  margin-bottom: 1rem;
}

/* line 2090, app/assets/stylesheets/website/_pricing.scss */
.founder-card .founder-photo-container .founder-photo {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(246, 229, 179, 0.3);
}

/* line 2099, app/assets/stylesheets/website/_pricing.scss */
.founder-card .founder-photo-container .founder-photo .photo-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(246, 229, 179, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

/* line 2111, app/assets/stylesheets/website/_pricing.scss */
.founder-card .founder-photo-container .founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* line 2118, app/assets/stylesheets/website/_pricing.scss */
.founder-card .founder-photo-container .founder-photo .photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

/* line 2133, app/assets/stylesheets/website/_pricing.scss */
.founder-card .founder-photo-container .founder-photo .photo-overlay .social-links .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.8rem;
}

/* line 2145, app/assets/stylesheets/website/_pricing.scss */
.founder-card .founder-photo-container .founder-photo .photo-overlay .social-links .social-link.linkedin {
  background: #0077b5;
}

/* line 2149, app/assets/stylesheets/website/_pricing.scss */
.founder-card .founder-photo-container .founder-photo .photo-overlay .social-links .social-link:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 119, 181, 0.4);
}

/* line 2158, app/assets/stylesheets/website/_pricing.scss */
.founder-card .founder-photo-container .founder-photo:hover .photo-overlay {
  opacity: 1;
}

/* line 2162, app/assets/stylesheets/website/_pricing.scss */
.founder-card .founder-photo-container .founder-photo:hover .photo-gradient {
  opacity: 1;
}

/* line 2166, app/assets/stylesheets/website/_pricing.scss */
.founder-card .founder-photo-container .founder-photo:hover img {
  transform: scale(1.05);
}

/* line 2174, app/assets/stylesheets/website/_pricing.scss */
.founder-card .founder-info .founder-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #F6E5B3;
  text-align: center;
  margin-bottom: 0.3rem;
  font-family: 'Poppins', sans-serif;
}

/* line 2183, app/assets/stylesheets/website/_pricing.scss */
.founder-card .founder-info .founder-role {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 2193, app/assets/stylesheets/website/_pricing.scss */
.founder-card .founder-info .founder-description {
  margin-bottom: 1rem;
}

/* line 2196, app/assets/stylesheets/website/_pricing.scss */
.founder-card .founder-info .founder-description p {
  font-size: 0.75rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

/* line 2203, app/assets/stylesheets/website/_pricing.scss */
.founder-card .founder-info .founder-description p strong {
  color: #F6E5B3;
  font-weight: 600;
}

/* line 2211, app/assets/stylesheets/website/_pricing.scss */
.founder-card .founder-info .founder-strengths .strength-tags {
  display: flex;
  gap: 0.3rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* line 2217, app/assets/stylesheets/website/_pricing.scss */
.founder-card .founder-info .founder-strengths .strength-tags .strength-tag {
  background: rgba(246, 229, 179, 0.1);
  border: 1px solid rgba(246, 229, 179, 0.2);
  color: #F6E5B3;
  padding: 0.2rem 0.5rem;
  border-radius: 10px;
  font-size: 0.6rem;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes expandLine {
  from {
    width: 0;
  }
  to {
    width: 100px;
  }
}

@keyframes gradient-shift {
  0%, 100% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(20px) translateY(-20px);
  }
}

@media (max-width: 1024px) {
  /* line 2306, app/assets/stylesheets/website/_pricing.scss */
  .mission-row {
    grid-template-columns: 1fr;
    gap: 2rem;
    height: auto;
  }
  /* line 2312, app/assets/stylesheets/website/_pricing.scss */
  .founders-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
    height: auto;
  }
}

@media (max-width: 768px) {
  /* line 2320, app/assets/stylesheets/website/_pricing.scss */
  .mission-container {
    padding: 0 1rem;
  }
  /* line 2324, app/assets/stylesheets/website/_pricing.scss */
  .mission-header .title-container .mission-title {
    font-size: clamp(1.4rem, 6vw, 1.8rem) !important;
  }
  /* line 2328, app/assets/stylesheets/website/_pricing.scss */
  .mission-row {
    gap: 1.5rem;
  }
  /* line 2332, app/assets/stylesheets/website/_pricing.scss */
  .founders-cards {
    gap: 1.5rem;
  }
}

/* line 2338, app/assets/stylesheets/website/_pricing.scss */
.floating-mission-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 1rem;
  /* Réduit de 2rem à 1rem */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  height: 200px;
  /* Réduit de 200px à 160px */
  display: flex;
  align-items: center;
  z-index: 30;
  /* Ajout d'un z-index élevé */
}

/* line 2356, app/assets/stylesheets/website/_pricing.scss */
.floating-mission-card.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* line 2362, app/assets/stylesheets/website/_pricing.scss */
.floating-mission-card .card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* line 2375, app/assets/stylesheets/website/_pricing.scss */
.floating-mission-card .card-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* gap: 2rem; */
  align-items: center;
  width: 100%;
  height: 100%;
}

/* line 2386, app/assets/stylesheets/website/_pricing.scss */
.floating-mission-card .divider {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 80%;
  background: linear-gradient(to bottom, transparent, rgba(246, 229, 179, 0.3), transparent);
}

/* line 2396, app/assets/stylesheets/website/_pricing.scss */
.floating-mission-card .mission-section,
.floating-mission-card .approach-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  text-align: center;
}

/* line 2405, app/assets/stylesheets/website/_pricing.scss */
.floating-mission-card .mission-section .section-header,
.floating-mission-card .approach-section .section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  border: none !important;
  background-color: transparent !important;
}

/* line 2414, app/assets/stylesheets/website/_pricing.scss */
.floating-mission-card .mission-section .section-header .section-icon,
.floating-mission-card .approach-section .section-header .section-icon {
  margin-bottom: 0;
  display: flex;
  align-items: center;
}

/* line 2419, app/assets/stylesheets/website/_pricing.scss */
.floating-mission-card .mission-section .section-header .section-icon i,
.floating-mission-card .approach-section .section-header .section-icon i {
  font-size: 1.5rem;
  color: #F6E5B3;
  opacity: 0;
  animation: fadeInScale 0.6s ease-out 0.3s forwards;
}

/* line 2427, app/assets/stylesheets/website/_pricing.scss */
.floating-mission-card .mission-section .section-header h3, .floating-mission-card .mission-section .section-header .h3,
.floating-mission-card .approach-section .section-header h3,
.floating-mission-card .approach-section .section-header .h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #F6E5B3;
  margin-bottom: 0;
  font-family: 'Poppins', sans-serif;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.5s forwards;
}

/* line 2439, app/assets/stylesheets/website/_pricing.scss */
.floating-mission-card .mission-section .section-icon,
.floating-mission-card .approach-section .section-icon {
  margin-bottom: 1rem;
}

/* line 2442, app/assets/stylesheets/website/_pricing.scss */
.floating-mission-card .mission-section .section-icon i,
.floating-mission-card .approach-section .section-icon i {
  font-size: 2rem;
  color: #F6E5B3;
  opacity: 0;
  animation: fadeInScale 0.6s ease-out 0.3s forwards;
}

/* line 2450, app/assets/stylesheets/website/_pricing.scss */
.floating-mission-card .mission-section h3, .floating-mission-card .mission-section .h3,
.floating-mission-card .approach-section h3,
.floating-mission-card .approach-section .h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #F6E5B3;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.5s forwards;
}

/* line 2461, app/assets/stylesheets/website/_pricing.scss */
.floating-mission-card .mission-section .mission-statement,
.floating-mission-card .approach-section .mission-statement {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* line 2466, app/assets/stylesheets/website/_pricing.scss */
.floating-mission-card .mission-section .mission-statement .statement-line,
.floating-mission-card .approach-section .mission-statement .statement-line {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.95);
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 1.3;
}

/* line 2473, app/assets/stylesheets/website/_pricing.scss */
.floating-mission-card .mission-section .mission-statement .statement-line .highlight,
.floating-mission-card .approach-section .mission-statement .statement-line .highlight {
  background: linear-gradient(135deg, #F6E5B3 0%, #E6D5A3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* line 2485, app/assets/stylesheets/website/_pricing.scss */
.floating-mission-card .mission-section .approach-content p,
.floating-mission-card .approach-section .approach-content p {
  font-size: 0.8rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.95);
  font-family: 'Poppins', sans-serif;
  margin-bottom: 1rem;
}

/* line 2492, app/assets/stylesheets/website/_pricing.scss */
.floating-mission-card .mission-section .approach-content p strong,
.floating-mission-card .approach-section .approach-content p strong {
  color: #F6E5B3;
  font-weight: 600;
}

/* line 2497, app/assets/stylesheets/website/_pricing.scss */
.floating-mission-card .mission-section .approach-content p .highlight,
.floating-mission-card .approach-section .approach-content p .highlight {
  background: linear-gradient(135deg, #F6E5B3 0%, #E6D5A3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* line 2506, app/assets/stylesheets/website/_pricing.scss */
.floating-mission-card .mission-section .approach-content .approach-values,
.floating-mission-card .approach-section .approach-content .approach-values {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* line 2512, app/assets/stylesheets/website/_pricing.scss */
.floating-mission-card .mission-section .approach-content .approach-values .value-tag,
.floating-mission-card .approach-section .approach-content .approach-values .value-tag {
  background: rgba(246, 229, 179, 0.15);
  border: 1px solid rgba(246, 229, 179, 0.3);
  color: #F6E5B3;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

/* line 2523, app/assets/stylesheets/website/_pricing.scss */
.floating-mission-card .mission-section .approach-content .approach-values .value-tag:hover,
.floating-mission-card .approach-section .approach-content .approach-values .value-tag:hover {
  background: rgba(246, 229, 179, 0.25);
  transform: translateY(-1px);
}

/* line 2534, app/assets/stylesheets/website/_pricing.scss */
.founders-section {
  height: auto;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* line 2541, app/assets/stylesheets/website/_pricing.scss */
.founders-section .founders-header {
  text-align: left;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 0 1rem;
}

/* line 2549, app/assets/stylesheets/website/_pricing.scss */
.founders-section .founders-header .founders-subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  color: #F6E5B3;
  font-family: 'Poppins', sans-serif;
  text-align: left;
}

/* line 2558, app/assets/stylesheets/website/_pricing.scss */
.founders-section .founders-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  height: auto;
}

/* line 2566, app/assets/stylesheets/website/_pricing.scss */
.founders-section .founder-card-link {
  text-decoration: none;
  display: block;
  height: 100%;
}

/* line 2571, app/assets/stylesheets/website/_pricing.scss */
.founders-section .founder-card-link:hover .founder-card {
  border-color: rgba(246, 229, 179, 0.3);
  background: rgba(255, 255, 255, 0.12);
}

/* line 2576, app/assets/stylesheets/website/_pricing.scss */
.founders-section .founder-card-link:hover .linkedin-indicator {
  opacity: 1;
}

/* line 2582, app/assets/stylesheets/website/_pricing.scss */
.founders-section .founder-card {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 1rem;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* line 2596, app/assets/stylesheets/website/_pricing.scss */
.founders-section .founder-card .founder-photo-container {
  position: relative;
  text-align: center;
  margin-bottom: 0.6rem;
}

/* line 2601, app/assets/stylesheets/website/_pricing.scss */
.founders-section .founder-card .founder-photo-container .founder-photo {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(246, 229, 179, 0.3);
}

/* line 2610, app/assets/stylesheets/website/_pricing.scss */
.founders-section .founder-card .founder-photo-container .founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* line 2617, app/assets/stylesheets/website/_pricing.scss */
.founders-section .founder-card .founder-photo-container .founder-photo--avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(246, 229, 179, 0.1);
}

/* line 2623, app/assets/stylesheets/website/_pricing.scss */
.founders-section .founder-card .founder-photo-container .founder-photo--avatar i {
  font-size: 1.5rem;
  color: rgba(246, 229, 179, 0.6);
}

/* line 2630, app/assets/stylesheets/website/_pricing.scss */
.founders-section .founder-card .founder-photo-container .founder-photo--xavier img {
  object-position: center 20%;
}

/* line 2636, app/assets/stylesheets/website/_pricing.scss */
.founders-section .founder-card .founder-info {
  text-align: center;
}

/* line 2639, app/assets/stylesheets/website/_pricing.scss */
.founders-section .founder-card .founder-info .founder-name {
  font-size: 1rem;
  font-weight: 700;
  color: #F6E5B3;
  margin-bottom: 0.2rem;
  font-family: 'Poppins', sans-serif;
}

/* line 2647, app/assets/stylesheets/website/_pricing.scss */
.founders-section .founder-card .founder-info .founder-role {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.4rem;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 2656, app/assets/stylesheets/website/_pricing.scss */
.founders-section .founder-card .founder-info .founder-description {
  margin-bottom: 0;
}

/* line 2659, app/assets/stylesheets/website/_pricing.scss */
.founders-section .founder-card .founder-info .founder-description p {
  font-size: 0.65rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

/* line 2666, app/assets/stylesheets/website/_pricing.scss */
.founders-section .founder-card .founder-info .founder-description p strong {
  color: #F6E5B3;
  font-weight: 600;
}

/* line 2675, app/assets/stylesheets/website/_pricing.scss */
.founders-section .founder-card .linkedin-indicator {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  width: 24px;
  height: 24px;
  background: #0077b5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

/* line 2689, app/assets/stylesheets/website/_pricing.scss */
.founders-section .founder-card .linkedin-indicator i {
  font-size: 0.75rem;
  color: white;
}

@media (max-width: 1024px) {
  /* line 2699, app/assets/stylesheets/website/_pricing.scss */
  .floating-mission-card .card-content {
    grid-template-columns: 1fr;
  }
  /* line 2703, app/assets/stylesheets/website/_pricing.scss */
  .floating-mission-card .divider {
    display: none;
  }
  /* line 2707, app/assets/stylesheets/website/_pricing.scss */
  .founders-section .founders-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    height: auto;
  }
}

@media (max-width: 768px) {
  /* line 2715, app/assets/stylesheets/website/_pricing.scss */
  .floating-mission-card {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }
  /* line 2720, app/assets/stylesheets/website/_pricing.scss */
  .founders-section .founders-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  /* line 2725, app/assets/stylesheets/website/_pricing.scss */
  .founders-header {
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
    padding: 0;
  }
  /* line 2731, app/assets/stylesheets/website/_pricing.scss */
  .founders-header .founders-subtitle {
    font-size: 1.2rem;
    margin-bottom: 0;
    text-align: left;
  }
  /* line 2738, app/assets/stylesheets/website/_pricing.scss */
  .founder-description {
    display: none !important;
  }
  /* line 2742, app/assets/stylesheets/website/_pricing.scss */
  .floating-mission-card .mission-section {
    display: none !important;
  }
  /* line 2746, app/assets/stylesheets/website/_pricing.scss */
  .mission-header .mission-title {
    font-size: clamp(1.4rem, 6vw, 1.8rem) !important;
  }
  /* line 2750, app/assets/stylesheets/website/_pricing.scss */
  .mission-header .mission-orizen-logo {
    height: 1.5rem;
  }
  /* line 2754, app/assets/stylesheets/website/_pricing.scss */
  .founders-subtitle {
    display: none !important;
  }
  /* line 2758, app/assets/stylesheets/website/_pricing.scss */
  .back-to-top {
    display: none !important;
  }
}

/* line 2764, app/assets/stylesheets/website/_pricing.scss */
.features-cta,
.mission-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.5rem 0;
  margin-top: 2rem !important;
  padding: 1rem 0;
}

/* line 2773, app/assets/stylesheets/website/_pricing.scss */
.features-cta .btn-orizon,
.mission-cta .btn-orizon {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

/* line 2788, app/assets/stylesheets/website/_pricing.scss */
.features-cta .btn-orizon:hover,
.mission-cta .btn-orizon:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
}

/* line 2794, app/assets/stylesheets/website/_pricing.scss */
.features-cta .btn-orizon:focus,
.mission-cta .btn-orizon:focus {
  outline: 2px solid rgba(255, 107, 53, 0.6);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  /* line 2803, app/assets/stylesheets/website/_pricing.scss */
  .features-cta,
.mission-cta {
    margin: 1.5rem 0;
    padding: 0.5rem 0;
  }
  /* line 2808, app/assets/stylesheets/website/_pricing.scss */
  .features-cta .btn-orizon,
.mission-cta .btn-orizon {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}

/* line 2817, app/assets/stylesheets/website/_pricing.scss */
.pricing-section .btn-orizon {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  border: none;
  cursor: pointer;
}

/* line 2832, app/assets/stylesheets/website/_pricing.scss */
.pricing-section .btn-orizon:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: white;
  text-decoration: none;
}

/* line 2840, app/assets/stylesheets/website/_pricing.scss */
.pricing-section .btn-orizon:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.3);
}

/* line 2846, app/assets/stylesheets/website/_pricing.scss */
.mobile-pricing-accordion .btn-orizon {
  width: 100%;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
}

@media (max-width: 767px) {
  /* line 2854, app/assets/stylesheets/website/_pricing.scss */
  .package-savings {
    display: none !important;
  }
}

/* ============================================
   NOUVEL ACCORDÉON PRICING - Version compacte
   ============================================ */
/* line 2863, app/assets/stylesheets/website/_pricing.scss */
.pricing-section--accordion {
  min-height: auto;
  padding: 60px 0;
}

/* line 2867, app/assets/stylesheets/website/_pricing.scss */
.pricing-section--accordion .pricing-container {
  max-width: 800px;
}

/* line 2872, app/assets/stylesheets/website/_pricing.scss */
.pricing-section--accordion .pricing-content,
.pricing-section--accordion .mobile-pricing-accordion,
.pricing-section--accordion .desktop-only,
.pricing-section--accordion .mobile-only {
  display: none !important;
}

/* line 2880, app/assets/stylesheets/website/_pricing.scss */
.pricing-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin: 0 0 2rem 0;
}

/* line 2887, app/assets/stylesheets/website/_pricing.scss */
.pricing-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* line 2893, app/assets/stylesheets/website/_pricing.scss */
.pricing-accordion-item {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* line 2901, app/assets/stylesheets/website/_pricing.scss */
.pricing-accordion-item:hover {
  border-color: rgba(246, 229, 179, 0.3);
}

/* line 2905, app/assets/stylesheets/website/_pricing.scss */
.pricing-accordion-item.pricing-accordion-item--highlighted {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(246, 229, 179, 0.4);
}

/* line 2909, app/assets/stylesheets/website/_pricing.scss */
.pricing-accordion-item.pricing-accordion-item--highlighted .pricing-accordion-header {
  background: rgba(246, 229, 179, 0.05);
}

/* line 2915, app/assets/stylesheets/website/_pricing.scss */
.pricing-accordion-item.is-open .accordion-icon {
  transform: rotate(180deg);
}

/* line 2919, app/assets/stylesheets/website/_pricing.scss */
.pricing-accordion-item.is-open .pricing-accordion-content {
  max-height: 600px;
  padding: 0 1.5rem 1.5rem;
  opacity: 1;
}

/* line 2927, app/assets/stylesheets/website/_pricing.scss */
.popular-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 0 0 10px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 1;
}

/* line 2942, app/assets/stylesheets/website/_pricing.scss */
.pricing-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

/* line 2953, app/assets/stylesheets/website/_pricing.scss */
.pricing-accordion-header:hover {
  background: rgba(255, 255, 255, 0.03);
}

/* line 2958, app/assets/stylesheets/website/_pricing.scss */
.accordion-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 1rem;
}

@media (max-width: 600px) {
  /* line 2958, app/assets/stylesheets/website/_pricing.scss */
  .accordion-header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* line 2972, app/assets/stylesheets/website/_pricing.scss */
.accordion-offer-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 2978, app/assets/stylesheets/website/_pricing.scss */
.offer-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #F6E5B3;
}

/* line 2984, app/assets/stylesheets/website/_pricing.scss */
.offer-badge {
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 2992, app/assets/stylesheets/website/_pricing.scss */
.offer-badge.offer-badge--free {
  background: rgba(40, 167, 69, 0.2);
  color: #81C784;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

/* line 2998, app/assets/stylesheets/website/_pricing.scss */
.offer-badge.offer-badge--pro {
  background: rgba(255, 107, 53, 0.2);
  color: #FF8A65;
  border: 1px solid rgba(255, 107, 53, 0.3);
}

/* line 3004, app/assets/stylesheets/website/_pricing.scss */
.offer-badge.offer-badge--flexible {
  background: rgba(99, 102, 241, 0.2);
  color: #A5A8FF;
  border: 1px solid rgba(99, 102, 241, 0.3);
}

/* line 3011, app/assets/stylesheets/website/_pricing.scss */
.offer-price {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

/* line 3015, app/assets/stylesheets/website/_pricing.scss */
.offer-price strong {
  font-size: 1.3rem;
  color: #F6E5B3;
}

/* line 3020, app/assets/stylesheets/website/_pricing.scss */
.offer-price .price-period {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* line 3026, app/assets/stylesheets/website/_pricing.scss */
.accordion-icon {
  color: rgba(255, 255, 255, 0.6);
  transition: transform 0.3s ease;
  margin-left: 1rem;
}

/* line 3032, app/assets/stylesheets/website/_pricing.scss */
.pricing-accordion-content {
  max-height: 0;
  padding: 0 1.5rem;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* line 3040, app/assets/stylesheets/website/_pricing.scss */
.offer-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 1.25rem 0;
  line-height: 1.5;
}

/* line 3047, app/assets/stylesheets/website/_pricing.scss */
.offer-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

/* line 3052, app/assets/stylesheets/website/_pricing.scss */
.offer-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* line 3061, app/assets/stylesheets/website/_pricing.scss */
.offer-features li:last-child {
  border-bottom: none;
}

/* line 3065, app/assets/stylesheets/website/_pricing.scss */
.offer-features li i {
  color: #28a745;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* line 3071, app/assets/stylesheets/website/_pricing.scss */
.offer-features li.more-features {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* line 3075, app/assets/stylesheets/website/_pricing.scss */
.offer-features li.more-features i {
  color: rgba(255, 255, 255, 0.5);
}

/* line 3081, app/assets/stylesheets/website/_pricing.scss */
.offer-features.offer-features--grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 1.5rem;
}

@media (max-width: 600px) {
  /* line 3081, app/assets/stylesheets/website/_pricing.scss */
  .offer-features.offer-features--grid {
    grid-template-columns: 1fr;
  }
}

/* line 3093, app/assets/stylesheets/website/_pricing.scss */
.engagement-toggle-compact {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 0.75rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

@media (max-width: 600px) {
  /* line 3093, app/assets/stylesheets/website/_pricing.scss */
  .engagement-toggle-compact {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* line 3108, app/assets/stylesheets/website/_pricing.scss */
.toggle-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

/* line 3114, app/assets/stylesheets/website/_pricing.scss */
.toggle-buttons-compact {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* line 3120, app/assets/stylesheets/website/_pricing.scss */
.toggle-btn-compact {
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 3131, app/assets/stylesheets/website/_pricing.scss */
.toggle-btn-compact:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* line 3135, app/assets/stylesheets/website/_pricing.scss */
.toggle-btn-compact.active {
  background: rgba(246, 229, 179, 0.2);
  border-color: rgba(246, 229, 179, 0.4);
  color: #F6E5B3;
}

/* line 3141, app/assets/stylesheets/website/_pricing.scss */
.toggle-btn-compact .discount {
  color: #81C784;
  font-weight: 600;
}

/* line 3148, app/assets/stylesheets/website/_pricing.scss */
.modules-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
  /* line 3148, app/assets/stylesheets/website/_pricing.scss */
  .modules-preview {
    grid-template-columns: 1fr;
  }
}

/* line 3159, app/assets/stylesheets/website/_pricing.scss */
.module-preview-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 3168, app/assets/stylesheets/website/_pricing.scss */
.module-preview-item .module-name {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

/* line 3173, app/assets/stylesheets/website/_pricing.scss */
.module-preview-item .module-price {
  font-size: 0.85rem;
  color: #F6E5B3;
  font-weight: 600;
}

/* line 3179, app/assets/stylesheets/website/_pricing.scss */
.module-preview-item.module-preview-item--more {
  grid-column: 1 / -1;
  justify-content: center;
  background: transparent;
  border: 1px dashed rgba(255, 255, 255, 0.15);
}

/* line 3185, app/assets/stylesheets/website/_pricing.scss */
.module-preview-item.module-preview-item--more .module-name {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* line 3193, app/assets/stylesheets/website/_pricing.scss */
.pricing-footer-info {
  margin-top: 2rem;
  text-align: center;
}

/* line 3198, app/assets/stylesheets/website/_pricing.scss */
.pricing-guarantees {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* line 3205, app/assets/stylesheets/website/_pricing.scss */
.guarantee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 3212, app/assets/stylesheets/website/_pricing.scss */
.guarantee-item i {
  color: #81C784;
}

@media (max-width: 600px) {
  /* line 3219, app/assets/stylesheets/website/_pricing.scss */
  .pricing-accordion-item {
    border-radius: 12px;
  }
  /* line 3223, app/assets/stylesheets/website/_pricing.scss */
  .pricing-accordion-header {
    padding: 1rem;
  }
  /* line 3227, app/assets/stylesheets/website/_pricing.scss */
  .offer-name {
    font-size: 1.1rem;
  }
  /* line 3231, app/assets/stylesheets/website/_pricing.scss */
  .pricing-guarantees {
    gap: 1rem;
  }
  /* line 3235, app/assets/stylesheets/website/_pricing.scss */
  .guarantee-item {
    font-size: 0.8rem;
  }
}

/* ============================================
   PRICING HERO - Version mise en avant du prix
   ============================================ */
/* line 3244, app/assets/stylesheets/website/_pricing.scss */
.pricing-section--hero {
  height: 100vh;
  max-height: 100vh;
  padding: 0;
  background: transparent;
  display: flex;
  align-items: center;
}

/* line 3252, app/assets/stylesheets/website/_pricing.scss */
.pricing-section--hero .pricing-container {
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-top: 80px;
}

/* line 3261, app/assets/stylesheets/website/_pricing.scss */
.pricing-section--hero .pricing-header {
  margin-bottom: 2rem;
}

/* line 3266, app/assets/stylesheets/website/_pricing.scss */
.pricing-section--hero .pricing-content,
.pricing-section--hero .mobile-pricing-accordion,
.pricing-section--hero .pricing-accordion,
.pricing-section--hero .desktop-only,
.pricing-section--hero .mobile-only {
  display: none !important;
}

@media (max-width: 900px) {
  /* line 3244, app/assets/stylesheets/website/_pricing.scss */
  .pricing-section--hero {
    height: auto;
    min-height: 100vh;
    max-height: none;
    padding: 80px 0 2rem;
  }
}

/* Titre avec logo */
/* line 3283, app/assets/stylesheets/website/_pricing.scss */
.section-title--with-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 2rem;
  font-weight: 800;
  color: #F6E5B3;
  line-height: 1.3;
  text-align: center;
}

@media (max-width: 768px) {
  /* line 3283, app/assets/stylesheets/website/_pricing.scss */
  .section-title--with-logo {
    font-size: 1.5rem;
  }
}

/* line 3300, app/assets/stylesheets/website/_pricing.scss */
.pricing-orizen-logo {
  height: 2.25rem;
  margin-bottom: -0.4rem;
  width: auto;
  display: inline-block;
  vertical-align: baseline;
}

@media (max-width: 768px) {
  /* line 3300, app/assets/stylesheets/website/_pricing.scss */
  .pricing-orizen-logo {
    height: 1.4rem;
  }
}

/* line 3312, app/assets/stylesheets/website/_pricing.scss */
.pricing-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

@media (max-width: 900px) {
  /* line 3312, app/assets/stylesheets/website/_pricing.scss */
  .pricing-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Colonne gauche : Prix et avantages */
/* line 3325, app/assets/stylesheets/website/_pricing.scss */
.pricing-hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* line 3331, app/assets/stylesheets/website/_pricing.scss */
.pricing-hero-badge {
  display: inline-flex;
  align-self: flex-start;
}

/* line 3335, app/assets/stylesheets/website/_pricing.scss */
.pricing-hero-badge .badge-text {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(139, 92, 246, 0.3) 100%);
  border: 1px solid rgba(99, 102, 241, 0.5);
  color: #A5A8FF;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 3349, app/assets/stylesheets/website/_pricing.scss */
.pricing-hero-price .price-label {
  display: block;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.15rem;
}

/* line 3356, app/assets/stylesheets/website/_pricing.scss */
.pricing-hero-price .price-amount {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

/* line 3362, app/assets/stylesheets/website/_pricing.scss */
.pricing-hero-price .price-value {
  font-size: 4.5rem;
  font-weight: 800;
  color: #F6E5B3;
  line-height: 1;
  font-family: 'Poppins', sans-serif;
}

@media (max-width: 600px) {
  /* line 3362, app/assets/stylesheets/website/_pricing.scss */
  .pricing-hero-price .price-value {
    font-size: 3.5rem;
  }
}

/* line 3374, app/assets/stylesheets/website/_pricing.scss */
.pricing-hero-price .price-currency {
  font-size: 2rem;
  font-weight: 700;
  color: #F6E5B3;
}

@media (max-width: 600px) {
  /* line 3374, app/assets/stylesheets/website/_pricing.scss */
  .pricing-hero-price .price-currency {
    font-size: 1.5rem;
  }
}

/* line 3384, app/assets/stylesheets/website/_pricing.scss */
.pricing-hero-price .price-period {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-left: 0.35rem;
}

/* line 3390, app/assets/stylesheets/website/_pricing.scss */
.pricing-hero-price .price-detail {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.15rem;
}

/* Section engagement */
/* line 3399, app/assets/stylesheets/website/_pricing.scss */
.engagement-section {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* line 3406, app/assets/stylesheets/website/_pricing.scss */
.engagement-header .engagement-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* line 3413, app/assets/stylesheets/website/_pricing.scss */
.engagement-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

@media (max-width: 600px) {
  /* line 3413, app/assets/stylesheets/website/_pricing.scss */
  .engagement-buttons {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* line 3423, app/assets/stylesheets/website/_pricing.scss */
.engagement-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.6rem 0.4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 3435, app/assets/stylesheets/website/_pricing.scss */
.engagement-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

/* line 3440, app/assets/stylesheets/website/_pricing.scss */
.engagement-btn.active {
  background: rgba(246, 229, 179, 0.15);
  border-color: rgba(246, 229, 179, 0.4);
}

/* line 3444, app/assets/stylesheets/website/_pricing.scss */
.engagement-btn.active .engagement-name {
  color: #F6E5B3;
}

/* line 3449, app/assets/stylesheets/website/_pricing.scss */
.engagement-btn .engagement-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

/* line 3456, app/assets/stylesheets/website/_pricing.scss */
.engagement-btn .engagement-desc {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
}

/* line 3461, app/assets/stylesheets/website/_pricing.scss */
.engagement-btn .engagement-discount {
  font-size: 0.75rem;
  font-weight: 700;
  color: #81C784;
}

/* line 3468, app/assets/stylesheets/website/_pricing.scss */
.discount-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0.6rem 0.75rem;
  background: rgba(129, 199, 132, 0.1);
  border: 1px solid rgba(129, 199, 132, 0.2);
  border-radius: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

/* line 3480, app/assets/stylesheets/website/_pricing.scss */
.discount-info i {
  color: #81C784;
  font-size: 0.9rem;
}

/* line 3485, app/assets/stylesheets/website/_pricing.scss */
.discount-info strong {
  color: #81C784;
}

/* Bouton CTA Pricing - Style navbar */
/* line 3491, app/assets/stylesheets/website/_pricing.scss */
.btn-cta-pricing {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* line 3507, app/assets/stylesheets/website/_pricing.scss */
.btn-cta-pricing:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  text-decoration: none;
  color: #fff;
}

/* line 3515, app/assets/stylesheets/website/_pricing.scss */
.btn-cta-pricing span {
  color: #fff;
}

/* line 3519, app/assets/stylesheets/website/_pricing.scss */
.btn-cta-pricing .btn-orizen-logo {
  height: 18px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

/* Colonne droite : Inclus */
/* line 3529, app/assets/stylesheets/website/_pricing.scss */
.pricing-hero-right {
  display: flex;
  align-items: stretch;
}

/* line 3534, app/assets/stylesheets/website/_pricing.scss */
.included-showcase {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

/* line 3546, app/assets/stylesheets/website/_pricing.scss */
.included-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #F6E5B3;
  margin: 0 0 1rem 0;
  text-align: center;
}

/* line 3553, app/assets/stylesheets/website/_pricing.scss */
.included-title sup {
  font-size: 0.7em;
}

/* line 3558, app/assets/stylesheets/website/_pricing.scss */
.included-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

/* line 3564, app/assets/stylesheets/website/_pricing.scss */
.included-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.55rem 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* line 3573, app/assets/stylesheets/website/_pricing.scss */
.included-list li:last-child {
  border-bottom: none;
}

/* line 3577, app/assets/stylesheets/website/_pricing.scss */
.included-list li i {
  color: #F6E5B3;
  font-size: 0.85rem;
  width: 22px;
  text-align: center;
}

/* line 3586, app/assets/stylesheets/website/_pricing.scss */
.included-modules {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 1rem 0 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 3594, app/assets/stylesheets/website/_pricing.scss */
.included-modules strong {
  color: #F6E5B3;
}

/* Responsive pricing hero */
@media (max-width: 768px) {
  /* line 3601, app/assets/stylesheets/website/_pricing.scss */
  .pricing-hero-left {
    gap: 1rem;
  }
  /* line 3605, app/assets/stylesheets/website/_pricing.scss */
  .included-showcase {
    padding: 1.25rem;
  }
  /* line 3609, app/assets/stylesheets/website/_pricing.scss */
  .included-title {
    font-size: 1rem;
  }
  /* line 3613, app/assets/stylesheets/website/_pricing.scss */
  .included-list li {
    font-size: 0.85rem;
    padding: 0.5rem 0;
  }
  /* line 3618, app/assets/stylesheets/website/_pricing.scss */
  .discount-info {
    font-size: 0.75rem;
    padding: 0.5rem 0.6rem;
  }
}

/* Classe utilitaire pour le contenu visuellement caché mais accessible au SEO et lecteurs d'écran */
/* line 7, app/assets/stylesheets/website/_orizon_landing.scss */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Empêcher le scroll horizontal global */
/* line 20, app/assets/stylesheets/website/_orizon_landing.scss */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* Accessibilité : focus visible pour la navigation au clavier */
/* line 27, app/assets/stylesheets/website/_orizon_landing.scss */
body.website-landing a:focus-visible,
body.website-landing button:focus-visible,
body.website-landing [role="button"]:focus-visible,
body.website-landing input:focus-visible,
body.website-landing textarea:focus-visible,
body.website-landing select:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Scroll snap limité à la landing */
/* Activer le snap sur le conteneur de scroll réel (html) quand on est sur la landing */
/* html:has(body.website-landing) supprimé pour éviter double snap et simplifier */
/* line 43, app/assets/stylesheets/website/_orizon_landing.scss */
body.website-landing {
  /* CSS minimal - pas de snap, juste le conteneur de scroll */
  height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* iOS */
  /* Masquer la scrollbar tout en gardant le défilement */
  -ms-overflow-style: none;
  /* IE/Edge legacy */
  scrollbar-width: none;
  /* Firefox */
  /* Points d'accroche désactivés - géré par JS */
  /*
  .orizon-hero,
  .orizon-section#fonctionnalites,
  #offre,
  #mission,
  .pricing-section,
  .mission-section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  */
  /* Uniformiser la hauteur pour un snap net */
}

/* line 67, app/assets/stylesheets/website/_orizon_landing.scss */
body.website-landing #offre,
body.website-landing #mission {
  min-height: 100vh;
}

/* WebKit */
/* line 74, app/assets/stylesheets/website/_orizon_landing.scss */
body.website-landing::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* Variables de couleurs */
/* line 81, app/assets/stylesheets/website/_orizon_landing.scss */
body.website-landing {
  color: #f6f6f7;
}

/* line 84, app/assets/stylesheets/website/_orizon_landing.scss */
body.website-landing[data-theme="nightmode"] {
  background: linear-gradient(151deg, #140D23 0%, #820133 70%, #a1023f 100%);
  background-attachment: fixed;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* line 96, app/assets/stylesheets/website/_orizon_landing.scss */
body.website-landing[data-theme="lightmode"] {
  background: linear-gradient(170deg, #e8e8e8 45%, rgba(229, 168, 46, 0.8) 135%);
  background-attachment: fixed;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* line 104, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-section {
  padding: 60px 0;
  min-height: 100vh;
  height: auto;
  max-height: none;
  overflow: visible;
  background: transparent;
  position: relative;
}

/* Sections secondaires : hauteur adaptée au contenu (pas de min-height: 100vh) */
/* line 117, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-section.section-light {
  min-height: auto;
  padding: 50px 0;
}

/* reveal-on-scroll avec transitions fluides */
/* line 123, app/assets/stylesheets/website/_orizon_landing.scss */
.reveal [data-reveal-target=item] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* line 129, app/assets/stylesheets/website/_orizon_landing.scss */
.reveal .reveal--in {
  opacity: 1;
  transform: translateY(0);
}

/* Animation séquentielle pour les éléments */
/* line 135, app/assets/stylesheets/website/_orizon_landing.scss */
.reveal [data-reveal-target=item]:nth-child(1) {
  transition-delay: 0.1s;
}

/* line 136, app/assets/stylesheets/website/_orizon_landing.scss */
.reveal [data-reveal-target=item]:nth-child(2) {
  transition-delay: 0.3s;
}

/* line 137, app/assets/stylesheets/website/_orizon_landing.scss */
.reveal [data-reveal-target=item]:nth-child(3) {
  transition-delay: 0.5s;
}

/* line 138, app/assets/stylesheets/website/_orizon_landing.scss */
.reveal [data-reveal-target=item]:nth-child(4) {
  transition-delay: 0.7s;
}

/* line 139, app/assets/stylesheets/website/_orizon_landing.scss */
.reveal [data-reveal-target=item]:nth-child(5) {
  transition-delay: 0.9s;
}

/* line 140, app/assets/stylesheets/website/_orizon_landing.scss */
.reveal [data-reveal-target=item]:nth-child(6) {
  transition-delay: 1.1s;
}

/* line 141, app/assets/stylesheets/website/_orizon_landing.scss */
.reveal [data-reveal-target=item]:nth-child(7) {
  transition-delay: 1.3s;
}

/* line 143, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 24px;
}

/* Quand la modale est ouverte, s'assurer que le hero passe au-dessus des sections suivantes */
/* line 153, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-hero.modal-open {
  z-index: 900;
}

/* line 157, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-hero-video {
  position: relative;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
}

/* Placeholder de chargement global */
/* line 164, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-hero-video-placeholder {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.95) 0%, rgba(166, 2, 64, 0.9) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease;
}

/* line 179, app/assets/stylesheets/website/_orizon_landing.scss */
.loading-spinner {
  width: 80px;
  height: 80px;
  border: 6px solid rgba(255, 255, 255, 0.2);
  border-top: 6px solid #F6E5B3;
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
  margin-bottom: 20px;
}

/* line 189, app/assets/stylesheets/website/_orizon_landing.scss */
.loading-text {
  color: #F6E5B3;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: center;
  animation: pulse 2s ease-in-out infinite;
}

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

@keyframes pulse {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

/* Conteneur principal masqué initialement */
/* line 209, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-hero-content-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  /* autorise l'extension verticale si le contenu déborde */
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

/* line 218, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-hero-video-tag {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* Remplacer 100vw par 100% pour éviter le scroll horizontal */
  height: 100vh;
  object-fit: cover;
  transition: opacity 2.5s ease;
  /* Transition plus longue et plus douce */
  opacity: 0.85;
  /* Légère transparence pour voir le background */
  z-index: 1;
}

/* line 230, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  /* Pas de background - transparence totale */
  animation: orizon-fadeout 3s ease 1.5s forwards;
  /* Transition plus longue et plus tardive */
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  /* Transition plus rapide */
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  /* S'assurer qu'il est au-dessus de la vidéo */
}

/* line 243, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-hero-tagline {
  color: #fff;
  font-weight: 900;
  text-align: center;
  padding: 0 16px;
  letter-spacing: 0.5px;
  /* Espacement des lettres */
}

/* line 251, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-hero-tagline span[aria-hidden="true"] {
  font-weight: 750;
  font-variation-settings: "wght" 750;
}

@keyframes orizon-fadeout {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* line 260, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-hero-content {
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
  position: absolute;
  left: 2%;
  right: 2%;
  bottom: 12vh;
  top: 10vh;
  z-index: 2;
  width: auto;
  /* Au lieu de 100% pour ne pas couvrir tout le background */
  /* Augmenter de 95vw à 98vw pour utiliser presque toute la largeur */
  padding: 48px 32px;
  /* Réduire le padding horizontal de 48px à 32px */
  border-radius: 16px;
  /* Arrondir les coins */
}

/* Nouveau layout en deux colonnes */
/* line 279, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  /* Augmenter le gap de 48px à 80px entre les colonnes */
  align-items: center;
  max-width: 95vw;
  /* Réduire de 1600px à 95vw pour éviter le débordement */
  width: 100%;
  margin-top: 50px;
}

/* Section gauche : Contenu textuel */
/* line 290, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-hero-text {
  text-align: left;
  color: white;
  padding: 30px 10px;
  /* Réduire le padding horizontal de 20px à 10px pour plus d'espace */
}

/* line 296, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 24px 0;
  /* Augmenter la marge de 16px à 24px */
  color: #F6E5B3;
  /* Nouvelle couleur beige doré */
  text-align: left !important;
  /* Forcer l'alignement à gauche */
  display: flex;
  align-items: center;
  gap: 12px;
  /* Texte Orizen caché pour SEO */
  /* Logo Orizen visible */
}

/* line 307, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-hero-title .orizen-text-seo {
  display: none;
}

/* line 312, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-hero-title .orizen-logo-title {
  height: 42px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  vertical-align: middle;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

/* line 324, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-hero-title .orizen-logo-title:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* line 330, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-hero-subtitle {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 20px 0;
  /* Réduit pour laisser place à la description */
  color: #F6E5B3;
  line-height: 1.1;
}

/* line 338, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-hero-description {
  font-size: 1rem;
  font-weight: 400;
  margin: 5px 0 30px 0;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
  max-width: 600px;
  letter-spacing: 0.5px;
}

/* line 348, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-feature-tags {
  display: flex;
  gap: 16px;
  /* Augmenter le gap de 12px à 16px */
  margin-bottom: 40px;
  /* Augmenter la marge de 32px à 40px */
  flex-wrap: wrap;
}

/* line 355, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-tag {
  background: rgba(255, 255, 255, 0.1);
  color: #F6E5B3;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

/* line 369, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-tag:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

/* Pictogrammes personnalisés monochromes */
/* line 376, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-tag-icon {
  font-size: 1.5rem;
  line-height: 1;
  opacity: 1;
  color: #F6E5B3;
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* Pictogramme Souverain — bouclier pulsant */
/* Pictogramme Souverain — drapeau à trois bandes ondulant */
/* line 387, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-tag-icon[data-icon="souverain"] {
  position: relative;
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
}

/* Mât */
/* line 395, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-tag-icon[data-icon="souverain"]::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6%;
  width: 2px;
  height: 88%;
  background: rgba(246, 229, 179, 0.95);
  border-radius: 2px;
  box-shadow: 0 0 2px rgba(246, 229, 179, 0.35);
}

/* Fanion 3 bandes */
/* line 408, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-tag-icon[data-icon="souverain"]::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 18%;
  width: 0.95rem;
  height: 0.68rem;
  background: linear-gradient(90deg, rgba(0, 62, 251, 0.35) 0 33%, #ffffff 33% 66%, #f71e1e 66% 100%);
  border-radius: 2px 6px 6px 2px;
  box-shadow: 0 0 4px rgba(246, 229, 179, 0.35);
  transform-origin: left center;
  animation: souverain-flag-wave 1.8s ease-in-out infinite;
}

@keyframes souverain-flag-wave {
  0% {
    transform: translateY(0) skewX(0deg);
    border-top-right-radius: 6px;
  }
  50% {
    transform: translateY(0.5px) skewX(-7deg);
    border-top-right-radius: 2px;
  }
  100% {
    transform: translateY(0) skewX(0deg);
    border-top-right-radius: 6px;
  }
}

/* Pictogramme 360° - Radar avec balayage */
/* line 429, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-tag-icon[data-icon="360"] {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid #F6E5B3;
  border-radius: 50%;
  display: inline-block;
  overflow: hidden;
}

/* Cercle central (source du radar) */
/* line 440, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-tag-icon[data-icon="360"]::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.3rem;
  height: 0.3rem;
  background: #F6E5B3;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* Ligne de balayage principale - parfaitement centrée */
/* line 453, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-tag-icon[data-icon="360"]::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.75rem;
  height: 0.08rem;
  background: #F6E5B3;
  transform: translate(-50%, -50%) rotate(0deg);
  transform-origin: center center;
  animation: radar-sweep 6s linear infinite;
}

/* Lignes de balayage secondaires - parfaitement centrées */
/* line 467, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-tag-icon[data-icon="360"] .radar-line-1 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.6rem;
  height: 0.05rem;
  background: rgba(246, 229, 179, 0.6);
  transform: translate(-50%, -50%) rotate(90deg);
  transform-origin: center center;
}

/* line 478, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-tag-icon[data-icon="360"] .radar-line-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.6rem;
  height: 0.05rem;
  background: rgba(246, 229, 179, 0.4);
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: center center;
}

/* line 489, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-tag-icon[data-icon="360"] .radar-line-3 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.6rem;
  height: 0.05rem;
  background: rgba(246, 229, 179, 0.4);
  transform: translate(-50%, -50%) rotate(135deg);
  transform-origin: center center;
}

/* Animation du balayage radar - parfaitement centrée */
@keyframes radar-sweep {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Points Est et Ouest */
/* line 511, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-tag-icon[data-icon="360"] .point-east {
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.2rem;
  height: 0.2rem;
  background: #F6E5B3;
  border-radius: 50%;
  transform: translateY(-50%);
}

/* line 522, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-tag-icon[data-icon="360"] .point-west {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.2rem;
  height: 0.2rem;
  background: #F6E5B3;
  border-radius: 50%;
  transform: translateY(-50%);
}

/* Pictogramme Modulaire - 2 pièces de puzzle qui dansent */
/* line 534, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-tag-icon[data-icon="modular"] {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
}

/* Pièce de puzzle gauche */
/* line 542, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-tag-icon[data-icon="modular"]::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 20%;
  width: 0.6rem;
  height: 0.6rem;
  background: #F6E5B3;
  border-radius: 0.15rem;
  transform: translate(-50%, -50%);
  animation: puzzle-left 4s ease-in-out infinite;
}

/* Pièce de puzzle droite */
/* line 556, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-tag-icon[data-icon="modular"]::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20%;
  width: 0.6rem;
  height: 0.6rem;
  background: #F6E5B3;
  border-radius: 0.15rem;
  transform: translate(50%, -50%);
  animation: puzzle-right 4s ease-in-out infinite;
}

/* Animation de la pièce gauche */
@keyframes puzzle-left {
  0%, 100% {
    left: 20%;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    left: 45%;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* Animation de la pièce droite */
@keyframes puzzle-right {
  0%, 100% {
    right: 20%;
    transform: translate(50%, -50%) scale(1);
  }
  50% {
    right: 45%;
    transform: translate(50%, -50%) scale(1.1);
  }
}

/* Pictogramme IA - Barres évolutives avec brillance cyclique et évolution en hauteur */
/* line 594, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-tag-icon[data-icon="ia"] {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
}

/* Barre 1 (gauche) - évolue de longue à très longue */
/* line 602, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-tag-icon[data-icon="ia"]::before {
  content: '';
  position: absolute;
  bottom: 50%;
  left: 0.1rem;
  width: 0.2rem;
  height: 0.8rem;
  background: #F6E5B3;
  border-radius: 0;
  transform: translateY(50%) scaleY(1);
  transform-origin: bottom center;
  animation: bar-evolve-1 5s ease-in-out infinite, bar-glow 3s ease-in-out infinite;
}

/* Barre 2 (milieu) - évolue de courte à moyenne */
/* line 617, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-tag-icon[data-icon="ia"]::after {
  content: '';
  position: absolute;
  bottom: 50%;
  left: 50%;
  width: 0.2rem;
  height: 0.3rem;
  background: #F6E5B3;
  border-radius: 0;
  transform: translate(-50%, 50%) scaleY(1);
  transform-origin: bottom center;
  animation: bar-evolve-2 3.5s ease-in-out infinite, bar-glow 3s ease-in-out infinite 0.5s;
}

/* Barre 3 (droite) - évolue de moyenne à longue */
/* line 632, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-tag-icon[data-icon="ia"] .bar-3 {
  position: absolute;
  bottom: 50%;
  right: 0.1rem;
  width: 0.2rem;
  height: 0.6rem;
  background: #F6E5B3;
  border-radius: 0;
  transform: translateY(50%) scaleY(1);
  transform-origin: bottom center;
  animation: bar-evolve-3 4.2s ease-in-out infinite, bar-glow 3s ease-in-out infinite 1s;
}

/* Animation d'évolution asynchrone de la barre 1 - la plus grande (5s) */
@keyframes bar-evolve-1 {
  0%, 100% {
    transform: translateY(50%) scaleY(0.875);
  }
  25% {
    transform: translateY(50%) scaleY(1);
  }
  50% {
    transform: translateY(50%) scaleY(1.375);
  }
  75% {
    transform: translateY(50%) scaleY(1);
  }
}

/* Animation d'évolution asynchrone de la barre 2 - la plus petite au centre (3.5s) */
@keyframes bar-evolve-2 {
  0%, 100% {
    transform: translate(-50%, 50%) scaleY(0.833);
  }
  25% {
    transform: translate(-50%, 50%) scaleY(1);
  }
  50% {
    transform: translate(-50%, 50%) scaleY(1.667);
  }
  75% {
    transform: translate(-50%, 50%) scaleY(1);
  }
}

/* Animation d'évolution asynchrone de la barre 3 - moyenne (4.2s) */
@keyframes bar-evolve-3 {
  0%, 100% {
    transform: translateY(50%) scaleY(0.833);
  }
  25% {
    transform: translateY(50%) scaleY(1);
  }
  50% {
    transform: translateY(50%) scaleY(1.417);
  }
  75% {
    transform: translateY(50%) scaleY(1);
  }
}

/* Animation de brillance cyclique des barres */
@keyframes bar-glow {
  0%, 100% {
    background: #F6E5B3;
    box-shadow: 0 0 3px rgba(246, 229, 179, 0.3);
  }
  25% {
    background: #F6E5B3;
    box-shadow: 0 0 8px rgba(246, 229, 179, 0.8), 0 0 15px rgba(246, 229, 179, 0.4);
  }
  50% {
    background: #F6E5B3;
    box-shadow: 0 0 12px #f6e5b3, 0 0 20px rgba(246, 229, 179, 0.6);
  }
  75% {
    background: #F6E5B3;
    box-shadow: 0 0 8px rgba(246, 229, 179, 0.8), 0 0 15px rgba(246, 229, 179, 0.4);
  }
}

/* Pictogramme RGPD - Checkmark avec balayage d'opacité progressive de gauche à droite */
/* line 714, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-tag-icon:not([data-icon]) {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  animation: rgpd-opacity-sweep 8s ease-in-out infinite;
}

/* Animation de balayage RGPD avec opacité progressive */
@keyframes rgpd-opacity-sweep {
  0% {
    opacity: 0.2;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}

/* Pictogramme Assistance Continue - Cercle avec pulsation fondamentale */
/* line 739, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-tag-icon[data-icon="assistance"] {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
}

/* Cercle principal */
/* line 747, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-tag-icon[data-icon="assistance"]::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 1rem;
  border: 2px solid #F6E5B3;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: assistance-pulse-main 3s ease-in-out infinite;
}

/* Cercle de pulsation */
/* line 761, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-tag-icon[data-icon="assistance"] .assistance-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 1rem;
  border: 1px solid rgba(246, 229, 179, 0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: assistance-pulse-expand 3s ease-out infinite;
}

/* Animations pour l'assistance continue */
@keyframes assistance-pulse-main {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.8;
  }
}

@keyframes assistance-pulse-expand {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.4;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

/* Pictogramme Éco-responsable - Pousse avec deux feuilles */
/* line 801, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-tag-icon[data-icon="eco"] {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
}

/* line 808, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-tag-icon[data-icon="eco"] .eco-sprout {
  position: absolute;
  bottom: 0.15rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  animation: eco-sprout-sway 3s ease-in-out infinite;
}

/* Tige centrale */
/* line 819, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-tag-icon[data-icon="eco"] .eco-sprout::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1.5px;
  height: 0.65rem;
  background: #6fcf6f;
  transform: translateX(-50%);
  border-radius: 1px;
}

/* Feuille gauche */
/* line 832, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-tag-icon[data-icon="eco"] .eco-sprout::after {
  content: '';
  position: absolute;
  bottom: 0.45rem;
  left: 50%;
  width: 0.5rem;
  height: 0.38rem;
  border: 1.5px solid #6fcf6f;
  background: rgba(111, 207, 111, 0.15);
  border-radius: 50% 0 50% 0;
  transform: translateX(-100%) rotate(-15deg);
  transform-origin: right bottom;
}

/* Feuille droite */
/* line 847, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-tag-icon[data-icon="eco"] .eco-sprout-right {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  width: 0.5rem;
  height: 0.38rem;
  border: 1.5px solid #6fcf6f;
  background: rgba(111, 207, 111, 0.15);
  border-radius: 0 50% 0 50%;
  transform: translateX(0%) rotate(15deg);
  transform-origin: left bottom;
}

@keyframes eco-sprout-sway {
  0%, 100% {
    transform: translateX(-50%) rotate(0deg);
  }
  50% {
    transform: translateX(-50%) rotate(3deg);
  }
}

/* line 865, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-tag-text {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Section partenaires avec titre et alignement à gauche */
/* line 871, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-partners {
  text-align: left;
  margin: 2rem 0;
  margin-top: 4rem;
  margin-bottom: 3rem;
  /* Espacement supplémentaire vers le bas */
}

/* line 878, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-partners-title {
  color: #F6E5B3;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  text-align: left;
}

/* line 887, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-partners-logos {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Logos des partenaires avec filtre monochrome */
/* line 896, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-partner-logo {
  height: 1.5rem;
  /* Réduire de 2rem à 1.5rem pour des logos plus petits */
  width: auto;
  filter: brightness(0) saturate(100%) invert(89%) sepia(12%) saturate(1033%) hue-rotate(359deg) brightness(103%) contrast(96%);
  opacity: 0.9;
  transition: all 0.3s ease;
}

/* line 904, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-partner-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Maintien des styles existants pour les spans */
/* line 910, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-partner {
  color: #F6E5B3;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.8;
  transition: all 0.3s ease;
}

/* line 918, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-partner:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Bouton CTA visible et stylé */
/* line 924, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-cta {
  margin: 3rem 0;
  z-index: 1000;
}

/* Forcer la visibilité du bouton CTA malgré les classes reveal */
/* line 930, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-cta[data-reveal-target="item"] {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

/* line 936, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-cta .btn-orizon {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* line 949, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-cta .btn-orizon:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
}

/* line 955, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-arrival-message {
  color: white;
  font-size: 1rem;
  margin: 0;
  opacity: 0.9;
}

/* Container du message d'arrivée positionné en bas */
/* line 963, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-arrival-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: absolute !important;
  bottom: -80px !important;
  /* Positionner en dessous du contenu principal */
  left: 46% !important;
  /* un peu plus à gauche */
  transform: translateX(-46%) !important;
  text-align: center !important;
  z-index: 999 !important;
  /* S'assurer qu'il est au-dessus des autres éléments */
  width: 100% !important;
  max-width: 980px !important;
  /* légèrement plus large */
  flex-wrap: nowrap;
  /* empêche le retour à la ligne bouton/texte */
}

/* line 980, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-arrival-container .orizon-arrival-message {
  color: #F6E5B3;
  font-size: 1.2rem;
  /* Taille augmentée pour la visibilité */
  font-weight: 600;
  /* Plus de poids pour la lisibilité */
  margin: 0;
  opacity: 0;
  /* Commencer invisible */
  transform: translateY(20px);
  /* Commencer légèrement décalé */
  transition: opacity 1s ease, transform 1s ease;
  /* Transition fluide */
  padding: 35px 24px;
}

/* Animation du message d'arrivée */
/* line 992, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-arrival-container.reveal--in .orizon-arrival-message {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NOUVEAU HERO - Titre orienté bénéfice + Double CTA
   ============================================ */
/* Titre orienté bénéfice */
/* line 1002, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-hero-title--benefit {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  display: block;
  text-align: left;
}

/* line 1011, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-hero-title-highlight {
  display: block;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Sous-titre orienté valeur */
/* line 1020, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-hero-subtitle--value {
  font-size: 1.3rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  line-height: 1.4;
}

/* Double CTA côte à côte */
/* line 1029, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* line 1035, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-hero-cta-group .btn-orizon {
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* line 1047, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-hero-cta-group .btn-orizon--primary {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* line 1052, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-hero-cta-group .btn-orizon--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* line 1057, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-hero-cta-group .btn-orizon--primary .btn-orizen-logo {
  height: 1em;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

/* line 1066, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-hero-cta-group .btn-orizon--secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(10px);
}

/* line 1071, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-hero-cta-group .btn-orizon--secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Badge BFM Business */
/* line 1080, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-bfm-badge {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 600px;
  margin: 8px auto 0;
}

/* line 1087, app/assets/stylesheets/website/_orizon_landing.scss */
.bfm-badge-content {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

/* line 1098, app/assets/stylesheets/website/_orizon_landing.scss */
.bfm-badge-content:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

/* line 1104, app/assets/stylesheets/website/_orizon_landing.scss */
.bfm-badge-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

/* line 1109, app/assets/stylesheets/website/_orizon_landing.scss */
.bfm-badge-logo {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* line 1118, app/assets/stylesheets/website/_orizon_landing.scss */
.bfm-badge-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 1125, app/assets/stylesheets/website/_orizon_landing.scss */
.bfm-badge-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #F6E5B3;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* line 1133, app/assets/stylesheets/website/_orizon_landing.scss */
.bfm-badge-quote {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
}

/* line 1139, app/assets/stylesheets/website/_orizon_landing.scss */
.bfm-badge-link {
  color: #F6E5B3;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}

/* line 1147, app/assets/stylesheets/website/_orizon_landing.scss */
.bfm-badge-link:hover {
  color: #fff;
  text-decoration: underline;
}

/* line 1153, app/assets/stylesheets/website/_orizon_landing.scss */
.bfm-badge-founders {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-left: auto;
  padding-left: 25px;
  flex-shrink: 0;
}

/* line 1163, app/assets/stylesheets/website/_orizon_landing.scss */
.bfm-badge-founders .bfm-badge-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  text-decoration: none;
}

/* line 1171, app/assets/stylesheets/website/_orizon_landing.scss */
.bfm-badge-founders .bfm-badge-link .bfm-badge-link-text {
  color: #F6E5B3;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

/* line 1179, app/assets/stylesheets/website/_orizon_landing.scss */
.bfm-badge-founders .bfm-badge-link:hover .bfm-plateau-thumbnail {
  transform: scale(1.03);
  border-color: #F6E5B3;
}

/* line 1183, app/assets/stylesheets/website/_orizon_landing.scss */
.bfm-badge-founders .bfm-badge-link:hover .bfm-badge-link-text {
  color: #fff;
  text-decoration: underline;
}

/* line 1191, app/assets/stylesheets/website/_orizon_landing.scss */
.founder-thumbnail {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid rgba(246, 229, 179, 0.4);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

/* line 1200, app/assets/stylesheets/website/_orizon_landing.scss */
.founder-thumbnail:hover {
  transform: scale(1.08);
  border-color: #F6E5B3;
}

/* line 1206, app/assets/stylesheets/website/_orizon_landing.scss */
.bfm-plateau-thumbnail {
  width: 100px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid rgba(246, 229, 179, 0.4);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

/* line 1215, app/assets/stylesheets/website/_orizon_landing.scss */
.bfm-plateau-thumbnail:hover {
  transform: scale(1.03);
  border-color: #F6E5B3;
}

/* ============================================
   TRUST BAND - Logos partenaires sous le hero
   ============================================ */
/* line 1225, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-trust-band {
  padding: 40px 0;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 1232, app/assets/stylesheets/website/_orizon_landing.scss */
.trust-band-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

/* line 1239, app/assets/stylesheets/website/_orizon_landing.scss */
.trust-band-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  font-weight: 500;
}

/* line 1248, app/assets/stylesheets/website/_orizon_landing.scss */
.trust-band-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

/* line 1256, app/assets/stylesheets/website/_orizon_landing.scss */
.trust-logo-item {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

/* line 1260, app/assets/stylesheets/website/_orizon_landing.scss */
.trust-logo-item:hover {
  opacity: 1;
}

/* line 1265, app/assets/stylesheets/website/_orizon_landing.scss */
.trust-logo {
  height: 32px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Trust Band intégré dans why-orizen (Partenaires) */
/* line 1274, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-trust-band--partners {
  margin-top: 3rem;
  padding: 2rem 0;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 1281, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-trust-band--partners .trust-band-label {
  color: #F6E5B3;
  font-size: 0.9rem;
  font-weight: 600;
}

/* line 1287, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-trust-band--partners .trust-logo {
  height: 40px;
  max-width: 140px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

/* line 1295, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-trust-band--partners .trust-logo:hover {
  opacity: 1;
}

/* Responsive Trust Band */
@media (max-width: 768px) {
  /* line 1303, app/assets/stylesheets/website/_orizon_landing.scss */
  .trust-band-logos {
    gap: 32px;
  }
  /* line 1307, app/assets/stylesheets/website/_orizon_landing.scss */
  .trust-logo {
    height: 24px;
    max-width: 80px;
  }
  /* line 1312, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-trust-band--partners .trust-logo {
    height: 32px;
    max-width: 100px;
  }
}

/* Responsive Hero CTA et BFM */
@media (max-width: 768px) {
  /* line 1320, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-hero-title--benefit {
    font-size: 2rem;
  }
  /* line 1324, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-hero-subtitle--value {
    font-size: 1.1rem;
  }
  /* line 1328, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  /* line 1332, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-hero-cta-group .btn-orizon {
    width: 100%;
    justify-content: center;
  }
  /* line 1338, app/assets/stylesheets/website/_orizon_landing.scss */
  .bfm-badge-content {
    flex-direction: column;
    text-align: center;
    padding: 16px;
  }
  /* line 1344, app/assets/stylesheets/website/_orizon_landing.scss */
  .bfm-badge-link {
    margin-top: 8px;
  }
}

/* Section droite : Interface simulée avec carrousel */
/* line 1350, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-hero-interface {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  justify-self: end;
  /* permet d'ancrer la colonne à droite quand le grid conserve 2 colonnes */
  margin-bottom: 2rem;
  /* Espacement supplémentaire vers le haut */
  /* Amélioration visuelle - effet de profondeur */
  position: relative;
}

/* line 1362, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-hero-interface::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: radial-gradient(ellipse at center, rgba(246, 229, 179, 0.08) 0%, transparent 70%);
  border-radius: 30px;
  z-index: -1;
  opacity: 0.6;
}

/* Citation inspirante */
/* line 1380, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-hero-quote {
  text-align: center;
  margin-top: 0.25rem;
}

/* line 1385, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-hero-quote p {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
  font-style: italic;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

/* line 1396, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-hero-quote p:hover {
  opacity: 1;
}

/* line 1400, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-app-window {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.95) 0%, rgba(100, 1, 39, 0.85) 100%);
  border-radius: 20px;
  padding: 0;
  /* Supprimer le padding pour occuper tout l'espace */
  border: 2px solid transparent;
  background-clip: padding-box;
  /* Bordure dégradée améliorée */
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.4), 0 4px 16px rgba(0, 0, 0, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.1);
  width: 100%;
  /* Remplacer 600px par 100% pour être responsive */
  max-width: 550px;
  /* Garder une largeur maximale */
  height: clamp(260px, 45vh, 400px);
  /* s'adapte à la hauteur viewport */
  display: flex;
  overflow: hidden;
  position: relative;
  /* Amélioration rendu - texture subtile */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* line 1411, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-app-window::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FF6B35 100%);
  border-radius: 22px;
  z-index: -1;
}

/* Container du carrousel */
/* line 1440, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-carousel-container {
  flex: 1;
  overflow: hidden;
  position: relative;
  background: none;
  /* Supprimer le background */
  /* Amélioration rendu - backdrop subtil pour masquer défauts */
}

/* line 1447, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-carousel-container::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(246, 229, 179, 0.05) 0%, rgba(255, 255, 255, 0.02) 50%, rgba(246, 229, 179, 0.03) 100%);
  border-radius: 16px;
  z-index: -1;
}

/* Track du carrousel */
/* line 1465, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-carousel-track {
  display: flex;
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  /* Utiliser CSS custom property pour le transform (CSP compliant) */
  transform: translateX(var(--carousel-translate, 0%));
}

/* Slides individuelles */
/* line 1474, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-carousel-slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  /* Supprimer le padding */
  box-sizing: border-box;
}

/* Contenu de chaque slide */
/* line 1484, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-carousel-content {
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 1493, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-carousel-image {
  width: 100%;
  /* Occuper toute la largeur */
  height: 100%;
  /* Occuper toute la hauteur */
  object-fit: cover;
  /* Garder les proportions et voir l'image entière */
  border-radius: 14px;
  /* Légèrement réduit pour s'adapter au padding de la carte */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border: none;
  /* Supprimer la bordure orange */
  /* Corrections détourage - atténuer pixels blancs */
  filter: contrast(1.1) saturate(1.05);
  transform: scale(1.02);
  /* Légère expansion pour masquer les bords */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  /* Anti-aliasing amélioré */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* Supprimer complètement le texte sous les images */
/* line 1515, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-carousel-text {
  display: none;
}

/* line 1519, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 1100px;
}

/* line 1525, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-hero-grid .span-2 {
  grid-column: span 2;
}

/* line 1526, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-hero-grid .cta {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 1527, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-hero-grid .ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  /* line 1530, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-hero-grid {
    grid-template-columns: 1fr;
  }
  /* line 1531, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-hero-grid .span-2 {
    grid-column: auto;
  }
}

/* line 1533, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-logo {
  font-size: 2rem;
  font-weight: 800;
}

/* line 1534, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-mission {
  max-width: 920px;
}

/* line 1535, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-promise {
  color: #A60240;
  font-weight: 600;
}

/* line 1537, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 1545, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-badges li {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.9rem;
  background: rgba(216, 27, 96, 0.18);
}

/* line 1553, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-banner {
  margin-top: 8px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 14px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Fonctionnalités */
/* line 1565, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

/* line 1570, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-features-group h3, .orizon-features-group .h3 {
  margin-bottom: 8px;
}

/* line 1571, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

/* line 1572, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.26);
  transform: translateY(0);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

/* line 1581, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-card:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 27, 96, 0.35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

/* line 1582, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-card:focus-within {
  outline: 2px solid rgba(216, 27, 96, 0.45);
  outline-offset: 2px;
}

/* line 1583, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-icon {
  width: 36px;
  height: 36px;
  vertical-align: middle;
  margin-right: 8px;
  border-radius: 8px;
}

/* line 1584, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-card-title {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 1585, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-card-desc {
  color: rgba(246, 246, 247, 0.75);
  font-size: 0.95rem;
  margin-top: 6px;
}

@media (max-width: 992px) {
  /* line 1588, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-features-grid {
    grid-template-columns: 1fr;
  }
}

/* Gestion des petits écrans en hauteur: éviter le chevauchement du CTA et du message */
@media (max-height: 780px) {
  /* line 1593, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-hero-content {
    position: static;
    /* sortir du positionnement absolu */
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    padding: 24px 60px;
    margin-top: clamp(72px, 5vw, 100px);
    /* décale uniquement le contenu, pas la vidéo */
  }
  /* line 1600, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-hero-layout {
    grid-template-columns: 1.25fr 0.75fr;
    /* conserve 2 colonnes en faible hauteur */
    align-items: start;
    gap: 24px;
  }
  /* line 1606, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-arrival-container {
    position: static !important;
    /* évite le chevauchement hors du flux */
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    max-width: 100% !important;
    width: 100% !important;
    margin-top: 12px;
    flex-direction: row;
    /* conserver le texte à droite du bouton */
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    /* pas de retour à la ligne */
  }
  /* line 1618, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-hero-title {
    font-size: 2rem;
  }
  /* line 1621, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-hero-title .orizen-logo-title {
    height: 36px;
    max-width: 200px;
    padding: 5px 10px;
  }
  /* line 1627, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-hero-subtitle {
    font-size: 2.1rem;
  }
}

@media (max-height: 640px) {
  /* line 1631, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-hero-title {
    font-size: 1.8rem;
  }
  /* line 1634, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-hero-title .orizen-logo-title {
    height: 32px;
    max-width: 180px;
    padding: 4px 8px;
  }
  /* line 1640, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-hero-subtitle {
    font-size: 1.8rem;
  }
  /* line 1641, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-hero-layout {
    grid-template-columns: 1.35fr 0.65fr;
  }
  /* line 1642, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-app-window {
    width: clamp(160px, 24vw, 240px);
    height: clamp(220px, 38vh, 360px);
  }
}

/* Responsive finitions */
@media (max-width: 992px) {
  /* line 1647, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-hero {
    min-height: 78vh;
  }
  /* line 1648, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-hero-video {
    height: 56vh;
  }
  /* line 1649, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-hero-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  /* line 1654, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-hero-title {
    font-size: 2rem;
  }
  /* line 1657, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-hero-title .orizen-logo-title {
    height: 36px;
    max-width: 200px;
    padding: 5px 10px;
  }
  /* line 1664, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-hero-subtitle {
    font-size: 2.5rem;
  }
  /* line 1668, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-app-window {
    width: 280px;
    height: 350px;
  }
  /* line 1672, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-logo {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  /* line 1675, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-hero {
    min-height: 100vh;
  }
  /* line 1676, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-hero-video {
    height: 48vh;
  }
  /* line 1677, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-hero-tagline {
    font-size: clamp(1.4rem, 6.5vw, 2rem);
    line-height: 1.15;
    letter-spacing: 0.2px;
  }
  /* line 1682, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-logo {
    font-size: 1.5rem;
  }
  /* line 1683, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-badges {
    justify-content: center;
  }
  /* line 1684, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-badges li {
    font-size: .85rem;
  }
  /* line 1685, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-hero-content {
    max-width: 95vw;
    padding: 12px;
  }
  /* line 1690, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-hero-title {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
    line-height: 1.15;
  }
  /* line 1694, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-hero-title .orizen-logo-title {
    height: 28px;
    max-width: 160px;
    padding: 4px 8px;
  }
  /* line 1701, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-hero-subtitle {
    font-size: clamp(1.2rem, 5.5vw, 1.6rem);
    line-height: 1.2;
  }
  /* line 1706, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-hero-description {
    font-size: clamp(0.9rem, 4vw, 1rem);
    line-height: 1.5;
    margin-bottom: 24px;
  }
  /* Empilement et illustration adaptable */
  /* line 1713, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-hero-layout {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  /* line 1714, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-hero-interface {
    width: 95%;
    padding: 0 6px;
  }
  /* line 1715, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-app-window {
    width: 100%;
    max-width: clamp(300px, 96vw, 560px);
    height: 68vh;
    aspect-ratio: 4 / 3;
    margin: 0 auto;
  }
  /* line 1723, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-feature-tags {
    gap: 8px;
    margin-bottom: 0;
    /* neutralise la marge basse en mobile */
  }
  /* line 1728, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-tag {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  /* line 1733, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-partners {
    gap: 12px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-left: 20px;
  }
  /* line 1734, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-partners-title {
    font-size: clamp(1rem, 3.8vw, 1.2rem);
  }
  /* line 1735, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-partner-logo {
    max-height: 22px;
    width: auto;
  }
  /* line 1737, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-app-window {
    min-width: 260px;
    height: 260px;
  }
  /* Mobile: masquer le message d'arrivée (CTA déplacé en navbar) */
  /* line 1743, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-arrival-container {
    display: none !important;
  }
  /* Partenaires: desktop vs mobile */
  /* line 1745, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-partners--mobile {
    display: block !important;
  }
  /* line 1746, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-partners--desktop {
    display: none !important;
  }
}

/* Desktop par défaut */
/* line 1750, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-partners--mobile {
  display: none;
}

/* line 1751, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-partners--desktop {
  display: block;
}

/* Rail de démos */
/* line 1754, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-rail {
  position: relative;
}

/* line 1755, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-rail-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  overflow-x: auto;
  gap: 16px;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}

/* line 1764, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-rail-item {
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.26);
  transform: translateY(0);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

/* line 1774, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-rail-item:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 27, 96, 0.35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

/* line 1775, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-rail-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 999px;
}

/* line 1782, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-rail-arrow--left {
  left: 8px;
}

/* line 1783, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-rail-arrow--right {
  right: 8px;
}

/* line 1784, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-rail-arrow[disabled] {
  opacity: 0.3;
  cursor: default;
}

/* line 1785, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-demo-thumb {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  background: radial-gradient(400px 200px at 20% 10%, rgba(216, 27, 96, 0.18), transparent), linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

/* Pricing */
/* line 1792, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-pricing {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* line 1796, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-pricing-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f6f6f7;
  position: relative;
  transform: translateY(0);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

/* line 1804, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 27, 96, 0.35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

/* line 1805, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, #d81b60, #6a1b9a);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* line 1812, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-pricing-card .price {
  font-weight: 700;
  font-size: 1.2rem;
  color: #d81b60;
}

/* line 1813, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-pricing-card.is-featured {
  box-shadow: 0 0 0 2px rgba(216, 27, 96, 0.25), 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* line 1814, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-pricing-card .badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(216, 27, 96, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: .8rem;
}

@media (max-width: 992px) {
  /* line 1815, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-pricing {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  /* line 1816, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-pricing {
    grid-template-columns: 1fr;
  }
}

/* Mission & fondateurs */
/* line 1819, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-founders {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* line 1820, app/assets/stylesheets/website/_orizon_landing.scss */
.founder {
  text-align: center;
}

/* line 1821, app/assets/stylesheets/website/_orizon_landing.scss */
.founder img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

@media (max-width: 768px) {
  /* line 1822, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-founders {
    grid-template-columns: 1fr;
  }
}

/* Accessibilité & reduced motion */
/* line 1825, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-rail-arrow:focus-visible,
.orizon-demo-link:focus-visible,
.btn.btn-three:focus-visible {
  outline: 2px solid rgba(216, 27, 96, 0.6);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  /* line 1830, app/assets/stylesheets/website/_orizon_landing.scss */
  .reveal [data-reveal-target=item],
.orizon-card,
.orizon-rail-item,
.orizon-pricing-card {
    transition: none;
    transform: none !important;
  }
  /* line 1834, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-hero-overlay,
.eco-sprout {
    animation: none;
  }
}

/* Flèches animées pour le scroll - Styles spécifiques et forts */
/* line 1839, app/assets/stylesheets/website/_orizon_landing.scss */
section.orizon-hero .arrow {
  position: fixed !important;
  /* Fixed au lieu de absolute pour être relatif à la fenêtre */
  bottom: 40px !important;
  /* Position fixe en bas de la fenêtre */
  right: 40px !important;
  /* Position fixe à droite de la fenêtre */
  z-index: 999 !important;
  /* Z-index très élevé pour s'assurer qu'elles sont au-dessus */
  cursor: pointer !important;
  transition: transform 0.3s ease, opacity 0.8s ease !important;
  animation: orizon-arrow-pulse 3s ease-in-out infinite !important;
  opacity: 0 !important;
  /* Cachées par défaut, apparaissent après la vidéo */
}

/* line 1850, app/assets/stylesheets/website/_orizon_landing.scss */
section.orizon-hero .arrow.visible {
  opacity: 1 !important;
  /* Force l'opacité */
}

/* line 1854, app/assets/stylesheets/website/_orizon_landing.scss */
section.orizon-hero .arrow:hover {
  transform: scale(1.1) !important;
  animation-play-state: paused !important;
}

@keyframes orizon-arrow-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* line 1864, app/assets/stylesheets/website/_orizon_landing.scss */
section.orizon-hero .arrow span {
  display: block !important;
  width: 1.2vw !important;
  height: 1.2vw !important;
  border-bottom: 3px solid rgba(255, 255, 255, 0.9) !important;
  border-right: 3px solid rgba(255, 255, 255, 0.9) !important;
  transform: rotate(45deg) !important;
  margin: -8px !important;
  animation: orizon-arrow-animate 2s infinite !important;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.4)) !important;
  transition: border-color 0.3s ease !important;
}

/* line 1877, app/assets/stylesheets/website/_orizon_landing.scss */
section.orizon-hero .arrow:hover span {
  border-color: white !important;
}

/* line 1881, app/assets/stylesheets/website/_orizon_landing.scss */
section.orizon-hero .arrow span:nth-child(2) {
  animation-delay: -0.2s !important;
}

/* line 1885, app/assets/stylesheets/website/_orizon_landing.scss */
section.orizon-hero .arrow span:nth-child(3) {
  animation-delay: -0.4s !important;
}

@keyframes orizon-arrow-animate {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-15px, -15px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(15px, 15px);
  }
}

/* Responsive pour les flèches */
@media (max-width: 768px) {
  /* line 1905, app/assets/stylesheets/website/_orizon_landing.scss */
  section.orizon-hero .arrow {
    bottom: 30px !important;
    /* Position fixe en bas sur mobile */
    right: 30px !important;
    /* Position fixe à droite sur mobile */
  }
  /* line 1910, app/assets/stylesheets/website/_orizon_landing.scss */
  section.orizon-hero .arrow span {
    width: 1.6vw !important;
    height: 1.6vw !important;
    border-bottom: 2.5px solid rgba(255, 255, 255, 0.9) !important;
    border-right: 2.5px solid rgba(255, 255, 255, 0.9) !important;
    margin: -6px !important;
  }
}

/* Masquer totalement la flèche de passage à la section suivante */
/* line 1920, app/assets/stylesheets/website/_orizon_landing.scss */
section.orizon-hero .arrow {
  display: none !important;
}

/* Modal de pré-inscription Orizen - styles isolés */
/* line 1924, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal, .orizon-soon-modal .mdp-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000000;
  /* Au-dessus de tout, y compris la navbar */
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  backdrop-filter: blur(8px);
}

/* line 1940, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal.active, .orizon-soon-modal .mdp-modal.active {
  display: flex !important;
  /* Force l'affichage */
  opacity: 1;
  pointer-events: auto;
}

/* line 1946, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content, .orizon-soon-modal .mdp-modal .modal-content {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
  color: white;
  border-radius: 20px;
  width: 95%;
  max-width: 950px;
  /* Modale élargie */
  max-height: 95vh;
  /* Limiter la hauteur à 80% de la fenêtre */
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  /* Ajouter un scroll vertical si nécessaire */
  overflow-x: hidden;
  /* Pas de scroll horizontal */
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  transform: scale(0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  /* Supprimer tout <hr> éventuel dans l'en-tête/la modale */
}

/* line 1962, app/assets/stylesheets/website/_orizon_landing.scss */
.mdp-modal.active .orizon-preinscription-modal .mdp-modal .modal-content, .mdp-modal.active .orizon-soon-modal .mdp-modal .modal-content {
  transform: scale(1);
}

/* line 1966, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .close, .orizon-soon-modal .mdp-modal .modal-content .close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 1.8rem;
  font-weight: 300;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  padding: 8px;
  width: 40px;
  height: 40px;
  display: flex !important;
  /* Force l'affichage */
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 100000;
  /* Z-index très élevé pour être au-dessus de la modale */
  backdrop-filter: blur(10px);
  pointer-events: auto;
  /* S'assurer que le bouton est cliquable */
  user-select: none;
  /* Empêcher la sélection de texte */
}

/* line 1989, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .close:hover, .orizon-soon-modal .mdp-modal .modal-content .close:hover {
  color: white;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

/* line 1995, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .close:active, .orizon-soon-modal .mdp-modal .modal-content .close:active {
  transform: scale(0.95);
}

/* line 2000, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-header, .orizon-soon-modal .mdp-modal .modal-content .modal-header {
  padding: 1rem 1.75rem 0.5rem;
  /* Compacte pour réduire l'espace */
  text-align: center;
  margin-bottom: 0 !important;
}

/* line 2005, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-header orizon-title, .orizon-soon-modal .mdp-modal .modal-content .modal-header orizon-title {
  border-bottom: none !important;
}

/* line 2009, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-header h2, .orizon-preinscription-modal .mdp-modal .modal-content .modal-header .h2, .orizon-soon-modal .mdp-modal .modal-content .modal-header h2, .orizon-soon-modal .mdp-modal .modal-content .modal-header .h2 {
  margin: 0 0 0 0 !important;
  /* retirer le margin-bottom du titre */
  font-size: 1.6rem;
  /* Taille réduite */
  font-weight: 700;
  color: #F6E5B3;
  /* Couleur des titres de section */
  border-bottom: none !important;
  /* supprimer la bordure sous le h2 */
  white-space: nowrap !important;
  /* éviter le retour à la ligne */
}

/* line 2018, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-header .modal-subtitle, .orizon-soon-modal .mdp-modal .modal-content .modal-header .modal-subtitle {
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin: 6px 0 0 0 !important;
  /* légère marge au-dessus pour ergonomie */
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  /* Légèrement rehaussée */
  font-weight: 400;
}

/* line 2031, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-header hr,
.orizon-preinscription-modal .mdp-modal .modal-content hr, .orizon-soon-modal .mdp-modal .modal-content .modal-header hr,
.orizon-soon-modal .mdp-modal .modal-content hr {
  display: none !important;
}

/* line 2036, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form, .orizon-soon-modal .mdp-modal .modal-content .modal-form {
  padding: 0.75rem 1.5rem;
  /* Réduction espace global */
  max-height: calc(80vh - 160px);
  /* Hauteur optimisée avec 80vh */
  overflow-y: auto;
  /* Scroll interne si nécessaire */
  /* Style du scroll */
  /* Layout en 3 colonnes puis 1 pour le message */
  /* Assistants intelligents */
  /* Checkbox personnalisé */
  /* Boutons d'action */
}

/* line 2042, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form::-webkit-scrollbar, .orizon-soon-modal .mdp-modal .modal-content .modal-form::-webkit-scrollbar {
  width: 6px;
}

/* line 2046, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form::-webkit-scrollbar-track, .orizon-soon-modal .mdp-modal .modal-content .modal-form::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

/* line 2051, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form::-webkit-scrollbar-thumb, .orizon-soon-modal .mdp-modal .modal-content .modal-form::-webkit-scrollbar-thumb {
  background: rgba(246, 229, 179, 0.5);
  border-radius: 3px;
}

/* line 2055, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form::-webkit-scrollbar-thumb:hover, .orizon-soon-modal .mdp-modal .modal-content .modal-form::-webkit-scrollbar-thumb:hover {
  background: rgba(246, 229, 179, 0.8);
}

/* line 2061, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form .form-row, .orizon-soon-modal .mdp-modal .modal-content .modal-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  /* 3 colonnes par défaut */
  gap: 1rem;
  /* Espace réduit */
  margin-bottom: 0.75rem;
}

@media (max-width: 992px) {
  /* line 2061, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-preinscription-modal .mdp-modal .modal-content .modal-form .form-row, .orizon-soon-modal .mdp-modal .modal-content .modal-form .form-row {
    grid-template-columns: 1fr 1fr;
    /* 2 colonnes sur tablette */
  }
}

@media (max-width: 600px) {
  /* line 2061, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-preinscription-modal .mdp-modal .modal-content .modal-form .form-row, .orizon-soon-modal .mdp-modal .modal-content .modal-form .form-row {
    grid-template-columns: 1fr;
    /* 1 colonne sur mobile */
  }
}

/* line 2075, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form .form-group, .orizon-soon-modal .mdp-modal .modal-content .modal-form .form-group {
  margin-bottom: 0rem !important;
  /* Espacement réduit */
  position: relative;
  /* Champs qui prennent toute la largeur */
}

/* line 2080, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form .form-group.full-width, .orizon-soon-modal .mdp-modal .modal-content .modal-form .form-group.full-width {
  grid-column: 1 / -1;
}

/* line 2082, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form .form-group .required::after, .orizon-soon-modal .mdp-modal .modal-content .modal-form .form-group .required::after {
  content: " *";
  color: #FF6B35;
  font-weight: 700;
}

/* line 2088, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form .form-group .label-icon, .orizon-soon-modal .mdp-modal .modal-content .modal-form .form-group .label-icon {
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

/* line 2093, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form .form-group label, .orizon-soon-modal .mdp-modal .modal-content .modal-form .form-group label {
  display: block;
  color: white;
  margin-bottom: 0.5rem;
  /* Espacement réduit */
  font-weight: 600;
  font-size: 0.9rem;
  /* Taille réduite */
  letter-spacing: 0.3px;
  /* Espacement des lettres réduit */
  text-transform: none;
  /* Pas de transformation automatique */
  /* Première lettre en majuscule seulement */
}

/* line 2103, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form .form-group label::first-letter, .orizon-soon-modal .mdp-modal .modal-content .modal-form .form-group label::first-letter {
  text-transform: uppercase;
}

/* line 2108, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form .form-group .input-wrapper, .orizon-soon-modal .mdp-modal .modal-content .modal-form .form-group .input-wrapper {
  position: relative;
}

/* line 2112, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form .form-group input, .orizon-preinscription-modal .mdp-modal .modal-content .modal-form .form-group textarea, .orizon-soon-modal .mdp-modal .modal-content .modal-form .form-group input, .orizon-soon-modal .mdp-modal .modal-content .modal-form .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  /* Padding uniforme */
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  /* Border radius uniforme */
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 0.95rem;
  /* Taille uniforme */
  transition: all 0.3s ease;
  box-sizing: border-box;
  backdrop-filter: blur(10px);
  min-height: 48px;
  /* Hauteur uniforme pour tous les champs */
}

/* line 2125, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form .form-group input:focus, .orizon-preinscription-modal .mdp-modal .modal-content .modal-form .form-group textarea:focus, .orizon-soon-modal .mdp-modal .modal-content .modal-form .form-group input:focus, .orizon-soon-modal .mdp-modal .modal-content .modal-form .form-group textarea:focus {
  outline: none;
  border-color: #F6E5B3;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(246, 229, 179, 0.15);
  transform: translateY(-2px);
}

/* line 2133, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form .form-group input:valid, .orizon-preinscription-modal .mdp-modal .modal-content .modal-form .form-group textarea:valid, .orizon-soon-modal .mdp-modal .modal-content .modal-form .form-group input:valid, .orizon-soon-modal .mdp-modal .modal-content .modal-form .form-group textarea:valid {
  border-color: rgba(76, 175, 80, 0.6);
}

/* line 2137, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form .form-group input:invalid:not(:placeholder-shown), .orizon-preinscription-modal .mdp-modal .modal-content .modal-form .form-group textarea:invalid:not(:placeholder-shown), .orizon-soon-modal .mdp-modal .modal-content .modal-form .form-group input:invalid:not(:placeholder-shown), .orizon-soon-modal .mdp-modal .modal-content .modal-form .form-group textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(244, 67, 54, 0.6);
}

/* line 2141, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form .form-group input::placeholder, .orizon-preinscription-modal .mdp-modal .modal-content .modal-form .form-group textarea::placeholder, .orizon-soon-modal .mdp-modal .modal-content .modal-form .form-group input::placeholder, .orizon-soon-modal .mdp-modal .modal-content .modal-form .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

/* line 2147, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form .form-group textarea, .orizon-soon-modal .mdp-modal .modal-content .modal-form .form-group textarea {
  resize: vertical;
  min-height: 80px;
  /* Hauteur réduite mais uniforme */
  font-family: inherit;
}

/* line 2153, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form .form-group .validation-message, .orizon-soon-modal .mdp-modal .modal-content .modal-form .form-group .validation-message {
  font-size: 0.85rem;
  min-height: 1.2rem;
  transition: all 0.3s ease;
}

/* line 2158, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form .form-group .validation-message.error, .orizon-soon-modal .mdp-modal .modal-content .modal-form .form-group .validation-message.error {
  color: #FF6B35;
  animation: shake 0.5s ease-in-out;
}

/* line 2163, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form .form-group .validation-message.success, .orizon-soon-modal .mdp-modal .modal-content .modal-form .form-group .validation-message.success {
  color: #4CAF50;
}

/* line 2170, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form .email-assistant, .orizon-preinscription-modal .mdp-modal .modal-content .modal-form .phone-assistant, .orizon-soon-modal .mdp-modal .modal-content .modal-form .email-assistant, .orizon-soon-modal .mdp-modal .modal-content .modal-form .phone-assistant {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  border-radius: 12px;
  padding: 1rem;
  margin-top: 0.5rem;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 2187, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form .email-assistant.visible, .orizon-preinscription-modal .mdp-modal .modal-content .modal-form .phone-assistant.visible, .orizon-soon-modal .mdp-modal .modal-content .modal-form .email-assistant.visible, .orizon-soon-modal .mdp-modal .modal-content .modal-form .phone-assistant.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* line 2193, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form .email-assistant .assistant-icon, .orizon-preinscription-modal .mdp-modal .modal-content .modal-form .phone-assistant .assistant-icon, .orizon-soon-modal .mdp-modal .modal-content .modal-form .email-assistant .assistant-icon, .orizon-soon-modal .mdp-modal .modal-content .modal-form .phone-assistant .assistant-icon {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* line 2198, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form .email-assistant .assistant-content, .orizon-preinscription-modal .mdp-modal .modal-content .modal-form .phone-assistant .assistant-content, .orizon-soon-modal .mdp-modal .modal-content .modal-form .email-assistant .assistant-content, .orizon-soon-modal .mdp-modal .modal-content .modal-form .phone-assistant .assistant-content {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* line 2204, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form .email-assistant .assistant-suggestion, .orizon-preinscription-modal .mdp-modal .modal-content .modal-form .phone-assistant .assistant-suggestion, .orizon-soon-modal .mdp-modal .modal-content .modal-form .email-assistant .assistant-suggestion, .orizon-soon-modal .mdp-modal .modal-content .modal-form .phone-assistant .assistant-suggestion {
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
  border: 1px solid transparent;
}

/* line 2213, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form .email-assistant .assistant-suggestion:hover, .orizon-preinscription-modal .mdp-modal .modal-content .modal-form .phone-assistant .assistant-suggestion:hover, .orizon-soon-modal .mdp-modal .modal-content .modal-form .email-assistant .assistant-suggestion:hover, .orizon-soon-modal .mdp-modal .modal-content .modal-form .phone-assistant .assistant-suggestion:hover {
  background: rgba(246, 229, 179, 0.2);
  border-color: #F6E5B3;
  transform: scale(1.05);
}

/* line 2222, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form .checkbox-group, .orizon-soon-modal .mdp-modal .modal-content .modal-form .checkbox-group {
  margin: 0.5rem 0;
  /* Espacement plus compact */
}

/* line 2225, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form .checkbox-group .checkbox-label, .orizon-soon-modal .mdp-modal .modal-content .modal-form .checkbox-group .checkbox-label {
  display: flex;
  align-items: center;
  /* aligner verticalement la case */
  cursor: pointer;
  gap: 0.5rem;
  padding: 0.25rem 0;
  /* État cochée */
  /* Coche visible en SVG-like via bordures */
  /* Hover sur la checkbox */
}

/* line 2232, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form .checkbox-group .checkbox-label input[type="checkbox"], .orizon-soon-modal .mdp-modal .modal-content .modal-form .checkbox-group .checkbox-label input[type="checkbox"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 14px !important;
  height: 14px !important;
  min-width: 14px !important;
  min-height: 14px !important;
  box-sizing: content-box !important;
  /* évite l'influence d'un min-height global */
  padding: 0 !important;
  border: 2px solid #F6E5B3 !important;
  border-radius: 3px !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  display: inline-block !important;
  position: relative !important;
  vertical-align: middle !important;
  cursor: pointer;
  margin: 0 8px 0 0 !important;
  line-height: normal !important;
}

/* line 2254, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form .checkbox-group .checkbox-label .checkmark, .orizon-soon-modal .mdp-modal .modal-content .modal-form .checkbox-group .checkbox-label .checkmark {
  display: none;
}

/* line 2257, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form .checkbox-group .checkbox-label input[type="checkbox"]:checked, .orizon-soon-modal .mdp-modal .modal-content .modal-form .checkbox-group .checkbox-label input[type="checkbox"]:checked {
  background: #F6E5B3 !important;
  border-color: #F6E5B3 !important;
}

/* line 2263, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form .checkbox-group .checkbox-label input[type="checkbox"]:checked::after, .orizon-soon-modal .mdp-modal .modal-content .modal-form .checkbox-group .checkbox-label input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: -1px;
  /* centre verticalement dans 14px */
  left: 3px;
  width: 5px;
  height: 9px;
  border: solid #1a1a1a;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  display: block;
}

/* line 2277, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form .checkbox-group .checkbox-label:hover .checkmark, .orizon-soon-modal .mdp-modal .modal-content .modal-form .checkbox-group .checkbox-label:hover .checkmark {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

/* line 2282, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form .checkbox-group .checkbox-label .checkbox-text, .orizon-soon-modal .mdp-modal .modal-content .modal-form .checkbox-group .checkbox-label .checkbox-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.2;
}

/* line 2291, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form .form-actions, .orizon-soon-modal .mdp-modal .modal-content .modal-form .form-actions {
  margin-top: 0.25rem;
  /* Espacement réduit avec la checkbox */
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  align-items: center;
}

/* line 2298, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form .form-actions .btn, .orizon-soon-modal .mdp-modal .modal-content .modal-form .form-actions .btn {
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* line 2309, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form .form-actions .btn:disabled, .orizon-soon-modal .mdp-modal .modal-content .modal-form .form-actions .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* line 2316, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form .form-actions .btn-cancel, .orizon-soon-modal .mdp-modal .modal-content .modal-form .form-actions .btn-cancel {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 2321, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form .form-actions .btn-cancel:hover:not(:disabled), .orizon-soon-modal .mdp-modal .modal-content .modal-form .form-actions .btn-cancel:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transform: translateY(-2px);
}

/* line 2328, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form .form-actions .btn-submit, .orizon-soon-modal .mdp-modal .modal-content .modal-form .form-actions .btn-submit {
  /* Couleur cohérente avec le CTA hero */
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: #ffffff;
  /* aligné avec le CTA hero */
  min-width: 200px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  /* idem héros */
  border: none;
}

/* line 2336, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form .form-actions .btn-submit:hover:not(:disabled), .orizon-soon-modal .mdp-modal .modal-content .modal-form .form-actions .btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  /* idem héros */
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
}

/* line 2342, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form .form-actions .btn-submit:active:not(:disabled), .orizon-soon-modal .mdp-modal .modal-content .modal-form .form-actions .btn-submit:active:not(:disabled) {
  transform: translateY(-1px);
}

/* line 2346, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form .form-actions .btn-submit .btn-loading, .orizon-soon-modal .mdp-modal .modal-content .modal-form .form-actions .btn-submit .btn-loading {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* line 2352, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form .form-actions .btn-submit .btn-loading.visible, .orizon-soon-modal .mdp-modal .modal-content .modal-form .form-actions .btn-submit .btn-loading.visible {
  display: flex;
}

/* line 2356, app/assets/stylesheets/website/_orizon_landing.scss */
.orizon-preinscription-modal .mdp-modal .modal-content .modal-form .form-actions .btn-submit .btn-loading .spinner, .orizon-soon-modal .mdp-modal .modal-content .modal-form .form-actions .btn-submit .btn-loading .spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(26, 26, 26, 0.3);
  border-top: 2px solid #1a1a1a;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Animations */
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

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

/* Responsive */
@media (max-width: 768px) {
  /* line 2386, app/assets/stylesheets/website/_orizon_landing.scss */
  .mdp-modal .modal-content {
    width: 95%;
    max-width: none;
    margin: 1rem;
  }
  /* line 2391, app/assets/stylesheets/website/_orizon_landing.scss */
  .mdp-modal .modal-content .modal-header {
    padding: 1.5rem 1.5rem 1rem;
  }
  /* line 2394, app/assets/stylesheets/website/_orizon_landing.scss */
  .mdp-modal .modal-content .modal-header h2, .mdp-modal .modal-content .modal-header .h2 {
    font-size: 1.5rem;
  }
  /* line 2399, app/assets/stylesheets/website/_orizon_landing.scss */
  .mdp-modal .modal-content .modal-form {
    padding: 1.5rem;
  }
  /* line 2402, app/assets/stylesheets/website/_orizon_landing.scss */
  .mdp-modal .modal-content .modal-form .form-actions {
    flex-direction: column;
  }
  /* line 2405, app/assets/stylesheets/website/_orizon_landing.scss */
  .mdp-modal .modal-content .modal-form .form-actions .btn {
    width: 100%;
  }
}

/* Responsive pour les flèches */
@media (max-width: 768px) {
  /* line 2415, app/assets/stylesheets/website/_orizon_landing.scss */
  section.orizon-hero .arrow {
    bottom: 30px !important;
    /* Position fixe en bas sur mobile */
    right: 30px !important;
    /* Position fixe à droite sur mobile */
  }
  /* line 2420, app/assets/stylesheets/website/_orizon_landing.scss */
  section.orizon-hero .arrow span {
    width: 1.6vw !important;
    height: 1.6vw !important;
    border-bottom: 2.5px solid rgba(255, 255, 255, 0.9) !important;
    border-right: 2.5px solid rgba(255, 255, 255, 0.9) !important;
    margin: -6px !important;
  }
}

/* Responsive pour la modale Orizen */
@media (max-width: 768px) {
  /* line 2431, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-preinscription-modal .mdp-modal .modal-content,
.orizon-soon-modal .mdp-modal .modal-content {
    width: 95%;
    max-width: none;
    margin: 1rem;
  }
  /* line 2437, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-preinscription-modal .mdp-modal .modal-content .modal-header,
.orizon-soon-modal .mdp-modal .modal-content .modal-header {
    padding: 1.5rem 1.5rem 1rem;
  }
  /* line 2440, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-preinscription-modal .mdp-modal .modal-content .modal-header h2, .orizon-preinscription-modal .mdp-modal .modal-content .modal-header .h2,
.orizon-soon-modal .mdp-modal .modal-content .modal-header h2,
.orizon-soon-modal .mdp-modal .modal-content .modal-header .h2 {
    font-size: 1.5rem;
  }
  /* line 2445, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-preinscription-modal .mdp-modal .modal-content .modal-form,
.orizon-soon-modal .mdp-modal .modal-content .modal-form {
    padding: 1.5rem;
  }
  /* line 2448, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-preinscription-modal .mdp-modal .modal-content .modal-form .form-actions,
.orizon-soon-modal .mdp-modal .modal-content .modal-form .form-actions {
    flex-direction: column;
  }
  /* line 2451, app/assets/stylesheets/website/_orizon_landing.scss */
  .orizon-preinscription-modal .mdp-modal .modal-content .modal-form .form-actions .btn,
.orizon-soon-modal .mdp-modal .modal-content .modal-form .form-actions .btn {
    width: 100%;
  }
}

/* Section Fonctionnalités Orizen - Design moderne avec onglets et carrousel */
/* line 2461, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section {
  padding: 0;
  height: 110vh;
  /* Augmenté de 100vh à 110vh pour plus d'espace */
  position: relative;
  overflow: hidden;
  /* Style pour la citation sous le sous-titre */
  /* Style pour les badges sous le sous-titre */
}

/* line 2469, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section #fonctionnalites.orizon-section {
  height: 110vh;
  position: relative;
  overflow: hidden;
}

/* line 2476, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .features-header-spacer {
  height: 40px;
}

/* line 2480, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .features-container {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  gap: 10px;
}

/* line 2491, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .section-subtitle {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 25px 0;
  color: #F6E5B3;
  line-height: 1.1;
  max-width: 800px;
  letter-spacing: 0.5px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* line 2505, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .features-quote {
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin: 0.8rem auto 2rem auto;
  padding: 0;
  border: none;
  background: none;
  font-family: inherit;
  max-width: 600px;
  line-height: 1.4;
}

/* line 2519, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .features-quote em {
  font-style: italic;
  color: rgba(246, 229, 179, 0.9);
}

/* line 2525, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .subtitle-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.8rem 0 1rem 0;
}

/* line 2533, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .subtitle-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-size: 0.8rem;
  color: #e8e8e8;
  font-weight: 400;
  backdrop-filter: blur(8px);
  transition: all 0.2s ease;
}

/* line 2547, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .subtitle-badge:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(246, 229, 179, 0.3);
  color: rgba(246, 229, 179, 0.9);
}

/* line 2554, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .features-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

/* line 2563, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .tab-button {
  position: relative;
  padding: 0.75rem 1.25rem;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  min-width: auto;
}

/* line 2581, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .tab-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(246, 229, 179, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
  z-index: -1;
}

/* line 2595, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .tab-button:active::before {
  width: 200px;
  height: 200px;
}

/* line 2600, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .tab-button:active {
  transform: scale(0.95);
}

/* line 2604, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .tab-button:hover {
  color: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

/* line 2609, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .tab-button.active {
  color: #F6E5B3;
  font-weight: 500;
}

/* line 2615, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .tab-text {
  font-size: 1rem;
  font-weight: inherit;
  letter-spacing: 0.5px;
}

/* line 2621, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .tab-chevron {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: all 0.2s ease;
  opacity: 0.8;
}

/* line 2631, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .tab-button:hover .tab-chevron {
  opacity: 1;
  transform: translateY(1px);
}

/* line 2636, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .tab-button.active .tab-chevron {
  opacity: 1;
  transform: rotate(180deg);
}

/* line 2642, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .features-content {
  position: relative;
  height: calc(28vh);
}

/* line 2649, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .features-carousel {
  display: none;
  height: 100%;
}

/* line 2653, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .features-carousel.active {
  display: block;
}

/* line 2658, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .carousel-wrapper {
  height: auto;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.2rem;
  margin-bottom: 4rem;
}

/* line 2669, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .carousel-track {
  display: flex;
  gap: 1.5rem;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: max-content;
  will-change: transform;
}

/* line 2678, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .carousel-track.continuous-scroll {
  animation: continuous-scroll 60s linear infinite;
  animation-play-state: running;
}

/* line 2683, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .carousel-track.paused {
  animation-play-state: paused !important;
}

/* line 2688, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .carousel-track:hover {
  animation-play-state: paused;
}

@keyframes continuous-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* line 2704, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .feature-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 280px;
  max-width: 320px;
  min-height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  flex-shrink: 0;
  height: fit-content;
  position: relative;
  overflow: hidden;
  opacity: 0.7;
  transform: scale(0.95);
  transition: filter 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), border 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), backdrop-filter 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* line 2719, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
  border-radius: 12px;
  z-index: -1;
  opacity: 1;
  transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 2734, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(246, 229, 179, 0.1) 0%, rgba(246, 229, 179, 0.05) 100%);
  border-radius: 12px;
  z-index: -1;
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 2762, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .feature-card.card-focused {
  filter: blur(0) !important;
  opacity: 1 !important;
  transform: scale(1.05) !important;
  box-shadow: 0 20px 40px rgba(246, 229, 179, 0.3);
  z-index: 10;
  border: 2px solid rgba(246, 229, 179, 0.6);
  transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* line 2771, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .feature-card.card-focused::before {
  opacity: 0;
}

/* line 2775, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .feature-card.card-focused::after {
  opacity: 1;
}

/* line 2782, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .feature-card.card-focused .feature-title {
  color: #F6E5B3;
  text-shadow: 0 0 15px rgba(246, 229, 179, 0.5);
  font-weight: 700;
}

/* line 2788, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .feature-card.card-focused .feature-icon {
  color: #F6E5B3;
  filter: drop-shadow(0 0 12px rgba(246, 229, 179, 0.6));
  transform: scale(1.1);
}

/* line 2796, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .feature-card.card-blurred {
  transform: scale(0.95);
  opacity: 0.7;
  z-index: 1;
  transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* line 2802, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .feature-card.card-blurred::before {
  opacity: 0.3;
}

/* line 2806, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .feature-card.card-blurred::after {
  opacity: 0;
}

/* line 2814, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .feature-card:hover {
  filter: blur(0) !important;
  opacity: 1 !important;
  transform: translateY(-4px) scale(1.03) !important;
  box-shadow: 0 15px 30px rgba(246, 229, 179, 0.2);
  z-index: 5;
  border: 1px solid rgba(246, 229, 179, 0.3);
  transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* line 2823, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .feature-card:hover::before {
  opacity: 0.8;
}

/* line 2827, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .feature-card:hover::after {
  opacity: 0.5;
}

/* line 2836, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .feature-card .feature-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

/* line 2844, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .feature-card .feature-icon {
  font-size: 1.8rem;
  color: #F6E5B3;
  opacity: 0.9;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

/* line 2852, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .feature-card .feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #F6E5B3;
  margin: 0;
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

/* line 2862, app/assets/stylesheets/website/_orizon_landing.scss */
#fonctionnalites.orizon-section .feature-card .feature-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  opacity: 0.9;
  transition: all 0.3s ease;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Ecrans à faible hauteur: allonger la section et libérer les cartes */
@media (max-height: 780px) {
  /* line 2899, app/assets/stylesheets/website/_orizon_landing.scss */
  #fonctionnalites.orizon-section {
    height: auto;
    /* au lieu de 100vh */
    min-height: 110vh;
    /* augmenté de 100vh à 110vh pour plus d'espace */
    padding: 24px 0;
    /* marges réduites */
  }
  /* line 2904, app/assets/stylesheets/website/_orizon_landing.scss */
  #fonctionnalites.orizon-section .features-content {
    height: auto;
    /* plus de calc(31vh) */
    min-height: 0;
    max-width: 85%;
    left: 10%;
  }
  /* line 2910, app/assets/stylesheets/website/_orizon_landing.scss */
  #fonctionnalites.orizon-section .carousel-wrapper {
    height: auto;
    padding: 1.2rem;
    margin-bottom: 3.5rem;
  }
  /* line 2911, app/assets/stylesheets/website/_orizon_landing.scss */
  #fonctionnalites.orizon-section .carousel-track {
    height: auto;
    align-items: stretch;
  }
  /* line 2912, app/assets/stylesheets/website/_orizon_landing.scss */
  #fonctionnalites.orizon-section .feature-card {
    min-height: clamp(200px, 35vh, 280px);
  }
}

/* Classes utilitaires pour remplacer les styles inline (CSP compliance) */
/* Display utilities */
/* line 2917, app/assets/stylesheets/website/_orizon_landing.scss */
.hidden {
  display: none !important;
}

/* line 2918, app/assets/stylesheets/website/_orizon_landing.scss */
.block {
  display: block !important;
}

/* line 2919, app/assets/stylesheets/website/_orizon_landing.scss */
.flex {
  display: flex !important;
}

/* line 2920, app/assets/stylesheets/website/_orizon_landing.scss */
.inline-block {
  display: inline-block !important;
}

/* Opacity utilities */
/* line 2923, app/assets/stylesheets/website/_orizon_landing.scss */
.opacity-0 {
  opacity: 0 !important;
}

/* line 2924, app/assets/stylesheets/website/_orizon_landing.scss */
.opacity-1 {
  opacity: 1 !important;
}

/* Visibility utilities */
/* line 2927, app/assets/stylesheets/website/_orizon_landing.scss */
.visibility-hidden {
  visibility: hidden !important;
}

/* line 2928, app/assets/stylesheets/website/_orizon_landing.scss */
.visibility-visible {
  visibility: visible !important;
}

/* Transition utilities */
/* line 2931, app/assets/stylesheets/website/_orizon_landing.scss */
.transition-opacity-2s {
  transition: opacity 2s ease !important;
}

/* line 2932, app/assets/stylesheets/website/_orizon_landing.scss */
.transition-opacity-1s {
  transition: opacity 1s ease-in-out !important;
}

/* line 2933, app/assets/stylesheets/website/_orizon_landing.scss */
.transition-opacity-visibility-1s {
  transition: opacity 1s ease, visibility 1s ease !important;
}

/* line 2934, app/assets/stylesheets/website/_orizon_landing.scss */
.transition-opacity-visibility-08s {
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out !important;
}

/* line 2935, app/assets/stylesheets/website/_orizon_landing.scss */
.transition-opacity-02s {
  transition: opacity 0.2s ease-in-out !important;
}

/* Z-index utilities */
/* line 2938, app/assets/stylesheets/website/_orizon_landing.scss */
.z-index-10 {
  z-index: 10 !important;
}

/* Overflow utilities */
/* line 2941, app/assets/stylesheets/website/_orizon_landing.scss */
.body-overflow-hidden {
  overflow: hidden !important;
}

/* line 2942, app/assets/stylesheets/website/_orizon_landing.scss */
.body-overflow-auto {
  overflow: auto !important;
}

/* Video utilities */
/* line 2945, app/assets/stylesheets/website/_orizon_landing.scss */
.video-fade-out {
  opacity: 0 !important;
  transition: opacity 2s ease !important;
}

/* line 2946, app/assets/stylesheets/website/_orizon_landing.scss */
.video-object-fit-cover {
  object-fit: cover !important;
}

/* line 2947, app/assets/stylesheets/website/_orizon_landing.scss */
.video-object-position-center {
  object-position: center !important;
}

/* Overlay utilities */
/* line 2950, app/assets/stylesheets/website/_orizon_landing.scss */
.overlay-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity 1s ease, visibility 1s ease !important;
}

/* line 2956, app/assets/stylesheets/website/_orizon_landing.scss */
.overlay-visible {
  visibility: visible !important;
  opacity: 1 !important;
  transition: opacity 0.8s ease-in-out !important;
  z-index: 10 !important;
}

/* Content wrapper utilities */
/* line 2964, app/assets/stylesheets/website/_orizon_landing.scss */
.content-wrapper-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
}

/* line 2969, app/assets/stylesheets/website/_orizon_landing.scss */
.content-wrapper-visible {
  visibility: visible !important;
  opacity: 1 !important;
  transition: opacity 1s ease-in-out !important;
}

/* line 2975, app/assets/stylesheets/website/_orizon_landing.scss */
.content-wrapper-visible-fast {
  visibility: visible !important;
  opacity: 1 !important;
  transition: opacity 0.2s ease-in-out !important;
}

/* Placeholder utilities */
/* line 2982, app/assets/stylesheets/website/_orizon_landing.scss */
.placeholder-hidden {
  opacity: 0 !important;
  transition: opacity 0.8s ease !important;
}

/* line 2987, app/assets/stylesheets/website/_orizon_landing.scss */
.placeholder-visible {
  opacity: 1 !important;
  transition: opacity 0.8s ease !important;
}

/* Arrow utilities */
/* line 2993, app/assets/stylesheets/website/_orizon_landing.scss */
.arrow-hidden {
  display: none !important;
}

/* line 2994, app/assets/stylesheets/website/_orizon_landing.scss */
.arrow-visible {
  display: block !important;
}

/* Animation utilities */
/* line 2997, app/assets/stylesheets/website/_orizon_landing.scss */
.animation-shake {
  animation: shake 0.5s ease-in-out !important;
}

/* Carousel transform - doit être géré via data attribute ou classe dynamique */
/* line 3002, app/assets/stylesheets/website/_orizon_landing.scss */
.carousel-transform-0 {
  transform: translateX(0%) !important;
}

/* line 3003, app/assets/stylesheets/website/_orizon_landing.scss */
.carousel-transform-100 {
  transform: translateX(-100%) !important;
}

/* line 3004, app/assets/stylesheets/website/_orizon_landing.scss */
.carousel-transform-200 {
  transform: translateX(-200%) !important;
}

/* line 3005, app/assets/stylesheets/website/_orizon_landing.scss */
.carousel-transform-300 {
  transform: translateX(-300%) !important;
}

/* Fallback image utilities */
/* line 3008, app/assets/stylesheets/website/_orizon_landing.scss */
.fallback-image {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  background-size: cover !important;
  background-position: center !important;
  z-index: 1 !important;
}

/* Page de pré-inscription – cohérente avec la page contact */
/* line 3, app/assets/stylesheets/website/_preinscription.scss */
body:has(.preinscription-page) {
  min-height: 100vh;
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
  color: #FFFFFF;
  overflow-x: hidden;
  overflow-y: auto;
}

/* line 11, app/assets/stylesheets/website/_preinscription.scss */
.preinscription-page {
  min-height: 100vh;
  padding: 0;
  margin: 0;
  overflow: visible;
}

/* line 18, app/assets/stylesheets/website/_preinscription.scss */
.preinscription-header {
  max-width: 760px;
  margin: 24px auto 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* line 28, app/assets/stylesheets/website/_preinscription.scss */
.preinscription-actions {
  align-self: flex-start;
  margin-bottom: 8px;
}

/* line 33, app/assets/stylesheets/website/_preinscription.scss */
.preinscription-title {
  text-align: center;
  color: #F6E5B3;
  font-weight: 700;
  font-size: 1.8rem;
  margin: 0;
}

/* line 41, app/assets/stylesheets/website/_preinscription.scss */
.preinscription-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin: 0;
}

/* line 48, app/assets/stylesheets/website/_preinscription.scss */
.preinscription-container-card {
  max-width: 760px;
  margin: 24px auto 56px auto;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  overflow: visible;
  min-height: auto;
}

/* line 61, app/assets/stylesheets/website/_preinscription.scss */
.preinscription-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

/* line 68, app/assets/stylesheets/website/_preinscription.scss */
.preinscription-highlights {
  display: grid;
  gap: 12px;
  margin-bottom: 12px;
}

/* line 74, app/assets/stylesheets/website/_preinscription.scss */
.preinscription-highlights li {
  list-style: none;
  color: rgba(255, 255, 255, 0.9);
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  align-items: center;
}

/* line 83, app/assets/stylesheets/website/_preinscription.scss */
.preinscription-highlights img {
  width: 90px;
  height: 90px;
}

/* line 88, app/assets/stylesheets/website/_preinscription.scss */
.preinscription-highlights .content h5, .preinscription-highlights .content .h5 {
  color: #F6E5B3;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* line 95, app/assets/stylesheets/website/_preinscription.scss */
.preinscription-form {
  display: grid;
  gap: 20px;
  overflow: visible;
}

/* line 101, app/assets/stylesheets/website/_preinscription.scss */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* line 107, app/assets/stylesheets/website/_preinscription.scss */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* line 113, app/assets/stylesheets/website/_preinscription.scss */
.form-group.full-width {
  grid-column: 1 / -1;
}

/* line 117, app/assets/stylesheets/website/_preinscription.scss */
.form-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: #F6E5B3;
  font-size: 0.9rem;
}

/* line 126, app/assets/stylesheets/website/_preinscription.scss */
.form-group label.required::after {
  content: '*';
  color: #ff6b6b;
  margin-left: 0.25rem;
}

/* line 132, app/assets/stylesheets/website/_preinscription.scss */
.label-icon {
  font-size: 1rem;
}

/* line 136, app/assets/stylesheets/website/_preinscription.scss */
.preinscription-input,
.preinscription-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.9rem;
  transition: all .25s ease;
  min-height: 48px;
  box-sizing: border-box;
}

/* line 150, app/assets/stylesheets/website/_preinscription.scss */
.preinscription-input::placeholder,
.preinscription-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 155, app/assets/stylesheets/website/_preinscription.scss */
.preinscription-input:focus,
.preinscription-textarea:focus {
  outline: none;
  border-color: #F6E5B3;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(246, 229, 179, 0.18);
}

/* line 163, app/assets/stylesheets/website/_preinscription.scss */
.preinscription-textarea {
  min-height: 120px;
  resize: vertical;
}

/* line 170, app/assets/stylesheets/website/_preinscription.scss */
.validation-message {
  font-size: 0.7rem;
  margin-top: 0.25rem;
  transition: all 0.3s ease;
  display: none;
}

/* line 177, app/assets/stylesheets/website/_preinscription.scss */
.validation-message.error {
  color: #ff6b6b;
  display: block;
}

/* line 182, app/assets/stylesheets/website/_preinscription.scss */
.validation-message.success {
  color: #51cf66;
  display: block;
}

/* line 188, app/assets/stylesheets/website/_preinscription.scss */
.preinscription-input,
.preinscription-textarea {
  position: relative;
  padding-right: 40px;
}

/* line 194, app/assets/stylesheets/website/_preinscription.scss */
.preinscription-input::after,
.preinscription-textarea::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* line 207, app/assets/stylesheets/website/_preinscription.scss */
.preinscription-input.valid::after {
  content: '✓';
  background: #51cf66;
  color: white;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 217, app/assets/stylesheets/website/_preinscription.scss */
.preinscription-input.invalid::after {
  content: '✗';
  background: #ff6b6b;
  color: white;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 228, app/assets/stylesheets/website/_preinscription.scss */
.validation-message {
  font-size: 0.8rem;
  min-height: 1.2rem;
  margin-top: 0.25rem;
}

/* line 234, app/assets/stylesheets/website/_preinscription.scss */
.checkbox-group {
  margin-top: 0;
  margin-bottom: 0;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 1 !important;
}

/* line 248, app/assets/stylesheets/website/_preinscription.scss */
.checkbox-label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  color: rgba(255, 255, 255, 0.92) !important;
  font-weight: 400 !important;
  cursor: pointer;
  font-size: 0.95rem !important;
  width: 100%;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 2 !important;
}

/* line 263, app/assets/stylesheets/website/_preinscription.scss */
.checkbox-label input[type="checkbox"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  min-height: 20px !important;
  border-radius: 4px !important;
  border: 2px solid #F6E5B3 !important;
  background: rgba(255, 255, 255, 0.1) !important;
  display: inline-block !important;
  position: relative !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
  flex-shrink: 0 !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 3 !important;
}

/* line 282, app/assets/stylesheets/website/_preinscription.scss */
.checkbox-label input[type="checkbox"]:checked {
  background: #F6E5B3 !important;
  border-color: #F6E5B3 !important;
}

/* line 287, app/assets/stylesheets/website/_preinscription.scss */
.checkbox-label input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 4px;
  width: 5px;
  height: 9px;
  border: solid #1a1a1a;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* line 299, app/assets/stylesheets/website/_preinscription.scss */
.checkbox-text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  visibility: visible !important;
  opacity: 1 !important;
  display: inline !important;
  text-transform: none !important;
  font-size: 0.9rem !important;
  letter-spacing: normal !important;
}

/* line 310, app/assets/stylesheets/website/_preinscription.scss */
.checkbox-group .validation-message {
  margin-top: 8px;
  padding-left: 30px;
}

/* line 315, app/assets/stylesheets/website/_preinscription.scss */
.form-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 1rem;
}

/* line 322, app/assets/stylesheets/website/_preinscription.scss */
.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* line 337, app/assets/stylesheets/website/_preinscription.scss */
.btn-cancel {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 343, app/assets/stylesheets/website/_preinscription.scss */
.btn-cancel:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

/* line 348, app/assets/stylesheets/website/_preinscription.scss */
.btn-submit {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* line 355, app/assets/stylesheets/website/_preinscription.scss */
.btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* line 360, app/assets/stylesheets/website/_preinscription.scss */
.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* line 366, app/assets/stylesheets/website/_preinscription.scss */
.btn-loading {
  display: none;
}

/* line 370, app/assets/stylesheets/website/_preinscription.scss */
.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

@media (max-width: 768px) {
  /* line 386, app/assets/stylesheets/website/_preinscription.scss */
  .preinscription-header {
    padding: 0 16px;
  }
  /* line 390, app/assets/stylesheets/website/_preinscription.scss */
  .preinscription-container-card {
    margin: 16px auto 32px auto;
    padding: 24px;
  }
  /* line 395, app/assets/stylesheets/website/_preinscription.scss */
  .preinscription-title {
    font-size: 1.5rem;
  }
  /* line 399, app/assets/stylesheets/website/_preinscription.scss */
  .preinscription-subtitle {
    font-size: 0.9rem;
  }
  /* line 403, app/assets/stylesheets/website/_preinscription.scss */
  .preinscription-highlights .content h5, .preinscription-highlights .content .h5 {
    font-size: 0.9rem;
  }
  /* line 407, app/assets/stylesheets/website/_preinscription.scss */
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  /* line 412, app/assets/stylesheets/website/_preinscription.scss */
  .form-actions {
    flex-direction: column;
  }
  /* line 416, app/assets/stylesheets/website/_preinscription.scss */
  .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  /* line 422, app/assets/stylesheets/website/_preinscription.scss */
  .preinscription-container-card {
    margin: 12px auto;
    padding: 20px;
  }
  /* line 427, app/assets/stylesheets/website/_preinscription.scss */
  .preinscription-title {
    font-size: 1.3rem;
  }
}

/* ============================================================================
   Gestion du consentement des cookies - RGPD
   ============================================================================ */
/* ============================================================================
   Banner de consentement (bas de page)
   ============================================================================ */
/* line 20, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

/* line 32, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-banner.active {
  visibility: visible;
  pointer-events: all;
}

/* line 37, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-banner.visible {
  opacity: 1;
  transform: translateY(0);
}

/* line 43, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-banner-container {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.25rem;
  margin: 0 auto;
  max-width: 1400px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.5) 0%, rgba(100, 1, 39, 0.9) 100%);
}

/* line 57, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="lightmode"] .cookie-banner-container, [data-theme="nightmode"] .cookie-banner-container {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.5) 0%, rgba(100, 1, 39, 0.9) 100%);
  border-color: rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  /* line 43, app/assets/stylesheets/website/_cookie_consent.scss */
  .cookie-banner-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
  }
}

/* line 72, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-banner-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  /* line 72, app/assets/stylesheets/website/_cookie_consent.scss */
  .cookie-banner-content {
    margin-bottom: 0;
    flex: 1;
  }
}

/* line 84, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-banner-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

/* line 90, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-banner-text {
  flex: 1;
}

/* line 94, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-banner-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 0.4rem 0;
}

/* line 99, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="lightmode"] .cookie-banner-title {
  color: #333333;
}

/* line 103, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="nightmode"] .cookie-banner-title {
  color: #FFFFFF;
}

/* line 108, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-banner-description {
  font-size: 0.8rem;
  line-height: 1.4;
  margin: 0 0 0.4rem 0;
}

/* line 113, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="lightmode"] .cookie-banner-description {
  color: #828282;
}

/* line 117, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="nightmode"] .cookie-banner-description {
  color: rgba(255, 255, 255, 0.8);
}

/* line 122, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-banner-links {
  font-size: 0.75rem;
  margin: 0;
}

/* line 127, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-link {
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

/* line 132, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="lightmode"] .cookie-link {
  color: #A60240;
}

/* line 136, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="nightmode"] .cookie-link {
  color: #E5A82E;
}

/* line 140, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-link:hover {
  opacity: 0.7;
  text-decoration: underline;
}

/* line 146, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-separator {
  margin: 0 0.5rem;
}

/* line 149, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="lightmode"] .cookie-separator {
  color: #9c9c9c;
}

/* line 153, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="nightmode"] .cookie-separator {
  color: rgba(255, 255, 255, 0.5);
}

/* line 158, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 576px) {
  /* line 158, app/assets/stylesheets/website/_cookie_consent.scss */
  .cookie-banner-actions {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  /* line 158, app/assets/stylesheets/website/_cookie_consent.scss */
  .cookie-banner-actions {
    flex-shrink: 0;
  }
}

/* ============================================================================
   Boutons
   ============================================================================ */
/* line 176, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-btn {
  padding: 0.65rem 1.25rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  text-align: center;
}

/* line 187, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-btn:focus {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* line 192, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* line 197, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-btn--block {
  width: 100%;
}

/* line 202, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-btn--primary {
  background: #E5A82E;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(229, 168, 46, 0.3);
}

/* line 208, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-btn--primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(229, 168, 46, 0.4);
  background: #e8b145;
}

/* line 214, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-btn--primary:active:not(:disabled) {
  transform: translateY(0);
}

/* line 220, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="lightmode"] .cookie-btn--secondary {
  background: transparent;
  color: #A60240;
  border: 2px solid #A60240;
}

/* line 225, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="lightmode"] .cookie-btn--secondary:hover:not(:disabled) {
  background: rgba(166, 2, 64, 0.1);
}

/* line 230, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="nightmode"] .cookie-btn--secondary {
  background: transparent;
  color: #E5A82E;
  border: 2px solid #E5A82E;
}

/* line 235, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="nightmode"] .cookie-btn--secondary:hover:not(:disabled) {
  background: rgba(229, 168, 46, 0.1);
}

/* line 242, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="lightmode"] .cookie-btn--tertiary {
  background: rgba(51, 51, 51, 0.05);
  color: #333333;
}

/* line 246, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="lightmode"] .cookie-btn--tertiary:hover:not(:disabled) {
  background: rgba(51, 51, 51, 0.1);
}

/* line 251, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="nightmode"] .cookie-btn--tertiary {
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
}

/* line 255, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="nightmode"] .cookie-btn--tertiary:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
}

/* ============================================================================
   Modale de personnalisation
   ============================================================================ */
/* line 265, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 277, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

/* line 281, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-modal.active .cookie-modal-dialog {
  transform: scale(1);
}

/* line 286, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-modal::before {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* line 293, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="lightmode"] .cookie-modal::before {
  background: rgba(0, 0, 0, 0.5);
}

/* line 297, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="nightmode"] .cookie-modal::before {
  background: rgba(0, 0, 0, 0.7);
}

/* line 303, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 800px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.85) 0%, rgba(100, 1, 39, 0.9) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

/* line 322, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="lightmode"] .cookie-modal-dialog, [data-theme="nightmode"] .cookie-modal-dialog {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.85) 0%, rgba(100, 1, 39, 0.9) 100%);
  border-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  /* line 303, app/assets/stylesheets/website/_cookie_consent.scss */
  .cookie-modal-dialog {
    max-height: 95vh;
  }
}

/* line 333, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  flex-shrink: 0;
}

/* line 340, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="lightmode"] .cookie-modal-header {
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
}

/* line 344, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="nightmode"] .cookie-modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 349, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

/* line 354, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="lightmode"] .cookie-modal-title {
  color: #333333;
}

/* line 358, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="nightmode"] .cookie-modal-title {
  color: #FFFFFF;
}

/* line 363, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-modal-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 376, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="lightmode"] .cookie-modal-close {
  color: #333333;
}

/* line 379, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="lightmode"] .cookie-modal-close:hover {
  background: rgba(51, 51, 51, 0.05);
}

/* line 384, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="nightmode"] .cookie-modal-close {
  color: #FFFFFF;
}

/* line 387, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="nightmode"] .cookie-modal-close:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* line 393, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-modal-body {
  flex: 1 1 auto;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1.5rem 2rem;
  min-height: 0;
}

/* line 401, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-modal-body::-webkit-scrollbar {
  width: 8px;
}

/* line 406, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="lightmode"] .cookie-modal-body::-webkit-scrollbar-track {
  background: rgba(51, 51, 51, 0.05);
}

/* line 410, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="nightmode"] .cookie-modal-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

/* line 415, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-modal-body::-webkit-scrollbar-thumb {
  border-radius: 4px;
}

/* line 418, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="lightmode"] .cookie-modal-body::-webkit-scrollbar-thumb {
  background: rgba(51, 51, 51, 0.2);
}

/* line 421, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="lightmode"] .cookie-modal-body::-webkit-scrollbar-thumb:hover {
  background: rgba(51, 51, 51, 0.3);
}

/* line 426, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="nightmode"] .cookie-modal-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
}

/* line 429, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="nightmode"] .cookie-modal-body::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 576px) {
  /* line 393, app/assets/stylesheets/website/_cookie_consent.scss */
  .cookie-modal-body {
    padding: 1rem 1.5rem;
  }
}

/* line 440, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-modal-intro {
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0 0 1.5rem 0;
}

/* line 445, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="lightmode"] .cookie-modal-intro {
  color: #828282;
}

/* line 449, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="nightmode"] .cookie-modal-intro {
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================================================
   Catégories de cookies
   ============================================================================ */
/* line 458, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-category {
  margin-bottom: 2rem;
  padding: 1.5rem;
  border-radius: 8px;
}

/* line 463, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="lightmode"] .cookie-category {
  background: rgba(232, 232, 232, 0.3);
}

/* line 467, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="nightmode"] .cookie-category {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* line 472, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-category:last-child {
  margin-bottom: 0;
}

/* line 477, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  gap: 1rem;
}

/* line 485, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-category-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* line 492, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-category-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 500, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="lightmode"] .cookie-category-title {
  color: #333333;
}

/* line 504, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="nightmode"] .cookie-category-title {
  color: #FFFFFF;
}

/* line 509, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-category-icon {
  font-size: 1.1rem;
}

/* line 513, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-category-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 522, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="lightmode"] .cookie-category-badge--required {
  background: rgba(16, 185, 129, 0.1);
  color: #0c8a60;
}

/* line 527, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="nightmode"] .cookie-category-badge--required {
  background: rgba(16, 185, 129, 0.15);
  color: #14e8a2;
}

/* line 534, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-category-description {
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 0 0 0.75rem 0;
}

/* line 539, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="lightmode"] .cookie-category-description {
  color: #828282;
}

/* line 543, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="nightmode"] .cookie-category-description {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================================
   Toggle switch
   ============================================================================ */
/* line 552, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-toggle {
  position: relative !important;
  display: inline-block !important;
  width: 44px !important;
  height: 22px !important;
  flex-shrink: 0 !important;
  cursor: pointer !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* line 563, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-toggle-input {
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  position: absolute !important;
}

/* line 570, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="lightmode"] .cookie-toggle-input:checked + .cookie-toggle-slider {
  background: #A60240 !important;
}

/* line 574, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="nightmode"] .cookie-toggle-input:checked + .cookie-toggle-slider {
  background: #E5A82E !important;
}

/* line 578, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-toggle-input:checked + .cookie-toggle-slider::before {
  transform: translateX(22px) translateY(-50%) !important;
}

/* line 583, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-toggle-input:focus + .cookie-toggle-slider {
  box-shadow: 0 0 0 2px currentColor !important;
}

/* line 588, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-toggle-slider {
  position: absolute !important;
  cursor: pointer !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  border-radius: 14px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  z-index: 10 !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

/* line 602, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="lightmode"] .cookie-toggle-slider {
  background: rgba(51, 51, 51, 0.4) !important;
  border: 2px solid rgba(51, 51, 51, 0.5) !important;
}

/* line 607, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="nightmode"] .cookie-toggle-slider {
  background: rgba(255, 255, 255, 0.35) !important;
  border: 2px solid rgba(255, 255, 255, 0.5) !important;
}

/* line 612, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-toggle-slider::before {
  content: '' !important;
  position: absolute !important;
  height: 16px !important;
  width: 16px !important;
  left: 2px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  background: #FFFFFF !important;
  border-radius: 50% !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4) !important;
  z-index: 11 !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

/* ============================================================================
   Détails des cookies
   ============================================================================ */
/* line 635, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-category-details {
  margin-top: 0.75rem;
}

/* line 638, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-category-details summary {
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 0;
  user-select: none;
  transition: opacity 0.2s ease;
}

/* line 646, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="lightmode"] .cookie-category-details summary {
  color: #A60240;
}

/* line 650, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="nightmode"] .cookie-category-details summary {
  color: #E5A82E;
}

/* line 654, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-category-details summary:hover {
  opacity: 0.7;
}

/* line 658, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-category-details summary::marker {
  content: '▶ ';
}

/* line 663, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-category-details[open] summary::marker {
  content: '▼ ';
}

/* line 668, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}

/* line 673, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-list li {
  font-size: 0.85rem;
  line-height: 1.6;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

/* line 680, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="lightmode"] .cookie-list li {
  color: #8f8f8f;
}

/* line 684, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="nightmode"] .cookie-list li {
  color: rgba(255, 255, 255, 0.6);
}

/* line 688, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-list li::before {
  content: '•';
  position: absolute;
  left: 0.5rem;
}

/* line 693, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="lightmode"] .cookie-list li::before {
  color: #A60240;
}

/* line 697, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="nightmode"] .cookie-list li::before {
  color: #E5A82E;
}

/* line 703, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="lightmode"] .cookie-list li strong {
  color: #757575;
}

/* line 707, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="nightmode"] .cookie-list li strong {
  color: rgba(255, 255, 255, 0.85);
}

/* ============================================================================
   Footer de la modale
   ============================================================================ */
/* line 718, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-modal-footer {
  display: flex;
  gap: 0.75rem;
  padding: 1.25rem 2rem;
  flex-shrink: 0;
}

/* line 724, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="lightmode"] .cookie-modal-footer {
  border-top: 1px solid rgba(51, 51, 51, 0.1);
  background: rgba(232, 232, 232, 0.2);
}

/* line 729, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="nightmode"] .cookie-modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

@media (max-width: 576px) {
  /* line 718, app/assets/stylesheets/website/_cookie_consent.scss */
  .cookie-modal-footer {
    flex-direction: column;
    padding: 1rem 1.5rem;
  }
}

/* line 740, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-modal-footer-info {
  margin-top: 1rem;
  padding: 0.875rem;
  border-radius: 8px;
  font-size: 0.75rem;
  line-height: 1.5;
}

/* line 747, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="lightmode"] .cookie-modal-footer-info {
  background: rgba(59, 130, 246, 0.05);
  color: #0a59da;
  border-left: 3px solid #3b82f6;
}

/* line 753, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="nightmode"] .cookie-modal-footer-info {
  background: rgba(59, 130, 246, 0.1);
  color: #9dc0fa;
  border-left: 3px solid #6ca1f8;
}

/* line 759, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-modal-footer-info p {
  margin: 0;
}

/* line 763, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-modal-footer-info strong {
  font-weight: 600;
}

/* ============================================================================
   Notification de confirmation
   ============================================================================ */
/* line 772, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 10000;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(1rem);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  max-width: 300px;
}

/* line 787, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="lightmode"] .cookie-notification {
  background: rgba(16, 185, 129, 0.95);
  color: #FFFFFF;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* line 793, app/assets/stylesheets/website/_cookie_consent.scss */
[data-theme="nightmode"] .cookie-notification {
  background: rgba(16, 185, 129, 0.95);
  color: #FFFFFF;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* line 799, app/assets/stylesheets/website/_cookie_consent.scss */
.cookie-notification.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 576px) {
  /* line 772, app/assets/stylesheets/website/_cookie_consent.scss */
  .cookie-notification {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}

/* ============================================================================
   Animations
   ============================================================================ */
@keyframes slideInUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* General */
/* line 2, app/assets/stylesheets/pages/_general.scss */
body {
  background-color: #000000;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  /* Définit le poids par défaut */
  line-height: 1.6;
  /* Améliore l'espacement des lignes */
  color: #FFFFFF;
  background-color: #140D23;
}

/* line 13, app/assets/stylesheets/pages/_general.scss */
a {
  text-decoration: none;
}

/* Sections General */
/* line 18, app/assets/stylesheets/pages/_general.scss */
.section {
  min-height: 100vh;
  padding-top: 4rem;
  /* Décalage pour éviter d'être sous la nav */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* line 28, app/assets/stylesheets/pages/_general.scss */
.section h2, .section .h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

/* line 34, app/assets/stylesheets/pages/_general.scss */
.floating-link {
  position: fixed;
  /* Positionne le lien par rapport à la fenêtre */
  top: 4%;
  /* Ajuste la position verticale */
  left: 3%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  /* Ajuste la position horizontale */
  z-index: 9999;
  /* Place le lien au-dessus de tout le contenu */
  background-color: transparent;
  /* Optionnel : ajoute un fond semi-transparent */
  padding: 0.5rem 1rem;
  /* Optionnel : ajoute un espace autour du texte */
  border-radius: 5px;
  /* Optionnel : ajoute des bords arrondis */
  text-decoration: none;
  /* Supprime le soulignement */
  transition: transform 0.3s ease;
  /* Optionnel : ajoute une animation pour le survol */
  line-height: 4.5rem;
  font-size: 2rem;
  /* Garde le texte en gras */
}

/* line 60, app/assets/stylesheets/pages/_general.scss */
.floating-link .o-brandname {
  position: relative;
  display: flex;
  align-items: center;
  padding: 3px;
  margin-right: 6px;
}

/* line 66, app/assets/stylesheets/pages/_general.scss */
.floating-link .o-brandname span {
  position: relative;
  font-size: 5.5rem;
  font-weight: bold;
  font-family: 'Poppins';
}

/* line 74, app/assets/stylesheets/pages/_general.scss */
.floating-link .cross-line-brandname {
  position: absolute;
  z-index: 300;
  width: 110%;
  height: 0;
  top: 50%;
  left: -5%;
  transform: translateY(-50%);
  border-bottom: 4px solid #FFFFFF;
  margin-right: 6px;
}

/* line 87, app/assets/stylesheets/pages/_general.scss */
.floating-link p {
  font-size: 2.2rem;
  font-weight: bold;
  font-family: 'Poppins';
  margin-bottom: 0rem;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 1000px) {
  /* line 34, app/assets/stylesheets/pages/_general.scss */
  .floating-link {
    display: none;
  }
}

/* line 103, app/assets/stylesheets/pages/_general.scss */
.floating-link:hover {
  transform: scale(1.1);
  /* Agrandit légèrement le lien au survol */
  color: #ffffff;
  /* Garde la couleur blanche */
}

/* line 110, app/assets/stylesheets/pages/_general.scss */
.floating-link {
  color: #FFFFFF;
  /* Garde la couleur blanche */
}

/* line 115, app/assets/stylesheets/pages/_general.scss */
.floating-link.nightmode {
  color: white;
  /* Garde la couleur blanche */
}

/* line 120, app/assets/stylesheets/pages/_general.scss */
.floating-link.lightmode {
  color: #140D23;
  /* Garde la couleur blanche */
}

/* Style pour le logo Orizen en image - Version harmonisée */
/* line 126, app/assets/stylesheets/pages/_general.scss */
.floating-link .logo-orizen,
.floating-link-brand .logo-orizen {
  height: 45px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* line 135, app/assets/stylesheets/pages/_general.scss */
.floating-link:hover .logo-orizen,
.floating-link-brand:hover .logo-orizen {
  transform: scale(1.05);
}

/* line 142, app/assets/stylesheets/pages/_general.scss */
.floating-link-brand {
  position: relative;
  /* Positionne le lien par rapport à la fenêtre */
  margin-left: 3%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  /* Ajuste la position horizontale */
  z-index: 5;
  /* Place le lien au-dessus de tout le contenu */
  background-color: transparent;
  /* Optionnel : ajoute un fond semi-transparent */
  padding: 0.5rem 1rem;
  /* Optionnel : ajoute un espace autour du texte */
  border-radius: 5px;
  /* Optionnel : ajoute des bords arrondis */
  text-decoration: none;
  /* Supprime le soulignement */
  transition: transform 0.3s ease;
  /* Optionnel : ajoute une animation pour le survol */
  font-size: 2rem;
  /* Garde le texte en gras */
}

/* line 166, app/assets/stylesheets/pages/_general.scss */
.floating-link-brand .o-brandname {
  position: relative;
  display: flex;
  align-items: center;
  padding: 3px;
  margin-right: 6px;
}

/* line 172, app/assets/stylesheets/pages/_general.scss */
.floating-link-brand .o-brandname span {
  position: relative;
  font-size: 5.5rem;
  font-weight: bold;
  font-family: 'Poppins';
}

/* line 180, app/assets/stylesheets/pages/_general.scss */
.floating-link-brand .cross-line-brandname {
  position: absolute;
  z-index: 300;
  width: 110%;
  height: 0;
  top: 50%;
  left: -5%;
  transform: translateY(-50%);
  border-bottom: 4px solid #FFFFFF;
  margin-right: 6px;
}

/* line 192, app/assets/stylesheets/pages/_general.scss */
.floating-link-brand p {
  font-size: 2.2rem;
  font-weight: bold;
  font-family: 'Poppins';
  margin-bottom: 0rem;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 1000px) {
  /* line 142, app/assets/stylesheets/pages/_general.scss */
  .floating-link-brand {
    display: none;
  }
}

/* line 208, app/assets/stylesheets/pages/_general.scss */
.floating-link-brand:hover {
  transform: scale(1.1);
  /* Agrandit légèrement le lien au survol */
  color: #ffffff;
  /* Garde la couleur blanche */
}

/* line 215, app/assets/stylesheets/pages/_general.scss */
.floating-link-brand {
  color: #FFFFFF;
  /* Garde la couleur blanche */
}

/* line 220, app/assets/stylesheets/pages/_general.scss */
.floating-link-brand.nightmode {
  color: white;
  /* Garde la couleur blanche */
}

/* line 225, app/assets/stylesheets/pages/_general.scss */
.floating-link-brand.lightmode {
  color: #140D23;
  /* Garde la couleur blanche */
}

/* line 230, app/assets/stylesheets/pages/_general.scss */
.transition-colors {
  transition: background-color 0.8s ease, color 0.3s ease;
}

/* line 236, app/assets/stylesheets/pages/_general.scss */
.front-content {
  position: relative;
  /* Position relative pour respecter l'ordre de z-index */
  z-index: 1;
  /* Assure que le texte est au-dessus des lucioles */
  background: rgba(0, 0, 0, 0);
  /* Ajoute une transparence pour permettre de voir les lucioles */
}

/* line 245, app/assets/stylesheets/pages/_general.scss */
.big-capsule-content {
  width: 100% !important;
}

/* line 248, app/assets/stylesheets/pages/_general.scss */
.resize-capsule {
  width: 75% !important;
}

/* line 251, app/assets/stylesheets/pages/_general.scss */
.resize-container {
  width: 100% !important;
  padding: 5px !important;
}

/* line 1, app/assets/stylesheets/pages/admin_to_re-use/_clients.scss */
.clients-container {
  display: table;
  caption-side: bottom;
  width: 100%;
  margin-bottom: 1rem;
  vertical-align: top;
  text-align: center;
}

@media (max-width: 800px) {
  /* line 10, app/assets/stylesheets/pages/admin_to_re-use/_clients.scss */
  .clients-container .query-none {
    display: none;
  }
}

@media (max-width: 500px) {
  /* line 1, app/assets/stylesheets/pages/admin_to_re-use/_clients.scss */
  .clients-container {
    font-size: 0.8rem;
  }
}

/* line 20, app/assets/stylesheets/pages/admin_to_re-use/_clients.scss */
.clients-container thead tr {
  border: 1px solid #FFFFFF;
}

/* line 22, app/assets/stylesheets/pages/admin_to_re-use/_clients.scss */
.clients-container thead tr th {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* line 29, app/assets/stylesheets/pages/admin_to_re-use/_clients.scss */
.clients-container tbody tr {
  background-color: #000000 !important;
  color: #FFFFFF !important;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid #FFFFFF;
}

/* line 36, app/assets/stylesheets/pages/admin_to_re-use/_clients.scss */
.clients-container tbody tr:hover {
  color: #A60240 !important;
}

/* line 39, app/assets/stylesheets/pages/admin_to_re-use/_clients.scss */
.clients-container tbody tr td {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* line 43, app/assets/stylesheets/pages/admin_to_re-use/_clients.scss */
.clients-container tbody tr .unique-td {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

/* line 56, app/assets/stylesheets/pages/admin_to_re-use/_clients.scss */
.client-show {
  margin-top: 20vh;
  display: grid;
  grid-template-columns: 30% 70%;
  justify-content: start;
  min-height: 60vh;
  gap: 10px;
}

@media (max-width: 1000px) {
  /* line 56, app/assets/stylesheets/pages/admin_to_re-use/_clients.scss */
  .client-show {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  /* line 70, app/assets/stylesheets/pages/admin_to_re-use/_clients.scss */
  .client-show .client-infos {
    width: 100%;
  }
  /* line 73, app/assets/stylesheets/pages/admin_to_re-use/_clients.scss */
  .client-show .client-infos .client-data {
    align-items: center;
    justify-content: center;
  }
  /* line 78, app/assets/stylesheets/pages/admin_to_re-use/_clients.scss */
  .client-show .client-infos .query-column {
    flex-direction: column;
    align-items: center;
  }
  /* line 83, app/assets/stylesheets/pages/admin_to_re-use/_clients.scss */
  .client-show .client-content {
    width: 100%;
  }
}

/* line 89, app/assets/stylesheets/pages/admin_to_re-use/_clients.scss */
.client-show .gradient-div {
  border-radius: 10px;
  background-image: linear-gradient(to right, rgba(166, 2, 64, 0.6), rgba(166, 2, 64, 0.5));
  padding: 1px;
  box-shadow: -1rem 0 3rem #000;
  height: 100%;
  width: 100%;
}

/* line 98, app/assets/stylesheets/pages/admin_to_re-use/_clients.scss */
.client-show .client-header {
  display: flex;
  justify-content: start;
  flex-direction: column;
  text-align: center;
  align-items: center;
  margin-bottom: 10px;
}

/* line 106, app/assets/stylesheets/pages/admin_to_re-use/_clients.scss */
.client-show .client-infos {
  border-radius: 10px;
  background-color: #17141d;
  padding: 10px;
  height: 100%;
}

/* line 112, app/assets/stylesheets/pages/admin_to_re-use/_clients.scss */
.client-show .client-infos .client-data {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

/* line 119, app/assets/stylesheets/pages/admin_to_re-use/_clients.scss */
.client-show .client-rdv {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
  background-color: #17141d;
  height: 100%;
}

/* line 130, app/assets/stylesheets/pages/admin_to_re-use/_clients.scss */
.client-show .client-rdv .clients-container th, .client-show .client-rdv .clients-container td {
  padding-left: 10px;
  padding-right: 10px;
}

/* line 139, app/assets/stylesheets/pages/admin_to_re-use/_clients.scss */
.search-container {
  margin-top: 20vh;
}

@media (max-width: 500px) {
  /* line 139, app/assets/stylesheets/pages/admin_to_re-use/_clients.scss */
  .search-container {
    font-size: 0.8rem;
  }
  /* line 143, app/assets/stylesheets/pages/admin_to_re-use/_clients.scss */
  .search-container h1, .search-container .h1 {
    font-size: 1.5rem;
  }
}

/* line 149, app/assets/stylesheets/pages/admin_to_re-use/_clients.scss */
.search-container .form-group {
  display: block;
}

/* line 151, app/assets/stylesheets/pages/admin_to_re-use/_clients.scss */
.search-container .form-group .text {
  margin: 0;
}

/* line 158, app/assets/stylesheets/pages/admin_to_re-use/_clients.scss */
.client-edit {
  margin-top: 20vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
}

/* line 167, app/assets/stylesheets/pages/admin_to_re-use/_clients.scss */
.client-edit .edit-form {
  background-color: #17141d;
  border-radius: 10px;
  padding: 10px;
}

/* line 172, app/assets/stylesheets/pages/admin_to_re-use/_clients.scss */
.client-edit .gradient-div {
  border-radius: 10px;
  background-image: linear-gradient(to right, rgba(166, 2, 64, 0.6), rgba(166, 2, 64, 0.5));
  padding: 1px;
  box-shadow: -1rem 0 3rem #000;
  width: 100%;
  height: 100%;
}

/* line 181, app/assets/stylesheets/pages/admin_to_re-use/_clients.scss */
.client-edit .form-edit-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* line 187, app/assets/stylesheets/pages/admin_to_re-use/_clients.scss */
.client-edit .form-edit-content .form-group {
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 10px;
  align-items: center;
  max-width: 50%;
}

/* line 196, app/assets/stylesheets/pages/admin_to_re-use/_clients.scss */
.client-edit .form-edit-content .form-group label {
  border: none;
  color: #FFFFFF;
  margin: 0;
  padding: 0;
  flex: -1;
}

/* line 203, app/assets/stylesheets/pages/admin_to_re-use/_clients.scss */
.client-edit .form-edit-content .form-group select {
  width: auto;
}

/* line 206, app/assets/stylesheets/pages/admin_to_re-use/_clients.scss */
.client-edit .form-edit-content .form-group .text {
  margin: 0;
  flex-direction: row;
}

/* line 1, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
.projects-container {
  display: table;
  caption-side: bottom;
  width: 100%;
  margin-bottom: 1rem;
  vertical-align: top;
  text-align: center;
}

/* line 11, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
.projects-container thead tr {
  border: 1px solid #FFFFFF;
}

/* line 13, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
.projects-container thead tr th {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* line 20, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
.projects-container tbody tr {
  background-color: #000000 !important;
  color: #FFFFFF !important;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid #FFFFFF;
}

/* line 27, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
.projects-container tbody tr:hover {
  color: #A60240 !important;
}

/* line 30, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
.projects-container tbody tr td {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* line 40, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
.project-show {
  margin-top: 20vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 80vh;
  gap: 10px;
}

@media (max-width: 1000px) {
  /* line 40, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
  .project-show {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    min-height: 70vh;
  }
  /* line 56, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
  .project-show .gradient-div-info {
    width: 100%;
  }
  /* line 60, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
  .project-show .gradient-div-info .project-infos h2, .project-show .gradient-div-info .project-infos .h2, .project-show .gradient-div-info .project-infos p {
    text-align: center;
  }
  /* line 63, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
  .project-show .gradient-div-info .project-infos .justify-content-start {
    justify-content: center !important;
  }
  /* line 69, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
  .project-show .project-content {
    width: 100%;
  }
  /* line 72, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
  .project-show .project-content .project-document {
    height: 100%;
  }
  /* line 74, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
  .project-show .project-content .project-document .title-project-document {
    justify-content: center;
  }
  /* line 79, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
  .project-show .project-content .project-document form {
    flex-direction: column;
    align-items: start;
  }
  /* line 85, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
  .project-show .project-content .project-onboarding {
    height: 100%;
  }
}

/* line 92, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
.gradient-div-info {
  border-radius: 10px;
  background-image: linear-gradient(to right, rgba(166, 2, 64, 0.6), rgba(166, 2, 64, 0.5));
  padding: 1px;
  box-shadow: -1rem 0 3rem #000;
  height: 100%;
  width: 30%;
}

/* line 101, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
.project-infos {
  flex-direction: column;
  height: 100%;
  width: 100%;
  justify-content: start;
  padding: 10px;
  background-color: #17141d;
  border-radius: 10px;
}

/* line 111, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
.project-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 70%;
  gap: 10px;
  height: 100%;
}

/* line 121, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
.gradient-div-document {
  border-radius: 10px;
  background-image: linear-gradient(to right, rgba(166, 2, 64, 0.6), rgba(166, 2, 64, 0.5));
  padding: 1px;
  box-shadow: -1rem 0 3rem #000;
  height: 50%;
  width: 100%;
}

/* line 130, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
.project-document {
  height: 100%;
  width: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  background-color: #17141d;
  border-radius: 10px;
}

/* line 141, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
.project-document h2, .project-document .h2 {
  margin-bottom: 10px;
  text-align: center;
}

/* line 145, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
.project-document .grow {
  flex-grow: 1;
}

/* line 148, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
.project-document .grow p {
  text-align: center;
}

/* line 154, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
.title-project-document {
  height: 12%;
  width: 100%;
  display: flex;
  text-align: start;
}

/* line 162, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
.upload-documents {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 25%;
  width: 100%;
  padding: 10px;
  margin-top: 10px;
}

/* line 173, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
.upload-documents-title {
  height: 20%;
  width: 100%;
}

/* line 178, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
.upload-documents-title h3, .upload-documents-title .h3 {
  font-size: 0.8rem;
}

/* line 182, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
.upload-documents-commands {
  display: flex;
  flex-direction: row;
  text-align: center;
  align-items: center;
  gap: 10px;
  height: 80%;
  width: 100%;
}

/* line 193, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
.upload-documents-commands .form-group {
  font-size: 0.6rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* line 202, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
.upload-documents-commands form {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* line 210, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
.upload-documents-commands label {
  font-size: 0.6rem;
}

/* line 214, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
.upload-documents-commands input {
  font-size: 0.6rem;
}

/* line 219, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
.list-documents {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 75%;
  width: 100%;
  padding: 10px;
  overflow-y: scroll;
  border: 0.5px solid rgba(255, 255, 255, 0.5);
}

/* line 231, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
.list-documents-item {
  font-size: 0.6rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  gap: 1px;
  height: 1%;
  width: 100%;
  padding: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

/* line 245, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
.list-documents-item p {
  align-items: center;
  text-align: center;
  margin-bottom: 0rem;
}

/* line 251, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
.list-documents-item-infos {
  display: flex;
  flex-direction: row;
  gap: 10px;
  height: 100%;
  width: 70%;
}

/* line 259, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
.list-documents-item-commands {
  display: flex;
  flex-direction: row;
  gap: 10px;
  height: 100%;
  width: 30%;
}

/* line 267, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
.btn-download {
  color: white;
  height: 100%;
  width: 50%;
  padding: 4px;
  border-radius: 3px;
  background-color: #A60240;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* line 279, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
.btn-visualize {
  color: white;
  height: 100%;
  width: 50%;
  padding: 4px;
  border-radius: 3px;
  background-color: #A60240;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* line 291, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
.gradient-div-onboarding {
  border-radius: 10px;
  background-image: linear-gradient(to right, rgba(166, 2, 64, 0.6), rgba(166, 2, 64, 0.5));
  padding: 1px;
  box-shadow: -1rem 0 3rem #000;
  height: 50%;
  width: 100%;
}

/* line 300, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
.project-onboarding {
  height: 100%;
  padding: 10px;
  background-color: #17141d;
  width: 100%;
  border-radius: 10px;
}

/* line 310, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
.relative {
  position: relative;
}

/* line 313, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
.absolute {
  position: absolute;
  right: 0;
  top: 0;
}

/* line 320, app/assets/stylesheets/pages/admin_to_re-use/_projects.scss */
.height-max {
  height: 100%;
}

/* line 1, app/assets/stylesheets/pages/admin_to_re-use/_dashboard-agency.scss */
.agency-container {
  margin-top: 20vh;
  display: flex;
  flex-direction: column;
  height: 80vh;
  gap: 30px;
  padding-left: 10px;
  padding-right: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* line 12, app/assets/stylesheets/pages/admin_to_re-use/_dashboard-agency.scss */
.agency-container .gradient-div {
  border-radius: 10px;
  background-image: linear-gradient(to right, rgba(166, 2, 64, 0.6), rgba(166, 2, 64, 0.5));
  padding: 1px;
  box-shadow: -1rem 0 3rem #000;
  height: 100%;
}

@media (max-width: 700px) {
  /* line 1, app/assets/stylesheets/pages/admin_to_re-use/_dashboard-agency.scss */
  .agency-container {
    min-height: 80vh;
    height: auto;
  }
}

/* line 26, app/assets/stylesheets/pages/admin_to_re-use/_dashboard-agency.scss */
.agency-container .ligne1 {
  height: 100%;
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 5px;
}

@media (max-width: 900px) {
  /* line 26, app/assets/stylesheets/pages/admin_to_re-use/_dashboard-agency.scss */
  .agency-container .ligne1 {
    display: flex;
    flex-direction: column;
  }
}

/* line 37, app/assets/stylesheets/pages/admin_to_re-use/_dashboard-agency.scss */
.agency-container .ligne1 .block70 {
  display: flex;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  box-sizing: border-box;
  height: 100%;
}

/* line 45, app/assets/stylesheets/pages/admin_to_re-use/_dashboard-agency.scss */
.agency-container .ligne1 .block70 .gradient-div {
  border-radius: 10px;
  background-image: linear-gradient(to right, rgba(166, 2, 64, 0.6), rgba(166, 2, 64, 0.5));
  padding: 1px;
  box-shadow: -1rem 0 3rem #000;
  height: 100%;
  transition: 0.4s ease-out;
}

/* line 53, app/assets/stylesheets/pages/admin_to_re-use/_dashboard-agency.scss */
.agency-container .ligne1 .block70 .gradient-div:hover {
  transform: translateY(-10px);
  transition: 0.4s ease-out;
}

/* line 59, app/assets/stylesheets/pages/admin_to_re-use/_dashboard-agency.scss */
.agency-container .ligne1 .block70 .flex-child {
  flex: 1 1 calc(25% - 15px);
  /* Quatre enfants par ligne */
}

/* line 63, app/assets/stylesheets/pages/admin_to_re-use/_dashboard-agency.scss */
.agency-container .ligne1 .block70 .cardC {
  position: relative;
  background-color: #17141d;
  border-radius: 10px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* line 72, app/assets/stylesheets/pages/admin_to_re-use/_dashboard-agency.scss */
.agency-container .ligne1 .block70 .cardC .background-card {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 50px;
  width: 50px;
  transform: translateX(-50%) translateY(-50%);
  z-index: -1;
  opacity: 1;
}

@media (max-width: 900px) {
  /* line 72, app/assets/stylesheets/pages/admin_to_re-use/_dashboard-agency.scss */
  .agency-container .ligne1 .block70 .cardC .background-card {
    height: 35px;
    width: 35px;
  }
}

@media (max-width: 750px) {
  /* line 72, app/assets/stylesheets/pages/admin_to_re-use/_dashboard-agency.scss */
  .agency-container .ligne1 .block70 .cardC .background-card {
    height: 25px;
    width: 25px;
  }
}

/* line 91, app/assets/stylesheets/pages/admin_to_re-use/_dashboard-agency.scss */
.agency-container .ligne1 .block70 .cardC:hover {
  background-color: #ffffff18;
  color: transparent;
}

/* line 98, app/assets/stylesheets/pages/admin_to_re-use/_dashboard-agency.scss */
.agency-container .ligne1 .block30 {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  background-color: #17141d;
  border-radius: 10px;
  height: 100%;
}

/* line 109, app/assets/stylesheets/pages/admin_to_re-use/_dashboard-agency.scss */
.agency-container .ligne1 .block30 .background-card {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 50px;
  width: 50px;
  transform: translateX(-50%) translateY(-50%);
  z-index: -1;
  opacity: 1;
}

/* line 120, app/assets/stylesheets/pages/admin_to_re-use/_dashboard-agency.scss */
.agency-container .ligne1 .block30:hover {
  background-color: #ffffff18;
  color: transparent;
}

/* line 123, app/assets/stylesheets/pages/admin_to_re-use/_dashboard-agency.scss */
.agency-container .ligne1 .block30:hover ul {
  color: transparent;
}

/* line 126, app/assets/stylesheets/pages/admin_to_re-use/_dashboard-agency.scss */
.agency-container .ligne1 .block30:hover .background-card {
  z-index: 0;
}

/* line 131, app/assets/stylesheets/pages/admin_to_re-use/_dashboard-agency.scss */
.agency-container .ligne1 .block30 ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* line 141, app/assets/stylesheets/pages/admin_to_re-use/_dashboard-agency.scss */
.agency-container .ligne2 {
  height: 100%;
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 5px;
  border-radius: 10px;
}

@media (max-width: 700px) {
  /* line 141, app/assets/stylesheets/pages/admin_to_re-use/_dashboard-agency.scss */
  .agency-container .ligne2 {
    grid-template-columns: 100%;
  }
}

/* line 152, app/assets/stylesheets/pages/admin_to_re-use/_dashboard-agency.scss */
.agency-container .ligne2 .blockProject {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  box-sizing: border-box;
  background-color: #17141d;
  padding: 10px;
  border-radius: 10px;
}

/* line 163, app/assets/stylesheets/pages/admin_to_re-use/_dashboard-agency.scss */
.agency-container .ligne2 .blockProject:hover {
  background-color: #ffffff18;
  color: transparent;
}

/* line 166, app/assets/stylesheets/pages/admin_to_re-use/_dashboard-agency.scss */
.agency-container .ligne2 .blockProject:hover .background-card {
  z-index: 0;
}

/* line 172, app/assets/stylesheets/pages/admin_to_re-use/_dashboard-agency.scss */
.agency-container .ligne2 .blockParc {
  position: relative;
  height: 100%;
  box-sizing: border-box;
  background-color: #17141d;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 700px) {
  /* line 183, app/assets/stylesheets/pages/admin_to_re-use/_dashboard-agency.scss */
  .agency-container .ligne2 .blockParc .background-card {
    height: 25px;
    width: 25px;
  }
}

/* line 189, app/assets/stylesheets/pages/admin_to_re-use/_dashboard-agency.scss */
.agency-container .ligne2 .blockParc:hover {
  background-color: #ffffff18;
  color: transparent;
}

/* line 193, app/assets/stylesheets/pages/admin_to_re-use/_dashboard-agency.scss */
.agency-container .ligne2 .blockParc:hover .background-card {
  z-index: 0;
}

/* line 1, app/assets/stylesheets/pages/admin_to_re-use/_contacts.scss */
.contacts-container {
  display: table;
  caption-side: bottom;
  width: 100%;
  margin-bottom: 1rem;
  vertical-align: top;
  text-align: center;
}

@media (max-width: 1000px) {
  /* line 10, app/assets/stylesheets/pages/admin_to_re-use/_contacts.scss */
  .contacts-container .query-none {
    display: none;
  }
}

@media (max-width: 500px) {
  /* line 1, app/assets/stylesheets/pages/admin_to_re-use/_contacts.scss */
  .contacts-container {
    font-size: 0.8rem;
  }
}

/* line 20, app/assets/stylesheets/pages/admin_to_re-use/_contacts.scss */
.contacts-container thead tr {
  border: 1px solid #FFFFFF;
}

/* line 22, app/assets/stylesheets/pages/admin_to_re-use/_contacts.scss */
.contacts-container thead tr th {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* line 30, app/assets/stylesheets/pages/admin_to_re-use/_contacts.scss */
.contacts-container tbody tr {
  background-color: #000000 !important;
  color: #FFFFFF !important;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid #FFFFFF;
}

/* line 37, app/assets/stylesheets/pages/admin_to_re-use/_contacts.scss */
.contacts-container tbody tr:hover {
  color: #A60240 !important;
}

/* line 40, app/assets/stylesheets/pages/admin_to_re-use/_contacts.scss */
.contacts-container tbody tr td {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* line 50, app/assets/stylesheets/pages/admin_to_re-use/_contacts.scss */
.contact-show {
  margin-top: 20vh;
  display: grid;
  grid-template-columns: 30% 70%;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  gap: 10px;
}

@media (max-width: 1000px) {
  /* line 50, app/assets/stylesheets/pages/admin_to_re-use/_contacts.scss */
  .contact-show {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

/* line 66, app/assets/stylesheets/pages/admin_to_re-use/_contacts.scss */
.contact-show .gradient-div {
  border-radius: 10px;
  background-image: linear-gradient(to right, rgba(166, 2, 64, 0.6), rgba(166, 2, 64, 0.5));
  padding: 1px;
  box-shadow: -1rem 0 3rem #000;
  width: 100%;
  height: 100%;
}

/* line 75, app/assets/stylesheets/pages/admin_to_re-use/_contacts.scss */
.contact-show .contact-infos {
  display: flex;
  flex-direction: column;
  min-height: 60vh;
  justify-content: start;
  border-radius: 10px;
  padding: 10px;
  background-color: #17141d;
  gap: 10px;
}

@media (max-width: 1000px) {
  /* line 75, app/assets/stylesheets/pages/admin_to_re-use/_contacts.scss */
  .contact-show .contact-infos {
    align-items: center;
    justify-content: center;
    align-items: center;
  }
}

/* line 91, app/assets/stylesheets/pages/admin_to_re-use/_contacts.scss */
.contact-show .contact-infos p {
  margin: 0;
  padding: 0;
}

/* line 95, app/assets/stylesheets/pages/admin_to_re-use/_contacts.scss */
.contact-show .contact-infos .statut-container {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}

/* line 101, app/assets/stylesheets/pages/admin_to_re-use/_contacts.scss */
.contact-show .contact-infos .statut-container .yellow-statut {
  color: yellow;
}

/* line 104, app/assets/stylesheets/pages/admin_to_re-use/_contacts.scss */
.contact-show .contact-infos .statut-container .green-statut {
  color: green;
}

/* line 107, app/assets/stylesheets/pages/admin_to_re-use/_contacts.scss */
.contact-show .contact-infos .statut-container .red-statut {
  color: red;
}

/* line 113, app/assets/stylesheets/pages/admin_to_re-use/_contacts.scss */
.contact-show .contact-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  height: 100%;
}

@media (max-width: 1000px) {
  /* line 113, app/assets/stylesheets/pages/admin_to_re-use/_contacts.scss */
  .contact-show .contact-content {
    width: 100%;
  }
}

/* line 125, app/assets/stylesheets/pages/admin_to_re-use/_contacts.scss */
.contact-show .contact-content .contact-message {
  background-color: #17141d;
  border-radius: 10px;
  padding: 10px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* line 137, app/assets/stylesheets/pages/admin_to_re-use/_contacts.scss */
.contact-show .contact-content .contact-comment {
  background-color: #17141d;
  border-radius: 10px;
  padding: 10px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* line 151, app/assets/stylesheets/pages/admin_to_re-use/_contacts.scss */
.contact-edit {
  margin-top: 20vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
}

/* line 160, app/assets/stylesheets/pages/admin_to_re-use/_contacts.scss */
.contact-edit .edit-form {
  background-color: #17141d;
  border-radius: 10px;
  padding: 10px;
}

/* line 165, app/assets/stylesheets/pages/admin_to_re-use/_contacts.scss */
.contact-edit .gradient-div {
  border-radius: 10px;
  background-image: linear-gradient(to right, rgba(166, 2, 64, 0.6), rgba(166, 2, 64, 0.5));
  padding: 1px;
  box-shadow: -1rem 0 3rem #000;
  width: 100%;
  height: 100%;
}

/* line 174, app/assets/stylesheets/pages/admin_to_re-use/_contacts.scss */
.contact-edit .form-edit-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* line 180, app/assets/stylesheets/pages/admin_to_re-use/_contacts.scss */
.contact-edit .form-edit-content .form-group {
  display: flex;
  flex-direction: row;
  justify-content: start;
  gap: 10px;
  align-items: center;
  max-width: 50%;
}

/* line 189, app/assets/stylesheets/pages/admin_to_re-use/_contacts.scss */
.contact-edit .form-edit-content .form-group label {
  border: none;
  color: #FFFFFF;
  margin: 0;
  padding: 0;
  flex: -1;
}

/* line 196, app/assets/stylesheets/pages/admin_to_re-use/_contacts.scss */
.contact-edit .form-edit-content .form-group select {
  width: auto;
}

/* line 199, app/assets/stylesheets/pages/admin_to_re-use/_contacts.scss */
.contact-edit .form-edit-content .form-group .text {
  margin: 0;
  flex-direction: row;
}

/* line 1, app/assets/stylesheets/pages/admin_to_re-use/_rendez-vous.scss */
.rdv-container {
  display: table;
  caption-side: bottom;
  width: 100%;
  margin-bottom: 1rem;
  vertical-align: top;
  text-align: center;
}

@media (max-width: 500px) {
  /* line 1, app/assets/stylesheets/pages/admin_to_re-use/_rendez-vous.scss */
  .rdv-container {
    font-size: 0.8rem;
  }
}

/* line 14, app/assets/stylesheets/pages/admin_to_re-use/_rendez-vous.scss */
.rdv-container thead tr {
  border: 1px solid #FFFFFF;
}

/* line 16, app/assets/stylesheets/pages/admin_to_re-use/_rendez-vous.scss */
.rdv-container thead tr th {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* line 23, app/assets/stylesheets/pages/admin_to_re-use/_rendez-vous.scss */
.rdv-container tbody tr {
  background-color: #000000 !important;
  color: #FFFFFF !important;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid #FFFFFF;
}

/* line 30, app/assets/stylesheets/pages/admin_to_re-use/_rendez-vous.scss */
.rdv-container tbody tr:hover {
  color: #A60240 !important;
}

/* line 33, app/assets/stylesheets/pages/admin_to_re-use/_rendez-vous.scss */
.rdv-container tbody tr td {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* line 42, app/assets/stylesheets/pages/admin_to_re-use/_rendez-vous.scss */
.rdv-new {
  margin-top: 20vh;
}

/* line 45, app/assets/stylesheets/pages/admin_to_re-use/_rendez-vous.scss */
.rdv-new .form-group {
  margin-bottom: 10px;
  margin-top: 10px;
}

/* line 48, app/assets/stylesheets/pages/admin_to_re-use/_rendez-vous.scss */
.rdv-new .form-group label {
  margin-bottom: 10px;
  margin-top: 10px;
}

/* line 52, app/assets/stylesheets/pages/admin_to_re-use/_rendez-vous.scss */
.rdv-new .form-group .m-center {
  margin: 15px auto;
}

/* line 56, app/assets/stylesheets/pages/admin_to_re-use/_rendez-vous.scss */
.rdv-new .form-action {
  margin-top: 10px;
}

/* line 5, app/assets/stylesheets/pages/admin_to_re-use/_subscription_modal.scss */
#subscriptionRequestModal .modal-content {
  max-width: 700px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 0;
}

/* line 11, app/assets/stylesheets/pages/admin_to_re-use/_subscription_modal.scss */
#subscriptionRequestModal .modal-content h2, #subscriptionRequestModal .modal-content .h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
}

/* line 17, app/assets/stylesheets/pages/admin_to_re-use/_subscription_modal.scss */
#subscriptionRequestModal .modal-content h2 i, #subscriptionRequestModal .modal-content .h2 i {
  color: #C38761;
  font-size: 1rem;
}

/* line 23, app/assets/stylesheets/pages/admin_to_re-use/_subscription_modal.scss */
#subscriptionRequestModal .modal-content .form-group {
  margin: 0;
  padding: 12px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* line 28, app/assets/stylesheets/pages/admin_to_re-use/_subscription_modal.scss */
#subscriptionRequestModal .modal-content .form-group:last-of-type {
  border-bottom: none;
}

/* line 32, app/assets/stylesheets/pages/admin_to_re-use/_subscription_modal.scss */
#subscriptionRequestModal .modal-content .form-group .section-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 8px 0;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* line 43, app/assets/stylesheets/pages/admin_to_re-use/_subscription_modal.scss */
#subscriptionRequestModal .modal-content .form-group .section-title i {
  color: #C38761;
  font-size: 0.8rem;
}

/* line 49, app/assets/stylesheets/pages/admin_to_re-use/_subscription_modal.scss */
#subscriptionRequestModal .modal-content .form-group .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 6px;
}

/* line 55, app/assets/stylesheets/pages/admin_to_re-use/_subscription_modal.scss */
#subscriptionRequestModal .modal-content .form-group .form-row .form-column {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* line 62, app/assets/stylesheets/pages/admin_to_re-use/_subscription_modal.scss */
#subscriptionRequestModal .modal-content .form-group .info-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 6px 8px;
  transition: all 0.2s ease;
}

/* line 69, app/assets/stylesheets/pages/admin_to_re-use/_subscription_modal.scss */
#subscriptionRequestModal .modal-content .form-group .info-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(195, 135, 97, 0.3);
}

/* line 74, app/assets/stylesheets/pages/admin_to_re-use/_subscription_modal.scss */
#subscriptionRequestModal .modal-content .form-group .info-item label {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 3px 0;
  display: block;
}

/* line 84, app/assets/stylesheets/pages/admin_to_re-use/_subscription_modal.scss */
#subscriptionRequestModal .modal-content .form-group .info-item span {
  font-size: 0.85rem;
  color: white;
  font-weight: 400;
  word-break: break-word;
  line-height: 1.2;
}

/* line 91, app/assets/stylesheets/pages/admin_to_re-use/_subscription_modal.scss */
#subscriptionRequestModal .modal-content .form-group .info-item span.amount-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: #C38761;
  background: rgba(195, 135, 97, 0.1);
  padding: 3px 6px;
  border-radius: 4px;
  display: inline-block;
}

/* line 101, app/assets/stylesheets/pages/admin_to_re-use/_subscription_modal.scss */
#subscriptionRequestModal .modal-content .form-group .info-item span.status-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 70px;
  text-align: center;
}

/* line 112, app/assets/stylesheets/pages/admin_to_re-use/_subscription_modal.scss */
#subscriptionRequestModal .modal-content .form-group .info-item span.status-badge[data-status="paid"], #subscriptionRequestModal .modal-content .form-group .info-item span.status-badge[data-status="completed"] {
  background-color: rgba(16, 185, 129, 0.2);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

/* line 119, app/assets/stylesheets/pages/admin_to_re-use/_subscription_modal.scss */
#subscriptionRequestModal .modal-content .form-group .info-item span.status-badge[data-status="failed"] {
  background-color: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

/* line 125, app/assets/stylesheets/pages/admin_to_re-use/_subscription_modal.scss */
#subscriptionRequestModal .modal-content .form-group .info-item span.status-badge[data-status="pending"] {
  background-color: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.4);
}

/* line 131, app/assets/stylesheets/pages/admin_to_re-use/_subscription_modal.scss */
#subscriptionRequestModal .modal-content .form-group .info-item span.status-badge[data-status="processing"] {
  background-color: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.4);
}

/* line 137, app/assets/stylesheets/pages/admin_to_re-use/_subscription_modal.scss */
#subscriptionRequestModal .modal-content .form-group .info-item span.status-badge[data-status="converted"] {
  background-color: rgba(139, 92, 246, 0.2);
  color: #8b5cf6;
  border: 1px solid rgba(139, 92, 246, 0.4);
}

/* line 144, app/assets/stylesheets/pages/admin_to_re-use/_subscription_modal.scss */
#subscriptionRequestModal .modal-content .form-group .info-item span.session-id {
  font-family: 'Courier New', monospace;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  background-color: rgba(0, 0, 0, 0.2);
  padding: 3px 5px;
  border-radius: 4px;
  word-break: break-all;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 157, app/assets/stylesheets/pages/admin_to_re-use/_subscription_modal.scss */
#subscriptionRequestModal .modal-content .form-group .address-info {
  background: rgba(195, 135, 97, 0.05);
  border: 1px solid rgba(195, 135, 97, 0.2);
  border-radius: 8px;
  padding: 8px 10px;
  margin-top: 6px;
}

/* line 164, app/assets/stylesheets/pages/admin_to_re-use/_subscription_modal.scss */
#subscriptionRequestModal .modal-content .form-group .address-info span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.3;
  font-weight: 500;
}

/* line 172, app/assets/stylesheets/pages/admin_to_re-use/_subscription_modal.scss */
#subscriptionRequestModal .modal-content .form-group .applications-list {
  background: rgba(195, 135, 97, 0.05);
  border: 1px solid rgba(195, 135, 97, 0.2);
  border-radius: 8px;
  padding: 6px 8px;
  min-height: 28px;
  display: flex;
  align-items: center;
}

/* line 181, app/assets/stylesheets/pages/admin_to_re-use/_subscription_modal.scss */
#subscriptionRequestModal .modal-content .form-group .applications-list span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

/* line 187, app/assets/stylesheets/pages/admin_to_re-use/_subscription_modal.scss */
#subscriptionRequestModal .modal-content .form-group .applications-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* line 192, app/assets/stylesheets/pages/admin_to_re-use/_subscription_modal.scss */
#subscriptionRequestModal .modal-content .form-group .applications-list ul li {
  font-size: 0.75rem;
  color: white;
  padding: 1px 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* line 200, app/assets/stylesheets/pages/admin_to_re-use/_subscription_modal.scss */
#subscriptionRequestModal .modal-content .form-group .applications-list ul li::before {
  content: '▶';
  color: #C38761;
  font-size: 0.6rem;
}

/* line 210, app/assets/stylesheets/pages/admin_to_re-use/_subscription_modal.scss */
#subscriptionRequestModal .modal-content .form-actions {
  padding: 12px 24px;
  background: rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

/* line 219, app/assets/stylesheets/pages/admin_to_re-use/_subscription_modal.scss */
#subscriptionRequestModal .modal-content .form-actions .form-button, #subscriptionRequestModal .modal-content .form-actions .crm-action-button, #subscriptionRequestModal .modal-content .form-actions .users-management-container .users-header .add-user-btn, .users-management-container .users-header #subscriptionRequestModal .modal-content .form-actions .add-user-btn {
  padding: 0.625rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  min-width: 100px;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

/* line 229, app/assets/stylesheets/pages/admin_to_re-use/_subscription_modal.scss */
#subscriptionRequestModal .modal-content .form-actions .form-button.secondary, #subscriptionRequestModal .modal-content .form-actions .secondary.crm-action-button, #subscriptionRequestModal .modal-content .form-actions .users-management-container .users-header .secondary.add-user-btn, .users-management-container .users-header #subscriptionRequestModal .modal-content .form-actions .secondary.add-user-btn {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 234, app/assets/stylesheets/pages/admin_to_re-use/_subscription_modal.scss */
#subscriptionRequestModal .modal-content .form-actions .form-button.secondary:hover, #subscriptionRequestModal .modal-content .form-actions .secondary.crm-action-button:hover, #subscriptionRequestModal .modal-content .form-actions .users-management-container .users-header .secondary.add-user-btn:hover, .users-management-container .users-header #subscriptionRequestModal .modal-content .form-actions .secondary.add-user-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

/* line 240, app/assets/stylesheets/pages/admin_to_re-use/_subscription_modal.scss */
#subscriptionRequestModal .modal-content .form-actions .form-button:not(.secondary), #subscriptionRequestModal .modal-content .form-actions .crm-action-button:not(.secondary), #subscriptionRequestModal .modal-content .form-actions .users-management-container .users-header .add-user-btn:not(.secondary), .users-management-container .users-header #subscriptionRequestModal .modal-content .form-actions .add-user-btn:not(.secondary) {
  background: #C38761;
  color: #140D23;
}

/* line 244, app/assets/stylesheets/pages/admin_to_re-use/_subscription_modal.scss */
#subscriptionRequestModal .modal-content .form-actions .form-button:not(.secondary):hover, #subscriptionRequestModal .modal-content .form-actions .crm-action-button:not(.secondary):hover, #subscriptionRequestModal .modal-content .form-actions .users-management-container .users-header .add-user-btn:not(.secondary):hover, .users-management-container .users-header #subscriptionRequestModal .modal-content .form-actions .add-user-btn:not(.secondary):hover {
  background: #ca9573;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  /* line 256, app/assets/stylesheets/pages/admin_to_re-use/_subscription_modal.scss */
  #subscriptionRequestModal .modal-content {
    max-width: 95%;
    max-height: 90vh;
  }
  /* line 260, app/assets/stylesheets/pages/admin_to_re-use/_subscription_modal.scss */
  #subscriptionRequestModal .modal-content .form-group {
    padding: 10px 16px;
  }
  /* line 263, app/assets/stylesheets/pages/admin_to_re-use/_subscription_modal.scss */
  #subscriptionRequestModal .modal-content .form-group .form-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  /* line 269, app/assets/stylesheets/pages/admin_to_re-use/_subscription_modal.scss */
  #subscriptionRequestModal .modal-content .form-actions {
    padding: 10px 16px;
    flex-direction: column;
  }
  /* line 273, app/assets/stylesheets/pages/admin_to_re-use/_subscription_modal.scss */
  #subscriptionRequestModal .modal-content .form-actions .form-button, #subscriptionRequestModal .modal-content .form-actions .crm-action-button, #subscriptionRequestModal .modal-content .form-actions .users-management-container .users-header .add-user-btn, .users-management-container .users-header #subscriptionRequestModal .modal-content .form-actions .add-user-btn {
    width: 100%;
  }
}

/* line 2, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-background {
  height: 100vh;
  /* Hauteur fixe de la fenêtre */
  display: flex;
  flex-direction: column;
  overflow: auto;
  background: linear-gradient(151deg, #140d23 25%, #640127 100%);
  background-attachment: fixed;
  background-size: 100% 100vh;
  background-repeat: no-repeat;
  scrollbar-color: rgba(232, 185, 114, 0.6) rgba(255, 255, 255, 0.05);
  /* Firefox */
}

/* line 17, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-background::-webkit-scrollbar {
  width: 5px;
}

/* line 21, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-background::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

/* line 26, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-background::-webkit-scrollbar-thumb {
  background: rgba(232, 185, 114, 0.6);
  border-radius: 3px;
}

/* line 31, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-background::-webkit-scrollbar-thumb:hover {
  background: rgba(232, 185, 114, 0.8);
}

/* line 37, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-container {
  flex: 1;
  /* Prend tout l'espace restant */
  width: 100vw;
  margin-left: calc((100vw - 100%) / -2);
  position: relative;
}

/* line 46, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-home {
  margin-bottom: 1.5rem;
}

/* line 51, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-main-header {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 55, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-main-header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* line 65, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-main-title {
  font-size: 1.8rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.5px;
}

/* line 74, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-main-header__brand .powered-by {
  font-size: 0.9rem;
  color: #d4af37;
  letter-spacing: 1px;
}

/* line 79, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-main-header__brand .powered-by strong {
  font-weight: 700;
  color: #d4af37;
}

/* line 86, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding: 1rem;
}

/* line 95, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-show-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

/* line 107, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-wizard {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* line 117, app/assets/stylesheets/pages/customerspace/_portal.scss */
.no-steps-message,
.no-steps-available {
  text-align: center;
  padding: 2rem;
  color: #c9c9c9;
}

/* line 123, app/assets/stylesheets/pages/customerspace/_portal.scss */
.no-steps-message p,
.no-steps-available p {
  margin: 0;
  font-size: 1.1rem;
}

/* line 129, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-steps__header {
  width: 100%;
  max-width: 1200px;
  /* Largeur maximale pour centrer le contenu */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin: 0 2rem 2rem 2rem;
  /* Marges horizontales pour l'espacement */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
}

/* line 145, app/assets/stylesheets/pages/customerspace/_portal.scss */
.project-header {
  text-align: center;
}

/* line 148, app/assets/stylesheets/pages/customerspace/_portal.scss */
.project-header .project-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

/* line 156, app/assets/stylesheets/pages/customerspace/_portal.scss */
.project-description {
  text-align: center;
  max-width: 800px;
}

/* line 160, app/assets/stylesheets/pages/customerspace/_portal.scss */
.project-description p {
  color: #c9c9c9;
  font-style: italic;
  margin: 0;
  line-height: 1.4;
}

/* line 168, app/assets/stylesheets/pages/customerspace/_portal.scss */
.steps-navigation {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0;
}

/* line 176, app/assets/stylesheets/pages/customerspace/_portal.scss */
.steps-progress-container {
  position: relative;
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  z-index: 1;
}

/* line 187, app/assets/stylesheets/pages/customerspace/_portal.scss */
.steps-progress-line {
  width: calc(100% - 6rem);
  max-width: 600px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
}

/* line 193, app/assets/stylesheets/pages/customerspace/_portal.scss */
.steps-progress-line.progress-gradient-dynamic {
  background: linear-gradient(to right, #D4AF37 0%, #D4AF37 var(--progress-percent, 0%), rgba(255, 255, 255, 0.2) var(--progress-percent, 0%), rgba(255, 255, 255, 0.2) 100%);
}

/* line 204, app/assets/stylesheets/pages/customerspace/_portal.scss */
.steps-circles-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  top: -50px;
  z-index: 2;
}

/* line 215, app/assets/stylesheets/pages/customerspace/_portal.scss */
.step-circle-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

/* line 223, app/assets/stylesheets/pages/customerspace/_portal.scss */
.step-circle-wrapper:hover {
  transform: translateY(-2px);
}

/* line 228, app/assets/stylesheets/pages/customerspace/_portal.scss */
.step-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: #140d23;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  z-index: 3;
}

/* line 242, app/assets/stylesheets/pages/customerspace/_portal.scss */
.step-circle .step-number {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
}

/* line 249, app/assets/stylesheets/pages/customerspace/_portal.scss */
.step-circle.todo {
  border-color: rgba(108, 117, 125, 0.5);
  background: #6c757d;
}

/* line 257, app/assets/stylesheets/pages/customerspace/_portal.scss */
.step-circle.on_going {
  border-color: rgba(255, 193, 7, 0.6);
  background: #ffc107;
}

/* line 265, app/assets/stylesheets/pages/customerspace/_portal.scss */
.step-circle.done {
  border-color: rgba(40, 167, 69, 0.6);
  background: #28a745;
}

/* line 273, app/assets/stylesheets/pages/customerspace/_portal.scss */
.step-circle.active {
  border-color: #d4af37 !important;
  background: #140d23 !important;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* line 281, app/assets/stylesheets/pages/customerspace/_portal.scss */
.step-circle.active.done {
  border-color: rgba(40, 167, 69, 0.6) !important;
  background: rgba(40, 167, 69, 0.9) !important;
  box-shadow: 0 0 10px rgba(40, 167, 69, 0.3);
}

/* line 291, app/assets/stylesheets/pages/customerspace/_portal.scss */
.step-label {
  text-align: center;
  font-size: 0.85rem;
  color: #ffffff;
  max-width: 80px;
  line-height: 1.2;
  font-weight: 400;
}

/* line 299, app/assets/stylesheets/pages/customerspace/_portal.scss */
.step-circle-wrapper:hover .step-label {
  color: #ffffff;
}

/* line 304, app/assets/stylesheets/pages/customerspace/_portal.scss */
.step-circle.active + .step-label, .step-circle.done + .step-label {
  color: #ffffff;
  font-weight: 400;
}

/* line 311, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-steps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

/* line 317, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-step-card {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1rem;
  outline: none;
}

/* line 324, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-step-card:is(:hover, :focus) {
  box-shadow: 0 0 0 1.5px rgba(113, 113, 113, 0.3);
}

/* line 328, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-step-card.is-active {
  border-color: #c9dcf9;
}

/* line 332, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-step-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

/* line 339, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-step-card__title {
  font-size: 1rem;
  margin: 0;
}

/* line 344, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-step-card__tag {
  font-size: 0.85rem;
  color: #374151;
}

/* line 349, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-step-card__summary {
  color: #4b5563;
  margin: 0.5rem 0 0.75rem;
}

/* line 354, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-step-card__metrics {
  display: flex;
  gap: 1rem;
  padding: 0;
  margin: 0 0 0.75rem;
  list-style: none;
  font-size: 0.9rem;
}

/* line 364, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-step-detail-container {
  width: 100%;
  max-width: 100%;
  margin: 2rem 2rem 4rem 2rem;
}

/* line 371, app/assets/stylesheets/pages/customerspace/_portal.scss */
.steps-cards-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  /* Largeur maximale pour centrer le contenu */
}

/* line 378, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-step-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

/* line 387, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-step-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
}

/* line 392, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-step-card.is-expanded {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

/* line 399, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-step-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

/* line 408, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-step-card-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
}

/* line 415, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-step-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* line 421, app/assets/stylesheets/pages/customerspace/_portal.scss */
.step-form-indicator {
  font-size: 0.85rem;
  color: #d4af37;
  font-style: italic;
}

/* line 426, app/assets/stylesheets/pages/customerspace/_portal.scss */
.step-form-indicator.step-form-completed {
  color: #4caf50;
  font-weight: 600;
}

/* line 432, app/assets/stylesheets/pages/customerspace/_portal.scss */
.step-no-form-indicator {
  font-size: 0.85rem;
  color: #d4af37;
  font-style: italic;
}

/* line 438, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-step-toggle-icon {
  color: #ffffff;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

/* line 443, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-step-card.is-expanded .portal-step-toggle-icon {
  transform: rotate(180deg);
}

/* line 448, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-step-card-content {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.1);
  color: #ffffff !important;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  transition: all 0.3s ease;
  max-height: 0;
  overflow: hidden;
}

/* line 463, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-step-card-content.is-open {
  max-height: none;
  overflow: visible;
  padding: 1.5rem;
}

/* line 469, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-step-card-content.is-closed {
  max-height: 0;
  padding: 0;
  overflow: hidden;
}

/* line 476, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-step-card-content * {
  color: #ffffff !important;
}

/* line 482, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-step-card-content .portal-detail__questions .question-item {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* line 487, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-step-card-content .portal-detail__questions .question-item .question-label,
.portal-step-card-content .portal-detail__questions .question-item label {
  color: #ffffff !important;
  font-weight: 600 !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  font-size: 0.9rem !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

/* line 504, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-step-card-content .portal-detail__title {
  color: #ffffff !important;
  text-align: left;
  margin-bottom: 1rem;
}

/* line 510, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-step-card-content .portal-detail__meta {
  color: #c9c9c9 !important;
  margin-bottom: 1rem;
}

/* line 515, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-step-card-content .portal-detail__summary {
  color: #c9c9c9 !important;
  margin-bottom: 1.5rem;
}

/* line 520, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-step-card-content .question-label {
  color: #ffffff !important;
  font-weight: 600 !important;
  display: block !important;
  margin-bottom: 0.5rem;
  opacity: 1 !important;
  visibility: visible !important;
  font-size: 0.9rem !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* line 532, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-step-card-content .form-input,
.portal-step-card-content .form-textarea {
  text-align: start;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff !important;
  border-radius: 4px;
  padding: 0.5rem;
  width: 100%;
}

/* line 542, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-step-card-content .form-input::placeholder,
.portal-step-card-content .form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* line 547, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-step-card-content .question-item {
  margin-bottom: 1.5rem;
}

/* line 551, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-step-card-content .question-item label {
  color: #ffffff !important;
  font-weight: 600 !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  font-size: 0.9rem !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

/* line 564, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-step-card-content .question-item[data-question-id] {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* line 572, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-step-card-content .step-global-validation {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

/* line 579, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-step-card-content .step-validate-all-btn {
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  border: none;
  color: #000000 !important;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  /* Style pour le bouton validé - vert avec coche */
}

/* line 594, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-step-card-content .step-validate-all-btn:hover:not(:disabled):not(.validated) {
  background: linear-gradient(135deg, #f4d03f, #d4af37);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

/* line 600, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-step-card-content .step-validate-all-btn:disabled:not(.validated) {
  background: rgba(212, 175, 55, 0.3);
  color: rgba(0, 0, 0, 0.5) !important;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* line 609, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-step-card-content .step-validate-all-btn.validated {
  background: linear-gradient(135deg, #28a745, #20c997) !important;
  color: #ffffff !important;
  cursor: default;
  box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

/* line 615, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-step-card-content .step-validate-all-btn.validated i {
  font-size: 1rem;
}

/* line 619, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-step-card-content .step-validate-all-btn.validated:hover {
  transform: none;
  box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

/* line 627, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-steps__detail-header {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  margin-bottom: 0.75rem;
}

@media (min-width: 1024px) {
  /* line 635, app/assets/stylesheets/pages/customerspace/_portal.scss */
  .portal-steps {
    grid-template-columns: 2fr 3fr;
  }
  /* line 638, app/assets/stylesheets/pages/customerspace/_portal.scss */
  .portal-steps__grid {
    grid-column: 1 / 2;
  }
  /* line 641, app/assets/stylesheets/pages/customerspace/_portal.scss */
  .portal-steps__detail {
    grid-column: 2 / 3;
  }
}

/* Overrides pour éviter le chevauchement hérité des styles servicespace */
/* line 647, app/assets/stylesheets/pages/customerspace/_portal.scss */
.project-show-page .project-steps-section .portal-step-card {
  height: auto !important;
  min-height: 0;
  padding: 1rem;
}

/* line 653, app/assets/stylesheets/pages/customerspace/_portal.scss */
.project-show-page .project-steps-section .portal-step-card .step-header {
  margin-bottom: 8px;
}

/* line 656, app/assets/stylesheets/pages/customerspace/_portal.scss */
.project-show-page
.project-steps-section
.portal-step-card
.portal-step-card__summary {
  margin-bottom: 8px;
}

/* line 663, app/assets/stylesheets/pages/customerspace/_portal.scss */
.project-show-page .project-steps-section .portal-step-card .step-progress {
  margin-top: 8px;
}

/* line 668, app/assets/stylesheets/pages/customerspace/_portal.scss */
.step-status {
  padding: 4px 10px;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-block;
  letter-spacing: 0.5px;
}

/* line 678, app/assets/stylesheets/pages/customerspace/_portal.scss */
.step-status.todo {
  background: rgba(108, 117, 125, 0.3);
  color: #adb5bd;
}

/* line 682, app/assets/stylesheets/pages/customerspace/_portal.scss */
.step-status.on_going {
  background: rgba(255, 193, 7, 0.3);
  color: #ffc107;
}

/* line 686, app/assets/stylesheets/pages/customerspace/_portal.scss */
.step-status.done {
  background: rgba(40, 167, 69, 0.3);
  color: #51cf66;
}

/* line 692, app/assets/stylesheets/pages/customerspace/_portal.scss */
.step-progress {
  margin-top: 6px;
}

/* line 695, app/assets/stylesheets/pages/customerspace/_portal.scss */
.step-progress .progress-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

/* line 701, app/assets/stylesheets/pages/customerspace/_portal.scss */
.step-progress .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
  border-radius: 2px;
  transition: width 0.3s ease;
}

/* Panneau de détail */
/* line 709, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-detail__title {
  text-align: center;
  margin: 0 0 6px;
  font-size: 1.25rem;
}

/* line 714, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-detail__meta {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}

/* line 720, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-detail__summary {
  color: #c9c9c9;
  margin-bottom: 10px;
}

/* line 724, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-detail__progress {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

/* line 730, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-detail__form .question-item {
  margin-bottom: 12px;
}

/* line 734, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-detail__form .question-label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  opacity: 1 !important;
  color: #e5e7eb;
}

/* line 742, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-detail__form-title {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

/* line 748, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-detail__form-desc {
  color: #c9c9c9;
  margin-bottom: 12px;
}

/* line 753, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-detail__form .choices {
  display: grid;
  gap: 6px;
}

/* line 757, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-detail__contents ul {
  padding-left: 18px;
}

/* Overrides forts pour s'assurer que les labels et champs sont visibles, malgré des styles globaux */
/* line 762, app/assets/stylesheets/pages/customerspace/_portal.scss */
.project-show-page .portal-detail__form label,
.project-show-page .portal-detail__form .question-label {
  opacity: 1 !important;
  color: rgba(255, 255, 255, 0.9);
  text-transform: none !important;
  letter-spacing: normal !important;
}

/* line 770, app/assets/stylesheets/pages/customerspace/_portal.scss */
.project-show-page .portal-detail__form .choices {
  display: grid;
  gap: 8px;
}

/* line 774, app/assets/stylesheets/pages/customerspace/_portal.scss */
.project-show-page .portal-detail__form .choices .choice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* line 780, app/assets/stylesheets/pages/customerspace/_portal.scss */
.project-show-page .portal-detail__form input[type="radio"],
.project-show-page .portal-detail__form input[type="checkbox"] {
  opacity: 1 !important;
  position: static !important;
}

/* line 786, app/assets/stylesheets/pages/customerspace/_portal.scss */
.project-show-page .portal-detail__form input[type="text"],
.project-show-page .portal-detail__form input[type="date"],
.project-show-page .portal-detail__form input[type="file"],
.project-show-page .portal-detail__form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-radius: 6px;
  padding: 8px 10px;
}

/* line 798, app/assets/stylesheets/pages/customerspace/_portal.scss */
.project-show-page .portal-detail__form textarea {
  resize: vertical;
}

/* line 802, app/assets/stylesheets/pages/customerspace/_portal.scss */
.form-template-section-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ============================================
   SYSTÈME DE TOAST NOTIFICATIONS PORTAIL
   ============================================ */
/* line 812, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  max-width: 400px;
  padding: 14px 18px;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s ease;
}

/* line 825, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-toast--visible {
  transform: translateX(0);
  opacity: 1;
}

/* line 830, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-toast--hiding {
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* line 836, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-toast--success {
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.95), rgba(32, 201, 151, 0.95));
  color: #ffffff;
}

/* line 841, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-toast--error {
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.95), rgba(195, 40, 55, 0.95));
  color: #ffffff;
}

/* line 846, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-toast--warning {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.95), rgba(230, 160, 0, 0.95));
  color: #1a1a1a;
}

/* line 851, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-toast--info {
  background: linear-gradient(135deg, rgba(23, 162, 184, 0.95), rgba(20, 140, 160, 0.95));
  color: #ffffff;
}

/* line 856, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-toast__content {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 861, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-toast__content i {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* line 866, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-toast__content span {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
}

/* ============================================
   INDICATEUR DE CHARGEMENT
   ============================================ */
/* line 878, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-loading-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 6px;
  color: #d4af37;
  font-size: 0.9rem;
  margin-top: 8px;
}

/* line 890, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-loading-indicator i {
  font-size: 1rem;
}

/* ============================================
   MARQUEURS DE CHAMPS OBLIGATOIRES
   ============================================ */
/* line 899, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-required-legend {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  border-left: 3px solid #e74c3c;
}

/* line 912, app/assets/stylesheets/pages/customerspace/_portal.scss */
.required-marker {
  color: #e74c3c;
  font-weight: bold;
  font-size: 1.1em;
  margin-left: 4px;
}

/* line 920, app/assets/stylesheets/pages/customerspace/_portal.scss */
.question-required .question-label {
  position: relative;
}

/* line 926, app/assets/stylesheets/pages/customerspace/_portal.scss */
.question-item.error-highlight {
  background: rgba(231, 76, 60, 0.1) !important;
  border: 1px solid rgba(231, 76, 60, 0.4) !important;
  border-radius: 8px;
  padding: 12px !important;
  margin-bottom: 1rem !important;
}

/* line 933, app/assets/stylesheets/pages/customerspace/_portal.scss */
.question-item.error-highlight .question-label {
  color: #e74c3c !important;
}

/* line 938, app/assets/stylesheets/pages/customerspace/_portal.scss */
.question-item.question-locked {
  opacity: 0.7;
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.3);
  border-radius: 8px;
  padding: 12px;
}

/* line 945, app/assets/stylesheets/pages/customerspace/_portal.scss */
.question-item.question-locked::after {
  content: '✓ Validé';
  display: inline-block;
  font-size: 0.8rem;
  color: #28a745;
  margin-left: 8px;
  font-weight: 600;
}

/* ============================================
   MESSAGE D'ERREUR DE VALIDATION
   ============================================ */
/* line 960, app/assets/stylesheets/pages/customerspace/_portal.scss */
.validation-error-message {
  background: rgba(231, 76, 60, 0.15);
  border: 1px solid rgba(231, 76, 60, 0.4);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 16px;
  color: #ffffff;
}

/* line 968, app/assets/stylesheets/pages/customerspace/_portal.scss */
.validation-error-message .validation-error-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

/* line 974, app/assets/stylesheets/pages/customerspace/_portal.scss */
.validation-error-message .validation-error-header i {
  color: #e74c3c;
  font-size: 1.2rem;
}

/* line 979, app/assets/stylesheets/pages/customerspace/_portal.scss */
.validation-error-message .validation-error-header strong {
  color: #e74c3c;
  font-size: 1rem;
}

/* line 985, app/assets/stylesheets/pages/customerspace/_portal.scss */
.validation-error-message p {
  margin: 0 0 10px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

/* line 991, app/assets/stylesheets/pages/customerspace/_portal.scss */
.validation-error-message ul {
  margin: 0;
  padding-left: 20px;
}

/* line 995, app/assets/stylesheets/pages/customerspace/_portal.scss */
.validation-error-message ul li {
  margin-bottom: 4px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

/* line 1002, app/assets/stylesheets/pages/customerspace/_portal.scss */
.validation-error-message .validation-error-hint {
  margin-top: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* ============================================
   INDICATEUR DE FICHIER UPLOADÉ
   ============================================ */
/* line 1014, app/assets/stylesheets/pages/customerspace/_portal.scss */
.file-upload-success {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(40, 167, 69, 0.15);
  border: 1px solid rgba(40, 167, 69, 0.4);
  border-radius: 8px;
  color: #51cf66;
  font-size: 0.9rem;
  margin-top: 10px;
}

/* line 1026, app/assets/stylesheets/pages/customerspace/_portal.scss */
.file-upload-success i {
  font-size: 1.1rem;
}

/* line 1030, app/assets/stylesheets/pages/customerspace/_portal.scss */
.file-upload-success strong {
  color: #ffffff;
}

/* ============================================
   SECTION ÉTAPE VERROUILLÉE (améliorée)
   ============================================ */
/* line 1039, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-step-locked-message {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 1046, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-step-locked-message .locked-icon-wrapper {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: rgba(255, 193, 7, 0.15);
  border: 2px solid rgba(255, 193, 7, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 1057, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-step-locked-message .locked-icon-wrapper i {
  font-size: 1.5rem;
  color: #ffc107;
}

/* line 1063, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-step-locked-message h4, .portal-step-locked-message .h4 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

/* line 1070, app/assets/stylesheets/pages/customerspace/_portal.scss */
.portal-step-locked-message .locked-explanation {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  max-width: 400px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}

/* line 1079, app/assets/stylesheets/pages/customerspace/_portal.scss */
.blocking-steps-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

/* line 1087, app/assets/stylesheets/pages/customerspace/_portal.scss */
.blocking-steps-title {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 1096, app/assets/stylesheets/pages/customerspace/_portal.scss */
.blocking-steps-title i {
  color: #d4af37;
}

/* line 1101, app/assets/stylesheets/pages/customerspace/_portal.scss */
.blocking-steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 1107, app/assets/stylesheets/pages/customerspace/_portal.scss */
.blocking-step-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 1119, app/assets/stylesheets/pages/customerspace/_portal.scss */
.blocking-step-item:last-child {
  margin-bottom: 0;
}

/* line 1123, app/assets/stylesheets/pages/customerspace/_portal.scss */
.blocking-step-item:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateX(4px);
}

/* line 1129, app/assets/stylesheets/pages/customerspace/_portal.scss */
.blocking-step-item .blocking-step-number {
  width: 26px;
  height: 26px;
  background: #d4af37;
  color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* line 1143, app/assets/stylesheets/pages/customerspace/_portal.scss */
.blocking-step-item .blocking-step-label {
  flex: 1;
  font-size: 0.9rem;
  color: #ffffff;
}

/* line 1149, app/assets/stylesheets/pages/customerspace/_portal.scss */
.blocking-step-item i.fa-arrow-right {
  color: #d4af37;
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* line 1156, app/assets/stylesheets/pages/customerspace/_portal.scss */
.blocking-step-item:hover i.fa-arrow-right {
  opacity: 1;
}

/* line 1161, app/assets/stylesheets/pages/customerspace/_portal.scss */
.locked-actions {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 1167, app/assets/stylesheets/pages/customerspace/_portal.scss */
.locked-hint {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* line 1176, app/assets/stylesheets/pages/customerspace/_portal.scss */
.locked-hint i {
  color: #17a2b8;
}

/* line 1181, app/assets/stylesheets/pages/customerspace/_portal.scss */
.locked-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* line 1187, app/assets/stylesheets/pages/customerspace/_portal.scss */
.locked-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ============================================
   ÉTAT VIDE AMÉLIORÉ
   ============================================ */
/* line 1198, app/assets/stylesheets/pages/customerspace/_portal.scss */
.no-steps-message,
.no-steps-available {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  max-width: 600px;
  margin: 2rem auto;
}

/* line 1209, app/assets/stylesheets/pages/customerspace/_portal.scss */
.empty-state-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(232, 185, 114, 0.1));
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 1220, app/assets/stylesheets/pages/customerspace/_portal.scss */
.empty-state-icon i {
  font-size: 2rem;
  color: #d4af37;
}

/* line 1226, app/assets/stylesheets/pages/customerspace/_portal.scss */
.empty-state-title {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* line 1233, app/assets/stylesheets/pages/customerspace/_portal.scss */
.empty-state-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 450px;
  margin: 0 auto 1.5rem;
}

/* line 1241, app/assets/stylesheets/pages/customerspace/_portal.scss */
.empty-state-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

/* line 1248, app/assets/stylesheets/pages/customerspace/_portal.scss */
.empty-state-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

/* line 1257, app/assets/stylesheets/pages/customerspace/_portal.scss */
.empty-state-actions .btn:hover {
  transform: translateY(-2px);
}

/* line 1262, app/assets/stylesheets/pages/customerspace/_portal.scss */
.empty-state-actions .btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  background: transparent;
}

/* line 1267, app/assets/stylesheets/pages/customerspace/_portal.scss */
.empty-state-actions .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* line 1273, app/assets/stylesheets/pages/customerspace/_portal.scss */
.empty-state-actions .btn-primary, .empty-state-actions .crm-action-button.crm-action-button-primary {
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  border: none;
  color: #1a1a1a;
  font-weight: 600;
}

/* line 1279, app/assets/stylesheets/pages/customerspace/_portal.scss */
.empty-state-actions .btn-primary:hover, .empty-state-actions .crm-action-button.crm-action-button-primary:hover {
  background: linear-gradient(135deg, #f4d03f, #d4af37);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* line 1286, app/assets/stylesheets/pages/customerspace/_portal.scss */
.empty-state-hint {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* line 1294, app/assets/stylesheets/pages/customerspace/_portal.scss */
.empty-state-hint i {
  color: #d4af37;
}

/* line 1299, app/assets/stylesheets/pages/customerspace/_portal.scss */
.empty-state-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(23, 162, 184, 0.1);
  border: 1px solid rgba(23, 162, 184, 0.3);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* line 1311, app/assets/stylesheets/pages/customerspace/_portal.scss */
.empty-state-info i {
  color: #17a2b8;
  flex-shrink: 0;
}

/* ============================================
   ÉTAPES VERROUILLÉES DANS LA NAV
   ============================================ */
/* line 1321, app/assets/stylesheets/pages/customerspace/_portal.scss */
.step-circle-wrapper.step-locked {
  cursor: not-allowed;
  opacity: 0.6;
}

/* line 1325, app/assets/stylesheets/pages/customerspace/_portal.scss */
.step-circle-wrapper.step-locked:hover {
  transform: none;
}

/* line 1329, app/assets/stylesheets/pages/customerspace/_portal.scss */
.step-circle-wrapper.step-locked .step-circle {
  background: rgba(108, 117, 125, 0.5) !important;
  border-color: rgba(108, 117, 125, 0.3) !important;
}

/* line 1334, app/assets/stylesheets/pages/customerspace/_portal.scss */
.step-circle-wrapper.step-locked .locked-icon {
  font-size: 0.7rem;
  margin-left: 4px;
}

/* ============================================
   RESPONSIVE AJUSTEMENTS
   ============================================ */
@media (max-width: 768px) {
  /* line 1345, app/assets/stylesheets/pages/customerspace/_portal.scss */
  .portal-toast {
    left: 10px;
    right: 10px;
    max-width: none;
  }
  /* line 1351, app/assets/stylesheets/pages/customerspace/_portal.scss */
  .no-steps-message,
.no-steps-available {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }
  /* line 1357, app/assets/stylesheets/pages/customerspace/_portal.scss */
  .empty-state-actions {
    flex-direction: column;
    align-items: stretch;
  }
  /* line 1361, app/assets/stylesheets/pages/customerspace/_portal.scss */
  .empty-state-actions .btn {
    justify-content: center;
  }
  /* line 1366, app/assets/stylesheets/pages/customerspace/_portal.scss */
  .blocking-step-item {
    padding: 8px 10px;
  }
  /* line 1369, app/assets/stylesheets/pages/customerspace/_portal.scss */
  .blocking-step-item .blocking-step-label {
    font-size: 0.85rem;
  }
  /* line 1374, app/assets/stylesheets/pages/customerspace/_portal.scss */
  .locked-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  /* line 1378, app/assets/stylesheets/pages/customerspace/_portal.scss */
  .locked-buttons .btn {
    justify-content: center;
  }
}

/* line 3, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.dashboard-client {
  padding-top: 12vh;
  display: flex;
  height: 100vh;
  flex-direction: column;
  gap: 10px;
}

/* line 11, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.dashboard-client.nightmode {
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
  transition: background 0.8s ease, color 0.3s ease;
}

/* line 16, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.dashboard-client.lightmode {
  background: linear-gradient(170deg, #e8e8e8 45%, rgba(229, 168, 46, 0.8) 135%);
  transition: background 0.8s ease, color 0.3s ease;
}

/* line 21, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.dashboard-client h2, .dashboard-client .h2 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #FFFFFF;
}

/* line 27, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.dashboard-client p {
  font-size: 0.8rem;
  margin-bottom: 0;
}

/* line 32, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.dashboard-client a {
  font-size: 0.8rem;
}

/* line 37, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.bloc-client-content-assistant {
  margin-top: 3.5%;
  /* Alignement vertical avec les autres sections */
}

/* line 41, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.dashboard-client-content {
  padding: 10px;
  gap: 20px;
  width: 100%;
  height: 95%;
  display: flex;
  flex-direction: row;
}

@media (max-width: 1100px) {
  /* line 41, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
  .dashboard-client-content {
    flex-direction: column;
  }
  /* line 52, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
  .dashboard-client-content .bloc-info {
    flex-direction: row;
    width: 100%;
  }
}

@media (max-width: 1100px) and (max-width: 600px) {
  /* line 52, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
  .dashboard-client-content .bloc-info {
    flex-direction: column;
  }
}

@media (max-width: 1100px) {
  /* line 61, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
  .dashboard-client-content .bloc-autre {
    width: 100%;
  }
  /* line 65, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
  .dashboard-client-content .bloc-projet {
    flex-direction: column;
    width: 100%;
  }
}

/* line 74, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.vignette-bloc-info {
  border-radius: 10px;
  background-image: linear-gradient(to bottom, #a60240, white);
  position: absolute;
  z-index: 999;
  left: 0;
  width: 28%;
  padding: 4px;
}

/* line 88, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.bloc-info {
  background-color: #140D23;
  padding: 15px;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  gap: 5px;
  position: relative;
}

/* line 98, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.bloc-info-content {
  flex: 10;
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
}

/* line 106, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.bloc-info-handside {
  flex: 1;
  position: relative;
}

/* line 111, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.vignette-bloc-info-handside-hand {
  height: 14%;
  aspect-ratio: 1/1;
  background-image: linear-gradient(to right, transparent 58%, rgba(255, 255, 255, 0.5) 42%);
  border-radius: 50%;
  top: 40%;
  right: -178%;
  position: absolute;
  padding: 3px;
}

/* line 126, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.bloc-info-handside-hand {
  height: 100%;
  width: 100%;
  background-color: #140D23;
  border-radius: 50%;
  display: flex;
  text-align: center;
  align-items: center;
  position: relative;
}

/* line 137, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.bloc-info-handside-hand i {
  font-size: 3rem;
  color: #A60240;
  position: relative;
  right: -30%;
}

/* line 144, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.vignette-cover-compte {
  border-radius: 10px;
  background-image: linear-gradient(to right, rgba(166, 2, 64, 0.6), rgba(166, 2, 64, 0.5));
  padding: 1px;
  box-shadow: -1rem 0 3rem #000;
  height: 25%;
  transition: 0.4s ease-out;
}

@media (max-width: 1100px) {
  /* line 144, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
  .vignette-cover-compte {
    width: 100%;
  }
  /* line 159, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
  .vignette-cover-compte h2, .vignette-cover-compte .h2 {
    text-align: center;
  }
}

/* line 165, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.compte {
  background-color: #140D23;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  padding: 10px;
  gap: 6px;
  display: flex;
  flex-direction: column;
}

/* line 176, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.bulle {
  border-radius: 3px;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.263), rgba(255, 255, 255, 0.199));
  padding: 2px;
}

/* line 186, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.link_bulle {
  border-radius: 3px;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1));
  padding: 1px;
}

/* line 196, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.link_bulle a {
  font-size: 0.8rem;
  font-weight: 300;
}

/* line 201, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.vignette-cover-organization {
  border-radius: 10px;
  background-image: linear-gradient(to right, rgba(166, 2, 64, 0.6), rgba(166, 2, 64, 0.5));
  padding: 1px;
  box-shadow: -1rem 0 3rem #000;
  height: 30%;
  transition: 0.4s ease-out;
}

@media (max-width: 1100px) {
  /* line 201, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
  .vignette-cover-organization {
    width: 100%;
    height: auto;
  }
  /* line 217, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
  .vignette-cover-organization h2, .vignette-cover-organization .h2 {
    text-align: center;
  }
}

/* line 223, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.organization {
  background-color: #140D23;
  border-radius: 10px;
  height: 100%;
  width: 100%;
  padding: 10px;
  gap: 6px;
  display: flex;
  flex-direction: column;
}

/* line 234, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.vignette-cover-agenda {
  border-radius: 10px;
  background-image: linear-gradient(to right, rgba(166, 2, 64, 0.6), rgba(166, 2, 64, 0.5));
  padding: 1px;
  box-shadow: -1rem 0 3rem #000;
  height: 45%;
  transition: 0.4s ease-out;
}

@media (max-width: 1100px) {
  /* line 234, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
  .vignette-cover-agenda {
    width: 100%;
    height: 100%;
  }
  /* line 250, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
  .vignette-cover-agenda h2, .vignette-cover-agenda .h2 {
    text-align: center;
  }
}

/* line 256, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.agenda {
  background-color: #140D23;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* line 265, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.agenda h2, .agenda .h2 {
  margin-top: 10px;
  margin-left: 10px;
}

/* line 270, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.agenda-capsule {
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
}

/* line 277, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.agenda-capsule .flatpickr-calendar {
  height: 90%;
  width: 100%;
}

/* line 285, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.dashboard-client-content-vertical {
  width: 0%;
  height: 100%;
  border-right: 2px solid white;
}

/* line 293, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.splash-container {
  position: fixed;
  left: 6%;
  width: 90%;
  height: 85%;
  background: #140D23;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 998;
  opacity: 1;
  transition: opacity 1s ease;
}

/* line 309, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.splash-message {
  font-size: 2rem;
  text-align: center;
}

/* line 316, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.bloc-client {
  width: 92%;
  height: 100%;
  margin-left: 3%;
  display: flex;
  flex-direction: column;
}

/* line 328, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.bloc-client-content {
  margin-top: 2%;
  height: 95%;
  border-radius: 10px;
  position: relative;
}

/* line 337, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.bloc-client-content-indicateurs {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  position: absolute;
}

/* line 345, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.bloc-client-content-indicateurs-section {
  height: 100%;
  width: 100%;
}

/* line 350, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.bloc-client-content-services {
  height: 100%;
  width: 100%;
  position: absolute;
}

/* line 358, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.vignette-cover-projet {
  border-radius: 10px;
  background-image: linear-gradient(to right, rgba(166, 2, 64, 0.6), rgba(166, 2, 64, 0.5));
  padding: 1px;
  box-shadow: -1rem 0 3rem #000;
  width: 48%;
  transition: 0.4s ease-out;
}

@media (max-width: 1100px) {
  /* line 358, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
  .vignette-cover-projet {
    width: 100%;
  }
  /* line 373, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
  .vignette-cover-projet .progress-onboarding {
    width: 75%;
    height: 7.5%;
  }
}

/* line 380, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.bloc-projet {
  background-color: #17141d;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 391, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.projet-name {
  width: 100%;
  height: 5%;
  display: flex;
  flex-direction: row;
  gap: 10px;
  text-align: start;
  flex-direction: row;
}

/* line 401, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.projet-title {
  width: 30%;
  height: 100%;
}

/* line 406, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.projet-group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 5px;
  width: 70%;
  height: 100%;
}

/* line 416, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.projet-group form {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  width: 100%;
}

/* line 424, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
#project_id {
  width: 100%;
  text-align: center;
  margin-right: 3%;
}

/* line 430, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.projet-label {
  color: white;
  font-size: 0.6rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  /* Centre verticalement le contenu */
  justify-content: center;
  /* Centre horizontalement si nécessaire */
  flex-basis: 30%;
  /* Prend 30% de la largeur disponible */
  flex-grow: 0;
  /* Empêche d'occuper plus d'espace */
}

/* line 445, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.projet-label label {
  margin-top: auto;
  margin-bottom: auto;
}

/* line 450, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.projet-control {
  background-color: #17141d;
  color: white;
  border-radius: 5px;
  width: 50%;
  padding: 1px;
  font-size: 0.6rem;
  display: flex;
  align-items: center;
  /* Centre verticalement */
  flex-basis: 70%;
  /* Prend 70% de la largeur disponible */
  flex-grow: 0;
  /* Empêche d'occuper plus d'espace */
}

/* line 466, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.projet-avancement {
  width: 100%;
  height: 55%;
  display: flex;
  flex-direction: column;
  padding-bottom: 5px;
}

/* line 474, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.projet-onboarding {
  width: 100%;
  height: 30%;
}

/* line 481, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.bloc-tools {
  margin-top: 0px;
  gap: 5px;
  padding: 0px;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* line 495, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.vignette-cover {
  border-radius: 10px;
  padding: 1px;
  display: flex;
  height: 85%;
  max-height: 200px;
  width: 85%;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  transition: 0.4s ease-out;
  position: relative;
  left: 0px;
}

/* line 510, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.vignette {
  height: 100%;
  width: 100%;
  border-radius: 10px;
  background-color: #140D23;
}

/* line 516, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.vignette h2, .vignette .h2 {
  font-size: 0.8rem;
  text-align: center;
}

/* line 522, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.vignette-cover:hover {
  transform: translateY(-10px);
  transition: 0.4s ease-out;
}

/* line 527, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.vignette-cover:hover ~ .card {
  position: relative;
  left: 50px;
  transition: 0.4s ease-out;
}

/* line 533, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.title {
  color: white;
  font-weight: 300;
  position: absolute;
  left: 35%;
  top: 30%;
  transform: translateX(-50%);
}

/* line 542, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.bar {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translateX(-50%);
  height: 5px;
  width: 80%;
}

/* line 551, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.emptybar {
  background-color: #2e3033;
  width: 100%;
  height: 100%;
}

/* line 557, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.filledbar {
  position: absolute;
  top: 0px;
  z-index: 3;
  width: 0px;
  height: 100%;
  background: #009ad9;
  background: linear-gradient(90deg, #0c0c0c 0%, #a60240 65%, #d00d58 100%);
  transition: 0.6s ease-out;
}

/* line 573, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.vignette-cover:hover .filledbar {
  width: 100%;
  transition: 0.4s ease-out;
}

/* line 581, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.agenda-capsule .flatpickr-prev-month svg,
.agenda-capsule .flatpickr-next-month svg {
  fill: white;
}

/* line 586, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.agenda-capsule .numInputWrapper span.arrowUp,
.agenda-capsule span.arrowDown {
  background-color: white;
}

/* line 591, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.agenda-capsule .flatpickr-months .flatpickr-month {
  color: white;
  font-size: 70%;
}

/* line 596, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.agenda-capsule .flatpickr-weekdays .flatpickr-weekday {
  color: white;
  font-size: 70%;
}

/* line 601, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.agenda-capsule .flatpickr-calendar {
  background-color: transparent;
  color: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* line 608, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.agenda-capsule .flatpickr-day {
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  font-size: 8px;
  padding: 2px;
}

/* line 616, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.agenda-capsule .flatpickr-day.today {
  background: linear-gradient(to right, #a60240, #ed75a3);
  border: 1px solid white;
}

/* line 625, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.agenda-capsule .flatpickr-day.has-appointment {
  background-color: #ff7e5f;
  color: white;
  position: relative;
}

/* line 631, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.agenda-capsule .flatpickr-day.has-appointment::after {
  content: "📅";
  position: absolute;
  bottom: 3px;
  right: 3px;
  font-size: 6px;
}

/* line 640, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
#appointment-details {
  background: #dbdadd;
  color: #030303;
  border-radius: 10px;
  padding: 2px;
  box-shadow: 0 4px 6px rgba(255, 255, 255, 0.2);
  margin-top: 5px;
}

/* line 649, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
#appointment-details.hidden {
  display: none;
}

/* line 668, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.avancement-label p {
  font-size: 0.8rem;
  margin-top: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

/* line 674, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.progression-square-fluide {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 2em;
  padding: 0;
}

/* line 681, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.progression-square-fluide:last-of-type {
  margin-bottom: 0;
}

/* line 685, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.progression-square-fluide article {
  align-self: center;
  width: 30em;
  margin-bottom: 2em;
}

/* line 690, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.progression-square-fluide article p, .progression-square-fluide article:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  /* line 685, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
  .progression-square-fluide article {
    width: 100%;
  }
}

/* line 701, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.progression-square-fluide p {
  line-height: 1.5em;
  margin: 1.5em auto 2em;
  padding-bottom: 1.5em;
}

/* line 708, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.progression-square-fluide p span {
  display: block;
}

/* line 713, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.graph {
  font-size: 1em;
  perspective: 1000px;
  perspective-origin: 50% 50%;
  backface-visibility: visible;
}

@media (max-width: 1200px) {
  /* line 713, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
  .graph {
    width: 80%;
    margin: 0 auto;
  }
}

/* line 729, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square {
  font-size: 1em;
  position: relative;
  height: 6em;
  transition: all 0.3s ease-in-out;
  transform: rotateX(60deg) rotateY(0deg);
  transform-style: preserve-3d;
}

/* line 741, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square .face {
  font-size: 1em;
  position: relative;
  width: 100%;
  height: 2em;
  background-color: rgba(254, 254, 254, 0.3);
}

/* line 751, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square .face.side-a, .square .face.side-b {
  width: 2em;
}

/* line 757, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square .side-a {
  transform: rotateX(90deg) rotateY(-90deg) translateX(2em) translateY(1em) translateZ(1em);
}

/* line 762, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square .side-b {
  transform: rotateX(90deg) rotateY(-90deg) translateX(4em) translateY(1em) translateZ(-1em);
  position: absolute;
  right: 0;
}

/* line 769, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square .side-0 {
  transform: rotateX(90deg) rotateY(0) translateX(0) translateY(1em) translateZ(-1em);
}

/* line 774, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square .side-1 {
  transform: rotateX(90deg) rotateY(0) translateX(0) translateY(1em) translateZ(3em);
}

/* line 779, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square .top {
  transform: rotateX(0deg) rotateY(0) translateX(0em) translateY(4em) translateZ(2em);
}

/* line 784, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square .floor {
  box-shadow: 0 0.1em 0.6em rgba(0, 0, 0, 0.3), 0.6em -0.5em 3em rgba(0, 0, 0, 0.3), 1em -1em 8em #fefefe;
}

/* line 790, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.growing-square {
  transition: all 0.3s ease-in-out;
  background-color: rgba(236, 0, 140, 0.6);
  width: 100%;
  height: 2em;
}

/* line 799, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square.yellow .side-a,
.square.yellow .growing-square {
  background-color: rgba(241, 196, 15, 0.6);
}

/* line 805, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square.yellow .side-0 .growing-square {
  box-shadow: -0.5em -1.5em 4em rgba(241, 196, 15, 0.8);
}

/* line 809, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square.yellow .floor .growing-square {
  box-shadow: 0em 0em 2em rgba(241, 196, 15, 0.8);
}

/* line 799, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square.red .side-a,
.square.red .growing-square {
  background-color: rgba(236, 0, 140, 0.6);
}

/* line 805, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square.red .side-0 .growing-square {
  box-shadow: -0.5em -1.5em 4em rgba(236, 0, 140, 0.8);
}

/* line 809, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square.red .floor .growing-square {
  box-shadow: 0em 0em 2em rgba(236, 0, 140, 0.8);
}

/* line 799, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square.cyan .side-a,
.square.cyan .growing-square {
  background-color: rgba(87, 202, 244, 0.6);
}

/* line 805, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square.cyan .side-0 .growing-square {
  box-shadow: -0.5em -1.5em 4em #57caf4;
}

/* line 809, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square.cyan .floor .growing-square {
  box-shadow: 0em 0em 2em #57caf4;
}

/* line 799, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square.navy .side-a,
.square.navy .growing-square {
  background-color: rgba(10, 64, 105, 0.6);
}

/* line 805, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square.navy .side-0 .growing-square {
  box-shadow: -0.5em -1.5em 4em rgba(10, 64, 105, 0.8);
}

/* line 809, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square.navy .floor .growing-square {
  box-shadow: 0em 0em 2em rgba(10, 64, 105, 0.8);
}

/* line 799, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square.lime .side-a,
.square.lime .growing-square {
  background-color: rgba(118, 201, 0, 0.6);
}

/* line 805, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square.lime .side-0 .growing-square {
  box-shadow: -0.5em -1.5em 4em #76c900;
}

/* line 809, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square.lime .floor .growing-square {
  box-shadow: 0em 0em 2em #76c900;
}

/* line 799, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square.white .side-a,
.square.white .growing-square {
  background-color: rgba(254, 254, 254, 0.6);
}

/* line 805, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square.white .side-0 .growing-square {
  box-shadow: -0.5em -1.5em 4em #fefefe;
}

/* line 809, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square.white .floor .growing-square {
  box-shadow: 0em 0em 2em #fefefe;
}

/* line 799, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square.gray .side-a,
.square.gray .growing-square {
  background-color: rgba(68, 68, 68, 0.6);
}

/* line 805, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square.gray .side-0 .growing-square {
  box-shadow: -0.5em -1.5em 4em #444;
}

/* line 809, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square.gray .floor .growing-square {
  box-shadow: 0em 0em 2em #444;
}

/* line 816, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.graph .square.yellow-face .face {
  background-color: rgba(241, 196, 15, 0.2);
}

/* line 816, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.graph .square.lime-face .face {
  background-color: rgba(118, 201, 0, 0.2);
}

/* line 816, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.graph .square.red-face .face {
  background-color: rgba(236, 0, 140, 0.2);
}

/* line 816, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.graph .square.navy-face .face {
  background-color: rgba(10, 64, 105, 0.2);
}

/* line 816, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.graph .square.cyan-face .face {
  background-color: rgba(87, 202, 244, 0.2);
}

/* line 816, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.graph .square.gray-face .face {
  background-color: rgba(68, 68, 68, 0.2);
}

/* line 816, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.graph .square.lightGray-face .face {
  background-color: rgba(145, 145, 145, 0.2);
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-0 .growing-square {
  width: 0%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-1 .growing-square {
  width: 1%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-2 .growing-square {
  width: 2%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-3 .growing-square {
  width: 3%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-4 .growing-square {
  width: 4%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-5 .growing-square {
  width: 5%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-6 .growing-square {
  width: 6%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-7 .growing-square {
  width: 7%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-8 .growing-square {
  width: 8%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-9 .growing-square {
  width: 9%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-10 .growing-square {
  width: 10%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-11 .growing-square, input[id="pos-0"]:checked ~ .graph .growing-square {
  width: 11%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-12 .growing-square {
  width: 12%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-13 .growing-square {
  width: 13%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-14 .growing-square {
  width: 14%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-15 .growing-square {
  width: 15%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-16 .growing-square {
  width: 16%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-17 .growing-square {
  width: 17%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-18 .growing-square {
  width: 18%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-19 .growing-square {
  width: 19%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-20 .growing-square {
  width: 20%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-21 .growing-square {
  width: 21%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-22 .growing-square, input[id="pos-1"]:checked ~ .graph .growing-square {
  width: 22%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-23 .growing-square {
  width: 23%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-24 .growing-square {
  width: 24%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-25 .growing-square {
  width: 25%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-26 .growing-square {
  width: 26%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-27 .growing-square {
  width: 27%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-28 .growing-square {
  width: 28%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-29 .growing-square {
  width: 29%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-30 .growing-square {
  width: 30%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-31 .growing-square {
  width: 31%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-32 .growing-square {
  width: 32%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-33 .growing-square, input[id="pos-2"]:checked ~ .graph .growing-square {
  width: 33%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-34 .growing-square {
  width: 34%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-35 .growing-square {
  width: 35%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-36 .growing-square {
  width: 36%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-37 .growing-square {
  width: 37%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-38 .growing-square {
  width: 38%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-39 .growing-square {
  width: 39%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-40 .growing-square {
  width: 40%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-41 .growing-square {
  width: 41%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-42 .growing-square {
  width: 42%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-43 .growing-square {
  width: 43%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-44 .growing-square, input[id="pos-3"]:checked ~ .graph .growing-square {
  width: 44%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-45 .growing-square {
  width: 45%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-46 .growing-square {
  width: 46%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-47 .growing-square {
  width: 47%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-48 .growing-square {
  width: 48%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-49 .growing-square {
  width: 49%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-50 .growing-square {
  width: 50%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-51 .growing-square {
  width: 51%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-52 .growing-square {
  width: 52%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-53 .growing-square {
  width: 53%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-54 .growing-square {
  width: 54%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-55 .growing-square, input[id="pos-4"]:checked ~ .graph .growing-square {
  width: 55%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-56 .growing-square {
  width: 56%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-57 .growing-square {
  width: 57%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-58 .growing-square {
  width: 58%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-59 .growing-square {
  width: 59%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-60 .growing-square {
  width: 60%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-61 .growing-square {
  width: 61%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-62 .growing-square {
  width: 62%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-63 .growing-square {
  width: 63%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-64 .growing-square {
  width: 64%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-65 .growing-square {
  width: 65%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-66 .growing-square, input[id="pos-5"]:checked ~ .graph .growing-square {
  width: 66%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-67 .growing-square {
  width: 67%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-68 .growing-square {
  width: 68%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-69 .growing-square {
  width: 69%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-70 .growing-square {
  width: 70%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-71 .growing-square {
  width: 71%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-72 .growing-square {
  width: 72%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-73 .growing-square {
  width: 73%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-74 .growing-square {
  width: 74%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-75 .growing-square {
  width: 75%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-76 .growing-square {
  width: 76%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-77 .growing-square, input[id="pos-6"]:checked ~ .graph .growing-square {
  width: 77%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-78 .growing-square {
  width: 78%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-79 .growing-square {
  width: 79%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-80 .growing-square {
  width: 80%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-81 .growing-square {
  width: 81%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-82 .growing-square {
  width: 82%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-83 .growing-square {
  width: 83%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-84 .growing-square {
  width: 84%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-85 .growing-square {
  width: 85%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-86 .growing-square {
  width: 86%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-87 .growing-square {
  width: 87%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-88 .growing-square, input[id="pos-7"]:checked ~ .graph .growing-square {
  width: 88%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-89 .growing-square {
  width: 89%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-90 .growing-square {
  width: 90%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-91 .growing-square {
  width: 91%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-92 .growing-square {
  width: 92%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-93 .growing-square {
  width: 93%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-94 .growing-square {
  width: 94%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-95 .growing-square {
  width: 95%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-96 .growing-square {
  width: 96%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-97 .growing-square {
  width: 97%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-98 .growing-square {
  width: 98%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-99 .growing-square {
  width: 99%;
}

/* line 839, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square-100 .growing-square, input[id="pos-8"]:checked ~ .graph .growing-square {
  width: 100%;
}

/* line 845, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow-x: auto;
}

/* line 855, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.progression-square-fluide label {
  box-sizing: border-box;
  padding: 1em;
  margin: 0 0.2em;
  font-size: 0.5rem;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
  color: white;
  border-radius: 0;
  flex: 1;
}

/* line 868, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.progression-square-fluide label:first-child {
  margin-left: 0;
  border-radius: 0.2em 0 0 0.2em;
}

/* line 874, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.progression-square-fluide label:last-child {
  margin-right: 0;
  border-radius: 0 0.2em 0.2em 0;
}

/* line 881, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
input[id="pos-0"]:checked ~ .actions label[for="pos-0"],
input[id="pos-1"]:checked ~ .actions label[for="pos-1"],
input[id="pos-2"]:checked ~ .actions label[for="pos-2"],
input[id="pos-3"]:checked ~ .actions label[for="pos-3"],
input[id="pos-4"]:checked ~ .actions label[for="pos-4"],
input[id="pos-5"]:checked ~ .actions label[for="pos-5"],
input[id="pos-6"]:checked ~ .actions label[for="pos-6"],
input[id="pos-7"]:checked ~ .actions label[for="pos-7"],
input[id="pos-8"]:checked ~ .actions label[for="pos-8"],
input[type="radio"][name="switch-pos"] {
  display: none;
}

/* line 930, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.descriptions {
  height: 45%;
  width: 100%;
  margin-top: 0.5%;
}

/* line 936, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.desc {
  display: none;
  width: 100%;
  height: 80%;
}

/* line 944, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.desc p {
  font-size: 0.6rem;
  padding-bottom: 0.5rem;
  margin: 0.5rem;
  width: 100%;
}

/* line 951, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
#pos-0:checked ~ .descriptions .desc-pos-0 {
  display: block;
}

/* line 955, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
#pos-1:checked ~ .descriptions .desc-pos-1 {
  display: block;
}

/* line 959, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
#pos-2:checked ~ .descriptions .desc-pos-2 {
  display: block;
}

/* line 963, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
#pos-3:checked ~ .descriptions .desc-pos-3 {
  display: block;
}

/* line 967, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
#pos-4:checked ~ .descriptions .desc-pos-4 {
  display: block;
}

/* line 971, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
#pos-5:checked ~ .descriptions .desc-pos-5 {
  display: block;
}

/* line 975, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
#pos-6:checked ~ .descriptions .desc-pos-6 {
  display: block;
}

/* line 979, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
#pos-7:checked ~ .descriptions .desc-pos-7 {
  display: block;
}

/* line 983, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
#pos-8:checked ~ .descriptions .desc-pos-8 {
  display: block;
}

/* line 987, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.onboarding-label p {
  font-size: 0.8rem;
  margin-top: 5px;
  margin-bottom: 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

/* line 996, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.onboarding-zone {
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  padding-bottom: 30px;
}

/* line 1007, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.onboarding-link {
  margin-top: 10px;
}

/* line 1011, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.progression2-square-fluide {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 2em;
  margin-top: 10px;
}

/* line 1018, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.progression2-square-fluide:last-of-type {
  margin-bottom: 0;
}

/* line 1022, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.progression2-square-fluide article {
  align-self: center;
  width: 30em;
  margin-bottom: 2em;
}

/* line 1027, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.progression2-square-fluide article p, .progression2-square-fluide article:last-of-type {
  margin-bottom: 0;
}

/* line 1034, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.progression2-square-fluide p {
  line-height: 1.5em;
  margin: 1.5em auto 2em;
  padding-bottom: 1.5em;
}

/* line 1041, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.progression2-square-fluide p span {
  display: block;
}

/* line 1046, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.graph2 {
  font-size: 0.6em;
  perspective: 1000px;
  perspective-origin: 50% 50%;
  backface-visibility: visible;
}

@media (max-width: 1200px) {
  /* line 1046, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
  .graph2 {
    width: 80%;
    margin: 0 auto;
  }
}

/* line 1062, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2 {
  font-size: 1em;
  position: relative;
  height: 6em;
  transition: all 0.3s ease-in-out;
  transform: rotateX(60deg) rotateY(0deg);
  transform-style: preserve-3d;
}

/* line 1074, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2 .face2 {
  font-size: 1em;
  position: relative;
  width: 100%;
  height: 2em;
  background-color: rgba(254, 254, 254, 0.3);
}

/* line 1084, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2 .face2.side2-a, .square2 .face2.side2-b {
  width: 2em;
}

/* line 1090, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2 .side2-a {
  transform: rotateX(90deg) rotateY(-90deg) translateX(2em) translateY(1em) translateZ(1em);
}

/* line 1095, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2 .side2-b {
  transform: rotateX(90deg) rotateY(-90deg) translateX(4em) translateY(1em) translateZ(-1em);
  position: absolute;
  right: 0;
}

/* line 1102, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2 .side2-0 {
  transform: rotateX(90deg) rotateY(0) translateX(0) translateY(1em) translateZ(-1em);
}

/* line 1107, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2 .side2-1 {
  transform: rotateX(90deg) rotateY(0) translateX(0) translateY(1em) translateZ(3em);
}

/* line 1112, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2 .top2 {
  transform: rotateX(0deg) rotateY(0) translateX(0em) translateY(4em) translateZ(2em);
}

/* line 1117, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2 .floor2 {
  box-shadow: 0 0.1em 0.6em rgba(0, 0, 0, 0.3), 0.6em -0.5em 3em rgba(0, 0, 0, 0.3), 1em -1em 8em #fefefe;
}

/* line 1123, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.growing-square2 {
  transition: all 0.3s ease-in-out;
  background-color: rgba(166, 2, 64, 0.6);
  width: 100%;
  height: 2em;
}

/* line 1132, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2.yellow .side2-a,
.square2.yellow .growing-square2 {
  background-color: rgba(166, 2, 64, 0.6);
}

/* line 1138, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2.yellow .side2-0 .growing-square2 {
  box-shadow: -0.5em -1.5em 4em rgba(241, 196, 15, 0.8);
}

/* line 1142, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2.yellow .floor2 .growing-square2 {
  box-shadow: 0em 0em 2em rgba(241, 196, 15, 0.8);
}

/* line 1132, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2.red .side2-a,
.square2.red .growing-square2 {
  background-color: rgba(166, 2, 64, 0.6);
}

/* line 1138, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2.red .side2-0 .growing-square2 {
  box-shadow: -0.5em -1.5em 4em rgba(236, 0, 140, 0.8);
}

/* line 1142, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2.red .floor2 .growing-square2 {
  box-shadow: 0em 0em 2em rgba(236, 0, 140, 0.8);
}

/* line 1132, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2.cyan .side2-a,
.square2.cyan .growing-square2 {
  background-color: rgba(166, 2, 64, 0.6);
}

/* line 1138, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2.cyan .side2-0 .growing-square2 {
  box-shadow: -0.5em -1.5em 4em #57caf4;
}

/* line 1142, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2.cyan .floor2 .growing-square2 {
  box-shadow: 0em 0em 2em #57caf4;
}

/* line 1132, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2.navy .side2-a,
.square2.navy .growing-square2 {
  background-color: rgba(166, 2, 64, 0.6);
}

/* line 1138, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2.navy .side2-0 .growing-square2 {
  box-shadow: -0.5em -1.5em 4em rgba(10, 64, 105, 0.8);
}

/* line 1142, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2.navy .floor2 .growing-square2 {
  box-shadow: 0em 0em 2em rgba(10, 64, 105, 0.8);
}

/* line 1132, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2.lime .side2-a,
.square2.lime .growing-square2 {
  background-color: rgba(166, 2, 64, 0.6);
}

/* line 1138, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2.lime .side2-0 .growing-square2 {
  box-shadow: -0.5em -1.5em 4em #76c900;
}

/* line 1142, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2.lime .floor2 .growing-square2 {
  box-shadow: 0em 0em 2em #76c900;
}

/* line 1132, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2.white .side2-a,
.square2.white .growing-square2 {
  background-color: rgba(166, 2, 64, 0.6);
}

/* line 1138, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2.white .side2-0 .growing-square2 {
  box-shadow: -0.5em -1.5em 4em #fefefe;
}

/* line 1142, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2.white .floor2 .growing-square2 {
  box-shadow: 0em 0em 2em #fefefe;
}

/* line 1132, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2.gray .side2-a,
.square2.gray .growing-square2 {
  background-color: rgba(166, 2, 64, 0.6);
}

/* line 1138, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2.gray .side2-0 .growing-square2 {
  box-shadow: -0.5em -1.5em 4em #444;
}

/* line 1142, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2.gray .floor2 .growing-square2 {
  box-shadow: 0em 0em 2em #444;
}

/* line 1149, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.graph2 .square2.yellow-face .face2 {
  background-color: rgba(166, 2, 64, 0.2);
}

/* line 1149, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.graph2 .square2.lime-face .face2 {
  background-color: rgba(166, 2, 64, 0.2);
}

/* line 1149, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.graph2 .square2.red-face .face2 {
  background-color: rgba(166, 2, 64, 0.2);
}

/* line 1149, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.graph2 .square2.navy-face .face2 {
  background-color: rgba(166, 2, 64, 0.2);
}

/* line 1149, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.graph2 .square2.cyan-face .face2 {
  background-color: rgba(166, 2, 64, 0.2);
}

/* line 1149, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.graph2 .square2.gray-face .face2 {
  background-color: rgba(166, 2, 64, 0.2);
}

/* line 1149, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.graph2 .square2.lightGray-face .face2 {
  background-color: rgba(166, 2, 64, 0.2);
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-0 .growing-square2 {
  width: 0%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-1 .growing-square2 {
  width: 1%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-2 .growing-square2 {
  width: 2%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-3 .growing-square2 {
  width: 3%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-4 .growing-square2 {
  width: 4%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-5 .growing-square2 {
  width: 5%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-6 .growing-square2 {
  width: 6%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-7 .growing-square2 {
  width: 7%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-8 .growing-square2 {
  width: 8%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-9 .growing-square2 {
  width: 9%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-10 .growing-square2 {
  width: 10%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-11 .growing-square2 {
  width: 11%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-12 .growing-square2 {
  width: 12%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-13 .growing-square2 {
  width: 13%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-14 .growing-square2, input[id="pos2-0"]:checked ~ .graph2 .growing-square2 {
  width: 14%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-15 .growing-square2 {
  width: 15%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-16 .growing-square2 {
  width: 16%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-17 .growing-square2 {
  width: 17%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-18 .growing-square2 {
  width: 18%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-19 .growing-square2 {
  width: 19%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-20 .growing-square2 {
  width: 20%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-21 .growing-square2 {
  width: 21%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-22 .growing-square2 {
  width: 22%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-23 .growing-square2 {
  width: 23%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-24 .growing-square2 {
  width: 24%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-25 .growing-square2 {
  width: 25%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-26 .growing-square2 {
  width: 26%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-27 .growing-square2 {
  width: 27%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-28 .growing-square2 {
  width: 28%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-29 .growing-square2, input[id="pos2-1"]:checked ~ .graph2 .growing-square2 {
  width: 29%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-30 .growing-square2 {
  width: 30%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-31 .growing-square2 {
  width: 31%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-32 .growing-square2 {
  width: 32%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-33 .growing-square2 {
  width: 33%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-34 .growing-square2 {
  width: 34%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-35 .growing-square2 {
  width: 35%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-36 .growing-square2 {
  width: 36%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-37 .growing-square2 {
  width: 37%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-38 .growing-square2 {
  width: 38%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-39 .growing-square2 {
  width: 39%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-40 .growing-square2 {
  width: 40%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-41 .growing-square2 {
  width: 41%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-42 .growing-square2 {
  width: 42%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-43 .growing-square2, input[id="pos2-2"]:checked ~ .graph2 .growing-square2 {
  width: 43%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-44 .growing-square2 {
  width: 44%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-45 .growing-square2 {
  width: 45%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-46 .growing-square2 {
  width: 46%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-47 .growing-square2 {
  width: 47%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-48 .growing-square2 {
  width: 48%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-49 .growing-square2 {
  width: 49%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-50 .growing-square2 {
  width: 50%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-51 .growing-square2 {
  width: 51%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-52 .growing-square2 {
  width: 52%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-53 .growing-square2 {
  width: 53%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-54 .growing-square2 {
  width: 54%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-55 .growing-square2 {
  width: 55%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-56 .growing-square2 {
  width: 56%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-57 .growing-square2, input[id="pos2-3"]:checked ~ .graph2 .growing-square2 {
  width: 57%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-58 .growing-square2 {
  width: 58%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-59 .growing-square2 {
  width: 59%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-60 .growing-square2 {
  width: 60%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-61 .growing-square2 {
  width: 61%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-62 .growing-square2 {
  width: 62%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-63 .growing-square2 {
  width: 63%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-64 .growing-square2 {
  width: 64%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-65 .growing-square2 {
  width: 65%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-66 .growing-square2 {
  width: 66%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-67 .growing-square2 {
  width: 67%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-68 .growing-square2 {
  width: 68%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-69 .growing-square2 {
  width: 69%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-70 .growing-square2 {
  width: 70%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-71 .growing-square2, input[id="pos2-4"]:checked ~ .graph2 .growing-square2 {
  width: 71%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-72 .growing-square2 {
  width: 72%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-73 .growing-square2 {
  width: 73%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-74 .growing-square2 {
  width: 74%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-75 .growing-square2 {
  width: 75%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-76 .growing-square2 {
  width: 76%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-77 .growing-square2 {
  width: 77%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-78 .growing-square2 {
  width: 78%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-79 .growing-square2 {
  width: 79%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-80 .growing-square2 {
  width: 80%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-81 .growing-square2 {
  width: 81%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-82 .growing-square2 {
  width: 82%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-83 .growing-square2 {
  width: 83%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-84 .growing-square2 {
  width: 84%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-85 .growing-square2 {
  width: 85%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-86 .growing-square2, input[id="pos2-5"]:checked ~ .graph2 .growing-square2 {
  width: 86%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-87 .growing-square2 {
  width: 87%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-88 .growing-square2 {
  width: 88%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-89 .growing-square2 {
  width: 89%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-90 .growing-square2 {
  width: 90%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-91 .growing-square2 {
  width: 91%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-92 .growing-square2 {
  width: 92%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-93 .growing-square2 {
  width: 93%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-94 .growing-square2 {
  width: 94%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-95 .growing-square2 {
  width: 95%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-96 .growing-square2 {
  width: 96%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-97 .growing-square2 {
  width: 97%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-98 .growing-square2 {
  width: 98%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-99 .growing-square2 {
  width: 99%;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.square2-100 .growing-square2, input[id="pos2-6"]:checked ~ .graph2 .growing-square2 {
  width: 100%;
}

/* line 1178, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.actions2 {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* line 1184, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.progression2-square-fluide label {
  box-sizing: border-box;
  padding: 1em;
  margin: 0 0.2em;
  font-size: 0.5rem;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
  color: white;
  border-radius: 0;
  flex: 1;
}

/* line 1196, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.progression2-square-fluide label:first-child {
  margin-left: 0;
  border-radius: 0.2em 0 0 0.2em;
}

/* line 1202, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.progression2-square-fluide label:last-child {
  margin-right: 0;
  border-radius: 0 0.2em 0.2em 0;
}

/* line 1209, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
input[id="pos2-0"]:checked ~ .actions2 label[for="pos2-0"],
input[id="pos2-1"]:checked ~ .actions2 label[for="pos2-1"],
input[id="pos2-2"]:checked ~ .actions2 label[for="pos2-2"],
input[id="pos2-3"]:checked ~ .actions2 label[for="pos2-3"],
input[id="pos2-4"]:checked ~ .actions2 label[for="pos2-4"],
input[id="pos2-5"]:checked ~ .actions2 label[for="pos2-5"],
input[id="pos2-6"]:checked ~ .actions2 label[for="pos2-6"],
input[type="radio2"][name="switch-pos2"] {
  display: none;
}

/* line 1248, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
#pos2-0:checked ~ .descriptions .desc-pos-0 {
  display: block;
}

/* line 1252, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
#pos2-1:checked ~ .descriptions .desc-pos-1 {
  display: block;
}

/* line 1256, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
#pos2-2:checked ~ .descriptions .desc-pos-2 {
  display: block;
}

/* line 1260, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
#pos2-3:checked ~ .descriptions .desc-pos-3 {
  display: block;
}

/* line 1264, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
#pos2-4:checked ~ .descriptions .desc-pos-4 {
  display: block;
}

/* line 1268, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
#pos2-5:checked ~ .descriptions .desc-pos-5 {
  display: block;
}

/* line 1272, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
#pos2-6:checked ~ .descriptions .desc-pos-6 {
  display: block;
}

/* line 1278, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.steps {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 90%;
  z-index: 2001;
}

/* line 1286, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.step-capsule {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 20%;
  height: 5%;
  gap: 10px;
  margin-top: 10px;
}

/* line 1297, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.step {
  width: 30%;
  aspect-ratio: 1/1;
  background: #fff;
  border: 2px solid #acaca6;
  border-radius: 50%;
  cursor: pointer;
  transition: background 1s;
}

/* line 1307, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.step.selected {
  border: 2px solid #A60240;
}

/* line 1311, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.step.completed {
  border: 2px solid #A60240;
  background: #A60240;
}

/* line 1316, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.step-title {
  font-size: 0.6rem;
  text-align: center;
}

/* line 1321, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.progress-onboarding {
  position: absolute;
  width: 30%;
  height: 2.5%;
  border-bottom: 2px solid #acaca6;
  z-index: 1999;
  transition: none;
}

/* line 1330, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.percent {
  position: absolute;
  margin-top: 4%;
  width: 100%;
  height: 30%;
  border-top: 2px solid #A60240;
  border-bottom: 2px solid #A60240;
  z-index: 2000;
  transition: width 1s;
}

/* line 1343, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.scrollable-container {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  /* Cache toutes les sections par défaut ; géré ensuite par showSection() */
}

/* line 1349, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.scrollable-container .scrollable-container-pagination {
  height: 100%;
  width: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* line 1359, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.scrollable-container .scrollable-container-section {
  display: none;
  height: 100%;
  width: 95%;
  padding: 15px;
}

/* line 1367, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.scrollable-container-section-title {
  font-size: 1.8rem;
  text-align: start;
  align-items: center;
  height: 8%;
  width: 100%;
}

/* line 1375, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.scrollable-container-section-vignettes {
  display: flex;
  gap: 10px;
  height: 85%;
  width: 100%;
}

/* line 1382, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.pagination {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  /* Vertical */
  gap: 40px;
}

/* line 1396, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.page-item {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #ffffff;
  cursor: pointer;
}

/* line 1405, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.page-item.active {
  background-color: #A60240;
  border: 2px solid white;
  /* Couleur puce active */
}

/* line 1411, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.top-bar {
  display: flex;
}

/* line 1417, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.zone-title {
  position: relative;
  font-size: 16px;
  font-weight: bold;
  text-align: start;
  margin-left: 30px;
  margin-top: 20px;
  height: 100%;
  max-height: 45px;
  display: flex;
  align-items: center;
}

/* line 1430, app/assets/stylesheets/pages/customerspace/_dashboard-client.scss */
.zone-arrow {
  position: relative;
  right: 0;
  margin-top: 20px;
  margin-right: 20px;
  font-size: 120%;
  height: 100%;
  max-height: 45px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  color: #140D23;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.6);
  rotate: -45deg;
}

/* line 1, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboarding-container {
  margin-top: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* line 10, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboarding-container form {
  padding: 50px;
}

/* line 15, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboarding-container .question-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 50px;
}

/* line 23, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboarding-container .question-container label {
  color: #fefefe;
  font-size: 1.5rem;
  font-weight: 400;
}

/* line 29, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboarding-container .question-container input {
  background-color: rgba(255, 255, 255, 0.3);
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 6px solid #fefefe;
  color: #fefefe;
  transition: box-shadow 0.4s ease, border-bottom 0.4s ease;
}

/* line 40, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboarding-container .question-container input::placeholder {
  color: rgba(255, 255, 255, 0.502);
  font-weight: lighter;
  font-style: italic;
}

/* line 46, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboarding-container .question-container input:focus {
  box-shadow: 0 0 10px white;
  border-bottom: 6px solid rgba(255, 255, 255, 0.8);
  outline: none;
}

/* line 56, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboardings-container {
  margin-top: 20vh;
  height: 80vh;
  margin-right: 15px;
  margin-left: 15px;
  display: grid;
  grid-template-rows: 15% 85%;
  border: 1px solid #fefefe;
}

/* line 65, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboardings-container .onboarding-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-bottom: 1px solid #fefefe;
}

/* line 70, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboardings-container .onboarding-steps .onboarding-step {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.5s ease;
}

/* line 79, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboardings-container .onboarding-content {
  overflow-y: auto;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* line 86, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboardings-container .onboarding-content .introduction {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* line 91, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboardings-container .onboarding-content .introduction h2, .onboardings-container .onboarding-content .introduction .h2 {
  text-align: center;
  max-width: 70%;
  margin: 0 auto;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 1.8rem;
}

/* line 99, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboardings-container .onboarding-content .introduction .introduction-content {
  padding-left: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}

/* line 103, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboardings-container .onboarding-content .introduction .introduction-content p {
  font-size: 1.2rem;
}

/* line 106, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboardings-container .onboarding-content .introduction .introduction-content ul {
  font-size: 1rem;
}

/* line 111, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboardings-container .onboarding-content .introduction .btn-intro {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

/* line 119, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboardings-container .onboarding-content .partial-container {
  margin-top: 30px;
}

/* line 122, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboardings-container .onboarding-content .partial-container .btn-retour {
  display: flex;
  justify-content: start;
  align-items: center;
}

/* line 128, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboardings-container .onboarding-content .partial-container form {
  width: 70%;
  margin: 0 auto;
}

/* line 132, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboardings-container .onboarding-content .partial-container .question-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 50px;
}

/* line 140, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboardings-container .onboarding-content .partial-container .question-container label {
  color: #fefefe;
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 30px;
}

/* line 148, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboardings-container .onboarding-content .partial-container .question-container input {
  background-color: rgba(13, 13, 13, 0.3);
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: none;
  box-shadow: 0 0 2px 1px white;
  color: #fefefe;
  transition: box-shadow 0.4s ease;
}

/* line 157, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboardings-container .onboarding-content .partial-container .question-container input::placeholder {
  color: rgba(255, 255, 255, 0.502);
  font-weight: lighter;
  font-style: italic;
}

/* line 163, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboardings-container .onboarding-content .partial-container .question-container input:focus {
  box-shadow: 0 0 10px #A60240;
  outline: none;
}

/* line 169, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboardings-container .onboarding-content .partial-container .question-suivante {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* line 175, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboardings-container .onboarding-content .partial-container .offers-container {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  justify-content: center;
}

/* line 181, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboardings-container .onboarding-content .partial-container .offers-container .offer {
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  flex-direction: column;
  background-color: #000000;
  box-shadow: 0 0 2px 1px #A60240;
  transition: 0.4s ease-out;
  cursor: pointer;
  color: #A60240;
}

/* line 194, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboardings-container .onboarding-content .partial-container .offers-container .offer:hover {
  transform: translateY(-10px);
  color: #000000;
  background-color: #fefefe;
}

/* line 200, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboardings-container .onboarding-content .partial-container .offers-container #sparks:hover {
  box-shadow: 0 0 8px 1px #FCF7AC;
}

/* line 203, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboardings-container .onboarding-content .partial-container .offers-container #steel:hover {
  box-shadow: 0 0 8px 1px #C0C0C0;
}

/* line 206, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboardings-container .onboarding-content .partial-container .offers-container #light:hover {
  box-shadow: 0 0 8px 1px #FFD700;
}

/* line 209, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboardings-container .onboarding-content .partial-container .offers-container #forge:hover {
  box-shadow: 0 0 8px 1px #FFA500;
}

/* line 216, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboardings-container .onboarding-content .partial-container .gradient-div {
  border-radius: 10px;
  background-image: linear-gradient(to right, rgba(166, 2, 64, 0.6), rgba(166, 2, 64, 0.5));
  padding: 1px;
  box-shadow: -1rem 0 3rem #000;
  height: 100%;
  transition: 0.4s ease-out;
}

/* line 224, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboardings-container .onboarding-content .partial-container .gradient-div:hover {
  transform: translateY(-10px);
  transition: 0.4s ease-out;
}

/* line 229, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboardings-container .onboarding-content .partial-container .cardC {
  position: relative;
  background-color: #17141d;
  border-radius: 10px;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* line 240, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboardings-container .onboarding-content .partial-container .cardC .background-card {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 50px;
  width: 50px;
  transform: translateX(-50%) translateY(-50%);
  z-index: -1;
  opacity: 1;
}

/* line 250, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboardings-container .onboarding-content .partial-container .cardC:hover {
  background-color: #ffffff18;
  color: transparent;
}

/* line 256, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboardings-container .onboarding-content .partial-container .checkbox-container {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}

/* line 261, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboardings-container .onboarding-content .partial-container .checkbox-container input {
  width: auto;
}

/* line 265, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboardings-container .onboarding-content .partial-container .checkbox-container label {
  flex-grow: 1;
}

/* line 270, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboardings-container .onboarding-content .partial-container .condition {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000000;
  box-shadow: 0 0 2px 1px #A60240;
  margin-bottom: 10px;
  padding: 10px;
  cursor: pointer;
}

/* line 280, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboardings-container .onboarding-content .partial-container .condition h3, .onboardings-container .onboarding-content .partial-container .condition .h3 {
  cursor: pointer;
}

/* line 285, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboardings-container .onboarding-content .partial-container .user-choice {
  background-color: #fefefe !important;
  color: #000000 !important;
  box-shadow: 0 0 8px 1px #fcf7ac !important;
}

/* line 291, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboardings-container .onboarding-content .partial-container .green-div {
  box-shadow: 0 0 8px 1px #117b01 !important;
}

/* line 296, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboardings-container .onboarding-content .partial-container .extra-questions .tools-container {
  display: flex;
  flex-direction: column;
  padding: 10px;
}

/* line 301, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboardings-container .onboarding-content .partial-container .extra-questions .tools-container .tool {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000000;
  box-shadow: 0 0 2px 1px #A60240;
  margin-bottom: 10px;
  padding: 10px;
  cursor: pointer;
}

/* line 311, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboardings-container .onboarding-content .partial-container .extra-questions .tools-container label {
  font-size: 1.1rem;
}

/* line 315, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboardings-container .onboarding-content .partial-container .extra-questions .tools-container .question-container {
  flex-direction: row;
  white-space: nowrap;
}

/* line 318, app/assets/stylesheets/pages/customerspace/_onboarding.scss */
.onboardings-container .onboarding-content .partial-container .extra-questions .tools-container .question-container label {
  margin-bottom: 0;
}

/* line 1, app/assets/stylesheets/pages/customerspace/_document.scss */
.document {
  margin-top: 6%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 8, app/assets/stylesheets/pages/customerspace/_document.scss */
.document-preview {
  border: 4px solid white;
  height: 30%;
  width: 50%;
}

/* line 15, app/assets/stylesheets/pages/customerspace/_document.scss */
.document-link {
  background-color: red;
  height: 15%;
  width: 15%;
}

/* line 1, app/assets/stylesheets/pages/customerspace/_maintenance.scss */
.maintenance {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  background: white;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

/* line 10, app/assets/stylesheets/pages/customerspace/_maintenance.scss */
.maintenance h1, .maintenance .h1, h2, .h2 {
  color: #A60240;
  text-align: center;
}

/* line 14, app/assets/stylesheets/pages/customerspace/_maintenance.scss */
.status {
  display: flex;
  justify-content: space-around;
  padding: 20px;
}

/* line 19, app/assets/stylesheets/pages/customerspace/_maintenance.scss */
.status-box {
  background: #e9ecef;
  padding: 15px;
  border-radius: 5px;
  text-align: center;
  width: 30%;
}

/* line 26, app/assets/stylesheets/pages/customerspace/_maintenance.scss */
.status-box i {
  font-size: 24px;
  margin-bottom: 10px;
}

/* line 30, app/assets/stylesheets/pages/customerspace/_maintenance.scss */
.status-box.success {
  color: green;
}

/* line 31, app/assets/stylesheets/pages/customerspace/_maintenance.scss */
.status-box.warning {
  color: orange;
}

/* line 32, app/assets/stylesheets/pages/customerspace/_maintenance.scss */
.status-box.error {
  color: red;
}

/* line 34, app/assets/stylesheets/pages/customerspace/_maintenance.scss */
.table-container {
  width: 100%;
  margin-top: 20px;
}

/* line 38, app/assets/stylesheets/pages/customerspace/_maintenance.scss */
table {
  width: 100%;
  border-collapse: collapse;
}

/* line 42, app/assets/stylesheets/pages/customerspace/_maintenance.scss */
table th, table td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

/* line 47, app/assets/stylesheets/pages/customerspace/_maintenance.scss */
table th {
  background: #A60240;
  color: white;
}

/* line 51, app/assets/stylesheets/pages/customerspace/_maintenance.scss */
.graph-container {
  width: 80%;
  margin: 20px auto;
}

/* line 55, app/assets/stylesheets/pages/customerspace/_maintenance.scss */
.contact {
  text-align: center;
  padding: 20px;
}

/* line 59, app/assets/stylesheets/pages/customerspace/_maintenance.scss */
.contact a {
  color: #A60240;
  text-decoration: none;
  font-weight: bold;
}

/* line 1, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-capsule {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 30px;
  font-size: 1rem;
  gap: 60px;
}

/* line 13, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-capsule-subscription {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 30px;
  font-size: 1rem;
  gap: 20px;
  overflow: visible;
  /* Pas de scroll interne - le scroll est géré par le body */
}

/* line 25, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-capsule-subscription .subscription-management {
  overflow: visible;
  width: 100%;
}

/* line 31, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-capsule-utilisateurs {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  font-size: 1rem;
  gap: 20px;
  overflow: auto;
  /* Personnalisation de la barre de défilement */
}

/* line 44, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-capsule-utilisateurs::-webkit-scrollbar {
  width: 8px;
  /* Largeur de la barre de défilement */
}

/* line 48, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-capsule-utilisateurs::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  /* Couleur de l'arrière-plan de la barre */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 53, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-capsule-utilisateurs::-webkit-scrollbar-thumb {
  background: #C38761;
  /* Couleur de la barre de défilement */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 58, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-capsule-utilisateurs::-webkit-scrollbar-thumb:hover {
  background: #fefefe;
  /* Couleur de la barre au survol */
}

/* line 63, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-capsule-organization {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  padding: 30px;
  font-size: 1rem;
  gap: 20px;
  overflow: auto;
  /* Personnalisation de la barre de défilement */
}

/* line 76, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-capsule-organization::-webkit-scrollbar {
  width: 8px;
  /* Largeur de la barre de défilement */
}

/* line 80, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-capsule-organization::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  /* Couleur de l'arrière-plan de la barre */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 85, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-capsule-organization::-webkit-scrollbar-thumb {
  background: #C38761;
  /* Couleur de la barre de défilement */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 90, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-capsule-organization::-webkit-scrollbar-thumb:hover {
  background: #fefefe;
  /* Couleur de la barre au survol */
}

/* line 95, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-title {
  all: unset;
  width: 100%;
  align-items: start;
  justify-content: start;
}

/* line 100, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-title p {
  all: unset;
  font-size: 0.9rem;
  text-align: start;
  font-weight: 300;
  color: rgba(254, 254, 254, 0.7);
}

/* line 109, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 115, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-capsule span {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 121, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-capsule.lightmode span {
  color: #C38761;
}

/* line 125, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-capsule.nightmode span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 129, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-capsule.lightmode p {
  color: #140D23;
}

/* line 133, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-capsule.nightmode p {
  color: #fefefe;
}

/* line 137, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-capsule.lightmode i {
  color: #140D23;
}

/* line 141, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-capsule.nightmode i {
  color: #fefefe;
}

/* line 145, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-table {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

/* line 152, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-table-one {
  width: 50%;
  height: 60%;
}

/* line 157, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-table-content {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(232, 232, 232, 0.5);
  border-radius: 10px;
  padding-left: 10px;
  padding-right: 10px;
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 171, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-table-buttons {
  width: 100%;
  min-height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 10px;
}

/* line 181, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-table-two {
  width: 50%;
  height: 15%;
}

/* line 186, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-table-entry {
  width: 100%;
  min-height: 30px;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  border-bottom: 1px solid rgba(232, 232, 232, 0.5);
}

/* line 199, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-table-entry-last {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  min-height: 30px;
  height: 100%;
}

/* line 210, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-table-content-neutral {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  gap: 15px;
}

/* line 221, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-table-entry-last-isolated {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px 5px 10px;
  min-height: 25px;
  height: 80%;
  border: 1px solid rgba(232, 232, 232, 0.5);
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 239, app/assets/stylesheets/pages/customerspace/_account.scss */
.entry-avatar {
  min-height: 100px;
}

/* line 243, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-table-entry-label {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

/* line 251, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-table-entry-value {
  display: flex;
  flex-direction: row;
  justify-content: end;
  gap: 5px;
  align-items: center;
}

/* line 259, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-table-entry-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1px solid rgba(232, 232, 232, 0.5);
}

/* line 265, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-table-entry-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(232, 232, 232, 0.5);
  object-fit: cover;
}

/* line 276, app/assets/stylesheets/pages/customerspace/_account.scss */
.form-button, .crm-action-button, .users-management-container .users-header .add-user-btn {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  border-radius: 10px;
  background-color: #C38761;
  color: #fefefe;
  font-size: 0.8rem;
  font-weight: normal;
  transition: transform 0.2s ease-in-out;
  cursor: pointer;
}

/* line 292, app/assets/stylesheets/pages/customerspace/_account.scss */
.form-button.lightmode, .lightmode.crm-action-button, .users-management-container .users-header .lightmode.add-user-btn {
  background-color: #C38761;
  color: #fefefe;
}

/* line 297, app/assets/stylesheets/pages/customerspace/_account.scss */
.form-button.nightmode, .nightmode.crm-action-button, .users-management-container .users-header .nightmode.add-user-btn {
  background-color: #E5A82E;
  color: #140D23;
}

/* line 302, app/assets/stylesheets/pages/customerspace/_account.scss */
.form-button.lightmode:hover, .lightmode.crm-action-button:hover, .users-management-container .users-header .lightmode.add-user-btn:hover {
  background-color: #9d5d76b3;
  transform: scale(1.05);
}

/* line 307, app/assets/stylesheets/pages/customerspace/_account.scss */
.form-button.nightmode:hover, .nightmode.crm-action-button:hover, .users-management-container .users-header .nightmode.add-user-btn:hover {
  background-color: #864B28;
  transform: scale(1.05);
}

/* line 313, app/assets/stylesheets/pages/customerspace/_account.scss */
.form-input {
  text-align: end;
  width: 100%;
  padding: 2px;
  font-size: 0.8rem;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
}

/* line 322, app/assets/stylesheets/pages/customerspace/_account.scss */
.testsearchbar {
  width: 50%;
  max-height: 50px;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(232, 232, 232, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 15px;
}

/* line 336, app/assets/stylesheets/pages/customerspace/_account.scss */
.testsearchbar span {
  font-weight: normal !important;
  color: #fefefe;
  font-size: 0.8rem !important;
  text-align: center;
}

/* line 343, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-laius {
  all: unset;
  width: 50%;
  height: 30%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 20px;
}

/* line 352, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-laius span {
  all: unset;
  font-size: 0.7rem;
  color: rgba(232, 232, 232, 0.7);
  text-align: start;
  display: flex;
  flex-direction: column;
}

/* line 361, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-laius ul {
  all: unset;
  font-size: 0.7rem;
  color: rgba(232, 232, 232, 0.7);
  text-align: start;
  display: flex;
  flex-direction: column;
}

/* line 370, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-laius li {
  all: unset;
  font-size: 0.7rem;
  color: rgba(232, 232, 232, 0.7);
  text-align: start;
  display: flex;
  flex-direction: column;
}

/* line 381, app/assets/stylesheets/pages/customerspace/_account.scss */
.vertical-separator span {
  color: #fefefe !important;
}

/* line 386, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-laius-bloc1 {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 15px;
}

/* line 396, app/assets/stylesheets/pages/customerspace/_account.scss */
.vertical-separator {
  height: 100%;
  padding-right: 15px;
  margin-right: 10px;
  display: flex;
  border-right: 1px solid rgba(232, 232, 232, 0.5);
}

/* line 404, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-row1-subscription {
  width: 80%;
  height: 40%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

/* line 414, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-subscriptioncard {
  width: 33%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0px;
  border: 1px solid rgba(232, 232, 232, 0.5);
  border-radius: 40px;
  padding-left: 10px;
  padding-right: 10px;
  background-image: linear-gradient(to right, transparent, rgba(195, 135, 97, 0.1));
  box-shadow: 0px 0px 10px rgba(232, 232, 232, 0.5);
}

/* line 430, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-subscriptioncard-title {
  font-size: 0.8rem;
  font-weight: bold;
  padding: 5px 10px;
  width: 90%;
  height: 20%;
  border-bottom: 1px solid rgba(232, 232, 232, 0.5);
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  line-height: 0rem;
}

/* line 442, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-subscriptioncard-title p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
  font-weight: bold;
}

/* line 450, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-subscriptioncard-core {
  font-size: 0.7rem;
  font-weight: normal;
  padding: 5px 10px;
  width: 90%;
  height: 60%;
  border-bottom: 1px solid rgba(232, 232, 232, 0.5);
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: start;
  justify-content: center;
  gap: 5px;
}

/* line 465, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-subscriptioncard-action {
  font-size: 0.8rem;
  font-weight: normal;
  padding: 5px 10px;
  width: 90%;
  height: 20%;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* line 479, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-invoiceplace {
  width: 80%;
  height: 40%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  border: 1px solid rgba(232, 232, 232, 0.5);
  border-radius: 10px;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 492, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-users {
  width: 80%;
  max-height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  border: 1px solid rgba(232, 232, 232, 0.5);
  border-radius: 10px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 505, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-invoiceshead {
  font-size: 0.7rem !important;
  font-weight: bold;
  width: 100%;
  border-bottom: 1px solid rgba(232, 232, 232, 0.5);
}

/* line 513, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-invoiceslist {
  font-size: 0.7rem;
  font-weight: normal;
  padding: 0px 15px 10px 15px;
  width: 100%;
  overflow-y: auto;
  /* Personnalisation de la barre de défilement */
}

/* line 521, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-invoiceslist::-webkit-scrollbar {
  width: 8px;
  /* Largeur de la barre de défilement */
}

/* line 525, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-invoiceslist::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  /* Couleur de l'arrière-plan de la barre */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 530, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-invoiceslist::-webkit-scrollbar-thumb {
  background: #C38761;
  /* Couleur de la barre de défilement */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 535, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-invoiceslist::-webkit-scrollbar-thumb:hover {
  background: #fefefe;
  /* Couleur de la barre au survol */
}

/* line 540, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-table-capsule {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 5px 15px;
  font-size: 1rem;
  gap: 10px;
}

/* line 553, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-invoicehead-column {
  width: 20%;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* line 561, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-line {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem !important;
}

/* line 571, app/assets/stylesheets/pages/customerspace/_account.scss */
.customerspace-assistant {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  font-size: 1rem;
  gap: 20px;
}

/* line 583, app/assets/stylesheets/pages/customerspace/_account.scss */
.customerspace-searchbar {
  width: 60%;
  max-height: 50px;
  margin-top: 15%;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(232, 232, 232, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 15px;
}

/* line 599, app/assets/stylesheets/pages/customerspace/_account.scss */
.customerspace-row1 {
  width: 60%;
  height: 40%;
  min-height: 200px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

/* line 610, app/assets/stylesheets/pages/customerspace/_account.scss */
.customerspace-row1-column1 {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(232, 232, 232, 0.5);
  border-radius: 10px;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 624, app/assets/stylesheets/pages/customerspace/_account.scss */
.customerspace-row1-column2 {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(232, 232, 232, 0.5);
  border-radius: 10px;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.1);
}

/* Remplacer le style actuel de .mdp-modal par celui-ci */
/* ==========================================================================
   MDPModal - Base partagée pour toutes les modals Customer Space
   Référence : Organization Wizard Modal (_organization_wizard_modal.scss)
   ========================================================================== */
/* line 643, app/assets/stylesheets/pages/customerspace/_account.scss */
.mdp-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0s 0.3s;
  pointer-events: none;
  transform: translateY(-50px);
}

/* line 659, app/assets/stylesheets/pages/customerspace/_account.scss */
.mdp-modal.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* line 667, app/assets/stylesheets/pages/customerspace/_account.scss */
.mdp-modal .modal-content {
  position: relative;
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
  color: white;
  border: none;
  border-radius: 12px;
  width: 90%;
  max-width: 700px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: visible;
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.3s ease;
}

/* line 683, app/assets/stylesheets/pages/customerspace/_account.scss */
.mdp-modal .modal-content:hover {
  transform: translateY(0);
}

/* line 688, app/assets/stylesheets/pages/customerspace/_account.scss */
.mdp-modal .modal-content .close {
  position: absolute;
  right: 16px;
  top: 12px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color 0.2s ease;
  z-index: 10;
  margin: 0 !important;
  line-height: 1;
  padding: 0;
}

/* line 709, app/assets/stylesheets/pages/customerspace/_account.scss */
.mdp-modal .modal-content .close:hover {
  color: #C38761;
}

/* line 715, app/assets/stylesheets/pages/customerspace/_account.scss */
.mdp-modal .modal-content .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: none;
  margin: 0;
}

/* line 724, app/assets/stylesheets/pages/customerspace/_account.scss */
.mdp-modal .modal-content .modal-header h3, .mdp-modal .modal-content .modal-header .h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

/* line 731, app/assets/stylesheets/pages/customerspace/_account.scss */
.mdp-modal .modal-content .modal-header .close {
  position: static;
  flex-shrink: 0;
}

/* line 738, app/assets/stylesheets/pages/customerspace/_account.scss */
.mdp-modal .modal-content h2, .mdp-modal .modal-content .h2 {
  margin: 0;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  color: rgba(255, 255, 255, 0.95);
}

/* line 749, app/assets/stylesheets/pages/customerspace/_account.scss */
.mdp-modal .modal-content .modal-description {
  font-size: 0.9rem;
  color: rgba(254, 254, 254, 0.7);
  margin: 0;
  padding: 12px 24px;
  text-align: center;
}

/* line 758, app/assets/stylesheets/pages/customerspace/_account.scss */
.mdp-modal .modal-content form {
  padding: 1.5rem 24px;
}

/* line 761, app/assets/stylesheets/pages/customerspace/_account.scss */
.mdp-modal .modal-content form .form-group {
  margin-bottom: 1.25rem !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

/* line 768, app/assets/stylesheets/pages/customerspace/_account.scss */
.mdp-modal .modal-content form .form-group label {
  display: block !important;
  font-weight: 500 !important;
  margin-bottom: 0.5rem !important;
  color: #fefefe !important;
  opacity: 1 !important;
  visibility: visible !important;
  font-size: 0.9rem !important;
  width: 100% !important;
  text-align: center !important;
  padding-left: 1.5rem !important;
}

/* line 781, app/assets/stylesheets/pages/customerspace/_account.scss */
.mdp-modal .modal-content form .form-group input[type="password"] {
  width: 85% !important;
  height: 38px !important;
  padding: 8px 12px !important;
  border-radius: 8px !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: white !important;
  font-size: 0.9rem !important;
  box-sizing: border-box !important;
  margin: 0 auto !important;
  margin-right: 46px !important;
}

/* line 794, app/assets/stylesheets/pages/customerspace/_account.scss */
.mdp-modal .modal-content form .form-group input[type="password"]:focus {
  outline: none !important;
  border-color: #C38761 !important;
}

/* line 801, app/assets/stylesheets/pages/customerspace/_account.scss */
.mdp-modal .modal-content form .form-actions {
  padding: 1rem 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* line 807, app/assets/stylesheets/pages/customerspace/_account.scss */
.mdp-modal .modal-content form .form-actions .form-button, .mdp-modal .modal-content form .form-actions .crm-action-button, .mdp-modal .modal-content form .form-actions .users-management-container .users-header .add-user-btn, .users-management-container .users-header .mdp-modal .modal-content form .form-actions .add-user-btn {
  border: none;
  padding: 0.625rem 1.25rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

/* line 817, app/assets/stylesheets/pages/customerspace/_account.scss */
.mdp-modal .modal-content form .form-actions .form-button:not(.secondary), .mdp-modal .modal-content form .form-actions .crm-action-button:not(.secondary), .mdp-modal .modal-content form .form-actions .users-management-container .users-header .add-user-btn:not(.secondary), .users-management-container .users-header .mdp-modal .modal-content form .form-actions .add-user-btn:not(.secondary) {
  background-color: #C38761;
  color: #140D23;
}

/* line 821, app/assets/stylesheets/pages/customerspace/_account.scss */
.mdp-modal .modal-content form .form-actions .form-button:not(.secondary):hover, .mdp-modal .modal-content form .form-actions .crm-action-button:not(.secondary):hover, .mdp-modal .modal-content form .form-actions .users-management-container .users-header .add-user-btn:not(.secondary):hover, .users-management-container .users-header .mdp-modal .modal-content form .form-actions .add-user-btn:not(.secondary):hover {
  background-color: #ca9573;
  transform: translateY(-1px);
}

/* line 827, app/assets/stylesheets/pages/customerspace/_account.scss */
.mdp-modal .modal-content form .form-actions .form-button.secondary, .mdp-modal .modal-content form .form-actions .secondary.crm-action-button, .mdp-modal .modal-content form .form-actions .users-management-container .users-header .secondary.add-user-btn, .users-management-container .users-header .mdp-modal .modal-content form .form-actions .secondary.add-user-btn {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 832, app/assets/stylesheets/pages/customerspace/_account.scss */
.mdp-modal .modal-content form .form-actions .form-button.secondary:hover, .mdp-modal .modal-content form .form-actions .secondary.crm-action-button:hover, .mdp-modal .modal-content form .form-actions .users-management-container .users-header .secondary.add-user-btn:hover, .users-management-container .users-header .mdp-modal .modal-content form .form-actions .secondary.add-user-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 841, app/assets/stylesheets/pages/customerspace/_account.scss */
.mdp-modal .modal-content .modal-actions {
  padding: 12px 24px;
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 850, app/assets/stylesheets/pages/customerspace/_account.scss */
.mdp-modal .modal-content .consent-checkbox {
  margin: 1rem 24px;
  padding: 0.875rem;
  background: rgba(254, 254, 254, 0.05);
  border-radius: 8px;
}

/* line 856, app/assets/stylesheets/pages/customerspace/_account.scss */
.mdp-modal .modal-content .consent-checkbox label {
  display: flex;
  align-items: flex-start;
  color: rgba(254, 254, 254, 0.9);
  font-size: 0.85rem;
  cursor: pointer;
}

/* line 863, app/assets/stylesheets/pages/customerspace/_account.scss */
.mdp-modal .modal-content .consent-checkbox label input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 3px;
}

/* line 871, app/assets/stylesheets/pages/customerspace/_account.scss */
.mdp-modal .modal-content::-webkit-scrollbar {
  width: 6px;
}

/* line 875, app/assets/stylesheets/pages/customerspace/_account.scss */
.mdp-modal .modal-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

/* line 880, app/assets/stylesheets/pages/customerspace/_account.scss */
.mdp-modal .modal-content::-webkit-scrollbar-thumb {
  background: rgba(195, 135, 97, 0.5);
  border-radius: 3px;
}

/* line 884, app/assets/stylesheets/pages/customerspace/_account.scss */
.mdp-modal .modal-content::-webkit-scrollbar-thumb:hover {
  background: rgba(195, 135, 97, 0.7);
}

/* line 890, app/assets/stylesheets/pages/customerspace/_account.scss */
.mdp-modal.active .modal-content {
  transform: translateY(0);
  opacity: 1;
}

/* Ajoutez ces animations si elles ne sont pas déjà présentes */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* line 902, app/assets/stylesheets/pages/customerspace/_account.scss */
.organization-graph {
  width: 90%;
  min-height: 300px;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* line 911, app/assets/stylesheets/pages/customerspace/_account.scss */
.parent-entity {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 30px;
  width: 300px;
  justify-content: center;
}

/* line 923, app/assets/stylesheets/pages/customerspace/_account.scss */
.parent-icon {
  font-size: 2rem;
  margin-right: 15px;
  color: #e8b972;
}

/* line 929, app/assets/stylesheets/pages/customerspace/_account.scss */
.parent-info h3, .parent-info .h3 {
  margin: 0 0 5px 0;
  font-size: 1.2rem;
}

/* line 934, app/assets/stylesheets/pages/customerspace/_account.scss */
.parent-info p {
  margin: 0;
  font-size: 0.9rem;
}

/* line 939, app/assets/stylesheets/pages/customerspace/_account.scss */
.relationships-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* line 946, app/assets/stylesheets/pages/customerspace/_account.scss */
.relationships-line {
  height: 40px;
  width: 2px;
  background-color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
}

/* line 953, app/assets/stylesheets/pages/customerspace/_account.scss */
.child-organizations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

/* line 961, app/assets/stylesheets/pages/customerspace/_account.scss */
.business-content {
  width: 100%;
}

/* line 965, app/assets/stylesheets/pages/customerspace/_account.scss */
.organization-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 15px;
  width: 100%;
  gap: 10px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

/* line 977, app/assets/stylesheets/pages/customerspace/_account.scss */
.org-content {
  display: flex;
  flex-direction: row;
  gap: 30px;
  height: 100%;
  width: 100%;
}

/* line 985, app/assets/stylesheets/pages/customerspace/_account.scss */
.organization-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

/* line 991, app/assets/stylesheets/pages/customerspace/_account.scss */
.organization-card-profil {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 15px;
  width: 310px;
  transition: all 0.3s ease;
}

/* line 1002, app/assets/stylesheets/pages/customerspace/_account.scss */
.organization-card-profil:not(.lightmode) .org-details p {
  font-size: 0.7rem;
  line-height: 1.5;
}

/* line 1006, app/assets/stylesheets/pages/customerspace/_account.scss */
.organization-card-profil:not(.lightmode) .org-details p.section-description {
  font-size: 0.65rem;
  line-height: 1.6;
}

/* line 1015, app/assets/stylesheets/pages/customerspace/_account.scss */
.organization-card-profil.lightmode {
  color: rgba(20, 13, 35, 0.5) !important;
}

/* line 1017, app/assets/stylesheets/pages/customerspace/_account.scss */
.organization-card-profil.lightmode small, .organization-card-profil.lightmode .small {
  color: rgba(20, 13, 35, 0.5) !important;
}

/* line 1022, app/assets/stylesheets/pages/customerspace/_account.scss */
.organization-card-profil:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

/* line 1028, app/assets/stylesheets/pages/customerspace/_account.scss */
.org-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 1036, app/assets/stylesheets/pages/customerspace/_account.scss */
.org-header i {
  font-size: 1.2rem;
  margin-right: 10px;
  color: #e8b972;
}

/* line 1042, app/assets/stylesheets/pages/customerspace/_account.scss */
.org-header h4, .org-header .h4 {
  margin: 0;
  font-size: 1rem;
}

/* line 1047, app/assets/stylesheets/pages/customerspace/_account.scss */
.org-details {
  margin-bottom: 15px;
  width: 100%;
}

/* line 1052, app/assets/stylesheets/pages/customerspace/_account.scss */
.org-details p {
  margin: 8px 0;
  font-size: 0.75rem;
  line-height: 1.4;
  display: block;
}

/* line 1058, app/assets/stylesheets/pages/customerspace/_account.scss */
.org-details p.section-description {
  font-size: 0.7rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

/* line 1065, app/assets/stylesheets/pages/customerspace/_account.scss */
.org-details i {
  width: 20px;
  text-align: center;
}

/* line 1072, app/assets/stylesheets/pages/customerspace/_account.scss */
.org-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* line 1078, app/assets/stylesheets/pages/customerspace/_account.scss */
.edit-org-btn {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  cursor: pointer;
  color: #fefefe;
  transition: background 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* line 1092, app/assets/stylesheets/pages/customerspace/_account.scss */
.edit-org-btn.lightmode {
  color: #140D23 !important;
}

/* line 1096, app/assets/stylesheets/pages/customerspace/_account.scss */
.edit-org-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  color: #fefefe;
}

/* line 1102, app/assets/stylesheets/pages/customerspace/_account.scss */
.edit-org-btn i {
  margin-right: 5px;
}

/* line 1107, app/assets/stylesheets/pages/customerspace/_account.scss */
.add-organization-container {
  margin-top: 15px;
  margin-bottom: 35px;
  width: 100%;
  display: flex;
  justify-content: start;
}

/* line 1116, app/assets/stylesheets/pages/customerspace/_account.scss */
.add-org-btn {
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: normal;
}

/* line 1122, app/assets/stylesheets/pages/customerspace/_account.scss */
.no-organizations {
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  width: 80%;
  max-width: 600px;
}

/* line 1132, app/assets/stylesheets/pages/customerspace/_account.scss */
.organization-description {
  text-align: center;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

/* line 1141, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management {
  width: 100%;
  padding: 0 1rem;
}

/* line 1146, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management *, .subscription-management *:hover, .subscription-management *:focus, .subscription-management *:active {
  transform: none !important;
  box-shadow: none !important;
  scale: 1 !important;
  transition: none !important;
}

/* line 1157, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .section-header {
  text-align: center;
  margin-bottom: 2rem;
}

/* line 1161, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .section-header h2, .subscription-management .section-header .h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #fefefe;
}

/* line 1167, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .section-header .subtitle {
  color: rgba(254, 254, 254, 0.7);
  font-size: 1rem;
}

/* line 1173, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .subscription-section {
  background: rgba(254, 254, 254, 0.05);
  border-radius: 10px;
  padding: 1.5rem;
}

/* line 1178, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .subscription-section h3, .subscription-management .subscription-section .h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  color: #fefefe;
}

/* line 1186, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .subscription-section .section-intro {
  margin-bottom: 1.5rem;
  color: rgba(254, 254, 254, 0.7);
}

/* line 1193, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .subscription-card {
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* line 1200, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .subscription-card:hover {
  transform: none;
  box-shadow: none;
}

/* line 1207, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .subscription-card .card-header {
  display: flex;
  align-items: center;
  padding: 1.2rem;
  background: rgba(232, 185, 114, 0.2);
  position: relative;
}

/* line 1214, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .subscription-card .card-header i {
  font-size: 1.8rem;
  margin-right: 1rem;
  color: #e8b972;
}

/* line 1220, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .subscription-card .card-header h4, .subscription-management .subscription-card .card-header .h4 {
  font-size: 1.2rem;
  margin: 0;
  margin-right: auto;
  color: #fefefe;
  flex-shrink: 0;
}

/* line 1228, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .subscription-card .card-header .status-badge {
  position: absolute;
  right: 1.2rem;
  background: #e8b972;
  color: #121212;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* line 1240, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .subscription-card .detailed-card-ubscription {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

/* line 1247, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .subscription-card .subscription-details {
  width: 60%;
}

/* line 1250, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .subscription-card .subscription-details .detail-row {
  display: flex;
  margin-bottom: 0.8rem;
}

/* line 1255, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .subscription-card .subscription-details .detail-row .detail-label {
  color: rgba(254, 254, 254, 0.7);
  display: flex;
  align-items: center;
}

/* line 1260, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .subscription-card .subscription-details .detail-row .detail-label i {
  margin-right: 0.5rem;
  width: 16px;
  text-align: center;
}

/* line 1267, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .subscription-card .subscription-details .detail-row .detail-value {
  font-weight: 500;
  color: #fefefe;
}

/* line 1272, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .subscription-card .subscription-details .detail-row.price {
  margin-top: 1rem;
  padding-top: 1rem;
}

/* line 1277, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .subscription-card .subscription-details .detail-row.price .detail-value {
  font-size: 0.9rem;
  color: #e8b972;
  font-weight: 600;
}

/* line 1286, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .subscription-card .card-actions {
  display: flex;
  gap: 0.5rem;
  padding: 1.2rem;
  background: rgba(18, 18, 18, 0.3);
}

/* line 1292, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .subscription-card .card-actions button {
  font-size: 0.8rem;
}

/* line 1297, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .subscription-card .card-actions.lightmode {
  background: rgba(254, 254, 254, 0.1) !important;
}

/* line 1300, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .subscription-card .card-actions.lightmode button {
  color: #140D23 !important;
}

/* line 1305, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .subscription-card .subscription-description {
  padding: 1.2rem;
  color: rgba(254, 254, 254, 0.8);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(254, 254, 254, 0.1);
}

/* line 1312, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .subscription-card .pricing-options {
  padding: 1.2rem;
  display: flex;
  gap: 1rem;
}

/* line 1317, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .subscription-card .pricing-options .pricing-option {
  flex: 1;
  border: 1px solid rgba(254, 254, 254, 0.2);
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.2s ease;
  position: relative;
}

/* line 1328, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .subscription-card .pricing-options .pricing-option:hover {
  background: rgba(254, 254, 254, 0.05);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* line 1334, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .subscription-card .pricing-options .pricing-option.selected-option {
  border: 2px solid #e8b972 !important;
  background: rgba(232, 185, 114, 0.1) !important;
}

/* line 1339, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .subscription-card .pricing-options .pricing-option.selected-option::after {
  content: "✓";
  position: absolute;
  top: 5px;
  right: 5px;
  background: #e8b972;
  color: #2c2c3a;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: bold;
}

/* line 1357, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .subscription-card .pricing-options .pricing-option.recommended {
  border-color: #e8b972;
  position: relative;
}

/* line 1361, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .subscription-card .pricing-options .pricing-option.recommended::before {
  content: 'Recommandé';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #e8b972;
  color: #2c2c3a;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: bold;
}

/* line 1376, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .subscription-card .pricing-options .pricing-option .commitment {
  font-size: 0.9rem;
  color: rgba(254, 254, 254, 0.7);
  margin-bottom: 0.3rem;
}

/* line 1382, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .subscription-card .pricing-options .pricing-option .price {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fefefe;
}

/* line 1388, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .subscription-card .pricing-options .pricing-option .frequency {
  font-size: 0.8rem;
  color: rgba(254, 254, 254, 0.5);
  margin-bottom: 1rem;
}

/* line 1394, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .subscription-card .pricing-options .pricing-option .savings {
  background: rgba(232, 185, 114, 0.2);
  color: #e8b972;
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

/* line 1404, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .subscription-card .pricing-options .pricing-option .btn-primary, .subscription-management .subscription-card .pricing-options .pricing-option .crm-action-button.crm-action-button-primary {
  width: 100%;
}

/* line 1410, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .subscription-card .pricing-options .liberty-info {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

/* line 1419, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .subscription-card .pricing-options .liberty-info i {
  font-size: 1.5rem;
  color: #e8b972;
  margin-bottom: 0.5rem;
  display: block;
}

/* line 1426, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .subscription-card .pricing-options .liberty-info p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0rem;
}

/* line 1437, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .included-features {
  padding: 1.2rem;
}

/* line 1440, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .included-features h5, .subscription-management .included-features .h5 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: rgba(254, 254, 254, 0.9);
}

/* line 1446, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .included-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 1451, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .included-features ul li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  color: rgba(254, 254, 254, 0.7);
}

/* line 1457, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .included-features ul li i {
  color: #e8b972;
  margin-right: 0.5rem;
  width: 16px;
}

/* line 1466, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .included-apps {
  padding: 1.2rem;
  width: 50%;
}

/* line 1471, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .included-apps h5, .subscription-management .included-apps .h5 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: rgba(254, 254, 254, 0.9);
}

/* line 1477, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .included-apps .apps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* line 1482, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .included-apps .apps-grid .app-badge {
  background: rgba(18, 18, 18, 0.3);
  border-radius: 4px;
  padding: 0.3rem 0.6rem;
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(254, 254, 254, 0.7);
}

/* line 1491, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .included-apps .apps-grid .app-badge i {
  margin-right: 0.4rem;
  color: #e8b972;
}

/* line 1500, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .subscription-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(600px, 1fr));
  gap: 1.5rem;
}

/* line 1507, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

/* line 1512, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .apps-grid .app-card {
  background: rgba(254, 254, 254, 0.08);
  border-radius: 8px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

/* line 1520, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .apps-grid .app-card:hover {
  transform: translateY(-3px);
  background: rgba(254, 254, 254, 0.12);
}

/* line 1525, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .apps-grid .app-card[data-app-type="commerce"] {
  border-left: 3px solid #f59e0b;
}

/* line 1529, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .apps-grid .app-card[data-app-type="admin"] {
  border-left: 3px solid #3b82f6;
}

/* line 1533, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .apps-grid .app-card .app-icon {
  font-size: 2rem;
  color: #e8b972;
  margin-bottom: 1rem;
  text-align: center;
}

/* line 1540, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .apps-grid .app-card .app-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* line 1545, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .apps-grid .app-card .app-content h4, .subscription-management .apps-grid .app-card .app-content .h4 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: #fefefe;
}

/* line 1551, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .apps-grid .app-card .app-content .app-description {
  font-size: 0.85rem;
  color: rgba(254, 254, 254, 0.7);
  margin-bottom: 1rem;
  flex: 1;
}

/* line 1558, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .apps-grid .app-card .app-content .app-pricing {
  margin-bottom: 1rem;
}

/* line 1561, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .apps-grid .app-card .app-content .app-pricing .app-price {
  font-weight: 500;
  color: #e8b972;
}

/* line 1567, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .apps-grid .app-card .app-content .app-actions {
  display: flex;
  justify-content: center;
}

/* line 1576, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: rgba(254, 254, 254, 0.6);
}

/* line 1581, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .empty-state i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

/* line 1587, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .empty-state p {
  font-size: 1rem;
}

/* line 1593, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .invoices-link-container {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

/* line 1598, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .invoices-link-container .invoices-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #e8b972;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  background: rgba(232, 185, 114, 0.1);
  border: 1px solid rgba(232, 185, 114, 0.3);
  transition: all 0.2s ease;
}

/* line 1610, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .invoices-link-container .invoices-link:hover {
  background: rgba(232, 185, 114, 0.2);
}

/* line 1614, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .invoices-link-container .invoices-link i {
  margin-right: 0.5rem;
}

/* line 1621, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .alert-container {
  margin-bottom: 2rem;
}

/* line 1624, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .alert-container .alert {
  padding: 1rem;
  border-radius: 8px;
}

/* line 1628, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management .alert-container .alert.alert-warning {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #f59e0b;
}

/* line 1638, app/assets/stylesheets/pages/customerspace/_account.scss */
.btn-primary, .crm-action-button.crm-action-button-primary {
  background: #e8b972;
  color: #121212;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

/* line 1648, app/assets/stylesheets/pages/customerspace/_account.scss */
.btn-primary:hover, .crm-action-button.crm-action-button-primary:hover {
  background: #efcf9e;
}

/* line 1653, app/assets/stylesheets/pages/customerspace/_account.scss */
.btn-secondary, .crm-action-button.crm-action-button-secondary {
  background: rgba(254, 254, 254, 0.15);
  color: #fefefe;
  border: 1px solid rgba(254, 254, 254, 0.3);
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

/* line 1663, app/assets/stylesheets/pages/customerspace/_account.scss */
.btn-secondary:hover, .crm-action-button.crm-action-button-secondary:hover {
  background: rgba(254, 254, 254, 0.25);
}

/* line 1667, app/assets/stylesheets/pages/customerspace/_account.scss */
.btn-secondary.small, .small.crm-action-button.crm-action-button-secondary {
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
}

/* line 1673, app/assets/stylesheets/pages/customerspace/_account.scss */
.btn-danger {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

/* line 1683, app/assets/stylesheets/pages/customerspace/_account.scss */
.btn-danger:hover {
  background: rgba(239, 68, 68, 0.3);
}

/* line 1688, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container {
  width: 100%;
  padding: 0 1rem;
  overflow-y: auto;
  /* Personnalisation de la barre de défilement - similaire aux autres conteneurs */
}

/* line 1694, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container::-webkit-scrollbar {
  width: 8px;
}

/* line 1698, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 1703, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 1708, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container::-webkit-scrollbar-thumb:hover {
  background: #fefefe;
}

/* line 1712, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container .invoices-container-content {
  width: 95%;
  margin-top: 20px;
}

/* line 1717, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container .section-header {
  text-align: center;
  margin-bottom: 1rem;
}

/* line 1721, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container .section-header h2, .invoices-container .section-header .h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #fefefe;
}

/* line 1727, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container .section-header .subtitle {
  color: rgba(254, 254, 254, 0.7);
  font-size: 1rem;
}

/* line 1733, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container .invoices-filters {
  display: flex;
  flex-direction: row;
  gap: 40px;
  margin-bottom: 1rem;
  background: rgba(254, 254, 254, 0.05);
  padding: 1.2rem;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}

/* line 1745, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container .invoices-filters .filter-group {
  display: flex;
  flex-direction: column;
  min-width: 120px;
  width: auto;
  margin-bottom: 0;
}

/* line 1752, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container .invoices-filters .filter-group label {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  color: rgba(254, 254, 254, 0.7);
  font-weight: 500;
}

/* line 1759, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container .invoices-filters .filter-group .form-select {
  background: rgba(254, 254, 254, 0.1);
  border: 1px solid rgba(254, 254, 254, 0.2);
  padding: 0.5rem 0.8rem;
  border-radius: 4px;
  color: #fefefe;
  min-width: 120px;
  font-size: 0.9rem;
}

/* line 1768, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container .invoices-filters .filter-group .form-select:focus {
  border-color: #e8b972;
  outline: none;
  box-shadow: 0 0 0 1px rgba(232, 185, 114, 0.5);
}

/* line 1776, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container .invoices-filters .search-group {
  flex-grow: 1;
  position: relative;
  display: flex;
  align-items: center;
}

/* line 1784, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container .invoices-filters .search-group .search-input {
  width: 100%;
  background: rgba(254, 254, 254, 0.1);
  border: 1px solid rgba(254, 254, 254, 0.2);
  padding: 0.5rem 0.5rem 0.5rem 2.8rem;
  border-radius: 4px;
  color: #fefefe;
  font-size: 0.9rem;
}

/* line 1793, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container .invoices-filters .search-group .search-input:focus {
  border-color: #e8b972;
  outline: none;
  box-shadow: 0 0 0 1px rgba(232, 185, 114, 0.5);
}

/* line 1800, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container .invoices-filters .search-group i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(254, 254, 254, 0.5);
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 768px) {
  /* line 1733, app/assets/stylesheets/pages/customerspace/_account.scss */
  .invoices-container .invoices-filters {
    flex-direction: column;
    align-items: stretch;
  }
  /* line 1816, app/assets/stylesheets/pages/customerspace/_account.scss */
  .invoices-container .invoices-filters .filter-group, .invoices-container .invoices-filters .search-group {
    width: 100%;
  }
  /* line 1821, app/assets/stylesheets/pages/customerspace/_account.scss */
  .invoices-container .invoices-filters .search-group {
    margin-top: 0;
  }
}

/* line 1827, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container .invoices-table-container {
  margin-bottom: 2rem;
  background: rgba(254, 254, 254, 0.05);
  padding: 1rem;
  border-radius: 8px;
}

/* line 1834, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container table.invoices-table {
  width: 100%;
  border-collapse: collapse;
}

/* line 1838, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container table.invoices-table th, .invoices-container table.invoices-table td {
  padding: 1rem;
  text-align: left;
}

/* line 1843, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container table.invoices-table th {
  color: rgba(254, 254, 254, 0.7);
  font-weight: 500;
  border-bottom: 1px solid rgba(254, 254, 254, 0.3);
  white-space: nowrap;
}

/* line 1849, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container table.invoices-table th.sortable {
  cursor: pointer;
}

/* line 1852, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container table.invoices-table th.sortable:hover {
  color: #e8b972;
}

/* line 1856, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container table.invoices-table th.sortable i {
  margin-left: 0.3rem;
}

/* line 1862, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container table.invoices-table tr:hover {
  background: rgba(254, 254, 254, 0.03);
}

/* line 1866, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container table.invoices-table td {
  color: #fefefe;
  border-bottom: 1px solid rgba(254, 254, 254, 0.05);
}

/* line 1870, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container table.invoices-table td .invoice-period {
  font-size: 0.8rem;
  color: rgba(254, 254, 254, 0.5);
  margin-top: 0.3rem;
}

/* line 1876, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container table.invoices-table td .status-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* line 1883, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container table.invoices-table td .status-badge.paid {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

/* line 1888, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container table.invoices-table td .status-badge.pending {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

/* line 1893, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container table.invoices-table td .status-badge.scheduled {
  background-color: rgba(232, 232, 232, 0.3);
  color: rgba(254, 254, 254, 0.9);
}

/* line 1899, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container table.invoices-table td .download-link {
  display: inline-block;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  background: rgba(232, 185, 114, 0.1);
  color: #e8b972;
  transition: all 0.2s;
}

/* line 1907, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container table.invoices-table td .download-link:hover {
  background: rgba(232, 185, 114, 0.2);
}

/* line 1912, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container table.invoices-table td .unavailable-doc {
  color: rgba(254, 254, 254, 0.4);
  font-size: 0.9rem;
  font-style: italic;
}

/* line 1919, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container table.invoices-table tr.empty-row td {
  text-align: center;
  padding: 3rem 1rem;
  color: rgba(254, 254, 254, 0.5);
}

/* line 1927, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container .invoices-error-state {
  text-align: center;
  padding: 3rem 1rem;
}

/* line 1931, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container .invoices-error-state i {
  font-size: 3rem;
  color: #ef4444;
  margin-bottom: 1rem;
}

/* line 1937, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container .invoices-error-state h3, .invoices-container .invoices-error-state .h3 {
  margin-bottom: 0.5rem;
  color: #fefefe;
}

/* line 1942, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container .invoices-error-state p {
  color: rgba(254, 254, 254, 0.7);
  margin-bottom: 1.5rem;
}

/* line 1949, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container .invoices-empty-state {
  text-align: center;
  padding: 3rem 1rem;
}

/* line 1953, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container .invoices-empty-state i {
  font-size: 3rem;
  color: rgba(254, 254, 254, 0.5);
  margin-bottom: 1rem;
}

/* line 1959, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container .invoices-empty-state h3, .invoices-container .invoices-empty-state .h3 {
  margin-bottom: 0.5rem;
  color: #fefefe;
}

/* line 1964, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container .invoices-empty-state p {
  color: rgba(254, 254, 254, 0.7);
  margin-bottom: 1rem;
}

/* line 1969, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container .invoices-empty-state .invoices-empty-hint {
  color: rgba(254, 254, 254, 0.5);
  font-size: 0.9rem;
}

/* line 1975, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container .pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

/* line 1983, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container .pagination-container .pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(254, 254, 254, 0.2);
  border-radius: 4px;
  background: rgba(254, 254, 254, 0.05);
  color: #fefefe;
  text-decoration: none;
  transition: all 0.2s;
}

/* line 1996, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container .pagination-container .pagination-btn:hover:not(.disabled) {
  background: rgba(254, 254, 254, 0.1);
  border-color: rgba(254, 254, 254, 0.3);
}

/* line 2001, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container .pagination-container .pagination-btn.disabled {
  color: rgba(254, 254, 254, 0.3);
  cursor: not-allowed;
}

/* line 2007, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container .pagination-container .pagination-info {
  padding: 0 1rem;
  color: rgba(254, 254, 254, 0.7);
}

/* line 2011, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container .pagination-container .pagination-info small, .invoices-container .pagination-container .pagination-info .small {
  color: rgba(254, 254, 254, 0.5);
}

/* line 2017, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container .back-link-container {
  text-align: center;
  margin-bottom: 3rem;
}

/* line 2021, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container .back-link-container .back-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: rgba(254, 254, 254, 0.7);
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  background: rgba(254, 254, 254, 0.1);
  border: 1px solid rgba(254, 254, 254, 0.2);
  transition: all 0.2s ease;
}

/* line 2033, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container .back-link-container .back-link:hover {
  background: rgba(254, 254, 254, 0.15);
  color: #fefefe;
}

/* line 2038, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-container .back-link-container .back-link i {
  margin-right: 0.5rem;
}

/* line 2047, app/assets/stylesheets/pages/customerspace/_account.scss */
.organization-reference-container {
  width: 100%;
  margin: 0 0 30px 0;
  display: flex;
  flex-direction: column;
  align-items: start;
}

/* line 2057, app/assets/stylesheets/pages/customerspace/_account.scss */
.section-title {
  font-size: 1.2rem;
  color: #fefefe;
  margin-bottom: 0.5rem;
  align-self: flex-start;
  display: flex;
  align-items: center;
}

/* line 2066, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-badge {
  background: #C38761;
  color: #140D23;
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: 20px;
  margin-left: 10px;
}

/* line 2075, app/assets/stylesheets/pages/customerspace/_account.scss */
.section-description {
  color: rgba(254, 254, 254, 0.7);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  align-self: flex-start;
}

/* line 2082, app/assets/stylesheets/pages/customerspace/_account.scss */
.organizations-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  margin-bottom: 20px;
}

/* line 2091, app/assets/stylesheets/pages/customerspace/_account.scss */
.organization-list-container {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* line 2098, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card {
  background: rgba(254, 254, 254, 0.1);
  border: 2px solid #C38761;
  border-radius: 8px;
  padding: 15px;
  width: 100%;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 5px;
}

/* line 2108, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  background: rgba(254, 254, 254, 0.13);
}

/* line 2114, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card .org-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(254, 254, 254, 0.2);
}

/* line 2122, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card .btn-primary, .reference-organization-card .crm-action-button.crm-action-button-primary {
  margin-top: 1rem;
}

/* line 2127, app/assets/stylesheets/pages/customerspace/_account.scss */
.section-title {
  font-size: 1.2rem;
  color: #fefefe;
  margin-bottom: 0.5rem;
  align-self: flex-start;
  display: flex;
  align-items: center;
}

/* line 2136, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-badge {
  background: #C38761;
  color: #140D23;
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: 20px;
  margin-left: 10px;
}

/* line 2145, app/assets/stylesheets/pages/customerspace/_account.scss */
.section-description {
  color: rgba(254, 254, 254, 0.7);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  align-self: flex-start;
}

/* line 2152, app/assets/stylesheets/pages/customerspace/_account.scss */
.organizations-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  margin-bottom: 20px;
}

/* line 2161, app/assets/stylesheets/pages/customerspace/_account.scss */
.organization-list-container {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* line 2168, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card {
  background: rgba(254, 254, 254, 0.1);
  border: 2px solid #C38761;
  border-radius: 8px;
  padding: 15px;
  width: 100%;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 5px;
}

/* line 2178, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  background: rgba(254, 254, 254, 0.13);
}

/* line 2184, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card .org-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(254, 254, 254, 0.2);
  position: relative;
}

/* line 2192, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card .org-header i {
  font-size: 1.4rem;
  margin-right: 10px;
  color: #C38761;
}

/* line 2198, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card .org-header h4, .reference-organization-card .org-header .h4 {
  margin: 0;
  font-size: 1.2rem;
  color: #fefefe;
}

/* line 2204, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card .org-header .reference-status {
  position: absolute;
  right: 0;
  top: 0;
}

/* line 2209, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card .org-header .reference-status .status-badge {
  background: #C38761;
  color: #140D23;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* line 2222, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card .org-details {
  margin-bottom: 15px;
}

/* line 2225, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card .org-details p {
  margin: 8px 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  color: rgba(254, 254, 254, 0.85);
}

/* line 2232, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card .org-details p i {
  width: 20px;
  margin-right: 8px;
  text-align: center;
  color: rgba(195, 135, 97, 0.8);
}

/* line 2241, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card .org-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* line 2248, app/assets/stylesheets/pages/customerspace/_account.scss */
.empty-reference-card {
  background: rgba(254, 254, 254, 0.05);
  border: 2px dashed rgba(195, 135, 97, 0.4);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  width: 100%;
  max-width: 600px;
}

/* line 2257, app/assets/stylesheets/pages/customerspace/_account.scss */
.empty-reference-card i {
  font-size: 2rem;
  color: rgba(195, 135, 97, 0.6);
  margin-bottom: 1rem;
}

/* line 2263, app/assets/stylesheets/pages/customerspace/_account.scss */
.empty-reference-card p {
  color: rgba(254, 254, 254, 0.7);
  font-size: 1rem;
}

/* line 2270, app/assets/stylesheets/pages/customerspace/_account.scss */
.is-reference-group {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(254, 254, 254, 0.05);
  border-radius: 8px;
}

/* line 2276, app/assets/stylesheets/pages/customerspace/_account.scss */
.is-reference-group .checkbox-wrapper {
  display: flex;
  align-items: center;
}

/* line 2280, app/assets/stylesheets/pages/customerspace/_account.scss */
.is-reference-group .checkbox-wrapper .form-checkbox {
  margin-right: 10px;
  width: 18px;
  height: 18px;
}

/* line 2286, app/assets/stylesheets/pages/customerspace/_account.scss */
.is-reference-group .checkbox-wrapper .checkbox-label {
  font-size: 1rem;
  color: #fefefe;
  text-align: left !important;
  padding-left: 0 !important;
  margin-bottom: 0 !important;
}

/* line 2295, app/assets/stylesheets/pages/customerspace/_account.scss */
.is-reference-group .reference-info {
  margin-top: 10px;
}

/* line 2298, app/assets/stylesheets/pages/customerspace/_account.scss */
.is-reference-group .reference-info .reference-warning {
  color: rgba(195, 135, 97, 0.9);
  font-size: 0.85rem;
  display: flex;
  align-items: flex-start;
}

/* line 2304, app/assets/stylesheets/pages/customerspace/_account.scss */
.is-reference-group .reference-info .reference-warning i {
  margin-right: 8px;
  margin-top: 3px;
}

/* line 2314, app/assets/stylesheets/pages/customerspace/_account.scss */
.registre-fields-container .rcs-field-group,
.registre-fields-container .rm-field-group {
  display: block;
}

/* line 2320, app/assets/stylesheets/pages/customerspace/_account.scss */
.registre-fields-container .rcs-field-group input:disabled,
.registre-fields-container .rm-field-group input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: rgba(255, 255, 255, 0.05);
}

/* line 2325, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] .registre-fields-container .rcs-field-group input:disabled, [data-lightmode-target="button"] .registre-fields-container .rm-field-group input:disabled {
  background-color: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.4);
}

/* line 2332, app/assets/stylesheets/pages/customerspace/_account.scss */
.registre-fields-container .rcs-field-group label:has(+ input:disabled),
.registre-fields-container .rm-field-group label:has(+ input:disabled) {
  opacity: 0.6;
}

/* line 2339, app/assets/stylesheets/pages/customerspace/_account.scss */
.edit-org-btn, .set-reference-btn,
a.edit-org-btn, a.set-reference-btn {
  background: rgba(254, 254, 254, 0.15);
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  cursor: pointer;
  color: white;
  display: flex;
  align-items: center;
  transition: background 0.3s ease;
  text-decoration: none;
}

/* line 2353, app/assets/stylesheets/pages/customerspace/_account.scss */
.edit-org-btn i, .set-reference-btn i,
a.edit-org-btn i, a.set-reference-btn i {
  margin-right: 5px;
}

/* line 2357, app/assets/stylesheets/pages/customerspace/_account.scss */
.edit-org-btn:hover, .set-reference-btn:hover,
a.edit-org-btn:hover, a.set-reference-btn:hover {
  background: rgba(254, 254, 254, 0.25);
  text-decoration: none;
  color: white;
}

/* line 2364, app/assets/stylesheets/pages/customerspace/_account.scss */
.set-reference-btn {
  background: rgba(195, 135, 97, 0.2);
  color: #C38761;
}

/* line 2368, app/assets/stylesheets/pages/customerspace/_account.scss */
.set-reference-btn:hover {
  background: rgba(195, 135, 97, 0.3);
}

/* line 2372, app/assets/stylesheets/pages/customerspace/_account.scss */
.set-reference-btn i {
  color: #C38761;
}

/* line 2377, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-table {
  background: transparent !important;
}

/* line 2381, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container {
  width: 95%;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin: 20px;
  gap: 20px;
  background: transparent !important;
}

/* line 2391, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 15px;
}

/* line 2399, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-header .stats-container {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* line 2404, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-header .stats-container .stat-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 15px;
  display: flex;
  align-items: center;
  min-width: 150px;
}

/* line 2412, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-header .stats-container .stat-card i {
  font-size: 1.6rem;
  margin-right: 15px;
  color: #C38761;
}

/* line 2418, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-header .stats-container .stat-card .stat-content {
  display: flex;
  flex-direction: column;
}

/* line 2422, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-header .stats-container .stat-card .stat-content .stat-value {
  font-size: 1.2rem !important;
  font-weight: bold;
  color: #fefefe;
}

/* line 2428, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-header .stats-container .stat-card .stat-content .stat-label {
  font-size: 0.8rem !important;
  color: rgba(254, 254, 254, 0.7);
}

/* line 2436, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-header .add-user-btn {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 2442, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-header .add-user-btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* line 2446, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-header .add-user-btn.disabled:hover {
  transform: none;
  background-color: #C38761;
}

/* line 2454, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .table-filters {
  display: flex;
  flex-direction: row;
  gap: 20px;
  background: rgba(254, 254, 254, 0.05);
  padding: 1rem;
  border-radius: 8px;
  align-items: flex-end;
  flex-wrap: nowrap;
}

/* line 2465, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .table-filters .filter-container {
  display: flex;
  flex-direction: column;
  min-width: 120px;
  width: auto;
  margin-bottom: 0;
}

/* line 2472, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .table-filters .filter-container select {
  background: rgba(254, 254, 254, 0.1);
  border: 1px solid rgba(254, 254, 254, 0.2);
  padding: 0.5rem 0.8rem;
  border-radius: 4px;
  color: #fefefe;
  min-width: 150px;
  font-size: 0.9rem;
}

/* line 2481, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .table-filters .filter-container select:focus {
  border-color: #e8b972;
  outline: none;
  box-shadow: 0 0 0 1px rgba(232, 185, 114, 0.5);
}

/* line 2489, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .table-filters .search-container-users {
  flex-grow: 1;
  position: relative;
  display: flex;
  align-items: center;
}

/* line 2495, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .table-filters .search-container-users i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(254, 254, 254, 0.5);
  pointer-events: none;
  z-index: 1;
}

/* line 2505, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .table-filters .search-container-users input[type="text"] {
  width: 100%;
  background: rgba(254, 254, 254, 0.1);
  border: 1px solid rgba(254, 254, 254, 0.2);
  padding: 0.5rem 0.5rem 0.5rem 2.8rem;
  border-radius: 4px;
  color: #fefefe;
  font-size: 0.9rem;
}

/* line 2514, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .table-filters .search-container-users input[type="text"]:focus {
  border-color: #e8b972;
  outline: none;
  box-shadow: 0 0 0 1px rgba(232, 185, 114, 0.5);
}

@media (max-width: 768px) {
  /* line 2454, app/assets/stylesheets/pages/customerspace/_account.scss */
  .users-management-container .table-filters {
    flex-direction: column;
    align-items: stretch;
  }
  /* line 2526, app/assets/stylesheets/pages/customerspace/_account.scss */
  .users-management-container .table-filters .filter-container, .users-management-container .table-filters .search-container {
    width: 100%;
    margin-bottom: 15px;
  }
}

/* line 2534, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-table-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* line 2544, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-table {
  width: 100%;
  border-collapse: separate;
  border-collapse: separate;
  border-spacing: 0;
  overflow-y: auto;
  /* Personnalisation de la barre de défilement - similaire aux autres conteneurs */
}

/* line 2552, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-table::-webkit-scrollbar {
  width: 8px;
}

/* line 2556, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-table::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 2561, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-table::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 2566, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-table::-webkit-scrollbar-thumb:hover {
  background: #fefefe;
}

/* line 2570, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-table thead {
  top: 0;
  z-index: 10;
}

/* line 2573, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-table thead th {
  background: rgba(254, 254, 254, 0.05);
  color: rgba(254, 254, 254, 0.9);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: left;
  padding: 0.5rem;
  border-bottom: 1px solid rgba(254, 254, 254, 0.1);
  top: 0;
  z-index: 10;
}

/* line 2584, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-table thead th.sortable {
  cursor: pointer;
}

/* line 2587, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-table thead th.sortable:hover {
  background: rgba(254, 254, 254, 0.08);
}

/* line 2591, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-table thead th.sortable i {
  margin-left: 5px;
  font-size: 0.8rem;
}

/* line 2597, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-table thead th:first-child {
  border-top-left-radius: 8px;
}

/* line 2601, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-table thead th:last-child {
  border-top-right-radius: 8px;
}

/* line 2608, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-table tbody tr {
  transition: background-color 0.2s;
}

/* line 2611, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-table tbody tr:hover {
  background: rgba(254, 254, 254, 0.05);
}

/* line 2615, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-table tbody tr td {
  padding: 1rem;
  border-bottom: 1px solid rgba(254, 254, 254, 0.05);
  color: rgba(254, 254, 254, 0.85);
  vertical-align: middle;
  font-size: 0.95rem;
}

/* line 2622, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-table tbody tr td.user-name-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 2627, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-table tbody tr td.user-name-cell .user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

/* line 2634, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-table tbody tr td.user-name-cell .user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* line 2640, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-table tbody tr td.user-name-cell .user-avatar .avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8b972;
  color: #1e1e2d;
  font-weight: 600;
  font-size: 0.9rem;
}

/* line 2653, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-table tbody tr td.user-name-cell .user-name {
  display: flex;
  flex-direction: column;
}

/* line 2658, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-table tbody tr td.user-name-cell .user-name span:first-child {
  font-weight: 500;
}

/* line 2662, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-table tbody tr td.user-name-cell .user-name span.user-phone {
  font-size: 0.8rem;
  color: rgba(254, 254, 254, 0.6);
  margin-top: 2px;
}

/* line 2671, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-table tbody tr td .role-badge, .users-management-container .users-table tbody tr td .status-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
}

/* line 2679, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-table tbody tr td .role-badge.admin, .users-management-container .users-table tbody tr td .status-badge.admin {
  background: rgba(232, 185, 114, 0.2);
  color: #e8b972;
}

/* line 2684, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-table tbody tr td .role-badge.user, .users-management-container .users-table tbody tr td .status-badge.user {
  background: rgba(254, 254, 254, 0.1);
  color: rgba(254, 254, 254, 0.9);
}

/* line 2689, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-table tbody tr td .role-badge.active, .users-management-container .users-table tbody tr td .status-badge.active {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

/* line 2694, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-table tbody tr td .role-badge.inactive, .users-management-container .users-table tbody tr td .status-badge.inactive {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

/* line 2700, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-table tbody tr td.actions-cell {
  white-space: nowrap;
  text-align: right;
}

/* line 2704, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-table tbody tr td.actions-cell .action-btn {
  background: rgba(254, 254, 254, 0.05);
  border: none;
  color: rgba(254, 254, 254, 0.7);
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 5px;
  transition: all 0.2s;
}

/* line 2718, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-table tbody tr td.actions-cell .action-btn:hover {
  background: rgba(254, 254, 254, 0.1);
  color: #fefefe;
}

/* line 2723, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-table tbody tr td.actions-cell .action-btn.edit-btn:hover {
  color: #3b82f6;
}

/* line 2727, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-table tbody tr td.actions-cell .action-btn.access-btn:hover {
  color: #22c55e;
}

/* line 2731, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-table tbody tr td.actions-cell .action-btn.password-btn:hover {
  color: #e8b972;
}

/* line 2738, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .users-table tbody tr:last-child td {
  border-bottom: none;
}

/* line 2746, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .form-group {
  margin-bottom: 20px;
}

/* line 2749, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .form-group label {
  display: block;
  margin-bottom: 5px;
  color: rgba(254, 254, 254, 0.8);
  font-size: 0.9rem;
}

/* line 2756, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .form-group .form-input {
  width: 100%;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(232, 232, 232, 0.3);
  border-radius: 5px;
  color: #fefefe;
}

/* line 2764, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .form-group .form-input:focus {
  outline: none;
  border-color: #C38761;
}

/* line 2772, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .role-selection .radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 5px;
}

/* line 2778, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .role-selection .radio-group .radio-option {
  display: flex;
  align-items: flex-start;
}

/* line 2782, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .role-selection .radio-group .radio-option input[type="radio"] {
  margin-top: 3px;
  margin-right: 10px;
}

/* line 2787, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .role-selection .radio-group .radio-option .radio-label {
  margin: 0;
  color: #fefefe;
  font-weight: 500;
}

/* line 2793, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .role-selection .radio-group .radio-option small, .users-management-container .role-selection .radio-group .radio-option .small {
  display: block;
  color: rgba(254, 254, 254, 0.6);
  font-size: 0.8rem;
  margin-top: 2px;
  margin-left: 25px;
}

/* line 2805, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .access-modal-content {
  width: 90%;
  max-width: 800px !important;
  max-height: 80vh;
  overflow-y: auto;
}

/* line 2812, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .modal-subtitle {
  text-align: center;
  color: rgba(254, 254, 254, 0.7);
  margin-bottom: 20px;
}

/* line 2818, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .access-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

/* line 2823, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .access-tabs .tab-btn {
  flex: 1;
  padding: 8px 15px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(254, 254, 254, 0.7);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s;
}

/* line 2833, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .access-tabs .tab-btn.active, .users-management-container .access-tabs .tab-btn:hover {
  background: rgba(195, 135, 97, 0.2);
  color: #C38761;
}

/* line 2840, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .access-tab-content {
  display: none;
}

/* line 2843, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .access-tab-content.active {
  display: block;
  animation: fadeIn 0.3s;
}

/* line 2849, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

/* line 2856, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .app-access-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 15px;
  transition: all 0.2s;
}

/* line 2862, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .app-access-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* line 2866, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .app-access-card .app-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

/* line 2871, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .app-access-card .app-header i {
  font-size: 1.2rem;
  margin-right: 10px;
  color: #C38761;
}

/* line 2877, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .app-access-card .app-header .app-name {
  font-weight: 500;
  color: #fefefe;
}

/* line 2883, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .app-access-card .app-description {
  font-size: 0.8rem;
  color: rgba(254, 254, 254, 0.7);
  margin-bottom: 15px;
  min-height: 40px;
}

/* line 2890, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .app-access-card .toggle-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* line 2895, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .app-access-card .toggle-container .toggle-label {
  color: rgba(254, 254, 254, 0.7);
  font-size: 0.85rem;
}

/* line 2901, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .app-access-card .toggle-container .switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
  opacity: 1 !important;
}

/* line 2909, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .app-access-card .toggle-container .switch label {
  opacity: 1 !important;
  font-family: inherit;
  font-size: inherit;
  text-transform: none;
  letter-spacing: normal;
}

/* line 2918, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .app-access-card .toggle-container .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* line 2923, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .app-access-card .toggle-container .switch input:checked + .slider {
  background-color: #C38761;
}

/* line 2927, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .app-access-card .toggle-container .switch input:checked + .slider:before {
  transform: translateX(20px);
}

/* line 2936, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .password-reset-info {
  display: flex;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* line 2944, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .password-reset-info i {
  font-size: 1.2rem;
  margin-right: 15px;
  color: #f59e0b;
}

/* line 2950, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-management-container .password-reset-info p {
  color: rgba(254, 254, 254, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

/* line 2960, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-capsule.lightmode .users-management-container .users-table tbody tr td {
  color: #140D23;
}

/* line 2964, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-capsule.lightmode .users-management-container .stat-card .stat-content .stat-value {
  color: #140D23 !important;
}

/* line 2969, app/assets/stylesheets/pages/customerspace/_account.scss */
.status-badge.cancellation-pending {
  background-color: #f08c00;
}

/* line 2973, app/assets/stylesheets/pages/customerspace/_account.scss */
.cancellation-info {
  background-color: rgba(240, 140, 0, 0.1);
  border-left: 3px solid #f08c00;
  padding: 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}

/* line 2981, app/assets/stylesheets/pages/customerspace/_account.scss */
.cancellation-message {
  color: #664d03;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

/* line 2990, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-capsule-profile {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  padding: 30px;
  font-size: 1rem;
  gap: 20px;
  overflow: auto;
  /* Personnalisation de la barre de défilement - même style que les autres conteneurs */
}

/* line 3003, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-capsule-profile::-webkit-scrollbar {
  width: 8px;
}

/* line 3007, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-capsule-profile::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 3012, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-capsule-profile::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 3017, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-capsule-profile::-webkit-scrollbar-thumb:hover {
  background: #fefefe;
}

/* line 3029, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-profile-header.lightmode {
  color: #140D23 !important;
}

/* line 3032, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-profile-header.lightmode h2, .account-page-profile-header.lightmode .h2 {
  color: #140D23 !important;
}

/* line 3036, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-profile-header.lightmode span {
  color: #140D23 !important;
}

/* line 3042, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-profile-header.lightmode .user-name-container .user-status-badge .status-badge.role-badge {
  background: rgba(195, 135, 97, 0.9) !important;
  color: #140D23 !important;
  box-shadow: 0 2px 8px rgba(195, 135, 97, 0.3) !important;
}

/* line 3047, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-profile-header.lightmode .user-name-container .user-status-badge .status-badge.role-badge:hover {
  box-shadow: 0 4px 12px rgba(195, 135, 97, 0.4) !important;
}

/* line 3055, app/assets/stylesheets/pages/customerspace/_account.scss */
.profile-header, .account-page-profile-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(254, 254, 254, 0.1);
  background: transparent !important;
  border: none !important;
  padding: 0 0 20px 0 !important;
  position: relative !important;
  overflow: visible !important;
}

/* line 3071, app/assets/stylesheets/pages/customerspace/_account.scss */
.profile-header::before, .account-page-profile-header::before, .profile-header::after, .account-page-profile-header::after {
  content: none !important;
  display: none !important;
}

/* line 3077, app/assets/stylesheets/pages/customerspace/_account.scss */
.profile-header .profile-header-intro, .account-page-profile-header .profile-header-intro {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* line 3082, app/assets/stylesheets/pages/customerspace/_account.scss */
.profile-header .profile-header-intro .user-avatar-large, .account-page-profile-header .profile-header-intro .user-avatar-large {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(195, 135, 97, 0.6);
  box-shadow: 0 0 15px rgba(195, 135, 97, 0.3);
}

/* line 3090, app/assets/stylesheets/pages/customerspace/_account.scss */
.profile-header .profile-header-intro .user-avatar-large .avatar-image, .account-page-profile-header .profile-header-intro .user-avatar-large .avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* line 3097, app/assets/stylesheets/pages/customerspace/_account.scss */
.profile-header .profile-header-intro .user-intro, .account-page-profile-header .profile-header-intro .user-intro {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: start;
}

/* line 3103, app/assets/stylesheets/pages/customerspace/_account.scss */
.profile-header .profile-header-intro .user-intro .user-name-container, .account-page-profile-header .profile-header-intro .user-intro .user-name-container {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* line 3109, app/assets/stylesheets/pages/customerspace/_account.scss */
.profile-header .profile-header-intro .user-intro .user-name-container h2, .account-page-profile-header .profile-header-intro .user-intro .user-name-container h2, .profile-header .profile-header-intro .user-intro .user-name-container .h2, .account-page-profile-header .profile-header-intro .user-intro .user-name-container .h2 {
  margin: 0;
  padding: 0;
  color: #fefefe;
  font-size: 1.6rem;
  font-weight: 500;
}

/* line 3118, app/assets/stylesheets/pages/customerspace/_account.scss */
.profile-header .profile-header-intro .user-intro .user-name-container .user-status-badge .status-badge.role-badge, .account-page-profile-header .profile-header-intro .user-intro .user-name-container .user-status-badge .status-badge.role-badge {
  background: rgba(195, 135, 97, 0.9);
  color: #140D23;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(195, 135, 97, 0.3);
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* line 3131, app/assets/stylesheets/pages/customerspace/_account.scss */
.profile-header .profile-header-intro .user-intro .user-name-container .user-status-badge .status-badge.role-badge:hover, .account-page-profile-header .profile-header-intro .user-intro .user-name-container .user-status-badge .status-badge.role-badge:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(195, 135, 97, 0.4);
}

/* line 3139, app/assets/stylesheets/pages/customerspace/_account.scss */
.profile-header .profile-header-intro .user-intro .user-role, .account-page-profile-header .profile-header-intro .user-intro .user-role {
  color: #C38761;
  font-size: 1rem;
  margin: 5px 0;
}

/* line 3145, app/assets/stylesheets/pages/customerspace/_account.scss */
.profile-header .profile-header-intro .user-intro .user-stats, .account-page-profile-header .profile-header-intro .user-intro .user-stats {
  display: flex;
  gap: 15px;
  color: rgba(254, 254, 254, 0.7);
  font-size: 0.8rem;
  margin-top: 5px;
}

/* line 3152, app/assets/stylesheets/pages/customerspace/_account.scss */
.profile-header .profile-header-intro .user-intro .user-stats span, .account-page-profile-header .profile-header-intro .user-intro .user-stats span {
  display: flex;
  align-items: center;
}

/* line 3156, app/assets/stylesheets/pages/customerspace/_account.scss */
.profile-header .profile-header-intro .user-intro .user-stats span i, .account-page-profile-header .profile-header-intro .user-intro .user-stats span i {
  margin-right: 5px;
  color: rgba(195, 135, 97, 0.8);
}

/* line 3166, app/assets/stylesheets/pages/customerspace/_account.scss */
.profile-header.lightmode, .lightmode.account-page-profile-header {
  color: #140D23 !important;
}

/* line 3168, app/assets/stylesheets/pages/customerspace/_account.scss */
.profile-header.lightmode h2, .lightmode.account-page-profile-header h2, .profile-header.lightmode .h2, .lightmode.account-page-profile-header .h2 {
  color: #140D23 !important;
}

/* line 3171, app/assets/stylesheets/pages/customerspace/_account.scss */
.profile-header.lightmode span, .lightmode.account-page-profile-header span {
  color: #140D23 !important;
}

/* line 3177, app/assets/stylesheets/pages/customerspace/_account.scss */
.profile-header.lightmode .user-name-container .user-status-badge .status-badge.role-badge, .lightmode.account-page-profile-header .user-name-container .user-status-badge .status-badge.role-badge {
  background: rgba(195, 135, 97, 0.9) !important;
  color: #140D23 !important;
  box-shadow: 0 2px 8px rgba(195, 135, 97, 0.3) !important;
}

/* line 3182, app/assets/stylesheets/pages/customerspace/_account.scss */
.profile-header.lightmode .user-name-container .user-status-badge .status-badge.role-badge:hover, .lightmode.account-page-profile-header .user-name-container .user-status-badge .status-badge.role-badge:hover {
  box-shadow: 0 4px 12px rgba(195, 135, 97, 0.4) !important;
}

/* line 3190, app/assets/stylesheets/pages/customerspace/_account.scss */
.profile-section.lightmode {
  color: #140D23 !important;
}

/* line 3192, app/assets/stylesheets/pages/customerspace/_account.scss */
.profile-section.lightmode h2, .profile-section.lightmode .h2 {
  color: #140D23 !important;
}

/* line 3195, app/assets/stylesheets/pages/customerspace/_account.scss */
.profile-section.lightmode h4, .profile-section.lightmode .h4 {
  color: #140D23 !important;
}

/* line 3198, app/assets/stylesheets/pages/customerspace/_account.scss */
.profile-section.lightmode p {
  color: #140D23 !important;
}

/* line 3204, app/assets/stylesheets/pages/customerspace/_account.scss */
.profile-section {
  width: 100%;
  margin-bottom: 30px;
}

/* line 3209, app/assets/stylesheets/pages/customerspace/_account.scss */
.profile-badge {
  background: #C38761;
  color: #140D23;
}

/* line 3215, app/assets/stylesheets/pages/customerspace/_account.scss */
.profile-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  width: 100%;
}

/* line 3222, app/assets/stylesheets/pages/customerspace/_account.scss */
.profile-details-grid .profile-detail-item {
  padding: 15px;
  background: rgba(254, 254, 254, 0.03);
  border-radius: 8px;
  border-left: 2px solid rgba(195, 135, 97, 0.5);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* line 3232, app/assets/stylesheets/pages/customerspace/_account.scss */
.profile-details-grid .profile-detail-item:hover {
  background: rgba(254, 254, 254, 0.05);
  border-left-color: #C38761;
}

/* line 3237, app/assets/stylesheets/pages/customerspace/_account.scss */
.profile-details-grid .profile-detail-item.address-item {
  grid-column: 3;
  grid-row: 1 / 3;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  height: 100%;
}

/* line 3245, app/assets/stylesheets/pages/customerspace/_account.scss */
.profile-details-grid .profile-detail-item.address-item .detail-label {
  margin-bottom: 10px;
  width: 100%;
}

/* line 3250, app/assets/stylesheets/pages/customerspace/_account.scss */
.profile-details-grid .profile-detail-item.address-item .detail-value {
  padding-left: 0;
  width: 100%;
  text-align: left;
  flex: none;
  margin-left: 0;
}

/* line 3259, app/assets/stylesheets/pages/customerspace/_account.scss */
.profile-details-grid .profile-detail-item .detail-label {
  color: rgba(254, 254, 254, 0.7);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  font-weight: 500;
  flex-shrink: 0;
}

/* line 3267, app/assets/stylesheets/pages/customerspace/_account.scss */
.profile-details-grid .profile-detail-item .detail-label i {
  margin-right: 8px;
  color: #C38761;
  width: 16px;
  text-align: center;
}

/* line 3275, app/assets/stylesheets/pages/customerspace/_account.scss */
.profile-details-grid .profile-detail-item .detail-value {
  color: #fefefe;
  font-size: 0.8rem !important;
  font-weight: 500;
  text-align: right;
  flex: 1;
  margin-left: 10px;
}

/* line 3287, app/assets/stylesheets/pages/customerspace/_account.scss */
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  width: 100%;
}

/* line 3294, app/assets/stylesheets/pages/customerspace/_account.scss */
.password-link {
  background: none;
  border: none;
  color: #C38761;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font-size: 0.9rem;
}

/* line 3303, app/assets/stylesheets/pages/customerspace/_account.scss */
.password-link:hover {
  color: #d1a386;
}

/* line 3309, app/assets/stylesheets/pages/customerspace/_account.scss */
.profile-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 10px;
  width: 100%;
}

/* line 3317, app/assets/stylesheets/pages/customerspace/_account.scss */
.avatar-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* line 3323, app/assets/stylesheets/pages/customerspace/_account.scss */
.avatar-content .avatar-preview {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 15px;
  border: 2px solid rgba(254, 254, 254, 0.2);
}

/* line 3331, app/assets/stylesheets/pages/customerspace/_account.scss */
.avatar-content .avatar-preview .avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* line 3338, app/assets/stylesheets/pages/customerspace/_account.scss */
.avatar-content .avatar-info {
  font-size: 0.85rem;
  color: rgba(254, 254, 254, 0.7);
  margin-top: 10px;
}

/* line 3346, app/assets/stylesheets/pages/customerspace/_account.scss */
.theme-preview {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 15px;
}

/* line 3352, app/assets/stylesheets/pages/customerspace/_account.scss */
.theme-preview .theme-option {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* line 3357, app/assets/stylesheets/pages/customerspace/_account.scss */
.theme-preview .theme-option .theme-thumbnail {
  width: 80px;
  height: 50px;
  border-radius: 5px;
  margin-bottom: 10px;
  border: 2px solid rgba(254, 254, 254, 0.3);
  transition: all 0.2s;
}

/* line 3365, app/assets/stylesheets/pages/customerspace/_account.scss */
.theme-preview .theme-option .theme-thumbnail.dark-theme {
  background: linear-gradient(to bottom, #353535, #1a1a1a);
}

/* line 3369, app/assets/stylesheets/pages/customerspace/_account.scss */
.theme-preview .theme-option .theme-thumbnail.light-theme {
  background: linear-gradient(to bottom, #f5f5f5, #e0e0e0);
}

/* line 3374, app/assets/stylesheets/pages/customerspace/_account.scss */
.theme-preview .theme-option span {
  font-size: 0.85rem;
  color: rgba(254, 254, 254, 0.8);
  margin-bottom: 5px;
}

/* line 3380, app/assets/stylesheets/pages/customerspace/_account.scss */
.theme-preview .theme-option input[type="radio"] {
  cursor: pointer;
}

/* line 3383, app/assets/stylesheets/pages/customerspace/_account.scss */
.theme-preview .theme-option input[type="radio"]:checked + .theme-thumbnail {
  border-color: #C38761;
  box-shadow: 0 0 10px rgba(195, 135, 97, 0.5);
}

/* line 3391, app/assets/stylesheets/pages/customerspace/_account.scss */
.theme-info {
  font-size: 0.85rem;
  color: rgba(254, 254, 254, 0.7);
  text-align: center;
  margin-top: 15px;
}

/* line 3399, app/assets/stylesheets/pages/customerspace/_account.scss */
.notification-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

/* line 3405, app/assets/stylesheets/pages/customerspace/_account.scss */
.notification-options .notification-option {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* line 3410, app/assets/stylesheets/pages/customerspace/_account.scss */
.notification-options .notification-option .notification-toggle {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
  flex-shrink: 0;
  cursor: pointer;
  margin-right: 15px;
}

/* line 3419, app/assets/stylesheets/pages/customerspace/_account.scss */
.notification-options .notification-option .notification-toggle__checkbox {
  position: absolute;
  inset: 0;
  opacity: 0;
  margin: 0;
  cursor: pointer;
  z-index: 1;
}

/* line 3427, app/assets/stylesheets/pages/customerspace/_account.scss */
.notification-options .notification-option .notification-toggle__checkbox:checked + .notification-toggle__slider {
  background: #e8b972;
}

/* line 3430, app/assets/stylesheets/pages/customerspace/_account.scss */
.notification-options .notification-option .notification-toggle__checkbox:checked + .notification-toggle__slider::before {
  transform: translateX(24px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

/* line 3436, app/assets/stylesheets/pages/customerspace/_account.scss */
.notification-options .notification-option .notification-toggle__checkbox:focus-visible + .notification-toggle__slider {
  box-shadow: 0 0 0 3px #C38761, 0 0 0 6px rgba(195, 135, 97, 0.25);
  outline: none;
}

/* line 3442, app/assets/stylesheets/pages/customerspace/_account.scss */
.notification-options .notification-option .notification-toggle__slider {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  transition: all 0.3s ease;
}

/* line 3449, app/assets/stylesheets/pages/customerspace/_account.scss */
.notification-options .notification-option .notification-toggle__slider::before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* line 3464, app/assets/stylesheets/pages/customerspace/_account.scss */
.notification-options .notification-option .notification-text {
  display: flex;
  flex-direction: column;
}

/* line 3468, app/assets/stylesheets/pages/customerspace/_account.scss */
.notification-options .notification-option .notification-text span {
  color: #fefefe;
  font-size: 0.9rem;
}

/* line 3473, app/assets/stylesheets/pages/customerspace/_account.scss */
.notification-options .notification-option .notification-text small, .notification-options .notification-option .notification-text .small {
  color: rgba(254, 254, 254, 0.6);
  font-size: 0.8rem;
}

/* line 3482, app/assets/stylesheets/pages/customerspace/_account.scss */
.security-status {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* line 3487, app/assets/stylesheets/pages/customerspace/_account.scss */
.security-status .security-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* line 3492, app/assets/stylesheets/pages/customerspace/_account.scss */
.security-status .security-item .security-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* line 3500, app/assets/stylesheets/pages/customerspace/_account.scss */
.security-status .security-item .security-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 3506, app/assets/stylesheets/pages/customerspace/_account.scss */
.security-status .security-item .security-icon.secure {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

/* line 3511, app/assets/stylesheets/pages/customerspace/_account.scss */
.security-status .security-item .security-icon.warning {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

/* line 3517, app/assets/stylesheets/pages/customerspace/_account.scss */
.security-status .security-item .security-text {
  display: flex;
  flex-direction: column;
  width: 80%;
}

/* line 3522, app/assets/stylesheets/pages/customerspace/_account.scss */
.security-status .security-item .security-text span {
  color: #fefefe;
  font-size: 0.9rem;
}

/* line 3527, app/assets/stylesheets/pages/customerspace/_account.scss */
.security-status .security-item .security-text small, .security-status .security-item .security-text .small {
  color: rgba(254, 254, 254, 0.6);
  font-size: 0.8rem;
}

/* line 3536, app/assets/stylesheets/pages/customerspace/_account.scss */
.avatar-upload {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

/* line 3542, app/assets/stylesheets/pages/customerspace/_account.scss */
.avatar-upload .current-avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* line 3547, app/assets/stylesheets/pages/customerspace/_account.scss */
.avatar-upload .current-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(254, 254, 254, 0.3);
}

/* line 3555, app/assets/stylesheets/pages/customerspace/_account.scss */
.avatar-upload .current-avatar span {
  font-size: 0.8rem;
  color: rgba(254, 254, 254, 0.7);
  margin-top: 5px;
}

/* line 3563, app/assets/stylesheets/pages/customerspace/_account.scss */
.file-input-wrapper {
  position: relative;
  margin-top: 10px;
}

/* line 3567, app/assets/stylesheets/pages/customerspace/_account.scss */
.file-input-wrapper input[type="file"] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* line 3577, app/assets/stylesheets/pages/customerspace/_account.scss */
.file-input-wrapper .file-input-button {
  background: rgba(254, 254, 254, 0.1);
  border: 1px solid rgba(254, 254, 254, 0.3);
  padding: 8px 15px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
}

/* line 3585, app/assets/stylesheets/pages/customerspace/_account.scss */
.file-input-wrapper .file-input-button i {
  margin-right: 5px;
}

/* line 3590, app/assets/stylesheets/pages/customerspace/_account.scss */
.file-input-wrapper .file-name {
  margin-left: 10px;
  font-size: 0.85rem;
  color: rgba(254, 254, 254, 0.7);
}

/* line 3597, app/assets/stylesheets/pages/customerspace/_account.scss */
.file-tips {
  font-size: 0.8rem;
  color: rgba(254, 254, 254, 0.6);
  margin-top: 8px;
}

/* line 3603, app/assets/stylesheets/pages/customerspace/_account.scss */
.avatar-preview-container {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(254, 254, 254, 0.1);
}

/* line 3608, app/assets/stylesheets/pages/customerspace/_account.scss */
.avatar-preview-container h4, .avatar-preview-container .h4 {
  margin: 0 0 15px 0;
  color: rgba(254, 254, 254, 0.8);
  font-size: 1rem;
  text-align: center;
}

/* line 3615, app/assets/stylesheets/pages/customerspace/_account.scss */
.avatar-preview-container .avatar-preview-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  border: 2px solid #C38761;
}

/* line 3623, app/assets/stylesheets/pages/customerspace/_account.scss */
.avatar-preview-container .avatar-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* line 3632, app/assets/stylesheets/pages/customerspace/_account.scss */
.password-strength {
  margin-bottom: 20px;
}

/* line 3635, app/assets/stylesheets/pages/customerspace/_account.scss */
.password-strength .strength-meter {
  width: 100%;
  height: 5px;
  background-color: rgba(254, 254, 254, 0.1);
  border-radius: 3px;
  margin-bottom: 5px;
  overflow: hidden;
}

/* line 3643, app/assets/stylesheets/pages/customerspace/_account.scss */
.password-strength .strength-meter .strength-bar {
  height: 100%;
  width: 0%;
  background-color: #f59e0b;
  transition: width 0.3s, background-color 0.3s;
}

/* line 3650, app/assets/stylesheets/pages/customerspace/_account.scss */
.password-strength .strength-meter[data-strength="1"] .strength-bar {
  width: 25%;
  background-color: #ef4444;
}

/* line 3654, app/assets/stylesheets/pages/customerspace/_account.scss */
.password-strength .strength-meter[data-strength="2"] .strength-bar {
  width: 50%;
  background-color: #f59e0b;
}

/* line 3658, app/assets/stylesheets/pages/customerspace/_account.scss */
.password-strength .strength-meter[data-strength="3"] .strength-bar {
  width: 75%;
  background-color: #3b82f6;
}

/* line 3662, app/assets/stylesheets/pages/customerspace/_account.scss */
.password-strength .strength-meter[data-strength="4"] .strength-bar {
  width: 100%;
  background-color: #10b981;
}

/* line 3668, app/assets/stylesheets/pages/customerspace/_account.scss */
.password-strength .strength-text {
  font-size: 0.8rem;
  color: rgba(254, 254, 254, 0.7);
  margin-top: 5px;
}

/* line 3673, app/assets/stylesheets/pages/customerspace/_account.scss */
.password-strength .strength-text span {
  font-weight: 500;
}

/* line 3678, app/assets/stylesheets/pages/customerspace/_account.scss */
.password-strength .password-tip {
  font-size: 0.75rem;
  color: rgba(254, 254, 254, 0.6);
  font-style: italic;
  margin-top: 5px;
}

/* line 3687, app/assets/stylesheets/pages/customerspace/_account.scss */
.preference-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: rgba(195, 135, 97, 0.9);
  color: #140D23;
  padding: 12px 20px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}

/* line 3701, app/assets/stylesheets/pages/customerspace/_account.scss */
.preference-toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* line 3706, app/assets/stylesheets/pages/customerspace/_account.scss */
.preference-toast .toast-content {
  display: flex;
  align-items: center;
}

/* line 3710, app/assets/stylesheets/pages/customerspace/_account.scss */
.preference-toast .toast-content i {
  margin-right: 10px;
}

/* line 3717, app/assets/stylesheets/pages/customerspace/_account.scss */
.password-input-container {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid rgba(254, 254, 254, 0.2);
}

/* line 3725, app/assets/stylesheets/pages/customerspace/_account.scss */
.password-input-container .form-input {
  flex-grow: 1;
  border: none;
  border-radius: 0;
  padding-right: 10px;
  height: 100%;
  line-height: 1.5;
}

/* line 3733, app/assets/stylesheets/pages/customerspace/_account.scss */
.password-input-container .form-input:focus {
  box-shadow: none;
  border: none;
}

/* line 3739, app/assets/stylesheets/pages/customerspace/_account.scss */
.password-input-container .toggle-password {
  width: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(254, 254, 254, 0.6);
  transition: all 0.2s;
  background-color: rgba(254, 254, 254, 0.05);
  border-left: 1px solid rgba(254, 254, 254, 0.2);
}

/* line 3751, app/assets/stylesheets/pages/customerspace/_account.scss */
.password-input-container .toggle-password:hover {
  color: #C38761;
  background-color: rgba(254, 254, 254, 0.1);
}

/* line 3756, app/assets/stylesheets/pages/customerspace/_account.scss */
.password-input-container .toggle-password i {
  font-size: 1.1rem;
}

/* line 3763, app/assets/stylesheets/pages/customerspace/_account.scss */
.password-strength {
  margin: 15px 0;
}

/* line 3766, app/assets/stylesheets/pages/customerspace/_account.scss */
.password-strength .strength-meter {
  width: 100%;
  height: 6px;
  background-color: rgba(254, 254, 254, 0.1);
  border-radius: 3px;
  margin: 10px 0;
  overflow: hidden;
}

/* line 3774, app/assets/stylesheets/pages/customerspace/_account.scss */
.password-strength .strength-meter .strength-bar {
  height: 100%;
  width: 0%;
  background-color: #f87171;
  transition: width 0.3s, background-color 0.3s;
}

/* line 3782, app/assets/stylesheets/pages/customerspace/_account.scss */
.password-strength .strength-text {
  font-size: 0.85rem;
  color: rgba(254, 254, 254, 0.8);
  margin: 5px 0;
}

/* line 3787, app/assets/stylesheets/pages/customerspace/_account.scss */
.password-strength .strength-text span {
  font-weight: 500;
}

/* line 3794, app/assets/stylesheets/pages/customerspace/_account.scss */
.password-match-message {
  font-size: 0.8rem;
  margin-top: 5px;
}

/* line 3798, app/assets/stylesheets/pages/customerspace/_account.scss */
.password-match-message.match {
  color: #10b981;
}

/* line 3802, app/assets/stylesheets/pages/customerspace/_account.scss */
.password-match-message.mismatch {
  color: #ef4444;
}

/* line 3808, app/assets/stylesheets/pages/customerspace/_account.scss */
.password-input-container {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid rgba(254, 254, 254, 0.2);
}

/* line 3816, app/assets/stylesheets/pages/customerspace/_account.scss */
.password-input-container .form-input {
  flex-grow: 1;
  border: none;
  border-radius: 0;
  width: calc(100% - 40px);
  box-sizing: border-box;
  height: 100%;
  line-height: 1.5;
}

/* line 3825, app/assets/stylesheets/pages/customerspace/_account.scss */
.password-input-container .form-input:focus {
  box-shadow: none;
  border: none;
}

/* line 3831, app/assets/stylesheets/pages/customerspace/_account.scss */
.password-input-container .toggle-password {
  width: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(254, 254, 254, 0.6);
  transition: all 0.2s;
  background-color: rgba(254, 254, 254, 0.05);
  border-left: 1px solid rgba(254, 254, 254, 0.2);
}

/* line 3843, app/assets/stylesheets/pages/customerspace/_account.scss */
.password-input-container .toggle-password:hover {
  color: #C38761;
  background-color: rgba(254, 254, 254, 0.1);
}

/* line 3848, app/assets/stylesheets/pages/customerspace/_account.scss */
.password-input-container .toggle-password i {
  font-size: 1.1rem;
}

/* line 3855, app/assets/stylesheets/pages/customerspace/_account.scss */
.form-group .password-input-container {
  width: 100%;
  margin-top: 5px;
}

/* line 3862, app/assets/stylesheets/pages/customerspace/_account.scss */
.password-match-message {
  font-size: 0.8rem;
  margin-top: 5px;
}

/* line 3866, app/assets/stylesheets/pages/customerspace/_account.scss */
.password-match-message.match {
  color: #10b981;
}

/* line 3870, app/assets/stylesheets/pages/customerspace/_account.scss */
.password-match-message.mismatch {
  color: #ef4444;
}

/* line 3877, app/assets/stylesheets/pages/customerspace/_account.scss */
.file-upload-container {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

/* line 3882, app/assets/stylesheets/pages/customerspace/_account.scss */
.file-upload-container .file-upload-button {
  background-color: rgba(254, 254, 254, 0.1);
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  color: #fefefe;
}

/* line 3890, app/assets/stylesheets/pages/customerspace/_account.scss */
.file-upload-container .file-upload-button:hover {
  background-color: rgba(254, 254, 254, 0.2);
}

/* line 3894, app/assets/stylesheets/pages/customerspace/_account.scss */
.file-upload-container .file-upload-button i {
  margin-right: 5px;
}

/* line 3899, app/assets/stylesheets/pages/customerspace/_account.scss */
.file-upload-container .file-input {
  position: absolute;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  z-index: -1;
}

/* line 3908, app/assets/stylesheets/pages/customerspace/_account.scss */
.file-upload-container .file-name {
  margin-left: 15px;
  color: rgba(254, 254, 254, 0.7);
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

/* line 3919, app/assets/stylesheets/pages/customerspace/_account.scss */
.preview-container {
  margin: 20px 0;
}

/* line 3922, app/assets/stylesheets/pages/customerspace/_account.scss */
.preview-container.hidden {
  display: none;
}

/* line 3926, app/assets/stylesheets/pages/customerspace/_account.scss */
.preview-container p {
  margin-bottom: 10px;
  color: rgba(254, 254, 254, 0.8);
}

/* line 3931, app/assets/stylesheets/pages/customerspace/_account.scss */
.preview-container .avatar-preview-box {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  background-color: rgba(254, 254, 254, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 3941, app/assets/stylesheets/pages/customerspace/_account.scss */
.preview-container .avatar-preview-box .avatar-preview-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* line 3949, app/assets/stylesheets/pages/customerspace/_account.scss */
.avatar-info-box {
  display: flex;
  align-items: flex-start;
  padding: 10px 15px;
  background-color: rgba(254, 254, 254, 0.05);
  border-radius: 5px;
  margin: 15px 0;
}

/* line 3957, app/assets/stylesheets/pages/customerspace/_account.scss */
.avatar-info-box i {
  color: #C38761;
  margin-right: 10px;
  font-size: 1.2rem;
  margin-top: 2px;
}

/* line 3964, app/assets/stylesheets/pages/customerspace/_account.scss */
.avatar-info-box p {
  font-size: 0.85rem;
  color: rgba(254, 254, 254, 0.8);
  margin: 0;
  line-height: 1.4;
}

/* line 3974, app/assets/stylesheets/pages/customerspace/_account.scss */
.switch {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 24px;
  margin-right: 15px;
}

/* line 3982, app/assets/stylesheets/pages/customerspace/_account.scss */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* line 3988, app/assets/stylesheets/pages/customerspace/_account.scss */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(254, 254, 254, 0.1);
  transition: .4s;
}

/* line 3999, app/assets/stylesheets/pages/customerspace/_account.scss */
.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
}

/* line 4010, app/assets/stylesheets/pages/customerspace/_account.scss */
input:checked + .slider {
  background-color: #C38761;
}

/* line 4014, app/assets/stylesheets/pages/customerspace/_account.scss */
input:focus + .slider {
  box-shadow: 0 0 1px #C38761;
}

/* line 4018, app/assets/stylesheets/pages/customerspace/_account.scss */
input:checked + .slider:before {
  transform: translateX(20px);
}

/* line 4022, app/assets/stylesheets/pages/customerspace/_account.scss */
.slider.round {
  border-radius: 24px;
}

/* line 4026, app/assets/stylesheets/pages/customerspace/_account.scss */
.slider.round:before {
  border-radius: 50%;
}

/* line 4031, app/assets/stylesheets/pages/customerspace/_account.scss */
.notification-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 10px 0;
}

/* line 4038, app/assets/stylesheets/pages/customerspace/_account.scss */
.notification-option {
  display: flex;
  align-items: center;
}

/* line 4043, app/assets/stylesheets/pages/customerspace/_account.scss */
.notification-text {
  display: flex;
  flex-direction: column;
}

/* line 4047, app/assets/stylesheets/pages/customerspace/_account.scss */
.notification-text span {
  font-weight: 500;
  margin-bottom: 2px;
}

/* line 4052, app/assets/stylesheets/pages/customerspace/_account.scss */
.notification-text small, .notification-text .small {
  color: rgba(254, 254, 254, 0.6);
  font-size: 0.8rem;
}

/* line 4059, app/assets/stylesheets/pages/customerspace/_account.scss */
.preference-toast {
  visibility: hidden;
  min-width: 250px;
  background-color: rgba(195, 135, 97, 0.9);
  color: #fefefe;
  text-align: center;
  border-radius: 5px;
  padding: 10px 15px;
  position: fixed;
  z-index: 9999;
  bottom: 30px;
  right: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* line 4073, app/assets/stylesheets/pages/customerspace/_account.scss */
.preference-toast.show {
  visibility: visible;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* line 4078, app/assets/stylesheets/pages/customerspace/_account.scss */
.preference-toast .toast-content {
  display: flex;
  align-items: center;
}

/* line 4082, app/assets/stylesheets/pages/customerspace/_account.scss */
.preference-toast .toast-content i {
  margin-right: 10px;
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}

@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}

/* line 4098, app/assets/stylesheets/pages/customerspace/_account.scss */
.two-factor-setup {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

/* line 4103, app/assets/stylesheets/pages/customerspace/_account.scss */
.two-factor-setup .qr-code-container {
  padding: 20px;
  background: white;
  border-radius: 10px;
  width: fit-content;
}

/* line 4109, app/assets/stylesheets/pages/customerspace/_account.scss */
.two-factor-setup .qr-code-container svg {
  width: 200px;
  height: 200px;
}

/* line 4115, app/assets/stylesheets/pages/customerspace/_account.scss */
.two-factor-setup .two-factor-instructions {
  flex: 1;
  min-width: 300px;
}

/* line 4119, app/assets/stylesheets/pages/customerspace/_account.scss */
.two-factor-setup .two-factor-instructions h5, .two-factor-setup .two-factor-instructions .h5 {
  margin-bottom: 15px;
  color: #C38761;
}

/* line 4124, app/assets/stylesheets/pages/customerspace/_account.scss */
.two-factor-setup .two-factor-instructions ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

/* line 4129, app/assets/stylesheets/pages/customerspace/_account.scss */
.two-factor-setup .two-factor-instructions .secret-key {
  background: rgba(254, 254, 254, 0.05);
  padding: 15px;
  margin: 20px 0;
  border-radius: 5px;
}

/* line 4135, app/assets/stylesheets/pages/customerspace/_account.scss */
.two-factor-setup .two-factor-instructions .secret-key code {
  display: block;
  padding: 10px;
  background: rgba(0, 0, 0, 0.2);
  margin-top: 10px;
  border-radius: 4px;
  font-family: monospace;
  letter-spacing: 2px;
  text-align: center;
  font-size: 1.1em;
}

/* line 4150, app/assets/stylesheets/pages/customerspace/_account.scss */
.two-factor-verification-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem 1rem;
  position: relative;
  overflow: hidden;
}

/* line 4160, app/assets/stylesheets/pages/customerspace/_account.scss */
.two-factor-verification-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.08), transparent 70%);
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

/* line 4173, app/assets/stylesheets/pages/customerspace/_account.scss */
.two-factor-verification-page .verification-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2.5rem;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 4188, app/assets/stylesheets/pages/customerspace/_account.scss */
.two-factor-verification-page .verification-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(246, 229, 179, 0.05), transparent 60%);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
  border-radius: 24px;
}

/* line 4203, app/assets/stylesheets/pages/customerspace/_account.scss */
.two-factor-verification-page .verification-card > * {
  position: relative;
  z-index: 1;
}

/* line 4208, app/assets/stylesheets/pages/customerspace/_account.scss */
.two-factor-verification-page .verification-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* line 4214, app/assets/stylesheets/pages/customerspace/_account.scss */
.two-factor-verification-page .verification-card .card-header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  gap: 1rem;
}

/* line 4220, app/assets/stylesheets/pages/customerspace/_account.scss */
.two-factor-verification-page .verification-card .card-header i {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(246, 229, 179, 0.18);
  color: #F6E5B3;
  border-radius: 12px;
  font-size: 1.5rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

/* line 4234, app/assets/stylesheets/pages/customerspace/_account.scss */
.two-factor-verification-page .verification-card .card-header h2, .two-factor-verification-page .verification-card .card-header .h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fefefe;
  letter-spacing: 0.3px;
  line-height: 1.3;
}

/* line 4245, app/assets/stylesheets/pages/customerspace/_account.scss */
.two-factor-verification-page .verification-card .card-body p {
  margin-bottom: 1.5rem;
  color: rgba(254, 254, 254, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* line 4252, app/assets/stylesheets/pages/customerspace/_account.scss */
.two-factor-verification-page .verification-card .card-body .form-group {
  margin-bottom: 1.5rem;
}

/* line 4255, app/assets/stylesheets/pages/customerspace/_account.scss */
.two-factor-verification-page .verification-card .card-body .form-group label {
  display: block;
  margin-bottom: 0.75rem;
  color: rgba(254, 254, 254, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

/* line 4263, app/assets/stylesheets/pages/customerspace/_account.scss */
.two-factor-verification-page .verification-card .card-body .form-group .form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  color: #fefefe;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 8px;
  text-align: center;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

/* line 4277, app/assets/stylesheets/pages/customerspace/_account.scss */
.two-factor-verification-page .verification-card .card-body .form-group .form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 4px;
}

/* line 4282, app/assets/stylesheets/pages/customerspace/_account.scss */
.two-factor-verification-page .verification-card .card-body .form-group .form-input:focus {
  outline: none;
  border-color: #F6E5B3;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(246, 229, 179, 0.18);
  transform: none;
}

/* line 4290, app/assets/stylesheets/pages/customerspace/_account.scss */
.two-factor-verification-page .verification-card .card-body .form-group .form-input:hover:not(:focus) {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
}

/* line 4297, app/assets/stylesheets/pages/customerspace/_account.scss */
.two-factor-verification-page .verification-card .card-body .form-actions {
  margin-top: 1.5rem;
}

/* line 4300, app/assets/stylesheets/pages/customerspace/_account.scss */
.two-factor-verification-page .verification-card .card-body .form-actions .form-button, .two-factor-verification-page .verification-card .card-body .form-actions .crm-action-button, .two-factor-verification-page .verification-card .card-body .form-actions .users-management-container .users-header .add-user-btn, .users-management-container .users-header .two-factor-verification-page .verification-card .card-body .form-actions .add-user-btn {
  width: 100%;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, rgba(246, 229, 179, 0.2) 0%, rgba(246, 229, 179, 0.15) 100%);
  border: 1px solid rgba(246, 229, 179, 0.3);
  border-radius: 12px;
  color: #F6E5B3;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
}

/* line 4314, app/assets/stylesheets/pages/customerspace/_account.scss */
.two-factor-verification-page .verification-card .card-body .form-actions .form-button:hover:not(:disabled), .two-factor-verification-page .verification-card .card-body .form-actions .crm-action-button:hover:not(:disabled), .two-factor-verification-page .verification-card .card-body .form-actions .users-management-container .users-header .add-user-btn:hover:not(:disabled), .users-management-container .users-header .two-factor-verification-page .verification-card .card-body .form-actions .add-user-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, rgba(246, 229, 179, 0.3) 0%, rgba(246, 229, 179, 0.2) 100%);
  border-color: rgba(246, 229, 179, 0.4);
  box-shadow: 0 6px 20px rgba(246, 229, 179, 0.25);
  transform: translateY(-2px);
  color: #fefefe;
}

/* line 4322, app/assets/stylesheets/pages/customerspace/_account.scss */
.two-factor-verification-page .verification-card .card-body .form-actions .form-button:active:not(:disabled), .two-factor-verification-page .verification-card .card-body .form-actions .crm-action-button:active:not(:disabled), .two-factor-verification-page .verification-card .card-body .form-actions .users-management-container .users-header .add-user-btn:active:not(:disabled), .users-management-container .users-header .two-factor-verification-page .verification-card .card-body .form-actions .add-user-btn:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* line 4327, app/assets/stylesheets/pages/customerspace/_account.scss */
.two-factor-verification-page .verification-card .card-body .form-actions .form-button:disabled, .two-factor-verification-page .verification-card .card-body .form-actions .crm-action-button:disabled, .two-factor-verification-page .verification-card .card-body .form-actions .users-management-container .users-header .add-user-btn:disabled, .users-management-container .users-header .two-factor-verification-page .verification-card .card-body .form-actions .add-user-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 640px) {
  /* line 4150, app/assets/stylesheets/pages/customerspace/_account.scss */
  .two-factor-verification-page {
    padding: 1rem;
  }
  /* line 4340, app/assets/stylesheets/pages/customerspace/_account.scss */
  .two-factor-verification-page .verification-card {
    padding: 1.5rem;
  }
  /* line 4343, app/assets/stylesheets/pages/customerspace/_account.scss */
  .two-factor-verification-page .verification-card .card-header {
    margin-bottom: 1.5rem;
  }
  /* line 4346, app/assets/stylesheets/pages/customerspace/_account.scss */
  .two-factor-verification-page .verification-card .card-header i {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  /* line 4352, app/assets/stylesheets/pages/customerspace/_account.scss */
  .two-factor-verification-page .verification-card .card-header h2, .two-factor-verification-page .verification-card .card-header .h2 {
    font-size: 1.25rem;
  }
  /* line 4359, app/assets/stylesheets/pages/customerspace/_account.scss */
  .two-factor-verification-page .verification-card .card-body .form-group .form-input {
    font-size: 1.25rem;
    letter-spacing: 6px;
    padding: 0.875rem 1rem;
  }
}

/* line 4371, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card.profile-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 4px solid #C38761;
  border-radius: 8px;
  padding: 15px;
  width: 100%;
  max-width: 1000px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 30px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* line 4389, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card.profile-card:not(.lightmode) .org-details p {
  font-size: 0.7rem;
  line-height: 1.5;
}

/* line 4393, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card.profile-card:not(.lightmode) .org-details p.section-description {
  font-size: 0.65rem;
  line-height: 1.6;
}

/* line 4401, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

/* line 4408, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card.profile-card .org-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

/* line 4418, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card.profile-card .org-header .reference-status .status-badge.identity-badge {
  background: rgba(195, 135, 97, 0.9);
  color: #140D23;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 8px rgba(195, 135, 97, 0.3);
  transition: all 0.3s ease;
}

/* line 4430, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card.profile-card .org-header .reference-status .status-badge.identity-badge:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(195, 135, 97, 0.4);
}

/* line 4439, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card.profile-card .org-details {
  margin-bottom: 15px;
  width: 100%;
  padding: 0;
}

/* line 4445, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card.profile-card .org-details p {
  margin: 8px 0;
  font-size: 0.75rem;
  line-height: 1.4;
  display: block;
}

/* line 4451, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card.profile-card .org-details p.section-description {
  font-size: 0.7rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

/* line 4458, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card.profile-card .org-details i {
  width: 20px;
  text-align: center;
}

/* line 4464, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card.profile-card .org-details .profile-details-grid {
  padding: 0;
}

/* line 4468, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card.profile-card .org-details .profile-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
}

@media (max-width: 768px) {
  /* line 4468, app/assets/stylesheets/pages/customerspace/_account.scss */
  .reference-organization-card.profile-card .org-details .profile-details-grid {
    grid-template-columns: 1fr;
  }
}

/* line 4479, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card.profile-card .org-details .profile-details-grid .profile-details-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* line 4484, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card.profile-card .org-details .profile-details-grid .profile-details-column.address-column {
  min-width: 0;
}

/* line 4490, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card.profile-card .org-details .profile-details-grid .profile-detail-item {
  padding: 15px;
  background: rgba(254, 254, 254, 0.03);
  border-radius: 8px;
  border-left: 2px solid rgba(195, 135, 97, 0.5);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  word-wrap: break-word;
}

/* line 4502, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card.profile-card .org-details .profile-details-grid .profile-detail-item:hover {
  background: rgba(254, 254, 254, 0.05);
  border-left-color: #C38761;
}

/* line 4507, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card.profile-card .org-details .profile-details-grid .profile-detail-item.address-item {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 100%;
}

/* line 4513, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card.profile-card .org-details .profile-details-grid .profile-detail-item.address-item .detail-label {
  margin-bottom: 10px;
  width: 100%;
}

/* line 4518, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card.profile-card .org-details .profile-details-grid .profile-detail-item.address-item .detail-value {
  padding-left: 0;
  width: 100%;
  text-align: left;
  flex: none;
  margin-left: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* line 4529, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card.profile-card .org-details .profile-details-grid .profile-detail-item .detail-label {
  color: rgba(254, 254, 254, 0.7);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  font-weight: 500;
  flex-shrink: 0;
}

/* line 4537, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card.profile-card .org-details .profile-details-grid .profile-detail-item .detail-label i {
  margin-right: 8px;
  color: #C38761;
  width: 16px;
  text-align: center;
}

/* line 4545, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card.profile-card .org-details .profile-details-grid .profile-detail-item .detail-value {
  color: #fefefe;
  font-size: 1rem;
  font-weight: 500;
  text-align: right;
  flex: 1;
  margin-left: 10px;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* line 4561, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card.profile-card .org-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 15px 25px;
  background: rgba(254, 254, 254, 0.1);
  border-top: 1px solid rgba(254, 254, 254, 0.05);
}

/* line 4569, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card.profile-card .org-actions button {
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  letter-spacing: 0.3px;
  font-size: 0.9rem;
  transition: all 0.2s;
}

/* line 4579, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card.profile-card .org-actions button i {
  font-size: 0.95rem;
}

/* line 4583, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card.profile-card .org-actions button.edit-org-btn {
  background: rgba(254, 254, 254, 0.15);
}

/* line 4585, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card.profile-card .org-actions button.edit-org-btn:hover {
  background: rgba(254, 254, 254, 0.25);
  transform: translateY(-2px);
}

/* line 4591, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card.profile-card .org-actions button.set-reference-btn {
  background: rgba(195, 135, 97, 0.2);
  color: #C38761;
}

/* line 4594, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card.profile-card .org-actions button.set-reference-btn:hover {
  background: rgba(195, 135, 97, 0.3);
  transform: translateY(-2px);
}

/* line 4601, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card.profile-card .org-actions .notification-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 52px;
  height: 28px;
  flex-shrink: 0;
  cursor: pointer;
}

/* line 4610, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card.profile-card .org-actions .notification-toggle__checkbox {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

/* line 4617, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card.profile-card .org-actions .notification-toggle__slider {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
  background: rgba(254, 254, 254, 0.15);
  border-radius: 28px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: inset 0 0 0 1px rgba(254, 254, 254, 0.15);
}

/* line 4627, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card.profile-card .org-actions .notification-toggle__slider::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  left: 3px;
  top: 3px;
  border-radius: 50%;
  background: #fefefe;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
}

/* line 4641, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card.profile-card .org-actions .notification-toggle__checkbox:checked + .notification-toggle__slider {
  background: linear-gradient(135deg, #C38761 0%, #ce9d7f 100%);
  box-shadow: 0 0 0 4px rgba(195, 135, 97, 0.2);
}

/* line 4645, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-organization-card.profile-card .org-actions .notification-toggle__checkbox:checked + .notification-toggle__slider::before {
  transform: translateX(24px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

/* line 4660, app/assets/stylesheets/pages/customerspace/_account.scss */
.org-actions.lightmode button.edit-org-btn {
  color: #140D23 !important;
  background: rgba(195, 135, 97, 0.15) !important;
}

/* line 4663, app/assets/stylesheets/pages/customerspace/_account.scss */
.org-actions.lightmode button.edit-org-btn:hover {
  background: rgba(195, 135, 97, 0.25) !important;
}

/* line 4668, app/assets/stylesheets/pages/customerspace/_account.scss */
.org-actions.lightmode button.set-reference-btn {
  color: #140D23 !important;
  background: rgba(195, 135, 97, 0.2) !important;
}

/* line 4671, app/assets/stylesheets/pages/customerspace/_account.scss */
.org-actions.lightmode button.set-reference-btn:hover {
  background: rgba(195, 135, 97, 0.3) !important;
}

/* line 4679, app/assets/stylesheets/pages/customerspace/_account.scss */
.disable-2fa-btn {
  background: rgba(239, 68, 68, 0.15);
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  cursor: pointer;
  color: #ef4444;
  display: flex;
  align-items: center;
  transition: background 0.3s ease;
}

/* line 4691, app/assets/stylesheets/pages/customerspace/_account.scss */
.disable-2fa-btn i {
  margin-right: 5px;
  color: #ef4444;
}

/* line 4696, app/assets/stylesheets/pages/customerspace/_account.scss */
.disable-2fa-btn:hover {
  background: rgba(239, 68, 68, 0.25);
}

/* line 4701, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-table-container {
  margin-bottom: 2rem;
  background: rgba(254, 254, 254, 0.05);
  padding: 1rem;
  border-radius: 8px;
  max-height: 500px;
}

/* line 4712, app/assets/stylesheets/pages/customerspace/_account.scss */
table.invoices-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

/* line 4717, app/assets/stylesheets/pages/customerspace/_account.scss */
table.invoices-table thead {
  position: sticky;
  top: 0;
  z-index: 10;
}

/* line 4722, app/assets/stylesheets/pages/customerspace/_account.scss */
table.invoices-table thead th {
  border-bottom: 1px solid rgba(254, 254, 254, 0.8);
  position: sticky;
  top: 0;
  background: rgba(254, 254, 254, 0.05);
  backdrop-filter: blur(3px);
  box-shadow: 0 1px 0 rgba(254, 254, 254, 0.1);
}

/* line 4730, app/assets/stylesheets/pages/customerspace/_account.scss */
table.invoices-table thead th:first-child {
  border-top-left-radius: 8px;
}

/* line 4734, app/assets/stylesheets/pages/customerspace/_account.scss */
table.invoices-table thead th:last-child {
  border-top-right-radius: 8px;
}

/* line 4740, app/assets/stylesheets/pages/customerspace/_account.scss */
table.invoices-table tbody {
  display: block;
  max-height: 450px;
}

/* line 4745, app/assets/stylesheets/pages/customerspace/_account.scss */
table.invoices-table tbody tr {
  display: table;
  width: 100%;
  table-layout: fixed;
}

/* line 4752, app/assets/stylesheets/pages/customerspace/_account.scss */
table.invoices-table thead, table.invoices-table tbody tr {
  display: table;
  width: 100%;
  table-layout: fixed;
}

/* line 4760, app/assets/stylesheets/pages/customerspace/_account.scss */
#twoFactorModal .modal-content {
  max-width: 800px;
  max-height: 85vh;
  width: 90%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /* Mode clair — override le gradient du base .mdp-modal */
  background: #fefefe;
  color: #333333;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  /* Mode sombre — gradient comme la référence */
}

/* line 4775, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #twoFactorModal .modal-content {
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
  color: white;
  border: none;
}

/* line 4781, app/assets/stylesheets/pages/customerspace/_account.scss */
#twoFactorModal .modal-content .close {
  color: rgba(0, 0, 0, 0.5);
}

/* line 4784, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #twoFactorModal .modal-content .close {
  color: rgba(254, 254, 254, 0.8);
}

/* line 4788, app/assets/stylesheets/pages/customerspace/_account.scss */
#twoFactorModal .modal-content .close:hover {
  color: #C38761;
  background-color: rgba(0, 0, 0, 0.1);
}

/* line 4792, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #twoFactorModal .modal-content .close:hover {
  color: #fefefe;
  background-color: rgba(254, 254, 254, 0.1);
}

/* line 4799, app/assets/stylesheets/pages/customerspace/_account.scss */
#twoFactorModal .modal-content h2, #twoFactorModal .modal-content .h2 {
  margin: 0;
  padding: 1.25rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  color: #333333;
  flex-shrink: 0;
}

/* line 4809, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #twoFactorModal .modal-content h2, [data-lightmode-target="button"] #twoFactorModal .modal-content .h2 {
  border-bottom-color: rgba(255, 255, 255, 0.2);
  color: white;
}

/* line 4815, app/assets/stylesheets/pages/customerspace/_account.scss */
#twoFactorModal .modal-content .two-factor-setup {
  padding: 1rem;
  flex: 1;
  overflow-y: auto;
  max-height: calc(85vh - 120px);
  /* Personnalisation de la barre de défilement */
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* line 4822, app/assets/stylesheets/pages/customerspace/_account.scss */
#twoFactorModal .modal-content .two-factor-setup::-webkit-scrollbar {
  width: 6px;
}

/* line 4826, app/assets/stylesheets/pages/customerspace/_account.scss */
#twoFactorModal .modal-content .two-factor-setup::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
}

/* line 4830, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #twoFactorModal .modal-content .two-factor-setup::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

/* line 4835, app/assets/stylesheets/pages/customerspace/_account.scss */
#twoFactorModal .modal-content .two-factor-setup::-webkit-scrollbar-thumb {
  background: #e8b972;
  border-radius: 3px;
}

/* line 4840, app/assets/stylesheets/pages/customerspace/_account.scss */
#twoFactorModal .modal-content .two-factor-setup::-webkit-scrollbar-thumb:hover {
  background: #d4a85f;
}

/* line 4848, app/assets/stylesheets/pages/customerspace/_account.scss */
#twoFactorModal .modal-content .two-factor-setup .two-factor-instructions {
  width: 100%;
}

/* line 4851, app/assets/stylesheets/pages/customerspace/_account.scss */
#twoFactorModal .modal-content .two-factor-setup .two-factor-instructions .full-width-title {
  margin: 0 0 0.5rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: #333333;
  width: 100%;
}

/* line 4858, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #twoFactorModal .modal-content .two-factor-setup .two-factor-instructions .full-width-title {
  color: white;
}

/* line 4863, app/assets/stylesheets/pages/customerspace/_account.scss */
#twoFactorModal .modal-content .two-factor-setup .two-factor-instructions ol {
  padding-left: 1.25rem;
  margin: 0 0 0.75rem 0;
}

/* line 4867, app/assets/stylesheets/pages/customerspace/_account.scss */
#twoFactorModal .modal-content .two-factor-setup .two-factor-instructions ol li {
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
  line-height: 1.3;
  color: #666666;
}

/* line 4873, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #twoFactorModal .modal-content .two-factor-setup .two-factor-instructions ol li {
  color: rgba(254, 254, 254, 0.8);
}

/* line 4880, app/assets/stylesheets/pages/customerspace/_account.scss */
#twoFactorModal .modal-content .two-factor-setup .two-factor-content {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (max-width: 768px) {
  /* line 4880, app/assets/stylesheets/pages/customerspace/_account.scss */
  #twoFactorModal .modal-content .two-factor-setup .two-factor-content {
    flex-direction: column;
    gap: 1rem;
  }
}

/* line 4890, app/assets/stylesheets/pages/customerspace/_account.scss */
#twoFactorModal .modal-content .two-factor-setup .two-factor-content .qr-code-container {
  flex-shrink: 0;
  align-self: flex-start;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* line 4899, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #twoFactorModal .modal-content .two-factor-setup .two-factor-content .qr-code-container {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* line 4904, app/assets/stylesheets/pages/customerspace/_account.scss */
#twoFactorModal .modal-content .two-factor-setup .two-factor-content .qr-code-container img {
  max-width: 180px;
  height: auto;
  display: block;
}

/* line 4911, app/assets/stylesheets/pages/customerspace/_account.scss */
#twoFactorModal .modal-content .two-factor-setup .two-factor-content .two-factor-form-section {
  flex: 1;
  min-width: 0;
}

/* line 4915, app/assets/stylesheets/pages/customerspace/_account.scss */
#twoFactorModal .modal-content .two-factor-setup .two-factor-content .two-factor-form-section .secret-key {
  margin: 0 0 0.75rem 0;
  padding: 0.4rem;
  background-color: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

/* line 4922, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #twoFactorModal .modal-content .two-factor-setup .two-factor-content .two-factor-form-section .secret-key {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

/* line 4927, app/assets/stylesheets/pages/customerspace/_account.scss */
#twoFactorModal .modal-content .two-factor-setup .two-factor-content .two-factor-form-section .secret-key p {
  margin: 0 0 0.3rem 0;
  font-size: 0.7rem;
  color: #666666;
}

/* line 4932, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #twoFactorModal .modal-content .two-factor-setup .two-factor-content .two-factor-form-section .secret-key p {
  color: rgba(254, 254, 254, 0.7);
}

/* line 4937, app/assets/stylesheets/pages/customerspace/_account.scss */
#twoFactorModal .modal-content .two-factor-setup .two-factor-content .two-factor-form-section .secret-key code {
  display: block;
  padding: 0.3rem;
  background-color: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.7rem;
  word-break: break-all;
  color: #333333;
}

/* line 4948, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #twoFactorModal .modal-content .two-factor-setup .two-factor-content .two-factor-form-section .secret-key code {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

/* line 4956, app/assets/stylesheets/pages/customerspace/_account.scss */
#twoFactorModal .modal-content .two-factor-setup .two-factor-content .two-factor-form-section .two-factor-form {
  margin-top: 0.5rem;
}

/* line 4959, app/assets/stylesheets/pages/customerspace/_account.scss */
#twoFactorModal .modal-content .two-factor-setup .two-factor-content .two-factor-form-section .two-factor-form .form-group {
  margin-bottom: 0.75rem;
}

/* line 4962, app/assets/stylesheets/pages/customerspace/_account.scss */
#twoFactorModal .modal-content .two-factor-setup .two-factor-content .two-factor-form-section .two-factor-form .form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: #333333;
  font-size: 0.85rem;
}

/* line 4969, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #twoFactorModal .modal-content .two-factor-setup .two-factor-content .two-factor-form-section .two-factor-form .form-group label {
  color: white;
}

/* line 4974, app/assets/stylesheets/pages/customerspace/_account.scss */
#twoFactorModal .modal-content .two-factor-setup .two-factor-content .two-factor-form-section .two-factor-form .form-group .form-input {
  width: 100% !important;
  height: 34px !important;
  padding: 5px 8px !important;
  border-radius: 4px !important;
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
  background-color: #ffffff !important;
  color: #333333 !important;
  font-size: 0.85rem !important;
  box-sizing: border-box !important;
  margin: 0 !important;
}

/* line 4986, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #twoFactorModal .modal-content .two-factor-setup .two-factor-content .two-factor-form-section .two-factor-form .form-group .form-input {
  border-color: rgba(255, 255, 255, 0.3) !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: white !important;
}

/* line 4992, app/assets/stylesheets/pages/customerspace/_account.scss */
#twoFactorModal .modal-content .two-factor-setup .two-factor-content .two-factor-form-section .two-factor-form .form-group .form-input:focus {
  outline: none;
  border-color: #e8b972 !important;
  box-shadow: 0 0 0 2px rgba(232, 185, 114, 0.2) !important;
}

/* line 4997, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #twoFactorModal .modal-content .two-factor-setup .two-factor-content .two-factor-form-section .two-factor-form .form-group .form-input:focus {
  border-color: #e8b972 !important;
  box-shadow: 0 0 0 2px rgba(232, 185, 114, 0.3) !important;
}

/* line 5003, app/assets/stylesheets/pages/customerspace/_account.scss */
#twoFactorModal .modal-content .two-factor-setup .two-factor-content .two-factor-form-section .two-factor-form .form-group .form-input::placeholder {
  color: rgba(0, 0, 0, 0.5) !important;
}

/* line 5006, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #twoFactorModal .modal-content .two-factor-setup .two-factor-content .two-factor-form-section .two-factor-form .form-group .form-input::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* line 5012, app/assets/stylesheets/pages/customerspace/_account.scss */
#twoFactorModal .modal-content .two-factor-setup .two-factor-content .two-factor-form-section .two-factor-form .form-group small, #twoFactorModal .modal-content .two-factor-setup .two-factor-content .two-factor-form-section .two-factor-form .form-group .small {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.65rem;
  color: #666666;
}

/* line 5018, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #twoFactorModal .modal-content .two-factor-setup .two-factor-content .two-factor-form-section .two-factor-form .form-group small, [data-lightmode-target="button"] #twoFactorModal .modal-content .two-factor-setup .two-factor-content .two-factor-form-section .two-factor-form .form-group .small {
  color: rgba(254, 254, 254, 0.6);
}

/* line 5034, app/assets/stylesheets/pages/customerspace/_account.scss */
#disableTwoFactorModal .modal-content {
  max-width: 500px;
  max-height: 85vh;
  width: 90%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fefefe;
  color: #333333;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 12px;
}

/* line 5047, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #disableTwoFactorModal .modal-content {
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
  color: white;
  border: none;
}

/* line 5053, app/assets/stylesheets/pages/customerspace/_account.scss */
#disableTwoFactorModal .modal-content .close {
  color: rgba(0, 0, 0, 0.5);
}

/* line 5056, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #disableTwoFactorModal .modal-content .close {
  color: rgba(254, 254, 254, 0.8);
}

/* line 5060, app/assets/stylesheets/pages/customerspace/_account.scss */
#disableTwoFactorModal .modal-content .close:hover {
  color: #C38761;
}

/* line 5065, app/assets/stylesheets/pages/customerspace/_account.scss */
#disableTwoFactorModal .modal-content h2, #disableTwoFactorModal .modal-content .h2 {
  margin: 0;
  padding: 1.25rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  color: #333333;
  flex-shrink: 0;
}

/* line 5075, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #disableTwoFactorModal .modal-content h2, [data-lightmode-target="button"] #disableTwoFactorModal .modal-content .h2 {
  border-bottom-color: rgba(255, 255, 255, 0.2);
  color: white;
}

/* line 5081, app/assets/stylesheets/pages/customerspace/_account.scss */
#disableTwoFactorModal .modal-content p {
  padding: 1rem;
  margin: 0;
  font-size: 0.85rem;
  color: #666666;
  line-height: 1.4;
}

/* line 5088, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #disableTwoFactorModal .modal-content p {
  color: rgba(254, 254, 254, 0.8);
}

/* line 5093, app/assets/stylesheets/pages/customerspace/_account.scss */
#disableTwoFactorModal .modal-content form {
  padding: 1rem;
  flex: 1;
  overflow-y: auto;
  max-height: calc(85vh - 120px);
  /* Personnalisation de la barre de défilement */
}

/* line 5100, app/assets/stylesheets/pages/customerspace/_account.scss */
#disableTwoFactorModal .modal-content form::-webkit-scrollbar {
  width: 6px;
}

/* line 5104, app/assets/stylesheets/pages/customerspace/_account.scss */
#disableTwoFactorModal .modal-content form::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
}

/* line 5108, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #disableTwoFactorModal .modal-content form::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

/* line 5113, app/assets/stylesheets/pages/customerspace/_account.scss */
#disableTwoFactorModal .modal-content form::-webkit-scrollbar-thumb {
  background: #e8b972;
  border-radius: 3px;
}

/* line 5118, app/assets/stylesheets/pages/customerspace/_account.scss */
#disableTwoFactorModal .modal-content form::-webkit-scrollbar-thumb:hover {
  background: #d4a85f;
}

/* line 5122, app/assets/stylesheets/pages/customerspace/_account.scss */
#disableTwoFactorModal .modal-content form .form-group {
  margin-bottom: 0.75rem;
}

/* line 5125, app/assets/stylesheets/pages/customerspace/_account.scss */
#disableTwoFactorModal .modal-content form .form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: #333333;
  font-size: 0.85rem;
}

/* line 5132, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #disableTwoFactorModal .modal-content form .form-group label {
  color: white;
}

/* line 5137, app/assets/stylesheets/pages/customerspace/_account.scss */
#disableTwoFactorModal .modal-content form .form-group .form-input {
  width: 100% !important;
  height: 34px !important;
  padding: 5px 8px !important;
  border-radius: 4px !important;
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
  background-color: #ffffff !important;
  color: #333333 !important;
  font-size: 0.85rem !important;
  box-sizing: border-box !important;
  margin: 0 !important;
}

/* line 5149, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #disableTwoFactorModal .modal-content form .form-group .form-input {
  border-color: rgba(255, 255, 255, 0.3) !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: white !important;
}

/* line 5155, app/assets/stylesheets/pages/customerspace/_account.scss */
#disableTwoFactorModal .modal-content form .form-group .form-input:focus {
  outline: none;
  border-color: #e8b972 !important;
  box-shadow: 0 0 0 2px rgba(232, 185, 114, 0.2) !important;
}

/* line 5160, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #disableTwoFactorModal .modal-content form .form-group .form-input:focus {
  border-color: #e8b972 !important;
  box-shadow: 0 0 0 2px rgba(232, 185, 114, 0.3) !important;
}

/* line 5166, app/assets/stylesheets/pages/customerspace/_account.scss */
#disableTwoFactorModal .modal-content form .form-group .form-input::placeholder {
  color: rgba(0, 0, 0, 0.5) !important;
}

/* line 5169, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #disableTwoFactorModal .modal-content form .form-group .form-input::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* line 5176, app/assets/stylesheets/pages/customerspace/_account.scss */
#disableTwoFactorModal .modal-content form .form-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

/* line 5184, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #disableTwoFactorModal .modal-content form .form-actions {
  border-top-color: rgba(255, 255, 255, 0.2);
}

/* line 5188, app/assets/stylesheets/pages/customerspace/_account.scss */
#disableTwoFactorModal .modal-content form .form-actions .form-button, #disableTwoFactorModal .modal-content form .form-actions .crm-action-button, #disableTwoFactorModal .modal-content form .form-actions .users-management-container .users-header .add-user-btn, .users-management-container .users-header #disableTwoFactorModal .modal-content form .form-actions .add-user-btn {
  padding: 0.75rem 1.5rem !important;
  border-radius: 6px !important;
  font-weight: 500 !important;
  font-size: 0.9rem !important;
  transition: all 0.2s !important;
  border: none !important;
  cursor: pointer !important;
  min-width: 120px !important;
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: #e8b972 !important;
  color: #333333 !important;
}

/* line 5204, app/assets/stylesheets/pages/customerspace/_account.scss */
#disableTwoFactorModal .modal-content form .form-actions .form-button.secondary, #disableTwoFactorModal .modal-content form .form-actions .secondary.crm-action-button, #disableTwoFactorModal .modal-content form .form-actions .users-management-container .users-header .secondary.add-user-btn, .users-management-container .users-header #disableTwoFactorModal .modal-content form .form-actions .secondary.add-user-btn {
  background-color: rgba(0, 0, 0, 0.1) !important;
  color: #333333 !important;
}

/* line 5208, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #disableTwoFactorModal .modal-content form .form-actions .form-button.secondary, [data-lightmode-target="button"] #disableTwoFactorModal .modal-content form .form-actions .secondary.crm-action-button, [data-lightmode-target="button"] #disableTwoFactorModal .modal-content form .form-actions .users-management-container .users-header .secondary.add-user-btn, .users-management-container .users-header [data-lightmode-target="button"] #disableTwoFactorModal .modal-content form .form-actions .secondary.add-user-btn {
  background-color: rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
}

/* line 5213, app/assets/stylesheets/pages/customerspace/_account.scss */
#disableTwoFactorModal .modal-content form .form-actions .form-button.secondary:hover, #disableTwoFactorModal .modal-content form .form-actions .secondary.crm-action-button:hover, #disableTwoFactorModal .modal-content form .form-actions .users-management-container .users-header .secondary.add-user-btn:hover, .users-management-container .users-header #disableTwoFactorModal .modal-content form .form-actions .secondary.add-user-btn:hover {
  background-color: rgba(0, 0, 0, 0.2) !important;
}

/* line 5216, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #disableTwoFactorModal .modal-content form .form-actions .form-button.secondary:hover, [data-lightmode-target="button"] #disableTwoFactorModal .modal-content form .form-actions .secondary.crm-action-button:hover, [data-lightmode-target="button"] #disableTwoFactorModal .modal-content form .form-actions .users-management-container .users-header .secondary.add-user-btn:hover, .users-management-container .users-header [data-lightmode-target="button"] #disableTwoFactorModal .modal-content form .form-actions .secondary.add-user-btn:hover {
  background-color: rgba(255, 255, 255, 0.3) !important;
}

/* line 5222, app/assets/stylesheets/pages/customerspace/_account.scss */
#disableTwoFactorModal .modal-content form .form-actions .form-button:not(.secondary), #disableTwoFactorModal .modal-content form .form-actions .crm-action-button:not(.secondary), #disableTwoFactorModal .modal-content form .form-actions .users-management-container .users-header .add-user-btn:not(.secondary), .users-management-container .users-header #disableTwoFactorModal .modal-content form .form-actions .add-user-btn:not(.secondary) {
  background-color: #e8b972 !important;
  color: #333333 !important;
}

/* line 5226, app/assets/stylesheets/pages/customerspace/_account.scss */
#disableTwoFactorModal .modal-content form .form-actions .form-button:not(.secondary):hover, #disableTwoFactorModal .modal-content form .form-actions .crm-action-button:not(.secondary):hover, #disableTwoFactorModal .modal-content form .form-actions .users-management-container .users-header .add-user-btn:not(.secondary):hover, .users-management-container .users-header #disableTwoFactorModal .modal-content form .form-actions .add-user-btn:not(.secondary):hover {
  background-color: #d4a85f !important;
}

/* ==========================================================================
   ORGANIZATION WIZARD MODAL - Styles partagés
   Utilisé par : Customer Space "Mes sociétés" et CRM Prospect "Société"
   ========================================================================== */
/* Overlay pour le contexte prospect (CRM) — le Customer Space utilise .mdp-modal */
/* line 7, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
#organizationModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
}

/* line 19, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
#organizationModal[style*="display: flex"], #organizationModal.d-flex {
  display: flex !important;
}

/* line 24, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
#organizationModal.d-none {
  display: none !important;
}

/* Contenu de la modal organisation — classe partagée */
/* line 30, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content {
  max-width: 900px;
  height: 85vh;
  max-height: 90vh;
  width: 95%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
  color: white;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
}

/* line 48, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content h2, .modal-content.organization-modal-content .h2 {
  margin: 0;
  padding: 16px 24px;
  font-size: 1.2rem;
  font-weight: 600;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 59, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .close {
  position: absolute;
  right: 16px;
  top: 12px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color 0.2s ease;
  margin: 0 !important;
  line-height: 1;
  padding: 0;
}

/* line 79, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .close:hover {
  color: #C38761;
}

/* line 85, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .progress-bar-container {
  margin: 0 24px;
  padding: 16px 0;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 91, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .progress-bar-container .progress-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  position: relative;
}

/* line 97, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .progress-bar-container .progress-steps .progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
}

/* line 104, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .progress-bar-container .progress-steps .progress-step .step-circle {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  margin-bottom: 0.5rem;
}

/* line 118, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .progress-bar-container .progress-steps .progress-step .step-circle.active {
  background-color: #C38761;
  color: #140D23;
}

/* line 123, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .progress-bar-container .progress-steps .progress-step .step-circle.completed {
  background-color: #22c55e;
  color: white;
}

/* line 129, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .progress-bar-container .progress-steps .progress-step .step-label {
  font-size: 0.7rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  max-width: 70px;
  line-height: 1.2;
}

/* line 139, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .progress-bar-container .progress-bar {
  height: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

/* line 145, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .progress-bar-container .progress-bar .progress-fill {
  height: 100%;
  background-color: #C38761;
  border-radius: 2px;
  transition: width 0.3s ease;
  width: 16.67%;
}

/* line 156, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .required-legend {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 12px 24px 0;
  font-style: italic;
}

/* line 162, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .required-legend .required-asterisk {
  color: #e74c3c;
  font-weight: 700;
}

/* line 169, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content form {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  padding: 0;
}

/* line 178, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content form .form-steps-container {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 0;
  padding: 0 24px;
}

/* line 186, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content form .form-steps-container::-webkit-scrollbar {
  width: 6px;
}

/* line 190, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content form .form-steps-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

/* line 195, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content form .form-steps-container::-webkit-scrollbar-thumb {
  background: rgba(195, 135, 97, 0.5);
  border-radius: 3px;
}

/* line 199, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content form .form-steps-container::-webkit-scrollbar-thumb:hover {
  background: rgba(195, 135, 97, 0.7);
}

/* line 205, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content form .form-step {
  overflow: visible;
  padding: 0.5rem 0;
  flex-shrink: 0;
  width: 100%;
}

/* line 211, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content form .form-step.hidden {
  display: none;
}

/* line 215, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content form .form-step .step-title {
  display: none;
}

/* line 222, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content::-webkit-scrollbar {
  width: 6px;
}

/* line 226, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

/* line 231, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content::-webkit-scrollbar-thumb {
  background: rgba(195, 135, 97, 0.5);
  border-radius: 3px;
}

/* line 235, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content::-webkit-scrollbar-thumb:hover {
  background: rgba(195, 135, 97, 0.7);
}

/* line 241, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  width: 100%;
  align-items: start;
}

@media (max-width: 768px) {
  /* line 241, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
  .modal-content.organization-modal-content .form-columns {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* line 253, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns .form-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* line 258, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns .form-column .form-group {
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 1rem;
  position: relative;
}

/* line 266, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns .form-column .form-group label {
  margin-bottom: 0.5rem;
  height: 1.2rem;
  display: flex;
  align-items: flex-end;
  line-height: 1.2rem;
}

/* line 274, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns .form-column .form-group .form-input, .modal-content.organization-modal-content .form-columns .form-column .form-group .form-select {
  height: 42px;
  margin-top: 0;
  margin-bottom: 0;
}

/* line 280, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns .form-column .form-group .spacer-hint, .modal-content.organization-modal-content .form-columns .form-column .form-group .form-hint {
  height: 1.2rem;
  margin-top: 0.5rem;
  display: flex;
  align-items: flex-start;
  line-height: 1.2rem;
}

/* line 289, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns .form-column .form-group:not(.siret-group) .spacer-hint {
  visibility: hidden;
}

/* line 294, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns .form-column .form-group.org-name-group {
  margin-top: 0;
}

/* line 298, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns .form-column .form-group.legal-status-group {
  margin-top: 0;
}

/* line 302, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns .form-column .form-group.industry-group {
  margin-top: 0;
}

/* line 303, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns .form-column .form-group.street-group {
  margin-top: 0;
}

/* line 304, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns .form-column .form-group.city-group {
  margin-top: 0;
}

/* line 305, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns .form-column .form-group.postal-code-group {
  margin-top: 0;
}

/* line 306, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns .form-column .form-group.country-group {
  margin-top: 0;
}

/* line 307, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns .form-column .form-group.billing-street-group {
  margin-top: 0;
}

/* line 308, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns .form-column .form-group.billing-city-group {
  margin-top: 0;
}

/* line 309, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns .form-column .form-group.billing-postal-code-group {
  margin-top: 0;
}

/* line 310, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns .form-column .form-group.billing-country-group {
  margin-top: 0;
}

/* line 311, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns .form-column .form-group.shipping-street-group {
  margin-top: 0;
}

/* line 312, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns .form-column .form-group.shipping-city-group {
  margin-top: 0;
}

/* line 313, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns .form-column .form-group.shipping-postal-code-group {
  margin-top: 0;
}

/* line 314, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns .form-column .form-group.shipping-country-group {
  margin-top: 0;
}

/* line 315, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns .form-column .form-group.topics-group {
  margin-bottom: 2rem;
}

/* line 320, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-group {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

/* line 325, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-group.horizontal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

/* line 331, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-group.horizontal .form-group-half {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}

/* line 339, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-group:not(.horizontal) .form-input, .modal-content.organization-modal-content .form-group:not(.horizontal) .form-select, .modal-content.organization-modal-content .form-group:not(.horizontal) textarea {
  width: 100%;
  box-sizing: border-box;
}

/* line 346, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.95);
  text-transform: lowercase;
}

/* line 354, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content label::first-letter {
  text-transform: uppercase;
}

/* line 358, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content label:first-letter {
  text-transform: uppercase;
}

/* line 363, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-input, .modal-content.organization-modal-content .form-select {
  width: 100%;
  height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(195, 135, 97, 0.4);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9rem;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

/* line 374, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-input:focus, .modal-content.organization-modal-content .form-select:focus {
  outline: none;
  border-color: rgba(195, 135, 97, 0.7);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.15);
}

/* line 381, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-input::placeholder, .modal-content.organization-modal-content .form-select::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* line 387, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content select.form-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

/* line 396, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content select.form-input option {
  background-color: #140D23;
  color: white;
}

/* line 402, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-hint {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6) !important;
  line-height: 1.3;
}

/* line 411, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content #siret-verification-result:empty {
  display: none;
}

/* line 416, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .siret-input-group {
  display: flex;
  width: 100%;
  gap: 0.5rem;
  align-items: stretch;
}

/* line 422, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .siret-input-group .form-input {
  flex: 1;
  width: 100%;
  height: 42px;
  margin: 0;
  padding: 10px 12px;
  box-sizing: border-box;
}

/* line 431, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .siret-input-group .verify-btn {
  white-space: nowrap;
  padding: 10px 16px;
  height: 42px;
  font-size: 0.85rem;
  background-color: #C38761;
  color: white;
  border: 1px solid #C38761;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
  margin: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

/* line 450, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .siret-input-group .verify-btn:hover {
  background: #bc794f;
}

/* line 457, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .siret-group .form-hint {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6) !important;
  line-height: 1.3;
}

/* line 465, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .spacer-hint {
  height: 1.2rem;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  line-height: 1.3;
}

/* line 473, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .registre-fields-container label,
.modal-content.organization-modal-content .rcs-field-group label,
.modal-content.organization-modal-content .rm-field-group label {
  text-transform: none;
}

/* line 480, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .segmented-input-group {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}

/* line 485, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .segmented-input-group .form-input,
.modal-content.organization-modal-content .segmented-input-group select.segment-city {
  height: 42px;
  margin: 0;
  padding: 10px 12px;
  box-sizing: border-box;
}

/* line 493, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .segmented-input-group select.segment-city {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 14px;
  padding-right: 28px;
}

/* line 503, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .segmented-input-group .segment-city {
  flex: 1;
}

/* line 507, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .segmented-input-group .segment-siren {
  flex: 1;
}

/* line 513, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1rem 0;
}

/* line 519, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .checkbox-wrapper .form-checkbox {
  margin: 0;
  transform: scale(1.1);
  accent-color: #C38761;
}

/* line 525, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .checkbox-wrapper .checkbox-label {
  margin: 0 !important;
  font-weight: normal;
  font-size: 0.9rem;
  cursor: pointer;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.95) !important;
  text-align: left !important;
  padding-left: 0 !important;
  opacity: 1 !important;
}

/* line 538, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .checkbox-group-inline {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin: 1rem 0;
}

/* line 544, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .checkbox-group-inline .checkbox-wrapper {
  margin: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 551, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .checkbox-group-inline .checkbox-wrapper .checkbox-label {
  white-space: nowrap;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  /* line 538, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
  .modal-content.organization-modal-content .checkbox-group-inline {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}

/* line 565, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .address-search-container {
  margin-bottom: 1rem;
}

/* line 568, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .address-search-container .form-input.address-autocomplete {
  position: relative;
}

/* line 574, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .address-fields .form-group {
  margin-bottom: 0.75rem;
}

/* line 580, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .btn-copy-address {
  padding: 8px 16px;
  font-size: 0.8rem;
  background-color: rgba(195, 135, 97, 0.2);
  color: #C38761;
  border: 1px solid rgba(195, 135, 97, 0.4);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

/* line 594, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .btn-copy-address:hover {
  background-color: rgba(195, 135, 97, 0.3);
  border-color: rgba(195, 135, 97, 0.6);
  transform: translateY(-1px);
}

/* line 600, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .btn-copy-address i {
  font-size: 0.75rem;
}

/* line 606, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .validation-error {
  display: block;
  margin-top: 0.5rem;
  padding: 0.5rem;
  background-color: rgba(231, 76, 60, 0.2);
  border: 1px solid rgba(231, 76, 60, 0.4);
  border-radius: 6px;
  color: #ff6b6b;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.3;
}

/* line 618, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .validation-error::before {
  content: "\26A0\FE0F ";
  margin-right: 0.25rem;
}

/* line 625, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-input.error, .modal-content.organization-modal-content .form-select.error, .modal-content.organization-modal-content select.error, .modal-content.organization-modal-content input.error {
  border: 2px solid #e74c3c !important;
  background-color: rgba(231, 76, 60, 0.1);
}

/* line 629, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-input.error:focus, .modal-content.organization-modal-content .form-select.error:focus, .modal-content.organization-modal-content select.error:focus, .modal-content.organization-modal-content input.error:focus {
  border-color: #e74c3c !important;
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

/* line 636, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-navigation {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  width: 100%;
}

/* line 646, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-navigation .form-button, .modal-content.organization-modal-content .form-navigation .crm-action-button, .modal-content.organization-modal-content .form-navigation .users-management-container .users-header .add-user-btn, .users-management-container .users-header .modal-content.organization-modal-content .form-navigation .add-user-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  cursor: pointer;
  min-width: 120px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* line 659, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-navigation .form-button:not(.secondary):not(.primary):not(.cancel-btn), .modal-content.organization-modal-content .form-navigation .crm-action-button:not(.secondary):not(.primary):not(.cancel-btn), .modal-content.organization-modal-content .form-navigation .users-management-container .users-header .add-user-btn:not(.secondary):not(.primary):not(.cancel-btn), .users-management-container .users-header .modal-content.organization-modal-content .form-navigation .add-user-btn:not(.secondary):not(.primary):not(.cancel-btn) {
  background: #C38761;
  border: 1px solid #C38761;
  color: white;
}

/* line 664, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-navigation .form-button:not(.secondary):not(.primary):not(.cancel-btn):hover, .modal-content.organization-modal-content .form-navigation .crm-action-button:not(.secondary):not(.primary):not(.cancel-btn):hover, .modal-content.organization-modal-content .form-navigation .users-management-container .users-header .add-user-btn:not(.secondary):not(.primary):not(.cancel-btn):hover, .users-management-container .users-header .modal-content.organization-modal-content .form-navigation .add-user-btn:not(.secondary):not(.primary):not(.cancel-btn):hover {
  background: #bc794f;
}

/* line 669, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-navigation .form-button.secondary, .modal-content.organization-modal-content .form-navigation .secondary.crm-action-button, .modal-content.organization-modal-content .form-navigation .users-management-container .users-header .secondary.add-user-btn, .users-management-container .users-header .modal-content.organization-modal-content .form-navigation .secondary.add-user-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}

/* line 674, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-navigation .form-button.secondary:hover, .modal-content.organization-modal-content .form-navigation .secondary.crm-action-button:hover, .modal-content.organization-modal-content .form-navigation .users-management-container .users-header .secondary.add-user-btn:hover, .users-management-container .users-header .modal-content.organization-modal-content .form-navigation .secondary.add-user-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

/* line 680, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-navigation .form-button.primary, .modal-content.organization-modal-content .form-navigation .primary.crm-action-button, .modal-content.organization-modal-content .form-navigation .users-management-container .users-header .primary.add-user-btn, .users-management-container .users-header .modal-content.organization-modal-content .form-navigation .primary.add-user-btn {
  background-color: #22c55e;
  border: 1px solid #22c55e;
  color: white;
}

/* line 685, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-navigation .form-button.primary:hover, .modal-content.organization-modal-content .form-navigation .primary.crm-action-button:hover, .modal-content.organization-modal-content .form-navigation .users-management-container .users-header .primary.add-user-btn:hover, .users-management-container .users-header .modal-content.organization-modal-content .form-navigation .primary.add-user-btn:hover {
  background-color: #1eaf54;
}

/* line 690, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-navigation .form-button.cancel-btn, .modal-content.organization-modal-content .form-navigation .cancel-btn.crm-action-button, .modal-content.organization-modal-content .form-navigation .users-management-container .users-header .cancel-btn.add-user-btn, .users-management-container .users-header .modal-content.organization-modal-content .form-navigation .cancel-btn.add-user-btn {
  background: rgba(220, 53, 69, 0.2);
  border: 1px solid rgba(220, 53, 69, 0.4);
  color: #dc3545;
}

/* line 695, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-navigation .form-button.cancel-btn:hover, .modal-content.organization-modal-content .form-navigation .cancel-btn.crm-action-button:hover, .modal-content.organization-modal-content .form-navigation .users-management-container .users-header .cancel-btn.add-user-btn:hover, .users-management-container .users-header .modal-content.organization-modal-content .form-navigation .cancel-btn.add-user-btn:hover {
  background: rgba(220, 53, 69, 0.3);
  border-color: rgba(220, 53, 69, 0.6);
}

/* line 706, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .is-reference-group .reference-info .reference-warning {
  font-size: 0.8rem;
}

/* ==========================================================================
   ORGANIZATION WIZARD MODAL - CRM OVERRIDES
   Scopé à #organizationModal pour ne PAS impacter l'espace client (#organization-modal)
   ========================================================================== */
/* line 720, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
#organizationModal .organization-modal-content .form-columns .form-column .form-group label {
  display: block;
}

/* line 725, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
#organizationModal .organization-modal-content .segmented-input-group {
  gap: 0.25rem;
}

/* line 728, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
#organizationModal .organization-modal-content .segmented-input-group .form-input,
#organizationModal .organization-modal-content .segmented-input-group select.segment-city {
  min-width: 0;
  padding: 10px 8px;
}

/* line 734, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
#organizationModal .organization-modal-content .segmented-input-group .segment-city {
  flex: 2;
  min-width: 0;
}

/* line 739, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
#organizationModal .organization-modal-content .segmented-input-group .segment-siren {
  flex: 1;
  min-width: 60px;
}

/* ==========================================================================
   ORGANIZATION WIZARD MODAL - LIGHT MODE
   ========================================================================== */
/* line 749, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(20, 13, 35, 0.15);
  box-shadow: 0 8px 32px rgba(20, 13, 35, 0.15);
  color: #140D23;
}

/* line 755, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content h2, .lightmode .modal-content.organization-modal-content .h2 {
  color: #140D23;
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 760, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .close {
  color: #140D23;
}

/* line 763, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .close:hover {
  color: #C38761;
}

/* line 768, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .progress-bar-container {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 772, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .progress-bar-container .progress-steps .progress-step .step-circle {
  background-color: rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.5);
}

/* line 776, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .progress-bar-container .progress-steps .progress-step .step-circle.active {
  background-color: #C38761;
  color: white;
}

/* line 781, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .progress-bar-container .progress-steps .progress-step .step-circle.completed {
  background-color: #22c55e;
  color: white;
}

/* line 787, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .progress-bar-container .progress-steps .progress-step .step-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 792, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .progress-bar-container .progress-bar {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 795, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .progress-bar-container .progress-bar .progress-fill {
  background-color: #C38761;
}

/* line 801, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .required-legend {
  color: rgba(20, 13, 35, 0.6);
}

/* line 806, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .form-steps-container::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.05);
}

/* line 810, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .form-steps-container::-webkit-scrollbar-thumb {
  background: rgba(195, 135, 97, 0.5);
}

/* line 813, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .form-steps-container::-webkit-scrollbar-thumb:hover {
  background: rgba(195, 135, 97, 0.7);
}

/* line 819, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content label {
  color: #140D23;
}

/* line 823, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .form-input, .lightmode .modal-content.organization-modal-content .form-select {
  background: #e8e8e8;
  border: 1px solid rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 828, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .form-input::placeholder, .lightmode .modal-content.organization-modal-content .form-select::placeholder {
  color: rgba(20, 13, 35, 0.5);
}

/* line 832, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .form-input:focus, .lightmode .modal-content.organization-modal-content .form-select:focus {
  border-color: #C38761;
  background: white;
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.15);
}

/* line 839, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content select.form-input {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
}

/* line 842, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content select.form-input option {
  background-color: white;
  color: #140D23;
}

/* line 848, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .segmented-input-group select.segment-city {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
}

/* line 852, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .form-hint {
  color: rgba(20, 13, 35, 0.6) !important;
}

/* line 856, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .siret-input-group .verify-btn {
  background: #C38761;
  border-color: #C38761;
  color: white;
}

/* line 861, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .siret-input-group .verify-btn:hover {
  background: #bc794f;
}

/* line 867, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .checkbox-wrapper .form-checkbox {
  accent-color: #C38761;
}

/* line 871, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .checkbox-wrapper .checkbox-label {
  color: #140D23 !important;
}

/* line 876, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .form-navigation {
  border-top-color: rgba(20, 13, 35, 0.1);
}

/* line 880, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .form-navigation .form-button:not(.secondary):not(.primary):not(.cancel-btn), .lightmode .modal-content.organization-modal-content .form-navigation .crm-action-button:not(.secondary):not(.primary):not(.cancel-btn), .lightmode .modal-content.organization-modal-content .form-navigation .users-management-container .users-header .add-user-btn:not(.secondary):not(.primary):not(.cancel-btn), .users-management-container .users-header .lightmode .modal-content.organization-modal-content .form-navigation .add-user-btn:not(.secondary):not(.primary):not(.cancel-btn) {
  background: #C38761;
  border-color: #C38761;
  color: white;
}

/* line 885, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .form-navigation .form-button:not(.secondary):not(.primary):not(.cancel-btn):hover, .lightmode .modal-content.organization-modal-content .form-navigation .crm-action-button:not(.secondary):not(.primary):not(.cancel-btn):hover, .lightmode .modal-content.organization-modal-content .form-navigation .users-management-container .users-header .add-user-btn:not(.secondary):not(.primary):not(.cancel-btn):hover, .users-management-container .users-header .lightmode .modal-content.organization-modal-content .form-navigation .add-user-btn:not(.secondary):not(.primary):not(.cancel-btn):hover {
  background: #bc794f;
}

/* line 890, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .form-navigation .form-button.secondary, .lightmode .modal-content.organization-modal-content .form-navigation .secondary.crm-action-button, .lightmode .modal-content.organization-modal-content .form-navigation .users-management-container .users-header .secondary.add-user-btn, .users-management-container .users-header .lightmode .modal-content.organization-modal-content .form-navigation .secondary.add-user-btn {
  background: #e8e8e8;
  border: 1px solid rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 895, app/assets/stylesheets/pages/customerspace/../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .form-navigation .form-button.secondary:hover, .lightmode .modal-content.organization-modal-content .form-navigation .secondary.crm-action-button:hover, .lightmode .modal-content.organization-modal-content .form-navigation .users-management-container .users-header .secondary.add-user-btn:hover, .users-management-container .users-header .lightmode .modal-content.organization-modal-content .form-navigation .secondary.add-user-btn:hover {
  background: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 5240, app/assets/stylesheets/pages/customerspace/_account.scss */
.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}

@media (max-width: 767px) {
  /* line 5240, app/assets/stylesheets/pages/customerspace/_account.scss */
  .form-grid {
    flex-direction: column;
  }
}

/* line 5252, app/assets/stylesheets/pages/customerspace/_account.scss */
.form-column {
  flex: 1;
  min-width: 250px;
}

@media (max-width: 767px) {
  /* line 5252, app/assets/stylesheets/pages/customerspace/_account.scss */
  .form-column {
    width: 100%;
  }
}

/* line 5263, app/assets/stylesheets/pages/customerspace/_account.scss */
.form-group {
  margin-bottom: 15px;
}

/* line 5266, app/assets/stylesheets/pages/customerspace/_account.scss */
.form-group label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.85rem;
}

/* line 5272, app/assets/stylesheets/pages/customerspace/_account.scss */
.form-group .form-input {
  padding: 8px;
}

/* line 5279, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-info .reference-warning {
  font-size: 0.8rem;
}

/* line 5285, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-slider-container {
  margin: 1rem 0;
  padding: 0.875rem;
  border-radius: 8px;
  background: rgba(254, 254, 254, 0.05);
}

/* line 5291, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-slider-container h5, .users-slider-container .h5 {
  margin-top: 0;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  color: #fefefe;
  font-size: 1rem;
}

/* line 5299, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-slider-container h5 i, .users-slider-container .h5 i {
  margin-right: 10px;
  color: #C38761;
}

/* line 5305, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-slider-container .users-slider-controls {
  display: flex;
  flex-direction: column;
  /* Organiser verticalement : slider-wrapper puis slider-value */
  align-items: center;
  gap: 0.5rem;
  /* Réduire l'espacement entre slider-wrapper et slider-value */
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

/* line 5313, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-slider-container .users-slider-controls .slider-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  /* Placer le slider au-dessus des graduations */
  align-items: stretch;
  /* Étirer les éléments sur toute la largeur */
  gap: 0.5rem;
  /* Espacement entre le slider et les graduations */
  /* Ajuster la position du slider pour un meilleur alignement */
}

/* line 5322, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-slider-container .users-slider-controls .slider-wrapper .users-slider {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* line 5329, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-slider-container .users-slider-controls .slider-value {
  min-width: 120px;
  text-align: center;
  padding: 8px 15px;
  background: rgba(254, 254, 254, 0.1);
  border-radius: 20px;
  color: #fefefe;
  font-weight: 500;
}

/* line 5340, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-slider-container .slider-pricing {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0.75rem;
}

/* line 5346, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-slider-container .slider-pricing .price-label {
  margin-right: 10px;
  color: rgba(254, 254, 254, 0.7);
}

/* line 5351, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-slider-container .slider-pricing .price-value {
  font-size: 1.1rem;
  font-weight: 500;
  color: #C38761;
}

/* line 5357, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-slider-container .slider-pricing .price-per-user {
  margin-left: 8px;
  font-size: 0.8rem;
  color: rgba(254, 254, 254, 0.6);
}

/* line 5366, app/assets/stylesheets/pages/customerspace/_account.scss */
input.users-slider[type=range] {
  width: 100%;
  margin: 0;
  /* Supprimer les marges pour un meilleur alignement */
  background-color: transparent;
  -webkit-appearance: none;
}

/* line 5372, app/assets/stylesheets/pages/customerspace/_account.scss */
input.users-slider[type=range]:focus {
  outline: none;
}

/* line 5376, app/assets/stylesheets/pages/customerspace/_account.scss */
input.users-slider[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 0px 0px 1px #000000;
  background: rgba(254, 254, 254, 0.2);
  border-radius: 3px;
  border: 0px solid #000000;
}

/* line 5387, app/assets/stylesheets/pages/customerspace/_account.scss */
input.users-slider[type=range]::-webkit-slider-thumb {
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  border: 2px solid #C38761;
  height: 22px;
  width: 22px;
  border-radius: 50%;
  background: #C38761;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -8px;
}

/* line 5399, app/assets/stylesheets/pages/customerspace/_account.scss */
input.users-slider[type=range]:focus::-webkit-slider-runnable-track {
  background: rgba(254, 254, 254, 0.3);
}

/* line 5403, app/assets/stylesheets/pages/customerspace/_account.scss */
input.users-slider[type=range]::-moz-range-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 0px 0px 1px #000000;
  background: rgba(254, 254, 254, 0.2);
  border-radius: 3px;
  border: 0px solid #000000;
}

/* line 5414, app/assets/stylesheets/pages/customerspace/_account.scss */
input.users-slider[type=range]::-moz-range-thumb {
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  border: 2px solid #C38761;
  height: 22px;
  width: 22px;
  border-radius: 50%;
  background: #C38761;
  cursor: pointer;
}

/* line 5425, app/assets/stylesheets/pages/customerspace/_account.scss */
input.users-slider[type=range]::-webkit-slider-thumb {
  margin-top: -8px;
  /* Ajuster la position verticale du curseur */
  position: relative;
  z-index: 2;
}

/* line 5431, app/assets/stylesheets/pages/customerspace/_account.scss */
input.users-slider[type=range]::-moz-range-thumb {
  margin-top: -8px;
  /* Ajuster la position verticale du curseur */
  position: relative;
  z-index: 2;
}

/* line 5438, app/assets/stylesheets/pages/customerspace/_account.scss */
input.users-slider[type=range]::-webkit-slider-runnable-track {
  height: 6px;
  background: rgba(254, 254, 254, 0.2);
  border-radius: 3px;
  border: none;
  box-shadow: none;
}

/* line 5446, app/assets/stylesheets/pages/customerspace/_account.scss */
input.users-slider[type=range]::-moz-range-track {
  height: 6px;
  background: rgba(254, 254, 254, 0.2);
  border-radius: 3px;
  border: none;
  box-shadow: none;
}

/* line 5459, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-grid .subscription-card[data-offer="spark"] .card-header {
  background: rgba(245, 158, 11, 0.2);
}

/* line 5462, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-grid .subscription-card[data-offer="spark"] .card-header i {
  color: #f59e0b;
}

/* line 5469, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-grid .subscription-card[data-offer="flow"] .card-header {
  background: rgba(59, 130, 246, 0.2);
}

/* line 5472, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-grid .subscription-card[data-offer="flow"] .card-header i {
  color: #3b82f6;
}

/* line 5479, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-grid .subscription-card[data-offer="360"] .card-header {
  background: rgba(16, 185, 129, 0.2);
}

/* line 5482, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-grid .subscription-card[data-offer="360"] .card-header i {
  color: #10b981;
}

/* line 5489, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-grid .subscription-card[data-offer="liberty"] .card-header {
  background: rgba(139, 92, 246, 0.2);
}

/* line 5492, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-grid .subscription-card[data-offer="liberty"] .card-header i {
  color: #8b5cf6;
}

/* line 5501, app/assets/stylesheets/pages/customerspace/_account.scss */
.delete-org-btn {
  background: rgba(239, 68, 68, 0.2);
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  cursor: pointer;
  color: #ef4444;
  display: flex;
  align-items: center;
  transition: background 0.3s ease;
}

/* line 5513, app/assets/stylesheets/pages/customerspace/_account.scss */
.delete-org-btn i {
  margin-right: 5px;
  color: #ef4444;
}

/* line 5518, app/assets/stylesheets/pages/customerspace/_account.scss */
.delete-org-btn:hover {
  background: rgba(239, 68, 68, 0.3);
}

/* line 5525, app/assets/stylesheets/pages/customerspace/_account.scss */
#usersCountModal .modal-content {
  max-width: 800px;
  width: 90%;
  padding: 0;
}

/* line 5531, app/assets/stylesheets/pages/customerspace/_account.scss */
#usersCountModal .users-slider-container {
  padding: 0 24px 16px;
}

/* line 5535, app/assets/stylesheets/pages/customerspace/_account.scss */
#usersCountModal .form-button, #usersCountModal .crm-action-button, #usersCountModal .users-management-container .users-header .add-user-btn, .users-management-container .users-header #usersCountModal .add-user-btn {
  background-color: #C38761;
  color: #140D23;
  border: none;
  padding: 0.625rem 1.25rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  min-width: 120px;
  margin: 0 24px 16px;
}

/* line 5548, app/assets/stylesheets/pages/customerspace/_account.scss */
#usersCountModal .form-button:hover, #usersCountModal .crm-action-button:hover, #usersCountModal .users-management-container .users-header .add-user-btn:hover, .users-management-container .users-header #usersCountModal .add-user-btn:hover {
  background-color: #ca9573;
  transform: translateY(-1px);
}

/* line 5553, app/assets/stylesheets/pages/customerspace/_account.scss */
#usersCountModal .form-button:disabled, #usersCountModal .crm-action-button:disabled, #usersCountModal .users-management-container .users-header .add-user-btn:disabled, .users-management-container .users-header #usersCountModal .add-user-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* line 5563, app/assets/stylesheets/pages/customerspace/_account.scss */
.detail-row.users-count {
  display: flex;
  align-items: center;
  padding: 8px;
  border-bottom: 1px solid rgba(254, 254, 254, 0.05);
  margin: 0;
}

/* line 5571, app/assets/stylesheets/pages/customerspace/_account.scss */
.detail-row.users-count .detail-label {
  color: rgba(254, 254, 254, 0.7);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
}

/* line 5577, app/assets/stylesheets/pages/customerspace/_account.scss */
.detail-row.users-count .detail-label i {
  margin-right: 10px;
  color: rgba(254, 254, 254, 0.5);
}

/* line 5583, app/assets/stylesheets/pages/customerspace/_account.scss */
.detail-row.users-count .detail-value {
  font-weight: 500;
  color: #fefefe;
}

/* line 5588, app/assets/stylesheets/pages/customerspace/_account.scss */
.detail-row.users-count .btn-small {
  padding: 4px 8px;
  font-size: 0.8rem;
  margin-left: 10px;
}

/* line 5597, app/assets/stylesheets/pages/customerspace/_account.scss */
#bankingDetailsModal .modal-content {
  max-width: 900px;
  width: 95%;
  padding: 0;
}

/* line 5602, app/assets/stylesheets/pages/customerspace/_account.scss */
#bankingDetailsModal .modal-content form {
  padding: 0;
}

/* line 5608, app/assets/stylesheets/pages/customerspace/_account.scss */
.banking-modal-content {
  padding: 16px 24px;
}

/* line 5611, app/assets/stylesheets/pages/customerspace/_account.scss */
.banking-modal-content .form-section {
  margin-bottom: 0.75rem;
}

/* line 5614, app/assets/stylesheets/pages/customerspace/_account.scss */
.banking-modal-content .form-section h3, .banking-modal-content .form-section .h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #C38761;
  border-bottom: 1px solid rgba(195, 135, 97, 0.3);
  padding-bottom: 0.25rem;
}

/* line 5622, app/assets/stylesheets/pages/customerspace/_account.scss */
.banking-modal-content .form-section .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

/* line 5630, app/assets/stylesheets/pages/customerspace/_account.scss */
.banking-modal-content .form-section .form-column .form-group {
  margin-bottom: 0.5rem;
}

/* line 5633, app/assets/stylesheets/pages/customerspace/_account.scss */
.banking-modal-content .form-section .form-column .form-group label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.85rem;
  color: rgba(254, 254, 254, 0.9);
}

/* line 5640, app/assets/stylesheets/pages/customerspace/_account.scss */
.banking-modal-content .form-section .form-column .form-group .form-input {
  width: 100%;
  padding: 0.5rem 0.625rem;
  border: 1px solid rgba(254, 254, 254, 0.2);
  border-radius: 8px;
  background: rgba(254, 254, 254, 0.1);
  color: #fefefe;
  font-size: 0.85rem;
}

/* line 5649, app/assets/stylesheets/pages/customerspace/_account.scss */
.banking-modal-content .form-section .form-column .form-group .form-input:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.2);
}

/* line 5659, app/assets/stylesheets/pages/customerspace/_account.scss */
.banking-modal-content .form-hint {
  font-size: 0.7rem;
  color: rgba(254, 254, 254, 0.6);
  margin-top: 2px;
}

/* line 5665, app/assets/stylesheets/pages/customerspace/_account.scss */
.banking-modal-content .sepa-agreement {
  margin-bottom: 0.5rem;
}

/* line 5668, app/assets/stylesheets/pages/customerspace/_account.scss */
.banking-modal-content .sepa-agreement h3, .banking-modal-content .sepa-agreement .h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #C38761;
  border-bottom: 1px solid rgba(195, 135, 97, 0.3);
  padding-bottom: 0.25rem;
}

/* line 5676, app/assets/stylesheets/pages/customerspace/_account.scss */
.banking-modal-content .sepa-agreement .agreement-text {
  background: rgba(254, 254, 254, 0.05);
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 0.75rem;
  color: rgba(254, 254, 254, 0.8);
  margin-bottom: 0.5rem;
  max-height: 120px;
  overflow-y: auto;
}

/* line 5686, app/assets/stylesheets/pages/customerspace/_account.scss */
.banking-modal-content .sepa-agreement .agreement-text p {
  margin-bottom: 0.25rem;
}

/* line 5689, app/assets/stylesheets/pages/customerspace/_account.scss */
.banking-modal-content .sepa-agreement .agreement-text p:last-child {
  margin-bottom: 0;
}

/* line 5695, app/assets/stylesheets/pages/customerspace/_account.scss */
.banking-modal-content .sepa-agreement .consent-checkbox {
  display: flex;
  align-items: center;
  margin: 0.5rem 0;
}

/* line 5700, app/assets/stylesheets/pages/customerspace/_account.scss */
.banking-modal-content .sepa-agreement .consent-checkbox input[type="checkbox"] {
  margin-right: 10px;
  flex-shrink: 0;
}

/* line 5705, app/assets/stylesheets/pages/customerspace/_account.scss */
.banking-modal-content .sepa-agreement .consent-checkbox label {
  font-size: 0.8rem;
  color: #fefefe;
  flex: 1;
}

/* line 5713, app/assets/stylesheets/pages/customerspace/_account.scss */
.banking-modal-content .sepa-content {
  opacity: 1;
  color: #fefefe;
  font-size: 0.8rem;
}

/* line 5719, app/assets/stylesheets/pages/customerspace/_account.scss */
.banking-modal-content .btn-primary, .banking-modal-content .crm-action-button.crm-action-button-primary {
  background-color: #C38761;
  color: #140D23;
  border: none;
  padding: 0.625rem 1.25rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  min-width: 120px;
  margin: 0.5rem 0;
}

/* line 5732, app/assets/stylesheets/pages/customerspace/_account.scss */
.banking-modal-content .btn-primary:hover, .banking-modal-content .crm-action-button.crm-action-button-primary:hover {
  background-color: #ca9573;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  /* line 5742, app/assets/stylesheets/pages/customerspace/_account.scss */
  #bankingDetailsModal .modal-content {
    max-width: 95%;
  }
  /* line 5749, app/assets/stylesheets/pages/customerspace/_account.scss */
  .banking-modal-content .form-section .form-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  /* line 5756, app/assets/stylesheets/pages/customerspace/_account.scss */
  .banking-modal-content .sepa-agreement .agreement-text {
    max-height: 100px;
  }
}

/* line 5765, app/assets/stylesheets/pages/customerspace/_account.scss */
.commitment-label.selected {
  border: 2px solid #C38761 !important;
  background-color: rgba(195, 135, 97, 0.1) !important;
}

/* line 5769, app/assets/stylesheets/pages/customerspace/_account.scss */
.commitment-label.selected .commitment-icon i {
  color: #C38761 !important;
}

/* line 5773, app/assets/stylesheets/pages/customerspace/_account.scss */
.commitment-label.selected .commitment-name {
  color: #C38761 !important;
  font-weight: bold;
}

/* line 5781, app/assets/stylesheets/pages/customerspace/_account.scss */
.reference-badge {
  background-color: #C38761;
  color: #140D23;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 8px;
  font-weight: bold;
}

/* line 5792, app/assets/stylesheets/pages/customerspace/_account.scss */
.organization-card.is-reference {
  border-left: 3px solid #C38761;
}

/* line 5795, app/assets/stylesheets/pages/customerspace/_account.scss */
.organization-card.is-reference .organization-name {
  color: #C38761;
}

/* line 5801, app/assets/stylesheets/pages/customerspace/_account.scss */
.status-badge {
  background: #e8b972;
  color: #140D23;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 1.4rem;
  font-weight: 800;
}

/* line 5811, app/assets/stylesheets/pages/customerspace/_account.scss */
.app-badge {
  position: relative;
}

/* line 5814, app/assets/stylesheets/pages/customerspace/_account.scss */
.app-badge.included-in-offer {
  border-left: 3px solid #C38761;
  background-color: rgba(254, 254, 254, 0.12);
}

/* line 5819, app/assets/stylesheets/pages/customerspace/_account.scss */
.app-badge.subscribed-individually {
  border-left: 3px solid #3b82f6;
  background-color: rgba(254, 254, 254, 0.08);
}

/* line 5824, app/assets/stylesheets/pages/customerspace/_account.scss */
.app-badge .addon-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #3b82f6;
  color: white;
  font-size: 0.6rem;
  padding: 2px 6px;
  border-radius: 10px;
  font-weight: bold;
}

/* line 5839, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-card .included-features {
  padding: 1.2rem;
}

/* line 5842, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-card .included-features .apps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 100%;
}

/* line 5848, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-card .included-features .apps-grid .app-badge {
  flex: 0 0 auto;
  white-space: nowrap;
  background: rgba(254, 254, 254, 0.08);
  border-radius: 4px;
  padding: 0.3rem 0.6rem;
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(254, 254, 254, 0.7);
  border-left: 3px solid #C38761;
}

/* line 5860, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-card .included-features .apps-grid .app-badge i {
  margin-right: 0.4rem;
  color: #C38761;
}

/* line 5870, app/assets/stylesheets/pages/customerspace/_account.scss */
.included-apps .apps-grid .app-badge,
.included-features .apps-grid .app-badge {
  flex: 0 0 auto;
  max-width: fit-content;
  background: rgba(254, 254, 254, 0.08);
  border-radius: 4px;
  padding: 0.3rem 0.6rem;
  margin-bottom: 0.5rem;
  border-left: 3px solid #C38761;
}

/* line 5880, app/assets/stylesheets/pages/customerspace/_account.scss */
.included-apps .apps-grid .app-badge i,
.included-features .apps-grid .app-badge i {
  color: #C38761;
}

/* line 5885, app/assets/stylesheets/pages/customerspace/_account.scss */
.included-apps .apps-grid .app-badge.liberty-feature,
.included-features .apps-grid .app-badge.liberty-feature {
  border-left-color: #8b5cf6;
}

/* line 5888, app/assets/stylesheets/pages/customerspace/_account.scss */
.included-apps .apps-grid .app-badge.liberty-feature i,
.included-features .apps-grid .app-badge.liberty-feature i {
  color: #8b5cf6;
}

/* line 5894, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-actions {
  display: flex;
  justify-content: center;
  padding: 1.2rem;
}

/* line 5899, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-actions form {
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
}

/* line 5905, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-actions .btn-primary.full-width, .subscription-actions .full-width.crm-action-button.crm-action-button-primary {
  width: 100%;
  text-align: center;
}

/* À ajouter à votre fichier CSS pour les organisations */
/* line 5912, app/assets/stylesheets/pages/customerspace/_account.scss */
.org-details p i.fa-map-marker-alt {
  color: #e74c3c;
  /* Rouge pour l'icône d'adresse de facturation */
}

/* line 5916, app/assets/stylesheets/pages/customerspace/_account.scss */
textarea.form-input {
  resize: vertical;
  min-height: 60px;
}

/* line 5921, app/assets/stylesheets/pages/customerspace/_account.scss */
.topics-list {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
}

/* line 5927, app/assets/stylesheets/pages/customerspace/_account.scss */
.topics-list span {
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.8em;
}

/* line 5934, app/assets/stylesheets/pages/customerspace/_account.scss */
.mt-2 {
  margin-top: 8px;
}

/* Ajouter à la fin de votre fichier CSS */
/* line 5939, app/assets/stylesheets/pages/customerspace/_account.scss */
.form-input:disabled {
  background-color: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.5);
  border-style: dashed;
}

/* line 5945, app/assets/stylesheets/pages/customerspace/_account.scss */
.checkbox-wrapper {
  display: flex;
  align-items: center;
  margin-top: 6px;
}

/* line 5951, app/assets/stylesheets/pages/customerspace/_account.scss */
.checkbox-wrapper .form-checkbox {
  margin-right: 8px;
}

/* line 5955, app/assets/stylesheets/pages/customerspace/_account.scss */
.checkbox-wrapper .checkbox-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 5959, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] .checkbox-wrapper .checkbox-label {
  color: rgba(51, 51, 51, 0.8);
}

/* line 5967, app/assets/stylesheets/pages/customerspace/_account.scss */
.mt-2 {
  margin-top: 8px;
}

/* Ajouter à la fin du fichier */
/* line 5972, app/assets/stylesheets/pages/customerspace/_account.scss */
.form-grid.three-columns {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
}

/* line 5977, app/assets/stylesheets/pages/customerspace/_account.scss */
.column-title {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1rem;
  color: #C38761;
  border-bottom: 1px solid rgba(195, 135, 97, 0.3);
  padding-bottom: 8px;
}

/* line 5986, app/assets/stylesheets/pages/customerspace/_account.scss */
.form-group.horizontal {
  display: flex;
  gap: 10px;
}

/* line 5991, app/assets/stylesheets/pages/customerspace/_account.scss */
.form-group-half {
  flex: 1;
}

/* line 5995, app/assets/stylesheets/pages/customerspace/_account.scss */
.mb-2 {
  margin-bottom: 10px;
}

/* line 5999, app/assets/stylesheets/pages/customerspace/_account.scss */
.mt-4 {
  margin-top: 20px;
}

/* line 6003, app/assets/stylesheets/pages/customerspace/_account.scss */
.address-search-container {
  margin-bottom: 10px;
}

/* line 6006, app/assets/stylesheets/pages/customerspace/_account.scss */
.address-search-container .form-input {
  background-color: rgba(254, 254, 254, 0.15);
}

/* line 6009, app/assets/stylesheets/pages/customerspace/_account.scss */
.address-search-container .form-input:focus {
  box-shadow: 0 0 0 2px #C38761;
}

/* Style pour indiquer que l'autocomplétion est active */
/* line 6016, app/assets/stylesheets/pages/customerspace/_account.scss */
.pac-container {
  z-index: 10000;
  /* Pour s'assurer qu'il apparaisse par-dessus la modal */
  background-color: #140D23;
  border: 1px solid rgba(254, 254, 254, 0.2);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* line 6022, app/assets/stylesheets/pages/customerspace/_account.scss */
.pac-container .pac-item {
  padding: 8px 10px;
  color: #fefefe;
  border-bottom: 1px solid rgba(254, 254, 254, 0.1);
}

/* line 6027, app/assets/stylesheets/pages/customerspace/_account.scss */
.pac-container .pac-item:hover {
  background-color: rgba(195, 135, 97, 0.2);
}

/* line 6032, app/assets/stylesheets/pages/customerspace/_account.scss */
.pac-container .pac-item-query {
  color: #fefefe;
}

/* Style pour le mode mobile */
@media (max-width: 992px) {
  /* line 6040, app/assets/stylesheets/pages/customerspace/_account.scss */
  .form-grid.three-columns {
    grid-template-columns: 1fr;
  }
  /* line 6044, app/assets/stylesheets/pages/customerspace/_account.scss */
  .column-title {
    margin-top: 20px;
  }
}

/* line 6050, app/assets/stylesheets/pages/customerspace/_account.scss */
.progress-bar-container {
  margin-bottom: 30px;
}

/* line 6053, app/assets/stylesheets/pages/customerspace/_account.scss */
.progress-bar-container .progress-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  position: relative;
}

/* line 6070, app/assets/stylesheets/pages/customerspace/_account.scss */
.progress-bar-container .progress-steps .progress-step {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 25%;
}

/* line 6076, app/assets/stylesheets/pages/customerspace/_account.scss */
.progress-bar-container .progress-steps .progress-step .step-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(254, 254, 254, 0.2);
  color: #fefefe;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  font-weight: bold;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

/* line 6090, app/assets/stylesheets/pages/customerspace/_account.scss */
.progress-bar-container .progress-steps .progress-step .step-circle.active {
  background: #C38761;
  color: #140D23;
}

/* line 6095, app/assets/stylesheets/pages/customerspace/_account.scss */
.progress-bar-container .progress-steps .progress-step .step-circle.completed {
  background: #af6c42;
  color: #140D23;
}

/* line 6107, app/assets/stylesheets/pages/customerspace/_account.scss */
.progress-bar-container .progress-steps .progress-step .step-label {
  font-size: 0.8rem;
  color: rgba(254, 254, 254, 0.7);
  transition: color 0.3s ease;
}

/* line 6112, app/assets/stylesheets/pages/customerspace/_account.scss */
.progress-bar-container .progress-steps .progress-step .step-label.active {
  color: #fefefe;
  font-weight: 600;
}

/* line 6120, app/assets/stylesheets/pages/customerspace/_account.scss */
.progress-bar-container .progress-bar {
  height: 6px;
  background: rgba(254, 254, 254, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

/* line 6126, app/assets/stylesheets/pages/customerspace/_account.scss */
.progress-bar-container .progress-bar .progress-fill {
  height: 100%;
  background: #C38761;
  transition: width 0.4s ease;
}

/* line 6132, app/assets/stylesheets/pages/customerspace/_account.scss */
.progress-bar-container .progress-bar .progress-fill.width-step-1 {
  width: 16.67% !important;
}

/* line 6141, app/assets/stylesheets/pages/customerspace/_account.scss */
.form-step.hidden {
  display: none;
}

/* line 6146, app/assets/stylesheets/pages/customerspace/_account.scss */
.step-title {
  font-size: 1.1rem;
  color: #C38761;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(195, 135, 97, 0.3);
}

/* line 6155, app/assets/stylesheets/pages/customerspace/_account.scss */
.form-hint {
  display: block;
  font-size: 0.8rem;
  color: rgba(254, 254, 254, 0.6);
  margin-top: 5px;
}

/* line 6163, app/assets/stylesheets/pages/customerspace/_account.scss */
.checkbox-wrapper.mb-3 {
  margin-bottom: 15px;
}

/* line 6170, app/assets/stylesheets/pages/customerspace/_account.scss */
.form-step {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* line 6173, app/assets/stylesheets/pages/customerspace/_account.scss */
.form-step.fade-in {
  animation: fadeIn 0.5s forwards;
}

/* line 6177, app/assets/stylesheets/pages/customerspace/_account.scss */
.form-step.fade-out {
  animation: fadeOut 0.5s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-20px);
  }
}

/* line 6205, app/assets/stylesheets/pages/customerspace/_account.scss */
.form-columns {
  display: flex;
  gap: 20px;
}

@media (max-width: 640px) {
  /* line 6205, app/assets/stylesheets/pages/customerspace/_account.scss */
  .form-columns {
    flex-direction: column;
    gap: 0;
  }
}

/* line 6214, app/assets/stylesheets/pages/customerspace/_account.scss */
.form-columns .form-column {
  flex: 1;
  min-width: 0;
}

/* line 6222, app/assets/stylesheets/pages/customerspace/_account.scss */
.form-group {
  margin-bottom: 12px;
}

/* line 6225, app/assets/stylesheets/pages/customerspace/_account.scss */
.form-group label {
  margin-bottom: 3px;
  font-size: 0.85rem;
}

/* line 6230, app/assets/stylesheets/pages/customerspace/_account.scss */
.form-group .form-hint {
  font-size: 0.75rem;
  margin-top: 2px;
}

/* line 6236, app/assets/stylesheets/pages/customerspace/_account.scss */
.organization-info {
  width: 100%;
}

/* line 6241, app/assets/stylesheets/pages/customerspace/_account.scss */
.organization-map-container {
  width: 100%;
  height: 250px;
}

/* line 6246, app/assets/stylesheets/pages/customerspace/_account.scss */
.organization-map-container h5, .organization-map-container .h5 {
  margin: 15px 0 5px;
  font-size: 16px;
  color: #333;
}

/* line 6252, app/assets/stylesheets/pages/customerspace/_account.scss */
.org-map {
  height: 100%;
  min-height: 250px;
  width: 100%;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #eaeaea;
}

/* line 6263, app/assets/stylesheets/pages/customerspace/_account.scss */
.map-legend {
  padding: 8px !important;
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  font-size: 12px;
  z-index: 1;
  position: absolute;
  bottom: 10px;
  left: 10px;
}

/* line 6275, app/assets/stylesheets/pages/customerspace/_account.scss */
.map-legend div {
  margin-bottom: 4px;
  display: flex;
  align-items: center;
}

/* line 6281, app/assets/stylesheets/pages/customerspace/_account.scss */
.map-legend div:last-child {
  margin-bottom: 0;
}

/* line 6285, app/assets/stylesheets/pages/customerspace/_account.scss */
.map-legend-item {
  margin-right: 15px;
  display: flex;
  align-items: center;
}

/* line 6291, app/assets/stylesheets/pages/customerspace/_account.scss */
.map-marker {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 5px;
}

/* line 6298, app/assets/stylesheets/pages/customerspace/_account.scss */
.map-marker.main {
  background-color: #4285F4;
}

/* line 6299, app/assets/stylesheets/pages/customerspace/_account.scss */
.map-marker.billing {
  background-color: #EA4335;
}

/* line 6300, app/assets/stylesheets/pages/customerspace/_account.scss */
.map-marker.shipping {
  background-color: #34A853;
}

/* line 6303, app/assets/stylesheets/pages/customerspace/_account.scss */
.map-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 200px;
  background: rgba(var(--bs-secondary-rgb), 0.1);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

/* line 6315, app/assets/stylesheets/pages/customerspace/_account.scss */
.map-fallback .map-fallback-icon {
  font-size: 2.5rem;
  color: var(--bs-secondary);
  opacity: 0.5;
  margin-bottom: 15px;
}

/* line 6322, app/assets/stylesheets/pages/customerspace/_account.scss */
.map-fallback .map-fallback-message {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 6328, app/assets/stylesheets/pages/customerspace/_account.scss */
.map-fallback .map-fallback-title {
  font-weight: 600;
  margin-bottom: 0;
  color: var(--bs-body-color);
  font-size: 0.95rem;
}

/* line 6335, app/assets/stylesheets/pages/customerspace/_account.scss */
.map-fallback .map-fallback-text {
  font-size: 0.8rem;
  color: var(--bs-secondary);
  margin: 0;
}

/* line 6342, app/assets/stylesheets/pages/customerspace/_account.scss */
.map-fallback[data-error-type="config"] .map-fallback-icon {
  color: var(--bs-warning);
}

/* line 6348, app/assets/stylesheets/pages/customerspace/_account.scss */
.map-fallback[data-error-type="network"] .map-fallback-icon {
  color: var(--bs-danger);
}

/* line 6354, app/assets/stylesheets/pages/customerspace/_account.scss */
.map-fallback[data-error-type="no_address"] .map-fallback-icon {
  color: var(--bs-info);
}

/* line 6361, app/assets/stylesheets/pages/customerspace/_account.scss */
.topics-list {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-left: 8px;
}

/* line 6368, app/assets/stylesheets/pages/customerspace/_account.scss */
.topic-badge {
  background: rgba(232, 185, 114, 0.15);
  color: #e8b972;
  padding: 4px 8px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(232, 185, 114, 0.3);
  transition: all 0.2s ease;
}

/* line 6380, app/assets/stylesheets/pages/customerspace/_account.scss */
.topic-badge:hover {
  background: rgba(232, 185, 114, 0.25);
  transform: translateY(-1px);
}

/* line 6385, app/assets/stylesheets/pages/customerspace/_account.scss */
.topic-badge.empty {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
  font-style: italic;
}

/* line 6394, app/assets/stylesheets/pages/customerspace/_account.scss */
.organization-card .org-details p:last-child {
  margin-bottom: 0;
}

/* line 6399, app/assets/stylesheets/pages/customerspace/_account.scss */
.siret-input-group {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* line 6405, app/assets/stylesheets/pages/customerspace/_account.scss */
.verify-btn {
  padding: 5px 10px;
  font-size: 0.8rem;
  background-color: #C38761;
  color: #140D23;
  flex-shrink: 0;
}

/* line 6415, app/assets/stylesheets/pages/customerspace/_account.scss */
#siret-verification-result {
  margin-top: 5px;
  margin-bottom: 10px;
}

/* line 6419, app/assets/stylesheets/pages/customerspace/_account.scss */
#siret-verification-result .alert {
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  margin: 5px 0;
  transition: all 0.5s ease-in-out;
}

/* line 6427, app/assets/stylesheets/pages/customerspace/_account.scss */
#siret-verification-result .alert-success {
  background-color: rgba(52, 168, 83, 0.15);
  color: #34A853;
  border-left: 3px solid #34A853;
}

/* line 6433, app/assets/stylesheets/pages/customerspace/_account.scss */
#siret-verification-result .alert-danger {
  background-color: rgba(234, 67, 53, 0.15);
  color: #EA4335;
  border-left: 3px solid #EA4335;
}

/* line 6439, app/assets/stylesheets/pages/customerspace/_account.scss */
#siret-verification-result .alert-info {
  background-color: rgba(66, 133, 244, 0.15);
  color: #4285F4;
  border-left: 3px solid #4285F4;
}

/* line 6446, app/assets/stylesheets/pages/customerspace/_account.scss */
#siret-verification-result .modal-alert {
  margin: 1rem 0;
  padding: 0.75rem 1rem;
  border-radius: 4px;
}

/* line 6451, app/assets/stylesheets/pages/customerspace/_account.scss */
#siret-verification-result .modal-alert.alert-danger {
  background-color: #fee;
  border: 1px solid #fcc;
  color: #c33;
}

/* line 6458, app/assets/stylesheets/pages/customerspace/_account.scss */
#siret-verification-result .fade-out {
  transition: opacity 2s ease, height 1s ease, padding 1s ease, margin 1s ease;
}

/* line 6463, app/assets/stylesheets/pages/customerspace/_account.scss */
.siret-verified-badge {
  background-color: rgba(52, 168, 83, 0.15);
  color: #34A853;
  font-size: 0.7rem;
  padding: 2px 5px;
  border-radius: 10px;
  margin-left: 5px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

/* line 6474, app/assets/stylesheets/pages/customerspace/_account.scss */
.siret-verified-badge i {
  font-size: 0.8rem;
}

/* line 6479, app/assets/stylesheets/pages/customerspace/_account.scss */
.siret-verified {
  color: #34A853;
  font-weight: bold;
}

/* line 6483, app/assets/stylesheets/pages/customerspace/_account.scss */
.siret-verified .company-details {
  margin-top: 5px;
  padding: 8px;
  background-color: rgba(52, 168, 83, 0.1);
  border-radius: 4px;
}

/* line 6489, app/assets/stylesheets/pages/customerspace/_account.scss */
.siret-verified .company-details p {
  color: #fefefe;
  font-size: 0.8rem;
  font-weight: normal;
  margin: 3px 0;
}

/* line 6498, app/assets/stylesheets/pages/customerspace/_account.scss */
.siret-error {
  color: #EA4335;
  font-weight: bold;
}

/* line 6503, app/assets/stylesheets/pages/customerspace/_account.scss */
.siret-checking {
  color: #C38761;
  font-style: italic;
}

/* line 6508, app/assets/stylesheets/pages/customerspace/_account.scss */
.siret-verified-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(52, 168, 83, 0.1);
  color: #34A853;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.75rem;
  margin-left: 5px;
}

/* line 6518, app/assets/stylesheets/pages/customerspace/_account.scss */
.siret-verified-badge i {
  margin-right: 3px;
}

/* line 6524, app/assets/stylesheets/pages/customerspace/_account.scss */
.form-step.hidden {
  display: none !important;
}

/* line 6529, app/assets/stylesheets/pages/customerspace/_account.scss */
.form-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}

/* line 6536, app/assets/stylesheets/pages/customerspace/_account.scss */
.form-column {
  flex: 1;
  min-width: 250px;
}

@media (max-width: 767px) {
  /* line 6542, app/assets/stylesheets/pages/customerspace/_account.scss */
  .form-columns {
    flex-direction: column;
  }
  /* line 6546, app/assets/stylesheets/pages/customerspace/_account.scss */
  .form-column {
    width: 100%;
  }
}

/* Toggle Button - styles améliorés */
/* line 6552, app/assets/stylesheets/pages/customerspace/_account.scss */
.mode-toggler-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 15px;
  z-index: 10000;
}

/* line 6558, app/assets/stylesheets/pages/customerspace/_account.scss */
.mode-toggler-container label {
  opacity: 1;
}

/* line 6563, app/assets/stylesheets/pages/customerspace/_account.scss */
.mode-toggler {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
  margin: 0 5px;
}

/* line 6572, app/assets/stylesheets/pages/customerspace/_account.scss */
.mode-toggler input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* line 6578, app/assets/stylesheets/pages/customerspace/_account.scss */
.mode-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

/* line 6591, app/assets/stylesheets/pages/customerspace/_account.scss */
.mode-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

/* line 6603, app/assets/stylesheets/pages/customerspace/_account.scss */
input:checked + .mode-slider {
  background-color: #e8b972;
}

/* line 6607, app/assets/stylesheets/pages/customerspace/_account.scss */
input:focus + .mode-slider {
  box-shadow: 0 0 1px #e8b972;
}

/* line 6611, app/assets/stylesheets/pages/customerspace/_account.scss */
input:checked + .mode-slider:before {
  transform: translateX(26px);
}

/* line 6615, app/assets/stylesheets/pages/customerspace/_account.scss */
.mode-badge {
  font-size: 0.8rem;
  padding: 3px 8px;
  border-radius: 12px;
  font-weight: 600;
  min-width: 80px;
  text-align: center;
}

/* line 6624, app/assets/stylesheets/pages/customerspace/_account.scss */
.business-badge {
  background-color: #e8b972;
  color: #27293d;
}

/* line 6629, app/assets/stylesheets/pages/customerspace/_account.scss */
.personal-badge {
  background-color: #e8b972;
  color: white;
}

/* Animation pour le changement de mode */
/* line 6635, app/assets/stylesheets/pages/customerspace/_account.scss */
.mode-switching .mode-badge {
  animation: pulse 0.5s infinite alternate;
}

@keyframes pulse {
  from {
    opacity: 0.7;
  }
  to {
    opacity: 1;
  }
}

/* Card utilisateur pour mode Particulier */
/* line 6645, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-profile-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* line 6653, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-profile-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

/* line 6659, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 2px solid #e8b972;
}

/* line 6668, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-info {
  display: flex;
  flex-direction: column;
}

/* line 6673, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-name {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

/* line 6679, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-email {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 3px 0 0 0;
}

/* line 6685, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-details {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

/* line 6692, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-detail-item {
  display: flex;
  align-items: center;
}

/* line 6697, app/assets/stylesheets/pages/customerspace/_account.scss */
.detail-icon {
  margin-right: 10px;
  color: #e8b972;
  width: 16px;
  text-align: center;
}

/* line 6704, app/assets/stylesheets/pages/customerspace/_account.scss */
.detail-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 5px;
}

/* line 6710, app/assets/stylesheets/pages/customerspace/_account.scss */
.detail-value {
  font-size: 0.9rem;
  color: white;
}

/* line 6715, app/assets/stylesheets/pages/customerspace/_account.scss */
.mode-warning {
  background-color: rgba(232, 185, 114, 0.15);
  border-left: 3px solid #e8b972;
  padding: 15px;
  margin-top: 20px;
  border-radius: 0 5px 5px 0;
}

/* line 6723, app/assets/stylesheets/pages/customerspace/_account.scss */
.mode-warning i {
  color: #e8b972;
  margin-right: 8px;
}

/* line 6728, app/assets/stylesheets/pages/customerspace/_account.scss */
.mode-warning-title {
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

/* line 6735, app/assets/stylesheets/pages/customerspace/_account.scss */
.mode-warning-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}

/* line 6741, app/assets/stylesheets/pages/customerspace/_account.scss */
.tutorial-link {
  color: #e8b972;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
}

/* line 6750, app/assets/stylesheets/pages/customerspace/_account.scss */
.tutorial-link i {
  margin-left: 5px;
}

/* line 6754, app/assets/stylesheets/pages/customerspace/_account.scss */
.tutorial-link:hover {
  color: white;
}

/* line 6759, app/assets/stylesheets/pages/customerspace/_account.scss */
.dev-mode-toggler {
  background-color: rgba(255, 0, 0, 0.1);
  border: 1px dashed #ff0000;
  padding: 5px 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  position: relative;
  width: 100%;
}

/* line 6768, app/assets/stylesheets/pages/customerspace/_account.scss */
.dev-mode-toggler::before {
  content: "MODE DÉVELOPPEMENT";
  position: absolute;
  top: -10px;
  left: 10px;
  background-color: #1e1e2d;
  color: #ff0000;
  font-size: 10px;
  padding: 5px 5px;
  font-weight: bold;
}

/* line 6780, app/assets/stylesheets/pages/customerspace/_account.scss */
.dev-mode-toggler .mode-toggler-container {
  justify-content: center;
}

/* line 6786, app/assets/stylesheets/pages/customerspace/_account.scss */
.topics-counter {
  margin-top: 5px;
  text-align: right;
}

/* line 6790, app/assets/stylesheets/pages/customerspace/_account.scss */
.topics-counter .text-warning {
  color: #e8b972;
  font-weight: bold;
}

/* line 6795, app/assets/stylesheets/pages/customerspace/_account.scss */
.topics-counter .text-info {
  color: #4e92dc;
}

/* line 6801, app/assets/stylesheets/pages/customerspace/_account.scss */
.topics-limit-warning {
  color: #e8b972;
  font-size: 0.85em;
  margin-top: 4px;
  font-style: italic;
}

/* line 6809, app/assets/stylesheets/pages/customerspace/_account.scss */
#usersCountModal form {
  display: flex;
  flex-direction: column;
  padding: 0;
}

/* line 6814, app/assets/stylesheets/pages/customerspace/_account.scss */
#usersCountModal form .consent-checkbox {
  align-self: stretch;
}

/* Ajouter ces styles pour améliorer la section d'en-tête */
/* line 6820, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

/* line 6826, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-header .stats-container {
  display: flex;
  gap: 20px;
}

/* line 6830, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-header .stats-container .stat-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(254, 254, 254, 0.05);
  padding: 1rem 1.5rem;
  border-radius: 8px;
}

/* line 6838, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-header .stats-container .stat-card i {
  font-size: 1.8rem;
  color: #e8b972;
}

/* line 6843, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-header .stats-container .stat-card .stat-content {
  display: flex;
  flex-direction: column;
}

/* line 6847, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-header .stats-container .stat-card .stat-content .stat-value {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fefefe;
}

/* line 6853, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-header .stats-container .stat-card .stat-content .stat-label {
  font-size: 0.8rem;
  color: rgba(254, 254, 254, 0.7);
}

/* line 6861, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-header .add-user-btn {
  background: #e8b972;
  color: #1e1e2d;
  border: none;
  border-radius: 4px;
  padding: 0.8rem 1.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

/* line 6874, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-header .add-user-btn:hover {
  background: #e4ae5c;
}

/* line 6878, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-header .add-user-btn.disabled {
  background: rgba(254, 254, 254, 0.1);
  color: rgba(254, 254, 254, 0.5);
  cursor: not-allowed;
}

/* line 6884, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-header .add-user-btn i {
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  /* line 6820, app/assets/stylesheets/pages/customerspace/_account.scss */
  .users-header {
    flex-direction: column;
    gap: 20px;
  }
  /* line 6893, app/assets/stylesheets/pages/customerspace/_account.scss */
  .users-header .stats-container {
    flex-direction: column;
    width: 100%;
  }
  /* line 6898, app/assets/stylesheets/pages/customerspace/_account.scss */
  .users-header .add-user-btn {
    width: 100%;
    justify-content: center;
  }
}

/* line 6906, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-create-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0s 0.3s;
  pointer-events: none;
  transform: translateY(-50px);
}

/* line 6922, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-create-modal.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* line 6930, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-create-modal .modal-content {
  position: relative;
  background-color: rgba(254, 254, 254, 0.1);
  color: white;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  overflow: visible;
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.3s ease;
  padding: 0;
}

/* line 6944, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-create-modal .modal-content:hover {
  transform: translateY(0);
}

/* line 6948, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-create-modal .modal-content .close {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  color: #666666;
  background: none;
  border: none;
  padding: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background-color 0.2s, color 0.2s;
  z-index: 10;
  margin: 0 !important;
}

/* line 6969, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] .user-create-modal .modal-content .close {
  color: rgba(254, 254, 254, 0.7);
}

/* line 6973, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-create-modal .modal-content .close:hover {
  color: #000000;
  background-color: rgba(0, 0, 0, 0.1);
}

/* line 6977, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] .user-create-modal .modal-content .close:hover {
  color: #fefefe;
  background-color: rgba(254, 254, 254, 0.1);
}

/* line 6984, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-create-modal .modal-content h2, .user-create-modal .modal-content .h2 {
  margin: 0;
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  color: white;
}

/* line 6994, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-create-modal .modal-content form {
  padding: 1.5rem;
}

/* line 6997, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-create-modal .modal-content form .form-group {
  margin-bottom: 1.25rem !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

/* line 7004, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-create-modal .modal-content form .form-group label {
  display: block !important;
  font-weight: 500 !important;
  margin-bottom: 0.5rem !important;
  color: #fefefe !important;
  opacity: 1 !important;
  visibility: visible !important;
  font-size: 0.9rem !important;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.5) !important;
  width: 100% !important;
  text-align: center !important;
  padding-left: 1.5rem !important;
}

/* line 7018, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-create-modal .modal-content form .form-group input[type="text"],
.user-create-modal .modal-content form .form-group input[type="email"],
.user-create-modal .modal-content form .form-group input[type="tel"] {
  width: 85% !important;
  height: 38px !important;
  padding: 8px 12px !important;
  border-radius: 4px !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: white !important;
  font-size: 0.9rem !important;
  box-sizing: border-box !important;
  margin: 0 auto !important;
}

/* line 7032, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-create-modal .modal-content form .form-group input[type="text"]::placeholder,
.user-create-modal .modal-content form .form-group input[type="email"]::placeholder,
.user-create-modal .modal-content form .form-group input[type="tel"]::placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* line 7036, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-create-modal .modal-content form .form-group input[type="text"]:focus,
.user-create-modal .modal-content form .form-group input[type="email"]:focus,
.user-create-modal .modal-content form .form-group input[type="tel"]:focus {
  outline: none !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
  background-color: rgba(255, 255, 255, 0.15) !important;
}

/* line 7043, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-create-modal .modal-content form .form-group .role-selection {
  width: 100% !important;
  text-align: center !important;
}

/* line 7047, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-create-modal .modal-content form .form-group .role-selection .radio-group {
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
  align-items: center !important;
}

/* line 7053, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-create-modal .modal-content form .form-group .role-selection .radio-group .radio-option {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

/* line 7059, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-create-modal .modal-content form .form-group .role-selection .radio-group .radio-option input[type="radio"] {
  margin: 0 !important;
}

/* line 7063, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-create-modal .modal-content form .form-group .role-selection .radio-group .radio-option .radio-label {
  font-weight: 500 !important;
  color: #fefefe !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* line 7070, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-create-modal .modal-content form .form-group .role-selection .radio-group .radio-option small, .user-create-modal .modal-content form .form-group .role-selection .radio-group .radio-option .small {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.8rem !important;
  text-align: center !important;
}

/* line 7080, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-create-modal .modal-content form .form-actions {
  padding: 1rem 0 1rem 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* line 7086, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-create-modal .modal-content form .form-actions .form-button, .user-create-modal .modal-content form .form-actions .crm-action-button, .user-create-modal .modal-content form .form-actions .users-management-container .users-header .add-user-btn, .users-management-container .users-header .user-create-modal .modal-content form .form-actions .add-user-btn {
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
}

/* line 7094, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-create-modal .modal-content form .form-actions .form-button.secondary, .user-create-modal .modal-content form .form-actions .secondary.crm-action-button, .user-create-modal .modal-content form .form-actions .users-management-container .users-header .secondary.add-user-btn, .users-management-container .users-header .user-create-modal .modal-content form .form-actions .secondary.add-user-btn {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

/* line 7098, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-create-modal .modal-content form .form-actions .form-button.secondary:hover, .user-create-modal .modal-content form .form-actions .secondary.crm-action-button:hover, .user-create-modal .modal-content form .form-actions .users-management-container .users-header .secondary.add-user-btn:hover, .users-management-container .users-header .user-create-modal .modal-content form .form-actions .secondary.add-user-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* line 7103, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-create-modal .modal-content form .form-actions .form-button:not(.secondary), .user-create-modal .modal-content form .form-actions .crm-action-button:not(.secondary), .user-create-modal .modal-content form .form-actions .users-management-container .users-header .add-user-btn:not(.secondary), .users-management-container .users-header .user-create-modal .modal-content form .form-actions .add-user-btn:not(.secondary) {
  background-color: rgba(255, 255, 255, 0.3);
  color: white;
}

/* line 7107, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-create-modal .modal-content form .form-actions .form-button:not(.secondary):hover, .user-create-modal .modal-content form .form-actions .crm-action-button:not(.secondary):hover, .user-create-modal .modal-content form .form-actions .users-management-container .users-header .add-user-btn:not(.secondary):hover, .users-management-container .users-header .user-create-modal .modal-content form .form-actions .add-user-btn:not(.secondary):hover {
  background-color: rgba(255, 255, 255, 0.4);
}

/* line 7116, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-create-modal.active .modal-content {
  transform: translateY(0);
  opacity: 1;
}

/* line 6, app/assets/stylesheets/pages/customerspace/_user_modal.scss */
.user-create-modal .modal-content,
.user-edit-modal .modal-content {
  max-height: 70vh !important;
  max-width: 700px !important;
  width: 95% !important;
}

/* line 12, app/assets/stylesheets/pages/customerspace/_user_modal.scss */
.user-create-modal .modal-content h2, .user-create-modal .modal-content .h2,
.user-edit-modal .modal-content h2,
.user-edit-modal .modal-content .h2 {
  margin: 0 !important;
  padding: 1.2rem 1.5rem 0.8rem !important;
  font-size: 1.2rem !important;
}

/* line 18, app/assets/stylesheets/pages/customerspace/_user_modal.scss */
.user-create-modal .modal-content form,
.user-edit-modal .modal-content form {
  padding: 0.8rem 1.5rem 1rem !important;
}

/* line 23, app/assets/stylesheets/pages/customerspace/_user_modal.scss */
.user-create-modal .modal-content form .form-group label,
.user-edit-modal .modal-content form .form-group label {
  text-transform: capitalize !important;
  margin-bottom: 0.5rem !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 0.9rem !important;
}

/* line 32, app/assets/stylesheets/pages/customerspace/_user_modal.scss */
.user-create-modal .modal-content form .form-group.form-row,
.user-edit-modal .modal-content form .form-group.form-row {
  flex-direction: row !important;
  gap: 1.5rem !important;
  justify-content: space-between !important;
  align-items: stretch !important;
  margin-bottom: 1.5rem !important;
}

/* line 39, app/assets/stylesheets/pages/customerspace/_user_modal.scss */
.user-create-modal .modal-content form .form-group.form-row .form-column,
.user-edit-modal .modal-content form .form-group.form-row .form-column {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  max-width: 48% !important;
}

/* line 49, app/assets/stylesheets/pages/customerspace/_user_modal.scss */
.user-create-modal .modal-content form .form-group input[type="text"],
.user-create-modal .modal-content form .form-group input[type="email"],
.user-create-modal .modal-content form .form-group input[type="tel"],
.user-edit-modal .modal-content form .form-group input[type="text"],
.user-edit-modal .modal-content form .form-group input[type="email"],
.user-edit-modal .modal-content form .form-group input[type="tel"] {
  width: 100% !important;
  height: 38px !important;
  font-size: 0.9rem !important;
  border-radius: 6px !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: white !important;
  padding: 0 10px !important;
  transition: all 0.2s ease !important;
}

/* line 62, app/assets/stylesheets/pages/customerspace/_user_modal.scss */
.user-create-modal .modal-content form .form-group input[type="text"]:focus,
.user-create-modal .modal-content form .form-group input[type="email"]:focus,
.user-create-modal .modal-content form .form-group input[type="tel"]:focus,
.user-edit-modal .modal-content form .form-group input[type="text"]:focus,
.user-edit-modal .modal-content form .form-group input[type="email"]:focus,
.user-edit-modal .modal-content form .form-group input[type="tel"]:focus {
  outline: none !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
  background-color: rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1) !important;
}

/* line 69, app/assets/stylesheets/pages/customerspace/_user_modal.scss */
.user-create-modal .modal-content form .form-group input[type="text"]::placeholder,
.user-create-modal .modal-content form .form-group input[type="email"]::placeholder,
.user-create-modal .modal-content form .form-group input[type="tel"]::placeholder,
.user-edit-modal .modal-content form .form-group input[type="text"]::placeholder,
.user-edit-modal .modal-content form .form-group input[type="email"]::placeholder,
.user-edit-modal .modal-content form .form-group input[type="tel"]::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* line 75, app/assets/stylesheets/pages/customerspace/_user_modal.scss */
.user-create-modal .modal-content form .form-group.role-selection,
.user-edit-modal .modal-content form .form-group.role-selection {
  margin-top: 1rem !important;
  margin-bottom: 1.5rem !important;
}

/* line 80, app/assets/stylesheets/pages/customerspace/_user_modal.scss */
.user-create-modal .modal-content form .form-group.role-selection .role-question,
.user-edit-modal .modal-content form .form-group.role-selection .role-question {
  font-style: italic !important;
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.9rem !important;
  text-align: center !important;
  margin-bottom: 1rem !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
}

/* line 90, app/assets/stylesheets/pages/customerspace/_user_modal.scss */
.user-create-modal .modal-content form .form-group.role-selection .radio-group,
.user-edit-modal .modal-content form .form-group.role-selection .radio-group {
  flex-direction: row !important;
  gap: 1.2rem !important;
  justify-content: center !important;
}

/* line 95, app/assets/stylesheets/pages/customerspace/_user_modal.scss */
.user-create-modal .modal-content form .form-group.role-selection .radio-group .radio-option,
.user-edit-modal .modal-content form .form-group.role-selection .radio-group .radio-option {
  background: rgba(255, 255, 255, 0.1) !important;
  padding: 1.2rem !important;
  border-radius: 10px !important;
  border: 2px solid transparent !important;
  transition: all 0.3s ease !important;
  min-width: 130px !important;
  position: relative !important;
  cursor: pointer !important;
}

/* line 105, app/assets/stylesheets/pages/customerspace/_user_modal.scss */
.user-create-modal .modal-content form .form-group.role-selection .radio-group .radio-option:hover,
.user-edit-modal .modal-content form .form-group.role-selection .radio-group .radio-option:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

/* line 113, app/assets/stylesheets/pages/customerspace/_user_modal.scss */
.user-create-modal .modal-content form .form-group.role-selection .radio-group .radio-option.selected,
.user-edit-modal .modal-content form .form-group.role-selection .radio-group .radio-option.selected {
  background: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(195, 135, 97, 0.6) !important;
  box-shadow: 0 0 20px rgba(195, 135, 97, 0.3) !important;
}

/* line 120, app/assets/stylesheets/pages/customerspace/_user_modal.scss */
.user-create-modal .modal-content form .form-group.role-selection .radio-group .radio-option input[type="radio"],
.user-edit-modal .modal-content form .form-group.role-selection .radio-group .radio-option input[type="radio"] {
  display: none !important;
}

/* line 125, app/assets/stylesheets/pages/customerspace/_user_modal.scss */
.user-create-modal .modal-content form .form-group.role-selection .radio-group .radio-option input[type="radio"]:checked + .radio-label,
.user-edit-modal .modal-content form .form-group.role-selection .radio-group .radio-option input[type="radio"]:checked + .radio-label {
  color: #C38761 !important;
  font-weight: 600 !important;
}

/* line 130, app/assets/stylesheets/pages/customerspace/_user_modal.scss */
.user-create-modal .modal-content form .form-group.role-selection .radio-group .radio-option input[type="radio"]:checked ~ small, .user-create-modal .modal-content form .form-group.role-selection .radio-group .radio-option input[type="radio"]:checked ~ .small,
.user-edit-modal .modal-content form .form-group.role-selection .radio-group .radio-option input[type="radio"]:checked ~ small,
.user-edit-modal .modal-content form .form-group.role-selection .radio-group .radio-option input[type="radio"]:checked ~ .small {
  color: rgba(195, 135, 97, 0.8) !important;
}

/* line 135, app/assets/stylesheets/pages/customerspace/_user_modal.scss */
.user-create-modal .modal-content form .form-group.role-selection .radio-group .radio-option input[type="radio"]:checked ~ .radio-label::before,
.user-edit-modal .modal-content form .form-group.role-selection .radio-group .radio-option input[type="radio"]:checked ~ .radio-label::before {
  content: '✓' !important;
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  background: #C38761 !important;
  color: #1e1e2d !important;
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 12px !important;
  font-weight: bold !important;
}

/* line 152, app/assets/stylesheets/pages/customerspace/_user_modal.scss */
.user-create-modal .modal-content form .form-group.role-selection .radio-group .radio-option .radio-label,
.user-edit-modal .modal-content form .form-group.role-selection .radio-group .radio-option .radio-label {
  font-weight: 600 !important;
  color: #fefefe !important;
  margin: 0 0 0.5rem 0 !important;
  padding: 0 !important;
  text-transform: uppercase !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.8px !important;
  text-align: center !important;
}

/* line 163, app/assets/stylesheets/pages/customerspace/_user_modal.scss */
.user-create-modal .modal-content form .form-group.role-selection .radio-group .radio-option small, .user-create-modal .modal-content form .form-group.role-selection .radio-group .radio-option .small,
.user-edit-modal .modal-content form .form-group.role-selection .radio-group .radio-option small,
.user-edit-modal .modal-content form .form-group.role-selection .radio-group .radio-option .small {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.75rem !important;
  text-align: center !important;
  line-height: 1.4 !important;
  max-width: 120px !important;
}

/* line 176, app/assets/stylesheets/pages/customerspace/_user_modal.scss */
.user-create-modal .modal-content form .form-actions,
.user-edit-modal .modal-content form .form-actions {
  padding: 1rem 0 0.5rem 0 !important;
  gap: 1.2rem !important;
}

/* line 180, app/assets/stylesheets/pages/customerspace/_user_modal.scss */
.user-create-modal .modal-content form .form-actions .form-button, .user-create-modal .modal-content form .form-actions .crm-action-button, .user-create-modal .modal-content form .form-actions .users-management-container .users-header .add-user-btn, .users-management-container .users-header .user-create-modal .modal-content form .form-actions .add-user-btn,
.user-edit-modal .modal-content form .form-actions .form-button,
.user-edit-modal .modal-content form .form-actions .crm-action-button,
.user-edit-modal .modal-content form .form-actions .users-management-container .users-header .add-user-btn,
.users-management-container .users-header .user-edit-modal .modal-content form .form-actions .add-user-btn {
  padding: 0.75rem 1.5rem !important;
  border-radius: 6px !important;
  font-weight: 500 !important;
  font-size: 0.9rem !important;
  min-width: 140px !important;
  transition: all 0.2s ease !important;
  border: none !important;
  cursor: pointer !important;
}

/* line 190, app/assets/stylesheets/pages/customerspace/_user_modal.scss */
.user-create-modal .modal-content form .form-actions .form-button.secondary, .user-create-modal .modal-content form .form-actions .secondary.crm-action-button, .user-create-modal .modal-content form .form-actions .users-management-container .users-header .secondary.add-user-btn, .users-management-container .users-header .user-create-modal .modal-content form .form-actions .secondary.add-user-btn,
.user-edit-modal .modal-content form .form-actions .form-button.secondary,
.user-edit-modal .modal-content form .form-actions .secondary.crm-action-button,
.user-edit-modal .modal-content form .form-actions .users-management-container .users-header .secondary.add-user-btn,
.users-management-container .users-header .user-edit-modal .modal-content form .form-actions .secondary.add-user-btn {
  background-color: rgba(255, 255, 255, 0.2) !important;
  color: white !important;
}

/* line 195, app/assets/stylesheets/pages/customerspace/_user_modal.scss */
.user-create-modal .modal-content form .form-actions .form-button.secondary:hover, .user-create-modal .modal-content form .form-actions .secondary.crm-action-button:hover, .user-create-modal .modal-content form .form-actions .users-management-container .users-header .secondary.add-user-btn:hover, .users-management-container .users-header .user-create-modal .modal-content form .form-actions .secondary.add-user-btn:hover,
.user-edit-modal .modal-content form .form-actions .form-button.secondary:hover,
.user-edit-modal .modal-content form .form-actions .secondary.crm-action-button:hover,
.user-edit-modal .modal-content form .form-actions .users-management-container .users-header .secondary.add-user-btn:hover,
.users-management-container .users-header .user-edit-modal .modal-content form .form-actions .secondary.add-user-btn:hover {
  background-color: rgba(255, 255, 255, 0.3) !important;
}

/* line 201, app/assets/stylesheets/pages/customerspace/_user_modal.scss */
.user-create-modal .modal-content form .form-actions .form-button:not(.secondary), .user-create-modal .modal-content form .form-actions .crm-action-button:not(.secondary), .user-create-modal .modal-content form .form-actions .users-management-container .users-header .add-user-btn:not(.secondary), .users-management-container .users-header .user-create-modal .modal-content form .form-actions .add-user-btn:not(.secondary),
.user-edit-modal .modal-content form .form-actions .form-button:not(.secondary),
.user-edit-modal .modal-content form .form-actions .crm-action-button:not(.secondary),
.user-edit-modal .modal-content form .form-actions .users-management-container .users-header .add-user-btn:not(.secondary),
.users-management-container .users-header .user-edit-modal .modal-content form .form-actions .add-user-btn:not(.secondary) {
  background-color: #e8b972 !important;
  color: rgba(0, 0, 0, 0.8) !important;
  font-weight: 500 !important;
  border: none !important;
}

/* line 207, app/assets/stylesheets/pages/customerspace/_user_modal.scss */
.user-create-modal .modal-content form .form-actions .form-button:not(.secondary):hover, .user-create-modal .modal-content form .form-actions .crm-action-button:not(.secondary):hover, .user-create-modal .modal-content form .form-actions .users-management-container .users-header .add-user-btn:not(.secondary):hover, .users-management-container .users-header .user-create-modal .modal-content form .form-actions .add-user-btn:not(.secondary):hover,
.user-edit-modal .modal-content form .form-actions .form-button:not(.secondary):hover,
.user-edit-modal .modal-content form .form-actions .crm-action-button:not(.secondary):hover,
.user-edit-modal .modal-content form .form-actions .users-management-container .users-header .add-user-btn:not(.secondary):hover,
.users-management-container .users-header .user-edit-modal .modal-content form .form-actions .add-user-btn:not(.secondary):hover {
  background-color: #c19a4f !important;
}

/* line 218, app/assets/stylesheets/pages/customerspace/_user_modal.scss */
.last-admin-warning {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background-color: rgba(255, 193, 7, 0.15);
  border: 1px solid rgba(255, 193, 7, 0.4);
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: #ffc107;
}

/* line 230, app/assets/stylesheets/pages/customerspace/_user_modal.scss */
.last-admin-warning i {
  color: #ffc107;
  font-size: 1rem;
  flex-shrink: 0;
}

/* line 236, app/assets/stylesheets/pages/customerspace/_user_modal.scss */
.last-admin-warning span {
  line-height: 1.4;
}

/* line 243, app/assets/stylesheets/pages/customerspace/_user_modal.scss */
.user-edit-modal .radio-option.disabled {
  opacity: 0.5;
  cursor: not-allowed !important;
  pointer-events: none;
}

/* line 248, app/assets/stylesheets/pages/customerspace/_user_modal.scss */
.user-edit-modal .radio-option.disabled:hover {
  transform: none !important;
  box-shadow: none !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: transparent !important;
}

/* line 255, app/assets/stylesheets/pages/customerspace/_user_modal.scss */
.user-edit-modal .radio-option.disabled .role-radio {
  cursor: not-allowed !important;
}

@media (max-width: 768px) {
  /* line 265, app/assets/stylesheets/pages/customerspace/_user_modal.scss */
  .user-create-modal .modal-content form .form-group.form-row,
.user-edit-modal .modal-content form .form-group.form-row {
    flex-direction: column !important;
    gap: 0.5rem !important;
  }
  /* line 269, app/assets/stylesheets/pages/customerspace/_user_modal.scss */
  .user-create-modal .modal-content form .form-group.form-row .form-column,
.user-edit-modal .modal-content form .form-group.form-row .form-column {
    width: 100% !important;
  }
  /* line 274, app/assets/stylesheets/pages/customerspace/_user_modal.scss */
  .user-create-modal .role-selection .radio-group,
.user-edit-modal .role-selection .radio-group {
    flex-direction: column !important;
    gap: 1rem !important;
  }
}

/* line 2, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page {
  min-height: 100vh;
  padding: 2rem;
  background: linear-gradient(135deg, #0a0a14 0%, #141423 100%);
  color: #ffffff;
}

/* line 8, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goals-header {
  margin-bottom: 2rem;
}

/* line 11, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goals-header .goals-actions {
  margin-bottom: 1rem;
}

/* line 15, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goals-header .goals-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
}

/* line 23, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goals-container-card {
  max-width: 900px;
  margin: 0 auto;
}

/* line 28, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goals-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* line 34, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goals-header-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* line 45, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goals-header-section .header-content {
  flex: 1;
}

/* line 48, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goals-header-section .header-content h2, .goals-page .goals-header-section .header-content .h2 {
  margin: 0 0 0.5rem 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* line 57, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goals-header-section .header-content h2 i, .goals-page .goals-header-section .header-content .h2 i {
  color: rgba(125, 211, 252, 0.8);
}

/* line 62, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goals-header-section .header-content .header-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* line 69, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goals-header-section .btn-create-goal {
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 82, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goals-header-section .btn-create-goal:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* line 90, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goal-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* line 98, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goal-card .goal-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

/* line 104, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goal-card .goal-card-header h3, .goals-page .goal-card .goal-card-header .h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* line 113, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goal-card .goal-card-header h3 i, .goals-page .goal-card .goal-card-header .h3 i {
  color: rgba(125, 211, 252, 0.8);
}

/* line 118, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goal-card .goal-card-header .goal-badge {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* line 124, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goal-card .goal-card-header .goal-badge.active {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

/* line 129, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goal-card .goal-card-header .goal-badge.inactive {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* line 137, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goal-card .goal-progress-section .goal-progress-header {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

/* line 143, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goal-card .goal-progress-section .goal-progress-header .goal-target,
.goals-page .goal-card .goal-progress-section .goal-progress-header .goal-current,
.goals-page .goal-card .goal-progress-section .goal-progress-header .goal-percentage {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* line 150, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goal-card .goal-progress-section .goal-progress-header .goal-target .goal-label,
.goals-page .goal-card .goal-progress-section .goal-progress-header .goal-current .goal-label,
.goals-page .goal-card .goal-progress-section .goal-progress-header .goal-percentage .goal-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 157, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goal-card .goal-progress-section .goal-progress-header .goal-target .goal-amount,
.goals-page .goal-card .goal-progress-section .goal-progress-header .goal-current .goal-amount,
.goals-page .goal-card .goal-progress-section .goal-progress-header .goal-percentage .goal-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

/* line 162, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goal-card .goal-progress-section .goal-progress-header .goal-target .goal-amount.on_track,
.goals-page .goal-card .goal-progress-section .goal-progress-header .goal-current .goal-amount.on_track,
.goals-page .goal-card .goal-progress-section .goal-progress-header .goal-percentage .goal-amount.on_track {
  color: #22c55e;
}

/* line 166, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goal-card .goal-progress-section .goal-progress-header .goal-target .goal-amount.at_risk,
.goals-page .goal-card .goal-progress-section .goal-progress-header .goal-current .goal-amount.at_risk,
.goals-page .goal-card .goal-progress-section .goal-progress-header .goal-percentage .goal-amount.at_risk {
  color: #fbbf24;
}

/* line 170, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goal-card .goal-progress-section .goal-progress-header .goal-target .goal-amount.behind,
.goals-page .goal-card .goal-progress-section .goal-progress-header .goal-current .goal-amount.behind,
.goals-page .goal-card .goal-progress-section .goal-progress-header .goal-percentage .goal-amount.behind {
  color: #ef4444;
}

/* line 177, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goal-card .goal-progress-section .goal-progress-bar {
  width: 100%;
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 1rem;
}

/* line 185, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goal-card .goal-progress-section .goal-progress-bar .goal-progress-fill {
  height: 100%;
  transition: width 0.3s ease;
  border-radius: 6px;
}

/* line 190, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goal-card .goal-progress-section .goal-progress-bar .goal-progress-fill.on_track {
  background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
}

/* line 194, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goal-card .goal-progress-section .goal-progress-bar .goal-progress-fill.at_risk {
  background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
}

/* line 198, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goal-card .goal-progress-section .goal-progress-bar .goal-progress-fill.behind {
  background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
}

/* line 204, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goal-card .goal-progress-section .goal-progress-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* line 209, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goal-card .goal-progress-section .goal-progress-footer .goal-status-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 214, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goal-card .goal-progress-section .goal-progress-footer .goal-status-info .status-icon {
  font-size: 1.2rem;
}

/* line 217, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goal-card .goal-progress-section .goal-progress-footer .goal-status-info .status-icon.on_track {
  color: #22c55e;
}

/* line 221, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goal-card .goal-progress-section .goal-progress-footer .goal-status-info .status-icon.at_risk {
  color: #fbbf24;
}

/* line 225, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goal-card .goal-progress-section .goal-progress-footer .goal-status-info .status-icon.behind {
  color: #ef4444;
}

/* line 230, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goal-card .goal-progress-section .goal-progress-footer .goal-status-info .status-text {
  font-weight: 600;
}

/* line 233, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goal-card .goal-progress-section .goal-progress-footer .goal-status-info .status-text.on_track {
  color: #22c55e;
}

/* line 237, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goal-card .goal-progress-section .goal-progress-footer .goal-status-info .status-text.at_risk {
  color: #fbbf24;
}

/* line 241, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goal-card .goal-progress-section .goal-progress-footer .goal-status-info .status-text.behind {
  color: #ef4444;
}

/* line 247, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goal-card .goal-progress-section .goal-progress-footer .goal-days-remaining {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* line 257, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goal-card .goal-empty-state {
  text-align: center;
  padding: 3rem 2rem;
}

/* line 261, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goal-card .goal-empty-state .empty-icon {
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1rem;
}

/* line 267, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goal-card .goal-empty-state h3, .goals-page .goal-card .goal-empty-state .h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.5rem;
  color: #ffffff;
}

/* line 273, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goal-card .goal-empty-state p {
  margin: 0 0 2rem 0;
  color: rgba(255, 255, 255, 0.7);
}

/* line 278, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goal-card .goal-empty-state .btn-create-first-goal {
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 291, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goal-card .goal-empty-state .btn-create-first-goal:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* line 300, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goal-info-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* line 308, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goal-info-card h4, .goals-page .goal-info-card .h4 {
  margin: 0 0 1rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* line 317, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goal-info-card h4 i, .goals-page .goal-info-card .h4 i {
  color: rgba(125, 211, 252, 0.8);
}

/* line 322, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goal-info-card .goal-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* line 330, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goal-info-card .goal-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* line 336, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goal-info-card .goal-info-list li i {
  color: #22c55e;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* line 342, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goal-info-card .goal-info-list li span {
  flex: 1;
  line-height: 1.6;
}

/* line 350, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goals-form-container {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* line 359, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goals-form-container .goal-form .form-section {
  margin-bottom: 2rem;
}

/* line 362, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goals-form-container .goal-form .form-section h2, .goals-page .goals-form-container .goal-form .form-section .h2 {
  margin: 0 0 0.5rem 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* line 371, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goals-form-container .goal-form .form-section h2 i, .goals-page .goals-form-container .goal-form .form-section .h2 i {
  color: rgba(125, 211, 252, 0.8);
}

/* line 376, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goals-form-container .goal-form .form-section .form-description {
  margin: 0 0 1.5rem 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* line 383, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goals-form-container .goal-form .form-group {
  margin-bottom: 1.5rem;
}

/* line 386, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goals-form-container .goal-form .form-group .form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #ffffff;
}

/* line 393, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goals-form-container .goal-form .form-group .input-with-icon {
  position: relative;
}

/* line 396, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goals-form-container .goal-form .form-group .input-with-icon .input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
}

/* line 404, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goals-form-container .goal-form .form-group .input-with-icon .support-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 3rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
}

/* line 413, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goals-form-container .goal-form .form-group .input-with-icon .support-input:focus {
  outline: none;
  border-color: rgba(125, 211, 252, 0.5);
  background: rgba(255, 255, 255, 0.15);
}

/* line 419, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goals-form-container .goal-form .form-group .input-with-icon .support-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* line 425, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goals-form-container .goal-form .form-group .form-hint {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* line 433, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goals-form-container .goal-form .form-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 2rem;
}

/* line 439, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goals-form-container .goal-form .form-actions .btn {
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 448, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goals-form-container .goal-form .form-actions .btn.btn-primary, .goals-page .goals-form-container .goal-form .form-actions .btn.crm-action-button.crm-action-button-primary {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* line 453, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goals-form-container .goal-form .form-actions .btn.btn-primary:hover, .goals-page .goals-form-container .goal-form .form-actions .btn.crm-action-button.crm-action-button-primary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* line 460, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goals-form-container .goal-form .form-actions .btn.btn-secondary, .goals-page .goals-form-container .goal-form .form-actions .btn.crm-action-button.crm-action-button-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

/* line 465, app/assets/stylesheets/pages/customerspace/_goals.scss */
.goals-page .goals-form-container .goal-form .form-actions .btn.btn-secondary:hover, .goals-page .goals-form-container .goal-form .form-actions .btn.crm-action-button.crm-action-button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* line 7127, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-edit-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0s 0.3s;
  pointer-events: none;
  transform: translateY(-50px);
}

/* line 7143, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-edit-modal.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* line 7151, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-edit-modal .modal-content {
  position: relative;
  background-color: rgba(254, 254, 254, 0.1);
  color: white;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  overflow: visible;
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.3s ease;
  padding: 0;
}

/* line 7165, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-edit-modal .modal-content:hover {
  transform: translateY(0);
}

/* line 7169, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-edit-modal .modal-content .close {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  color: #666666;
  background: none;
  border: none;
  padding: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background-color 0.2s, color 0.2s;
  z-index: 10;
  margin: 0 !important;
}

/* line 7190, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] .user-edit-modal .modal-content .close {
  color: rgba(254, 254, 254, 0.7);
}

/* line 7194, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-edit-modal .modal-content .close:hover {
  color: #000000;
  background-color: rgba(0, 0, 0, 0.1);
}

/* line 7198, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] .user-edit-modal .modal-content .close:hover {
  color: #fefefe;
  background-color: rgba(254, 254, 254, 0.1);
}

/* line 7205, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-edit-modal .modal-content h2, .user-edit-modal .modal-content .h2 {
  margin: 0;
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  color: white;
}

/* line 7215, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-edit-modal .modal-content form {
  padding: 1.5rem;
}

/* line 7218, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-edit-modal .modal-content form .form-group {
  margin-bottom: 1.25rem !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

/* line 7225, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-edit-modal .modal-content form .form-group label {
  display: block !important;
  font-weight: 500 !important;
  margin-bottom: 0.5rem !important;
  color: #fefefe !important;
  opacity: 1 !important;
  visibility: visible !important;
  font-size: 0.9rem !important;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.5) !important;
  width: 100% !important;
  text-align: center !important;
  padding-left: 1.5rem !important;
}

/* line 7239, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-edit-modal .modal-content form .form-group input[type="text"],
.user-edit-modal .modal-content form .form-group input[type="email"],
.user-edit-modal .modal-content form .form-group input[type="tel"] {
  width: 85% !important;
  height: 38px !important;
  padding: 8px 12px !important;
  border-radius: 4px !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: white !important;
  font-size: 0.9rem !important;
  box-sizing: border-box !important;
  margin: 0 auto !important;
}

/* line 7253, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-edit-modal .modal-content form .form-group input[type="text"]::placeholder,
.user-edit-modal .modal-content form .form-group input[type="email"]::placeholder,
.user-edit-modal .modal-content form .form-group input[type="tel"]::placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* line 7257, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-edit-modal .modal-content form .form-group input[type="text"]:focus,
.user-edit-modal .modal-content form .form-group input[type="email"]:focus,
.user-edit-modal .modal-content form .form-group input[type="tel"]:focus {
  outline: none !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
  background-color: rgba(255, 255, 255, 0.15) !important;
}

/* line 7264, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-edit-modal .modal-content form .form-group .role-selection {
  width: 100% !important;
  text-align: center !important;
}

/* line 7268, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-edit-modal .modal-content form .form-group .role-selection .radio-group {
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
  align-items: center !important;
}

/* line 7274, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-edit-modal .modal-content form .form-group .role-selection .radio-group .radio-option {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

/* line 7280, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-edit-modal .modal-content form .form-group .role-selection .radio-group .radio-option input[type="radio"] {
  margin: 0 !important;
}

/* line 7284, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-edit-modal .modal-content form .form-group .role-selection .radio-group .radio-option .radio-label {
  font-weight: 500 !important;
  color: #fefefe !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* line 7291, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-edit-modal .modal-content form .form-group .role-selection .radio-group .radio-option small, .user-edit-modal .modal-content form .form-group .role-selection .radio-group .radio-option .small {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.8rem !important;
  text-align: center !important;
}

/* line 7301, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-edit-modal .modal-content form .form-actions {
  padding: 1rem 0 1rem 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* line 7307, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-edit-modal .modal-content form .form-actions .form-button, .user-edit-modal .modal-content form .form-actions .crm-action-button, .user-edit-modal .modal-content form .form-actions .users-management-container .users-header .add-user-btn, .users-management-container .users-header .user-edit-modal .modal-content form .form-actions .add-user-btn {
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
}

/* line 7315, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-edit-modal .modal-content form .form-actions .form-button.secondary, .user-edit-modal .modal-content form .form-actions .secondary.crm-action-button, .user-edit-modal .modal-content form .form-actions .users-management-container .users-header .secondary.add-user-btn, .users-management-container .users-header .user-edit-modal .modal-content form .form-actions .secondary.add-user-btn {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

/* line 7319, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-edit-modal .modal-content form .form-actions .form-button.secondary:hover, .user-edit-modal .modal-content form .form-actions .secondary.crm-action-button:hover, .user-edit-modal .modal-content form .form-actions .users-management-container .users-header .secondary.add-user-btn:hover, .users-management-container .users-header .user-edit-modal .modal-content form .form-actions .secondary.add-user-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* line 7324, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-edit-modal .modal-content form .form-actions .form-button:not(.secondary), .user-edit-modal .modal-content form .form-actions .crm-action-button:not(.secondary), .user-edit-modal .modal-content form .form-actions .users-management-container .users-header .add-user-btn:not(.secondary), .users-management-container .users-header .user-edit-modal .modal-content form .form-actions .add-user-btn:not(.secondary) {
  background-color: rgba(255, 255, 255, 0.3);
  color: white;
}

/* line 7328, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-edit-modal .modal-content form .form-actions .form-button:not(.secondary):hover, .user-edit-modal .modal-content form .form-actions .crm-action-button:not(.secondary):hover, .user-edit-modal .modal-content form .form-actions .users-management-container .users-header .add-user-btn:not(.secondary):hover, .users-management-container .users-header .user-edit-modal .modal-content form .form-actions .add-user-btn:not(.secondary):hover {
  background-color: rgba(255, 255, 255, 0.4);
}

/* line 7337, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-edit-modal.active .modal-content {
  transform: translateY(0);
  opacity: 1;
}

/* line 7344, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* line 7356, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal.active {
  display: flex;
}

/* line 7360, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal .modal-content {
  background: linear-gradient(135deg, #1e1e2d, #2d2a40);
  padding: 25px;
  width: 95%;
  max-width: 800px;
  border-radius: 8px;
  border-left: 4px solid #C38761;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(-20px);
  transition: all 0.3s ease;
}

/* line 7374, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal .modal-content::-webkit-scrollbar {
  width: 8px;
}

/* line 7378, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal .modal-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

/* line 7383, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal .modal-content::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 8px;
}

/* line 7388, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal .modal-content h2, .user-access-modal .modal-content .h2 {
  color: #C38761;
  margin-bottom: 10px;
}

/* line 7393, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal .modal-content .close {
  position: absolute;
  top: 15px;
  right: 15px;
  color: rgba(254, 254, 254, 0.7);
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
}

/* line 7402, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal .modal-content .close:hover {
  color: #fefefe;
}

/* line 7408, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal.active .modal-content {
  transform: translateY(0);
}

/* line 7412, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal .modal-subtitle {
  color: rgba(254, 254, 254, 0.8);
  margin-bottom: 20px;
  font-size: 0.9rem;
}

/* line 7418, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal .admin-notice {
  background-color: rgba(195, 135, 97, 0.1);
  border-left: 3px solid #C38761;
  padding: 10px 15px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

/* line 7426, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal .admin-notice i {
  color: #C38761;
  margin-right: 10px;
  font-size: 1.2rem;
}

/* line 7433, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal .access-tabs {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(254, 254, 254, 0.1);
}

/* line 7439, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal .access-tabs .tab-btn {
  background: none;
  border: none;
  color: rgba(254, 254, 254, 0.7);
  padding: 10px 20px;
  font-size: 0.9rem;
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
}

/* line 7449, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal .access-tabs .tab-btn:hover {
  color: #fefefe;
}

/* line 7453, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal .access-tabs .tab-btn.active {
  color: #C38761;
  font-weight: 500;
}

/* line 7457, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal .access-tabs .tab-btn.active:after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #C38761;
}

/* line 7470, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal .access-tab-content {
  display: none;
}

/* line 7473, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal .access-tab-content.active {
  display: block;
  animation: accessFadeIn 0.3s ease;
}

/* line 7479, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal .app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

/* line 7486, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal .app-access-card {
  background: rgba(254, 254, 254, 0.04);
  border-radius: 8px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s;
}

/* line 7494, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal .app-access-card:hover {
  background: rgba(254, 254, 254, 0.06);
}

/* line 7498, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal .app-access-card .app-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

/* line 7503, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal .app-access-card .app-header i {
  color: #C38761;
  font-size: 1.2rem;
  margin-right: 10px;
}

/* line 7509, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal .app-access-card .app-header .app-name {
  font-weight: 500;
  color: #fefefe;
}

/* line 7515, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal .app-access-card .app-description {
  font-size: 0.8rem;
  color: rgba(254, 254, 254, 0.7);
  margin-bottom: 15px;
  flex-grow: 1;
}

/* line 7522, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal .app-access-card .toggle-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* line 7527, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal .app-access-card .toggle-container .toggle-label {
  font-size: 0.85rem;
  color: rgba(254, 254, 254, 0.9);
}

/* line 7532, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal .app-access-card .toggle-container .switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
}

/* line 7538, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal .app-access-card .toggle-container .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* line 7543, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal .app-access-card .toggle-container .switch input:checked + .slider {
  background-color: #C38761;
}

/* line 7546, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal .app-access-card .toggle-container .switch input:checked + .slider:before {
  transform: translateX(18px);
}

/* line 7551, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal .app-access-card .toggle-container .switch input:disabled + .slider {
  opacity: 0.5;
  cursor: not-allowed;
}

/* line 7557, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal .app-access-card .toggle-container .switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(254, 254, 254, 0.2);
  transition: .4s;
  border-radius: 22px;
}

/* line 7568, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal .app-access-card .toggle-container .switch .slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: #fefefe;
  transition: .4s;
  border-radius: 50%;
}

@keyframes accessFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* line 7591, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-password-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* line 7603, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-password-modal.active {
  display: flex;
}

/* line 7607, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-password-modal .modal-content {
  background: linear-gradient(135deg, #1e1e2d, #332d40);
  padding: 25px;
  width: 95%;
  max-width: 450px;
  border-radius: 8px;
  border-left: 4px solid #FF9800;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(-20px);
  transition: all 0.3s ease;
}

/* line 7621, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-password-modal .modal-content::-webkit-scrollbar {
  width: 8px;
}

/* line 7625, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-password-modal .modal-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

/* line 7630, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-password-modal .modal-content::-webkit-scrollbar-thumb {
  background: #FF9800;
  border-radius: 8px;
}

/* line 7635, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-password-modal .modal-content h2, .user-password-modal .modal-content .h2 {
  color: #FF9800;
  margin-bottom: 10px;
}

/* line 7640, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-password-modal .modal-content .close {
  position: absolute;
  top: 15px;
  right: 15px;
  color: rgba(254, 254, 254, 0.7);
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
}

/* line 7649, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-password-modal .modal-content .close:hover {
  color: #fefefe;
}

/* line 7655, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-password-modal.active .modal-content {
  transform: translateY(0);
}

/* line 7659, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-password-modal .password-reset-info {
  background: rgba(255, 152, 0, 0.1);
  border-left: 3px solid #FF9800;
  padding: 15px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
}

/* line 7667, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-password-modal .password-reset-info i {
  color: #FF9800;
  margin-right: 12px;
  font-size: 1.2rem;
  margin-top: 3px;
}

/* line 7674, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-password-modal .password-reset-info p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

@keyframes passwordFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* line 7687, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-limit-indicator {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-right: 15px;
  padding: 8px 12px;
  background: rgba(254, 254, 254, 0.03);
  border-radius: 6px;
  border: 1px solid rgba(254, 254, 254, 0.08);
}

/* line 7697, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-limit-indicator .count-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 7702, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-limit-indicator .count-wrapper .count-label {
  font-size: 0.9rem;
  color: rgba(254, 254, 254, 0.7);
}

/* line 7707, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-limit-indicator .count-wrapper .count-value {
  font-weight: 500;
  padding: 4px 10px;
  background: rgba(195, 135, 97, 0.15);
  border-radius: 30px;
  font-size: 0.9rem;
}

/* line 7714, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-limit-indicator .count-wrapper .count-value.count-limit-reached {
  background: rgba(220, 53, 69, 0.2);
  color: #ff6b6b;
}

/* line 7721, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-limit-indicator .limit-alert {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ff6b6b;
  font-size: 0.85rem;
}

/* line 7728, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-limit-indicator .limit-alert i {
  font-size: 1rem;
}

/* line 7733, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-limit-indicator .upgrade-subscription-link {
  color: #C38761;
  font-size: 0.85rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

/* line 7742, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-limit-indicator .upgrade-subscription-link:hover {
  color: #d1a386;
  text-decoration: underline;
}

/* line 7750, app/assets/stylesheets/pages/customerspace/_account.scss */
.add-user-btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* line 7754, app/assets/stylesheets/pages/customerspace/_account.scss */
.add-user-btn.disabled:hover, .add-user-btn.disabled:focus {
  background-color: #C38761;
  transform: none;
}

/* Style pour les applications non disponibles dans l'abonnement */
/* line 7762, app/assets/stylesheets/pages/customerspace/_account.scss */
.app-access-card.app-unavailable {
  opacity: 0.5;
  position: relative;
  pointer-events: none;
  /* Empêche les interactions */
}

/* line 7768, app/assets/stylesheets/pages/customerspace/_account.scss */
.app-access-card.app-unavailable::after {
  content: "Non disponible";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  border-radius: 8px;
}

/* Style pour la notice d'administrateur */
/* line 7785, app/assets/stylesheets/pages/customerspace/_account.scss */
.admin-access-notice {
  background-color: rgba(232, 185, 114, 0.2);
  border: 1px solid #e8b972;
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 7796, app/assets/stylesheets/pages/customerspace/_account.scss */
.admin-access-notice i {
  font-size: 1.5rem;
  color: #e8b972;
}

/* line 7801, app/assets/stylesheets/pages/customerspace/_account.scss */
.admin-access-notice p {
  margin: 0;
  color: white;
}

/* line 7806, app/assets/stylesheets/pages/customerspace/_account.scss */
.status-badge.inactive {
  background-color: #888;
  color: white;
}

/* Ajouter à la fin du fichier */
/* line 7812, app/assets/stylesheets/pages/customerspace/_account.scss */
.pricing-option.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  position: relative;
}

/* line 7818, app/assets/stylesheets/pages/customerspace/_account.scss */
.engagement-restriction {
  font-size: 0.7rem;
  color: #e74c3c;
  display: block;
  margin-top: 5px;
}

/* Pour s'assurer que l'offre sélectionnée par défaut est disponible */
/* line 7826, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-actions button[type="submit"] {
  opacity: 1;
}

/* line 7830, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-actions button.disabled[type="submit"] {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Ajouter ces styles à la fin du fichier */
/* Styles pour la modal d'engagement */
/* line 7839, app/assets/stylesheets/pages/customerspace/_account.scss */
.commitment-modal-content {
  max-width: 800px;
  width: 90%;
  padding: 0 24px 16px;
}

/* line 7844, app/assets/stylesheets/pages/customerspace/_account.scss */
.commitment-modal-content .modal-description {
  font-size: 0.9rem;
  color: rgba(254, 254, 254, 0.8);
  margin-bottom: 1rem;
  text-align: center;
  line-height: 1.5;
}

/* line 7851, app/assets/stylesheets/pages/customerspace/_account.scss */
.commitment-modal-content .modal-description strong {
  color: #C38761;
  font-weight: 600;
}

/* line 7856, app/assets/stylesheets/pages/customerspace/_account.scss */
.commitment-modal-content .modal-description .current-commitment {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(195, 135, 97, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(195, 135, 97, 0.2);
  font-size: 0.85rem;
}

/* line 7865, app/assets/stylesheets/pages/customerspace/_account.scss */
.commitment-modal-content .modal-description .current-commitment strong {
  color: #C38761;
  font-weight: 600;
}

/* line 7873, app/assets/stylesheets/pages/customerspace/_account.scss */
.commitment-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0.5rem 0;
}

/* line 7880, app/assets/stylesheets/pages/customerspace/_account.scss */
.commitment-option {
  border: 1px solid rgba(195, 135, 97, 0.3);
  border-radius: 8px;
  padding: 0.5rem;
  background: rgba(195, 135, 97, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* line 7889, app/assets/stylesheets/pages/customerspace/_account.scss */
.commitment-option:hover {
  border-color: rgba(195, 135, 97, 0.5);
  background: rgba(195, 135, 97, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(195, 135, 97, 0.15);
}

/* line 7896, app/assets/stylesheets/pages/customerspace/_account.scss */
.commitment-option .button_to {
  padding: 0.5rem;
}

/* line 7900, app/assets/stylesheets/pages/customerspace/_account.scss */
.commitment-option .btn-secondary, .commitment-option .crm-action-button.crm-action-button-secondary {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  background: rgba(254, 254, 254, 0.1);
  color: #fefefe;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 7912, app/assets/stylesheets/pages/customerspace/_account.scss */
.commitment-option .btn-secondary:hover, .commitment-option .crm-action-button.crm-action-button-secondary:hover {
  background: rgba(254, 254, 254, 0.2);
  transform: translateY(-1px);
}

/* line 7917, app/assets/stylesheets/pages/customerspace/_account.scss */
.commitment-option .btn-secondary.is-recommended, .commitment-option .is-recommended.crm-action-button.crm-action-button-secondary {
  background: linear-gradient(135deg, #C38761, #af6c42);
  color: #140D23;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(195, 135, 97, 0.3);
}

/* line 7923, app/assets/stylesheets/pages/customerspace/_account.scss */
.commitment-option .btn-secondary.is-recommended:hover, .commitment-option .is-recommended.crm-action-button.crm-action-button-secondary:hover {
  background: linear-gradient(135deg, #ca9573, #C38761);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(195, 135, 97, 0.4);
}

/* line 7932, app/assets/stylesheets/pages/customerspace/_account.scss */
.commitment-description {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: rgba(254, 254, 254, 0.7);
  text-align: center;
  line-height: 1.4;
  font-style: italic;
}

/* line 7941, app/assets/stylesheets/pages/customerspace/_account.scss */
.commitment-info {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0.5rem 0;
  padding: 0.875rem;
  background: rgba(195, 135, 97, 0.1);
  border-radius: 8px;
  border-left: 4px solid rgba(195, 135, 97, 0.5);
  transition: all 0.3s ease;
}

/* line 7952, app/assets/stylesheets/pages/customerspace/_account.scss */
.commitment-info i {
  color: #C38761;
  font-size: 1.1rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

/* line 7959, app/assets/stylesheets/pages/customerspace/_account.scss */
.commitment-info p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(254, 254, 254, 0.9);
  line-height: 1.5;
}

/* line 7966, app/assets/stylesheets/pages/customerspace/_account.scss */
.commitment-info.warning {
  background: rgba(255, 107, 107, 0.1);
  border-left-color: rgba(255, 107, 107, 0.5);
}

/* line 7970, app/assets/stylesheets/pages/customerspace/_account.scss */
.commitment-info.warning i {
  color: #ff6b6b;
}

/* line 7974, app/assets/stylesheets/pages/customerspace/_account.scss */
.commitment-info.warning:hover {
  background: rgba(255, 107, 107, 0.15);
  border-left-color: rgba(255, 107, 107, 0.7);
}

/* line 7982, app/assets/stylesheets/pages/customerspace/_account.scss */
.cancel-btn {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fefefe;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.625rem 1.25rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

/* line 7993, app/assets/stylesheets/pages/customerspace/_account.scss */
.cancel-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 7998, app/assets/stylesheets/pages/customerspace/_account.scss */
.btn-secondary.full-width, .full-width.crm-action-button.crm-action-button-secondary {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
}

/* Responsive design pour les modals Customer Space */
@media (max-width: 768px) {
  /* line 8006, app/assets/stylesheets/pages/customerspace/_account.scss */
  .commitment-modal-content {
    max-width: 95%;
  }
  /* line 8010, app/assets/stylesheets/pages/customerspace/_account.scss */
  .commitment-option .btn-secondary, .commitment-option .crm-action-button.crm-action-button-secondary {
    padding: 0.75rem 0.875rem;
    font-size: 0.9rem;
  }
  /* line 8015, app/assets/stylesheets/pages/customerspace/_account.scss */
  #usersCountModal .modal-content {
    max-width: 95%;
  }
}

/* Ajouter à la fin du fichier */
/* line 8021, app/assets/stylesheets/pages/customerspace/_account.scss */
.price-with-discount {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* line 8027, app/assets/stylesheets/pages/customerspace/_account.scss */
.original-price {
  text-decoration: line-through;
  color: #888;
  font-size: 0.9em;
}

/* line 8033, app/assets/stylesheets/pages/customerspace/_account.scss */
.discounted-price {
  color: #e8b972;
  font-weight: bold;
}

/* line 8038, app/assets/stylesheets/pages/customerspace/_account.scss */
.discount-badge {
  background-color: #e8b972;
  color: #1f1f1f;
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 0.7em;
  margin-left: 5px;
  font-weight: bold;
}

/* line 8056, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-capsule-subscription.lightmode,
.account-page-capsule-utilisateurs.lightmode,
.account-page-capsule-organization.lightmode,
.account-page-capsule-profile.lightmode,
.invoices-container.lightmode {
  color: #140D23;
}

/* line 8061, app/assets/stylesheets/pages/customerspace/_account.scss */
.account-page-capsule-subscription.nightmode,
.account-page-capsule-utilisateurs.nightmode,
.account-page-capsule-organization.nightmode,
.account-page-capsule-profile.nightmode,
.invoices-container.nightmode {
  color: #fefefe;
  background-color: transparent;
}

/* line 8074, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-card.lightmode,
.organization-card.lightmode,
.reference-organization-card.lightmode,
.profile-card.lightmode,
.users-table-container.lightmode,
.invoices-table-container.lightmode {
  border-color: rgba(232, 232, 232, 0.3);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* line 8080, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-card.nightmode,
.organization-card.nightmode,
.reference-organization-card.nightmode,
.profile-card.nightmode,
.users-table-container.nightmode,
.invoices-table-container.nightmode {
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 8097, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management.lightmode h2, .subscription-management.lightmode .h2, .subscription-management.lightmode h3, .subscription-management.lightmode .h3, .subscription-management.lightmode h4, .subscription-management.lightmode .h4, .subscription-management.lightmode h5, .subscription-management.lightmode .h5, .subscription-management.lightmode p, .subscription-management.lightmode span:not(.status-badge):not(.badge):not(.reference-badge):not(.close):not(.app-name),
.invoices-container-content.lightmode h2,
.invoices-container-content.lightmode .h2,
.invoices-container-content.lightmode h3,
.invoices-container-content.lightmode .h3,
.invoices-container-content.lightmode h4,
.invoices-container-content.lightmode .h4,
.invoices-container-content.lightmode h5,
.invoices-container-content.lightmode .h5,
.invoices-container-content.lightmode p,
.invoices-container-content.lightmode span:not(.status-badge):not(.badge):not(.reference-badge):not(.close):not(.app-name),
.invoices-filters.lightmode h2,
.invoices-filters.lightmode .h2,
.invoices-filters.lightmode h3,
.invoices-filters.lightmode .h3,
.invoices-filters.lightmode h4,
.invoices-filters.lightmode .h4,
.invoices-filters.lightmode h5,
.invoices-filters.lightmode .h5,
.invoices-filters.lightmode p,
.invoices-filters.lightmode span:not(.status-badge):not(.badge):not(.reference-badge):not(.close):not(.app-name),
.business-content.lightmode h2,
.business-content.lightmode .h2,
.business-content.lightmode h3,
.business-content.lightmode .h3,
.business-content.lightmode h4,
.business-content.lightmode .h4,
.business-content.lightmode h5,
.business-content.lightmode .h5,
.business-content.lightmode p,
.business-content.lightmode span:not(.status-badge):not(.badge):not(.reference-badge):not(.close):not(.app-name),
.personal-content.lightmode h2,
.personal-content.lightmode .h2,
.personal-content.lightmode h3,
.personal-content.lightmode .h3,
.personal-content.lightmode h4,
.personal-content.lightmode .h4,
.personal-content.lightmode h5,
.personal-content.lightmode .h5,
.personal-content.lightmode p,
.personal-content.lightmode span:not(.status-badge):not(.badge):not(.reference-badge):not(.close):not(.app-name),
.profile-section.lightmode h2,
.profile-section.lightmode .h2,
.profile-section.lightmode h3,
.profile-section.lightmode .h3,
.profile-section.lightmode h4,
.profile-section.lightmode .h4,
.profile-section.lightmode h5,
.profile-section.lightmode .h5,
.profile-section.lightmode p,
.profile-section.lightmode span:not(.status-badge):not(.badge):not(.reference-badge):not(.close):not(.app-name),
.users-management-container.lightmode h2,
.users-management-container.lightmode .h2,
.users-management-container.lightmode h3,
.users-management-container.lightmode .h3,
.users-management-container.lightmode h4,
.users-management-container.lightmode .h4,
.users-management-container.lightmode h5,
.users-management-container.lightmode .h5,
.users-management-container.lightmode p,
.users-management-container.lightmode span:not(.status-badge):not(.badge):not(.reference-badge):not(.close):not(.app-name),
.user-table-container.lightmode h2,
.user-table-container.lightmode .h2,
.user-table-container.lightmode h3,
.user-table-container.lightmode .h3,
.user-table-container.lightmode h4,
.user-table-container.lightmode .h4,
.user-table-container.lightmode h5,
.user-table-container.lightmode .h5,
.user-table-container.lightmode p,
.user-table-container.lightmode span:not(.status-badge):not(.badge):not(.reference-badge):not(.close):not(.app-name),
.users-header.lightmode h2,
.users-header.lightmode .h2,
.users-header.lightmode h3,
.users-header.lightmode .h3,
.users-header.lightmode h4,
.users-header.lightmode .h4,
.users-header.lightmode h5,
.users-header.lightmode .h5,
.users-header.lightmode p,
.users-header.lightmode span:not(.status-badge):not(.badge):not(.reference-badge):not(.close):not(.app-name) {
  color: #140D23 !important;
}

/* line 8100, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management.lightmode i, .subscription-management.lightmode select, .subscription-management.lightmode th, .subscription-management.lightmode tr, .subscription-management.lightmode td,
.invoices-container-content.lightmode i,
.invoices-container-content.lightmode select,
.invoices-container-content.lightmode th,
.invoices-container-content.lightmode tr,
.invoices-container-content.lightmode td,
.invoices-filters.lightmode i,
.invoices-filters.lightmode select,
.invoices-filters.lightmode th,
.invoices-filters.lightmode tr,
.invoices-filters.lightmode td,
.business-content.lightmode i,
.business-content.lightmode select,
.business-content.lightmode th,
.business-content.lightmode tr,
.business-content.lightmode td,
.personal-content.lightmode i,
.personal-content.lightmode select,
.personal-content.lightmode th,
.personal-content.lightmode tr,
.personal-content.lightmode td,
.profile-section.lightmode i,
.profile-section.lightmode select,
.profile-section.lightmode th,
.profile-section.lightmode tr,
.profile-section.lightmode td,
.users-management-container.lightmode i,
.users-management-container.lightmode select,
.users-management-container.lightmode th,
.users-management-container.lightmode tr,
.users-management-container.lightmode td,
.user-table-container.lightmode i,
.user-table-container.lightmode select,
.user-table-container.lightmode th,
.user-table-container.lightmode tr,
.user-table-container.lightmode td,
.users-header.lightmode i,
.users-header.lightmode select,
.users-header.lightmode th,
.users-header.lightmode tr,
.users-header.lightmode td {
  color: #140D23 !important;
}

/* line 8103, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management.lightmode .search-input::placeholder,
.invoices-container-content.lightmode .search-input::placeholder,
.invoices-filters.lightmode .search-input::placeholder,
.business-content.lightmode .search-input::placeholder,
.personal-content.lightmode .search-input::placeholder,
.profile-section.lightmode .search-input::placeholder,
.users-management-container.lightmode .search-input::placeholder,
.user-table-container.lightmode .search-input::placeholder,
.users-header.lightmode .search-input::placeholder {
  color: #140D23 !important;
}

/* line 8106, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management.lightmode .sortable,
.invoices-container-content.lightmode .sortable,
.invoices-filters.lightmode .sortable,
.business-content.lightmode .sortable,
.personal-content.lightmode .sortable,
.profile-section.lightmode .sortable,
.users-management-container.lightmode .sortable,
.user-table-container.lightmode .sortable,
.users-header.lightmode .sortable {
  color: #140D23 !important;
}

/* line 8112, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management.lightmode .stat-value,
.invoices-container-content.lightmode .stat-value,
.invoices-filters.lightmode .stat-value,
.business-content.lightmode .stat-value,
.personal-content.lightmode .stat-value,
.profile-section.lightmode .stat-value,
.users-management-container.lightmode .stat-value,
.user-table-container.lightmode .stat-value,
.users-header.lightmode .stat-value {
  color: #140D23 !important;
}

/* line 8115, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management.lightmode .stat-label,
.invoices-container-content.lightmode .stat-label,
.invoices-filters.lightmode .stat-label,
.business-content.lightmode .stat-label,
.personal-content.lightmode .stat-label,
.profile-section.lightmode .stat-label,
.users-management-container.lightmode .stat-label,
.user-table-container.lightmode .stat-label,
.users-header.lightmode .stat-label {
  color: rgba(20, 13, 35, 0.7) !important;
}

/* line 8118, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management.lightmode .app-badge,
.invoices-container-content.lightmode .app-badge,
.invoices-filters.lightmode .app-badge,
.business-content.lightmode .app-badge,
.personal-content.lightmode .app-badge,
.profile-section.lightmode .app-badge,
.users-management-container.lightmode .app-badge,
.user-table-container.lightmode .app-badge,
.users-header.lightmode .app-badge {
  background: rgba(254, 254, 254, 0.1) !important;
}

/* line 8121, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management.lightmode .btn-secondary, .subscription-management.lightmode .crm-action-button.crm-action-button-secondary,
.invoices-container-content.lightmode .btn-secondary,
.invoices-container-content.lightmode .crm-action-button.crm-action-button-secondary,
.invoices-filters.lightmode .btn-secondary,
.invoices-filters.lightmode .crm-action-button.crm-action-button-secondary,
.business-content.lightmode .btn-secondary,
.business-content.lightmode .crm-action-button.crm-action-button-secondary,
.personal-content.lightmode .btn-secondary,
.personal-content.lightmode .crm-action-button.crm-action-button-secondary,
.profile-section.lightmode .btn-secondary,
.profile-section.lightmode .crm-action-button.crm-action-button-secondary,
.users-management-container.lightmode .btn-secondary,
.users-management-container.lightmode .crm-action-button.crm-action-button-secondary,
.user-table-container.lightmode .btn-secondary,
.user-table-container.lightmode .crm-action-button.crm-action-button-secondary,
.users-header.lightmode .btn-secondary,
.users-header.lightmode .crm-action-button.crm-action-button-secondary {
  background: rgba(195, 135, 97, 0.2) !important;
  color: #140D23 !important;
}

/* line 8128, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management.nightmode h2, .subscription-management.nightmode .h2, .subscription-management.nightmode h3, .subscription-management.nightmode .h3, .subscription-management.nightmode h4, .subscription-management.nightmode .h4, .subscription-management.nightmode p, .subscription-management.nightmode span:not(.status-badge):not(.badge):not(.reference-badge),
.invoices-container-content.nightmode h2,
.invoices-container-content.nightmode .h2,
.invoices-container-content.nightmode h3,
.invoices-container-content.nightmode .h3,
.invoices-container-content.nightmode h4,
.invoices-container-content.nightmode .h4,
.invoices-container-content.nightmode p,
.invoices-container-content.nightmode span:not(.status-badge):not(.badge):not(.reference-badge),
.invoices-filters.nightmode h2,
.invoices-filters.nightmode .h2,
.invoices-filters.nightmode h3,
.invoices-filters.nightmode .h3,
.invoices-filters.nightmode h4,
.invoices-filters.nightmode .h4,
.invoices-filters.nightmode p,
.invoices-filters.nightmode span:not(.status-badge):not(.badge):not(.reference-badge),
.business-content.nightmode h2,
.business-content.nightmode .h2,
.business-content.nightmode h3,
.business-content.nightmode .h3,
.business-content.nightmode h4,
.business-content.nightmode .h4,
.business-content.nightmode p,
.business-content.nightmode span:not(.status-badge):not(.badge):not(.reference-badge),
.personal-content.nightmode h2,
.personal-content.nightmode .h2,
.personal-content.nightmode h3,
.personal-content.nightmode .h3,
.personal-content.nightmode h4,
.personal-content.nightmode .h4,
.personal-content.nightmode p,
.personal-content.nightmode span:not(.status-badge):not(.badge):not(.reference-badge),
.profile-section.nightmode h2,
.profile-section.nightmode .h2,
.profile-section.nightmode h3,
.profile-section.nightmode .h3,
.profile-section.nightmode h4,
.profile-section.nightmode .h4,
.profile-section.nightmode p,
.profile-section.nightmode span:not(.status-badge):not(.badge):not(.reference-badge),
.users-management-container.nightmode h2,
.users-management-container.nightmode .h2,
.users-management-container.nightmode h3,
.users-management-container.nightmode .h3,
.users-management-container.nightmode h4,
.users-management-container.nightmode .h4,
.users-management-container.nightmode p,
.users-management-container.nightmode span:not(.status-badge):not(.badge):not(.reference-badge),
.user-table-container.nightmode h2,
.user-table-container.nightmode .h2,
.user-table-container.nightmode h3,
.user-table-container.nightmode .h3,
.user-table-container.nightmode h4,
.user-table-container.nightmode .h4,
.user-table-container.nightmode p,
.user-table-container.nightmode span:not(.status-badge):not(.badge):not(.reference-badge),
.users-header.nightmode h2,
.users-header.nightmode .h2,
.users-header.nightmode h3,
.users-header.nightmode .h3,
.users-header.nightmode h4,
.users-header.nightmode .h4,
.users-header.nightmode p,
.users-header.nightmode span:not(.status-badge):not(.badge):not(.reference-badge) {
  color: #fefefe;
}

/* line 8131, app/assets/stylesheets/pages/customerspace/_account.scss */
.subscription-management.nightmode i,
.invoices-container-content.nightmode i,
.invoices-filters.nightmode i,
.business-content.nightmode i,
.personal-content.nightmode i,
.profile-section.nightmode i,
.users-management-container.nightmode i,
.user-table-container.nightmode i,
.users-header.nightmode i {
  color: #fefefe;
}

/* line 8137, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-limit-indicator.lightmode {
  background: rgba(254, 254, 254, 0.1);
  border: 1px solid rgba(254, 254, 254, 0.2);
}

/* line 8146, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-table.lightmode,
.invoices-table.lightmode {
  background-color: transparent;
}

/* line 8149, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-table.lightmode thead th,
.invoices-table.lightmode thead th {
  color: #140D23;
  background-color: rgba(232, 232, 232, 0.1);
}

/* line 8154, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-table.lightmode tbody tr,
.invoices-table.lightmode tbody tr {
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 8157, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-table.lightmode tbody tr:nth-child(even),
.invoices-table.lightmode tbody tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.15);
}

/* line 8161, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-table.lightmode tbody tr td,
.invoices-table.lightmode tbody tr td {
  color: #140D23;
  border-color: rgba(232, 232, 232, 0.3);
}

/* line 8169, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-table.nightmode tbody tr,
.invoices-table.nightmode tbody tr {
  background-color: rgba(255, 255, 255, 0.05);
}

/* line 8172, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-table.nightmode tbody tr:nth-child(even),
.invoices-table.nightmode tbody tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 8183, app/assets/stylesheets/pages/customerspace/_account.scss */
.mdp-modal .modal-content.lightmode {
  background: #fefefe;
  color: #140D23;
}

/* line 8187, app/assets/stylesheets/pages/customerspace/_account.scss */
.mdp-modal .modal-content.lightmode h2, .mdp-modal .modal-content.lightmode .h2, .mdp-modal .modal-content.lightmode h3, .mdp-modal .modal-content.lightmode .h3, .mdp-modal .modal-content.lightmode label, .mdp-modal .modal-content.lightmode p {
  color: #140D23;
}

/* line 8191, app/assets/stylesheets/pages/customerspace/_account.scss */
.mdp-modal .modal-content.lightmode .close {
  color: rgba(20, 13, 35, 0.6);
}

/* line 8194, app/assets/stylesheets/pages/customerspace/_account.scss */
.mdp-modal .modal-content.lightmode .close:hover {
  color: #C38761;
}

/* line 8199, app/assets/stylesheets/pages/customerspace/_account.scss */
.mdp-modal .modal-content.lightmode .modal-header {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 8202, app/assets/stylesheets/pages/customerspace/_account.scss */
.mdp-modal .modal-content.lightmode .modal-header h3, .mdp-modal .modal-content.lightmode .modal-header .h3 {
  color: #140D23;
}

/* line 8207, app/assets/stylesheets/pages/customerspace/_account.scss */
.mdp-modal .modal-content.lightmode .form-input {
  background-color: white;
  color: #140D23;
  border-color: rgba(232, 232, 232, 0.3);
}

/* line 8212, app/assets/stylesheets/pages/customerspace/_account.scss */
.mdp-modal .modal-content.lightmode .form-input:focus {
  border-color: #C38761;
}

/* ==========================================================================
   Modals Gestion des Utilisateurs — héritent du .mdp-modal gradient
   ========================================================================== */
/* line 8226, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-create-modal.mdp-modal .modal-content form,
.user-edit-modal.mdp-modal .modal-content form {
  padding: 16px 24px;
}

/* line 8229, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-create-modal.mdp-modal .modal-content form .form-row,
.user-edit-modal.mdp-modal .modal-content form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* line 8235, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-create-modal.mdp-modal .modal-content form .form-group,
.user-edit-modal.mdp-modal .modal-content form .form-group {
  margin-bottom: 0.75rem;
}

/* line 8238, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-create-modal.mdp-modal .modal-content form .form-group label,
.user-edit-modal.mdp-modal .modal-content form .form-group label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.85rem;
  color: rgba(254, 254, 254, 0.9);
}

/* line 8245, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-create-modal.mdp-modal .modal-content form .form-group .form-input,
.user-edit-modal.mdp-modal .modal-content form .form-group .form-input {
  width: 100%;
  padding: 0.5rem 0.625rem;
  border: 1px solid rgba(254, 254, 254, 0.2);
  border-radius: 8px;
  background: rgba(254, 254, 254, 0.1);
  color: #fefefe;
  font-size: 0.9rem;
}

/* line 8254, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-create-modal.mdp-modal .modal-content form .form-group .form-input:focus,
.user-edit-modal.mdp-modal .modal-content form .form-group .form-input:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.2);
}

/* line 8263, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-create-modal.mdp-modal .modal-content .role-selection .role-question,
.user-edit-modal.mdp-modal .modal-content .role-selection .role-question {
  color: rgba(254, 254, 254, 0.9);
  margin-bottom: 0.75rem;
}

/* line 8268, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-create-modal.mdp-modal .modal-content .radio-option,
.user-edit-modal.mdp-modal .modal-content .radio-option {
  background: rgba(254, 254, 254, 0.1);
  border: 1px solid rgba(254, 254, 254, 0.2);
  border-radius: 8px;
  padding: 1rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

/* line 8276, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-create-modal.mdp-modal .modal-content .radio-option:hover,
.user-edit-modal.mdp-modal .modal-content .radio-option:hover {
  border-color: #C38761;
  background: rgba(195, 135, 97, 0.1);
}

/* line 8281, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-create-modal.mdp-modal .modal-content .radio-option.selected,
.user-edit-modal.mdp-modal .modal-content .radio-option.selected {
  border: 2px solid #C38761;
  background: #C38761;
  box-shadow: 0 0 20px rgba(195, 135, 97, 0.3);
}

/* line 8287, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-create-modal.mdp-modal .modal-content .radio-option .radio-label,
.user-edit-modal.mdp-modal .modal-content .radio-option .radio-label {
  color: #fefefe;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 8294, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-create-modal.mdp-modal .modal-content .radio-option small, .user-create-modal.mdp-modal .modal-content .radio-option .small,
.user-edit-modal.mdp-modal .modal-content .radio-option small,
.user-edit-modal.mdp-modal .modal-content .radio-option .small {
  color: rgba(254, 254, 254, 0.7);
}

/* line 8299, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-create-modal.mdp-modal .modal-content .form-actions,
.user-edit-modal.mdp-modal .modal-content .form-actions {
  padding: 1rem 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* line 8305, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-create-modal.mdp-modal .modal-content .form-actions .form-button, .user-create-modal.mdp-modal .modal-content .form-actions .crm-action-button, .user-create-modal.mdp-modal .modal-content .form-actions .users-management-container .users-header .add-user-btn, .users-management-container .users-header .user-create-modal.mdp-modal .modal-content .form-actions .add-user-btn,
.user-edit-modal.mdp-modal .modal-content .form-actions .form-button,
.user-edit-modal.mdp-modal .modal-content .form-actions .crm-action-button,
.user-edit-modal.mdp-modal .modal-content .form-actions .users-management-container .users-header .add-user-btn,
.users-management-container .users-header .user-edit-modal.mdp-modal .modal-content .form-actions .add-user-btn {
  padding: 0.625rem 1.25rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  border: none;
}

/* line 8314, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-create-modal.mdp-modal .modal-content .form-actions .form-button:not(.secondary), .user-create-modal.mdp-modal .modal-content .form-actions .crm-action-button:not(.secondary), .user-create-modal.mdp-modal .modal-content .form-actions .users-management-container .users-header .add-user-btn:not(.secondary), .users-management-container .users-header .user-create-modal.mdp-modal .modal-content .form-actions .add-user-btn:not(.secondary),
.user-edit-modal.mdp-modal .modal-content .form-actions .form-button:not(.secondary),
.user-edit-modal.mdp-modal .modal-content .form-actions .crm-action-button:not(.secondary),
.user-edit-modal.mdp-modal .modal-content .form-actions .users-management-container .users-header .add-user-btn:not(.secondary),
.users-management-container .users-header .user-edit-modal.mdp-modal .modal-content .form-actions .add-user-btn:not(.secondary) {
  background-color: #C38761;
  color: #140D23;
}

/* line 8318, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-create-modal.mdp-modal .modal-content .form-actions .form-button:not(.secondary):hover, .user-create-modal.mdp-modal .modal-content .form-actions .crm-action-button:not(.secondary):hover, .user-create-modal.mdp-modal .modal-content .form-actions .users-management-container .users-header .add-user-btn:not(.secondary):hover, .users-management-container .users-header .user-create-modal.mdp-modal .modal-content .form-actions .add-user-btn:not(.secondary):hover,
.user-edit-modal.mdp-modal .modal-content .form-actions .form-button:not(.secondary):hover,
.user-edit-modal.mdp-modal .modal-content .form-actions .crm-action-button:not(.secondary):hover,
.user-edit-modal.mdp-modal .modal-content .form-actions .users-management-container .users-header .add-user-btn:not(.secondary):hover,
.users-management-container .users-header .user-edit-modal.mdp-modal .modal-content .form-actions .add-user-btn:not(.secondary):hover {
  background-color: #ca9573;
  transform: translateY(-1px);
}

/* line 8324, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-create-modal.mdp-modal .modal-content .form-actions .form-button.secondary, .user-create-modal.mdp-modal .modal-content .form-actions .secondary.crm-action-button, .user-create-modal.mdp-modal .modal-content .form-actions .users-management-container .users-header .secondary.add-user-btn, .users-management-container .users-header .user-create-modal.mdp-modal .modal-content .form-actions .secondary.add-user-btn,
.user-edit-modal.mdp-modal .modal-content .form-actions .form-button.secondary,
.user-edit-modal.mdp-modal .modal-content .form-actions .secondary.crm-action-button,
.user-edit-modal.mdp-modal .modal-content .form-actions .users-management-container .users-header .secondary.add-user-btn,
.users-management-container .users-header .user-edit-modal.mdp-modal .modal-content .form-actions .secondary.add-user-btn {
  background: rgba(254, 254, 254, 0.1);
  color: #fefefe;
  border: 1px solid rgba(254, 254, 254, 0.2);
}

/* line 8329, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-create-modal.mdp-modal .modal-content .form-actions .form-button.secondary:hover, .user-create-modal.mdp-modal .modal-content .form-actions .secondary.crm-action-button:hover, .user-create-modal.mdp-modal .modal-content .form-actions .users-management-container .users-header .secondary.add-user-btn:hover, .users-management-container .users-header .user-create-modal.mdp-modal .modal-content .form-actions .secondary.add-user-btn:hover,
.user-edit-modal.mdp-modal .modal-content .form-actions .form-button.secondary:hover,
.user-edit-modal.mdp-modal .modal-content .form-actions .secondary.crm-action-button:hover,
.user-edit-modal.mdp-modal .modal-content .form-actions .users-management-container .users-header .secondary.add-user-btn:hover,
.users-management-container .users-header .user-edit-modal.mdp-modal .modal-content .form-actions .secondary.add-user-btn:hover {
  background: rgba(254, 254, 254, 0.2);
}

/* line 8339, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal.mdp-modal .modal-content .modal-subtitle {
  color: rgba(254, 254, 254, 0.7);
  padding: 0 24px;
  font-size: 0.9rem;
}

/* line 8345, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal.mdp-modal .modal-content .access-tabs {
  display: flex;
  gap: 1rem;
  margin: 0 24px 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(254, 254, 254, 0.1);
}

/* line 8352, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal.mdp-modal .modal-content .access-tabs .tab-btn {
  background: none;
  border: none;
  color: rgba(254, 254, 254, 0.7);
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 2px solid transparent;
}

/* line 8361, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal.mdp-modal .modal-content .access-tabs .tab-btn.active {
  color: #fefefe;
  border-bottom-color: #C38761;
}

/* line 8366, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal.mdp-modal .modal-content .access-tabs .tab-btn:hover {
  color: #fefefe;
  background: rgba(254, 254, 254, 0.1);
  border-radius: 6px 6px 0 0;
}

/* line 8374, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal.mdp-modal .modal-content .app-access-card {
  background: rgba(254, 254, 254, 0.05);
  border: 1px solid rgba(254, 254, 254, 0.1);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 0.75rem;
  transition: all 0.2s ease;
}

/* line 8382, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal.mdp-modal .modal-content .app-access-card:hover {
  border-color: rgba(254, 254, 254, 0.2);
  background: rgba(254, 254, 254, 0.08);
}

/* line 8387, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal.mdp-modal .modal-content .app-access-card .app-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

/* line 8393, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal.mdp-modal .modal-content .app-access-card .app-header i {
  color: #C38761;
  font-size: 1.1rem;
}

/* line 8398, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal.mdp-modal .modal-content .app-access-card .app-header .app-name {
  color: #fefefe;
  font-weight: 600;
  font-size: 0.95rem;
}

/* line 8405, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal.mdp-modal .modal-content .app-access-card .app-description {
  color: rgba(254, 254, 254, 0.7);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

/* line 8412, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal.mdp-modal .modal-content .app-access-card .toggle-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* line 8417, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal.mdp-modal .modal-content .app-access-card .toggle-container .toggle-label {
  color: rgba(254, 254, 254, 0.9);
  font-size: 0.9rem;
}

/* line 8424, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal.mdp-modal .modal-content .form-actions {
  padding: 1rem 24px;
  border-top: 1px solid rgba(254, 254, 254, 0.1);
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* line 8431, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal.mdp-modal .modal-content .form-actions .form-button, .user-access-modal.mdp-modal .modal-content .form-actions .crm-action-button, .user-access-modal.mdp-modal .modal-content .form-actions .users-management-container .users-header .add-user-btn, .users-management-container .users-header .user-access-modal.mdp-modal .modal-content .form-actions .add-user-btn {
  padding: 0.625rem 1.25rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  border: none;
}

/* line 8440, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal.mdp-modal .modal-content .form-actions .form-button:not(.secondary), .user-access-modal.mdp-modal .modal-content .form-actions .crm-action-button:not(.secondary), .user-access-modal.mdp-modal .modal-content .form-actions .users-management-container .users-header .add-user-btn:not(.secondary), .users-management-container .users-header .user-access-modal.mdp-modal .modal-content .form-actions .add-user-btn:not(.secondary) {
  background-color: #C38761;
  color: #140D23;
}

/* line 8444, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal.mdp-modal .modal-content .form-actions .form-button:not(.secondary):hover, .user-access-modal.mdp-modal .modal-content .form-actions .crm-action-button:not(.secondary):hover, .user-access-modal.mdp-modal .modal-content .form-actions .users-management-container .users-header .add-user-btn:not(.secondary):hover, .users-management-container .users-header .user-access-modal.mdp-modal .modal-content .form-actions .add-user-btn:not(.secondary):hover {
  background-color: #ca9573;
  transform: translateY(-1px);
}

/* line 8450, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal.mdp-modal .modal-content .form-actions .form-button.secondary, .user-access-modal.mdp-modal .modal-content .form-actions .secondary.crm-action-button, .user-access-modal.mdp-modal .modal-content .form-actions .users-management-container .users-header .secondary.add-user-btn, .users-management-container .users-header .user-access-modal.mdp-modal .modal-content .form-actions .secondary.add-user-btn {
  background: rgba(254, 254, 254, 0.1);
  color: #fefefe;
  border: 1px solid rgba(254, 254, 254, 0.2);
}

/* line 8455, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-access-modal.mdp-modal .modal-content .form-actions .form-button.secondary:hover, .user-access-modal.mdp-modal .modal-content .form-actions .secondary.crm-action-button:hover, .user-access-modal.mdp-modal .modal-content .form-actions .users-management-container .users-header .secondary.add-user-btn:hover, .users-management-container .users-header .user-access-modal.mdp-modal .modal-content .form-actions .secondary.add-user-btn:hover {
  background: rgba(254, 254, 254, 0.2);
}

/* line 8464, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-password-modal.mdp-modal .modal-content {
  max-width: 700px;
  width: 95%;
}

/* line 8468, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-password-modal.mdp-modal .modal-content .form-actions {
  padding: 1rem 24px;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* line 8474, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-password-modal.mdp-modal .modal-content .form-actions .form-button, .user-password-modal.mdp-modal .modal-content .form-actions .crm-action-button, .user-password-modal.mdp-modal .modal-content .form-actions .users-management-container .users-header .add-user-btn, .users-management-container .users-header .user-password-modal.mdp-modal .modal-content .form-actions .add-user-btn {
  padding: 0.625rem 1.25rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  border: none;
  min-width: 180px;
}

/* line 8484, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-password-modal.mdp-modal .modal-content .form-actions .form-button:not(.secondary), .user-password-modal.mdp-modal .modal-content .form-actions .crm-action-button:not(.secondary), .user-password-modal.mdp-modal .modal-content .form-actions .users-management-container .users-header .add-user-btn:not(.secondary), .users-management-container .users-header .user-password-modal.mdp-modal .modal-content .form-actions .add-user-btn:not(.secondary) {
  background-color: #C38761;
  color: #140D23;
}

/* line 8488, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-password-modal.mdp-modal .modal-content .form-actions .form-button:not(.secondary):hover, .user-password-modal.mdp-modal .modal-content .form-actions .crm-action-button:not(.secondary):hover, .user-password-modal.mdp-modal .modal-content .form-actions .users-management-container .users-header .add-user-btn:not(.secondary):hover, .users-management-container .users-header .user-password-modal.mdp-modal .modal-content .form-actions .add-user-btn:not(.secondary):hover {
  background-color: #ca9573;
  transform: translateY(-1px);
}

/* line 8494, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-password-modal.mdp-modal .modal-content .form-actions .form-button.secondary, .user-password-modal.mdp-modal .modal-content .form-actions .secondary.crm-action-button, .user-password-modal.mdp-modal .modal-content .form-actions .users-management-container .users-header .secondary.add-user-btn, .users-management-container .users-header .user-password-modal.mdp-modal .modal-content .form-actions .secondary.add-user-btn {
  background: rgba(254, 254, 254, 0.1);
  color: #fefefe;
  border: 1px solid rgba(254, 254, 254, 0.2);
}

/* line 8499, app/assets/stylesheets/pages/customerspace/_account.scss */
.user-password-modal.mdp-modal .modal-content .form-actions .form-button.secondary:hover, .user-password-modal.mdp-modal .modal-content .form-actions .secondary.crm-action-button:hover, .user-password-modal.mdp-modal .modal-content .form-actions .users-management-container .users-header .secondary.add-user-btn:hover, .users-management-container .users-header .user-password-modal.mdp-modal .modal-content .form-actions .secondary.add-user-btn:hover {
  background: rgba(254, 254, 254, 0.2);
}

/* line 8510, app/assets/stylesheets/pages/customerspace/_account.scss */
.form-button.lightmode.secondary, .lightmode.secondary.crm-action-button, .users-management-container .users-header .lightmode.secondary.add-user-btn, .btn-primary.lightmode.secondary, .btn-secondary.lightmode.secondary {
  background-color: rgba(232, 232, 232, 0.2);
  color: #140D23;
}

/* line 8514, app/assets/stylesheets/pages/customerspace/_account.scss */
.form-button.lightmode.secondary:hover, .lightmode.secondary.crm-action-button:hover, .users-management-container .users-header .lightmode.secondary.add-user-btn:hover, .btn-primary.lightmode.secondary:hover, .btn-secondary.lightmode.secondary:hover {
  background-color: rgba(232, 232, 232, 0.3);
}

/* line 8521, app/assets/stylesheets/pages/customerspace/_account.scss */
.form-button.nightmode.secondary, .nightmode.secondary.crm-action-button, .users-management-container .users-header .nightmode.secondary.add-user-btn, .btn-primary.nightmode.secondary, .btn-secondary.nightmode.secondary {
  background-color: rgba(254, 254, 254, 0.1);
  color: #fefefe;
}

/* line 8525, app/assets/stylesheets/pages/customerspace/_account.scss */
.form-button.nightmode.secondary:hover, .nightmode.secondary.crm-action-button:hover, .users-management-container .users-header .nightmode.secondary.add-user-btn:hover, .btn-primary.nightmode.secondary:hover, .btn-secondary.nightmode.secondary:hover {
  background-color: rgba(254, 254, 254, 0.15);
}

/* line 8536, app/assets/stylesheets/pages/customerspace/_account.scss */
.organization-card.lightmode .org-header,
.reference-organization-card.lightmode .org-header {
  border-bottom-color: rgba(232, 232, 232, 0.2);
}

/* line 8539, app/assets/stylesheets/pages/customerspace/_account.scss */
.organization-card.lightmode .org-header i, .organization-card.lightmode .org-header h4, .organization-card.lightmode .org-header .h4,
.reference-organization-card.lightmode .org-header i,
.reference-organization-card.lightmode .org-header h4,
.reference-organization-card.lightmode .org-header .h4 {
  color: #140D23;
}

/* line 8544, app/assets/stylesheets/pages/customerspace/_account.scss */
.organization-card.lightmode .org-details p,
.reference-organization-card.lightmode .org-details p {
  color: #140D23;
  border-bottom-color: rgba(232, 232, 232, 0.1);
}

/* line 8549, app/assets/stylesheets/pages/customerspace/_account.scss */
.organization-card.lightmode:hover,
.reference-organization-card.lightmode:hover {
  background-color: white;
}

/* line 8558, app/assets/stylesheets/pages/customerspace/_account.scss */
.profile-detail-item.lightmode .detail-label {
  color: #640127;
}

/* line 8562, app/assets/stylesheets/pages/customerspace/_account.scss */
.profile-detail-item.lightmode .detail-value {
  color: #140D23;
}

/* line 8568, app/assets/stylesheets/pages/customerspace/_account.scss */
.profile-detail-item.nightmode .detail-label {
  color: #C38761;
}

/* line 8572, app/assets/stylesheets/pages/customerspace/_account.scss */
.profile-detail-item.nightmode .detail-value {
  color: #fefefe;
}

/* line 8589, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-filters.lightmode select, .invoices-filters.lightmode input,
.table-filters.lightmode select,
.table-filters.lightmode input {
  background-color: white;
  color: #140D23;
  border-color: rgba(232, 232, 232, 0.3);
}

/* line 8596, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-filters.nightmode,
.table-filters.nightmode {
  background-color: rgba(255, 255, 255, 0.05);
}

/* line 8599, app/assets/stylesheets/pages/customerspace/_account.scss */
.invoices-filters.nightmode select, .invoices-filters.nightmode input,
.table-filters.nightmode select,
.table-filters.nightmode input {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fefefe;
  border-color: rgba(232, 232, 232, 0.5);
}

/* À ajouter à la fin du fichier */
/* line 8610, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-count-info {
  margin-top: 10px;
  margin-bottom: 15px;
  padding: 12px 15px;
  background-color: rgba(232, 185, 114, 0.1);
  border-left: 3px solid rgba(232, 185, 114, 0.7);
  border-radius: 4px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 8622, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-count-info i {
  color: rgba(232, 185, 114, 0.9);
  font-size: 1.1rem;
}

/* line 8627, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-count-info.lightmode {
  border-left-color: rgba(232, 185, 114, 0.7);
  color: #140D23;
}

/* line 8632, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-count-info.lightmode i {
  color: rgba(232, 185, 114, 0.9);
}

/* line 8637, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-count-info.nightmode {
  border-left-color: rgba(232, 185, 114, 0.7);
  color: white;
}

/* line 8642, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-count-info.nightmode i {
  color: rgba(232, 185, 114, 0.9);
}

/* Améliorations pour le slider */
/* line 8649, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-slider-controls {
  margin: 20px 0;
}

/* line 8653, app/assets/stylesheets/pages/customerspace/_account.scss */
.slider-wrapper {
  position: relative;
  width: 100%;
  padding: 0 10px;
  margin-bottom: 35px;
  /* Augmenté pour faire de la place pour les graduations */
}

/* line 8660, app/assets/stylesheets/pages/customerspace/_account.scss */
input.users-slider[type=range] {
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: #ddd;
  outline: none;
  -webkit-appearance: none;
  position: relative;
  z-index: 2;
}

/* line 8670, app/assets/stylesheets/pages/customerspace/_account.scss */
input.users-slider[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #E5A82E;
  cursor: pointer;
  z-index: 3;
}

/* line 8681, app/assets/stylesheets/pages/customerspace/_account.scss */
input.users-slider[type=range]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #E5A82E;
  cursor: pointer;
  z-index: 3;
}

/* line 8691, app/assets/stylesheets/pages/customerspace/_account.scss */
.slider-steps {
  position: absolute;
  display: flex;
  justify-content: space-between;
  width: calc(100% - 20px);
  /* Tenir compte du padding */
  bottom: -15px;
  left: 9px;
}

/* line 8700, app/assets/stylesheets/pages/customerspace/_account.scss */
.slider-steps .step-mark {
  position: relative;
  font-size: 0.7rem;
  color: #999;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 20px;
  transform: translateX(-50%);
  /* Centrer sur la position exacte */
}

/* line 8710, app/assets/stylesheets/pages/customerspace/_account.scss */
.slider-steps .step-mark::before {
  content: '';
  position: absolute;
  top: -10px;
  width: 1px;
  height: 5px;
  background-color: #999;
}

/* line 8721, app/assets/stylesheets/pages/customerspace/_account.scss */
.consent-checkbox {
  margin: 20px 0;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

/* line 8727, app/assets/stylesheets/pages/customerspace/_account.scss */
.consent-checkbox label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

/* line 8733, app/assets/stylesheets/pages/customerspace/_account.scss */
.consent-checkbox label input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

/* line 8738, app/assets/stylesheets/pages/customerspace/_account.scss */
.consent-checkbox label span {
  font-size: 0.9rem;
  line-height: 1.4;
}

/* line 8747, app/assets/stylesheets/pages/customerspace/_account.scss */
.consent-checkbox.lightmode label span {
  color: #140D23;
}

/* Améliorations pour le bouton désactivé */
/* line 8754, app/assets/stylesheets/pages/customerspace/_account.scss */
button[type="submit"][disabled],
input[type="submit"][disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

/* usersCountModal — défini en haut avec les autres modals (#usersCountModal) */
/* line 8762, app/assets/stylesheets/pages/customerspace/_account.scss */
.slider-pricing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0;
  padding: 10px 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

/* line 8771, app/assets/stylesheets/pages/customerspace/_account.scss */
.slider-pricing .price-label {
  font-size: 0.9rem;
}

/* line 8775, app/assets/stylesheets/pages/customerspace/_account.scss */
.slider-pricing .price-value {
  font-size: 1.2rem;
  font-weight: bold;
  color: #E5A82E;
}

/* line 8784, app/assets/stylesheets/pages/customerspace/_account.scss */
.slider-pricing.lightmode .price-label {
  color: #140D23;
}

/* line 8790, app/assets/stylesheets/pages/customerspace/_account.scss */
.slider-steps .step-mark:first-child,
.slider-steps .step-mark:last-child {
  color: #E5A82E;
  font-weight: bold;
}

/* line 8795, app/assets/stylesheets/pages/customerspace/_account.scss */
.slider-steps .step-mark:first-child::before,
.slider-steps .step-mark:last-child::before {
  background-color: #E5A82E;
  height: 5px;
}

/* line 8802, app/assets/stylesheets/pages/customerspace/_account.scss */
.slider-steps {
  position: relative;
  margin-top: 1rem;
  padding-left: 11px;
  /* Décaler les graduations pour les aligner avec l'input range */
}

/* line 8807, app/assets/stylesheets/pages/customerspace/_account.scss */
.slider-steps .step-mark {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(254, 254, 254, 0.7);
  transform: translateX(-50%);
  /* Centrer la graduation sur sa position */
  /* Ligne de graduation */
  /* Numéro */
  /* Première et dernière graduation en évidence */
}

/* line 8817, app/assets/stylesheets/pages/customerspace/_account.scss */
.slider-steps .step-mark::before {
  content: '';
  width: 2px;
  height: 5px;
  background-color: rgba(254, 254, 254, 0.3);
  margin-bottom: 0.5rem;
  /* Augmenter l'espacement entre le tiret et le chiffre */
  border-radius: 1px;
}

/* line 8827, app/assets/stylesheets/pages/customerspace/_account.scss */
.slider-steps .step-mark::after {
  content: attr(data-value);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

/* line 8835, app/assets/stylesheets/pages/customerspace/_account.scss */
.slider-steps .step-mark:first-child, .slider-steps .step-mark:last-child {
  color: #E5A82E;
  font-weight: 600;
}

/* line 8840, app/assets/stylesheets/pages/customerspace/_account.scss */
.slider-steps .step-mark:first-child::before, .slider-steps .step-mark:last-child::before {
  background-color: #E5A82E;
  height: 5px;
  width: 3px;
}

/* Ajuster la position du slider pour un alignement parfait avec les graduations */
/* line 8850, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-slider-controls .slider-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  /* Placer le slider au-dessus des graduations */
  align-items: center;
  gap: 0.5rem;
  /* Espacement entre le slider et les graduations */
}

/* line 8857, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-slider-controls .slider-wrapper .users-slider {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  width: 100%;
}

/* Positionner précisément chaque graduation en fonction de sa valeur */
/* line 8867, app/assets/stylesheets/pages/customerspace/_account.scss */
.slider-steps {
  position: relative;
  height: 20px;
  /* Hauteur fixe pour le conteneur des graduations */
  margin: 0;
  /* Supprimer toutes les marges pour un alignement parfait */
  padding-left: 11px;
  /* Décaler les graduations pour les aligner avec l'input range */
}

/* line 8874, app/assets/stylesheets/pages/customerspace/_account.scss */
.slider-steps .step-mark {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(254, 254, 254, 0.7);
  transform: translateX(-50%);
  /* Centrer la graduation sur sa position */
  /* Ligne de graduation */
  /* Numéro */
  /* Première et dernière graduation en évidence */
}

/* line 8884, app/assets/stylesheets/pages/customerspace/_account.scss */
.slider-steps .step-mark::before {
  content: '';
  width: 2px;
  height: 5px;
  background-color: rgba(254, 254, 254, 0.3);
  margin-bottom: 0.5rem;
  /* Augmenter l'espacement entre le tiret et le chiffre */
  border-radius: 1px;
}

/* line 8894, app/assets/stylesheets/pages/customerspace/_account.scss */
.slider-steps .step-mark::after {
  content: attr(data-value);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

/* line 8902, app/assets/stylesheets/pages/customerspace/_account.scss */
.slider-steps .step-mark:first-child, .slider-steps .step-mark:last-child {
  color: #E5A82E;
  font-weight: 600;
}

/* line 8907, app/assets/stylesheets/pages/customerspace/_account.scss */
.slider-steps .step-mark:first-child::before, .slider-steps .step-mark:last-child::before {
  background-color: #E5A82E;
  height: 5px;
  width: 3px;
}

/* Améliorer l'apparence visuelle globale */
/* line 8917, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-slider-container {
  padding: 1rem 0.875rem;
}

/* line 8921, app/assets/stylesheets/pages/customerspace/_account.scss */
.users-slider-controls {
  position: relative;
  margin: 1rem 0 1.5rem;
  margin-top: 2.5rem !important;
  /* Réduit pour gagner de l'espace vertical */
}

/* Styles spécifiques pour la modal "Modifier mes informations" */
/* line 8929, app/assets/stylesheets/pages/customerspace/_account.scss */
#profileModal .modal-content {
  max-width: 500px;
  max-height: 85vh;
  width: 90%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /* Mode clair — override le gradient du base .mdp-modal */
  background: #fefefe;
  color: #333333;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  /* Mode sombre — gradient comme la référence */
}

/* line 8944, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #profileModal .modal-content {
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
  color: white;
  border: none;
}

/* line 8950, app/assets/stylesheets/pages/customerspace/_account.scss */
#profileModal .modal-content .close {
  color: rgba(0, 0, 0, 0.5);
}

/* line 8954, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #profileModal .modal-content .close {
  color: rgba(254, 254, 254, 0.8);
}

/* line 8958, app/assets/stylesheets/pages/customerspace/_account.scss */
#profileModal .modal-content .close:hover {
  color: #C38761;
}

/* line 8963, app/assets/stylesheets/pages/customerspace/_account.scss */
#profileModal .modal-content h2, #profileModal .modal-content .h2 {
  margin: 0;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  color: #333333;
  flex-shrink: 0;
}

/* line 8973, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #profileModal .modal-content h2, [data-lightmode-target="button"] #profileModal .modal-content .h2 {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.95);
}

/* line 8979, app/assets/stylesheets/pages/customerspace/_account.scss */
#profileModal .modal-content form {
  padding: 1.25rem;
  flex: 1;
  overflow-y: auto;
  max-height: calc(85vh - 120px);
  /* Personnalisation de la barre de défilement */
}

/* line 8986, app/assets/stylesheets/pages/customerspace/_account.scss */
#profileModal .modal-content form::-webkit-scrollbar {
  width: 6px;
}

/* line 8990, app/assets/stylesheets/pages/customerspace/_account.scss */
#profileModal .modal-content form::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
}

/* line 8994, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #profileModal .modal-content form::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

/* line 8999, app/assets/stylesheets/pages/customerspace/_account.scss */
#profileModal .modal-content form::-webkit-scrollbar-thumb {
  background: #e8b972;
  border-radius: 3px;
}

/* line 9004, app/assets/stylesheets/pages/customerspace/_account.scss */
#profileModal .modal-content form::-webkit-scrollbar-thumb:hover {
  background: #d4a85f;
}

/* line 9008, app/assets/stylesheets/pages/customerspace/_account.scss */
#profileModal .modal-content form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
  /* line 9008, app/assets/stylesheets/pages/customerspace/_account.scss */
  #profileModal .modal-content form .form-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

/* line 9019, app/assets/stylesheets/pages/customerspace/_account.scss */
#profileModal .modal-content form .form-grid .form-group {
  margin-bottom: 0 !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  /* Champ d'adresse sur toute la largeur */
}

/* line 9027, app/assets/stylesheets/pages/customerspace/_account.scss */
#profileModal .modal-content form .form-grid .form-group.address-field {
  grid-column: 1 / -1;
}

/* line 9031, app/assets/stylesheets/pages/customerspace/_account.scss */
#profileModal .modal-content form .form-grid .form-group label {
  display: block !important;
  font-weight: 500 !important;
  margin-bottom: 0.4rem !important;
  color: #333333 !important;
  opacity: 1 !important;
  visibility: visible !important;
  font-size: 0.85rem !important;
  text-shadow: none !important;
  width: 100% !important;
  text-align: left !important;
  text-transform: none !important;
  padding-left: 0 !important;
}

/* line 9045, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #profileModal .modal-content form .form-grid .form-group label {
  color: #fefefe !important;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.5) !important;
}

/* line 9050, app/assets/stylesheets/pages/customerspace/_account.scss */
#profileModal .modal-content form .form-grid .form-group label i {
  margin-right: 0.5rem;
  color: #666666;
}

/* line 9054, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #profileModal .modal-content form .form-grid .form-group label i {
  color: rgba(254, 254, 254, 0.7);
}

/* line 9060, app/assets/stylesheets/pages/customerspace/_account.scss */
#profileModal .modal-content form .form-grid .form-group .form-input {
  width: 100% !important;
  height: 34px !important;
  padding: 5px 8px !important;
  border-radius: 4px !important;
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
  background-color: #ffffff !important;
  color: #333333 !important;
  font-size: 0.85rem !important;
  box-sizing: border-box !important;
  margin: 0 !important;
}

/* line 9072, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #profileModal .modal-content form .form-grid .form-group .form-input {
  border-color: rgba(255, 255, 255, 0.3) !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: white !important;
}

/* line 9078, app/assets/stylesheets/pages/customerspace/_account.scss */
#profileModal .modal-content form .form-grid .form-group .form-input:focus {
  outline: none;
  border-color: #e8b972 !important;
  box-shadow: 0 0 0 2px rgba(232, 185, 114, 0.2) !important;
}

/* line 9083, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #profileModal .modal-content form .form-grid .form-group .form-input:focus {
  border-color: #e8b972 !important;
  box-shadow: 0 0 0 2px rgba(232, 185, 114, 0.3) !important;
}

/* line 9089, app/assets/stylesheets/pages/customerspace/_account.scss */
#profileModal .modal-content form .form-grid .form-group .form-input::placeholder {
  color: rgba(0, 0, 0, 0.5) !important;
}

/* line 9092, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #profileModal .modal-content form .form-grid .form-group .form-input::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* line 9097, app/assets/stylesheets/pages/customerspace/_account.scss */
#profileModal .modal-content form .form-grid .form-group .form-input.address-complete {
  background-color: #f8f9fa !important;
  color: #6c757d !important;
  cursor: not-allowed;
  min-height: 60px !important;
  resize: none !important;
  overflow: hidden !important;
  word-wrap: break-word !important;
  line-height: 1.4 !important;
}

/* line 9107, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #profileModal .modal-content form .form-grid .form-group .form-input.address-complete {
  background-color: rgba(255, 255, 255, 0.05) !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

/* line 9114, app/assets/stylesheets/pages/customerspace/_account.scss */
#profileModal .modal-content form .form-grid .form-group .form-hint {
  font-size: 0.65rem;
  color: rgba(254, 254, 254, 0.6) !important;
  margin-top: 0.15rem;
}

/* line 9119, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #profileModal .modal-content form .form-grid .form-group .form-hint {
  color: rgba(254, 254, 254, 0.6) !important;
}

/* line 9126, app/assets/stylesheets/pages/customerspace/_account.scss */
#profileModal .modal-content form .form-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

/* line 9134, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #profileModal .modal-content form .form-actions {
  border-top-color: rgba(255, 255, 255, 0.2);
}

/* line 9138, app/assets/stylesheets/pages/customerspace/_account.scss */
#profileModal .modal-content form .form-actions .form-button, #profileModal .modal-content form .form-actions .crm-action-button, #profileModal .modal-content form .form-actions .users-management-container .users-header .add-user-btn, .users-management-container .users-header #profileModal .modal-content form .form-actions .add-user-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  min-width: 120px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 9152, app/assets/stylesheets/pages/customerspace/_account.scss */
#profileModal .modal-content form .form-actions .form-button.secondary, #profileModal .modal-content form .form-actions .secondary.crm-action-button, #profileModal .modal-content form .form-actions .users-management-container .users-header .secondary.add-user-btn, .users-management-container .users-header #profileModal .modal-content form .form-actions .secondary.add-user-btn {
  background-color: rgba(0, 0, 0, 0.1);
  color: #333333;
}

/* line 9156, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #profileModal .modal-content form .form-actions .form-button.secondary, [data-lightmode-target="button"] #profileModal .modal-content form .form-actions .secondary.crm-action-button, [data-lightmode-target="button"] #profileModal .modal-content form .form-actions .users-management-container .users-header .secondary.add-user-btn, .users-management-container .users-header [data-lightmode-target="button"] #profileModal .modal-content form .form-actions .secondary.add-user-btn {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* line 9161, app/assets/stylesheets/pages/customerspace/_account.scss */
#profileModal .modal-content form .form-actions .form-button.secondary:hover, #profileModal .modal-content form .form-actions .secondary.crm-action-button:hover, #profileModal .modal-content form .form-actions .users-management-container .users-header .secondary.add-user-btn:hover, .users-management-container .users-header #profileModal .modal-content form .form-actions .secondary.add-user-btn:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

/* line 9164, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #profileModal .modal-content form .form-actions .form-button.secondary:hover, [data-lightmode-target="button"] #profileModal .modal-content form .form-actions .secondary.crm-action-button:hover, [data-lightmode-target="button"] #profileModal .modal-content form .form-actions .users-management-container .users-header .secondary.add-user-btn:hover, .users-management-container .users-header [data-lightmode-target="button"] #profileModal .modal-content form .form-actions .secondary.add-user-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* line 9170, app/assets/stylesheets/pages/customerspace/_account.scss */
#profileModal .modal-content form .form-actions .form-button:not(.secondary), #profileModal .modal-content form .form-actions .crm-action-button:not(.secondary), #profileModal .modal-content form .form-actions .users-management-container .users-header .add-user-btn:not(.secondary), .users-management-container .users-header #profileModal .modal-content form .form-actions .add-user-btn:not(.secondary) {
  background-color: #e8b972;
  color: #333333;
}

/* line 9174, app/assets/stylesheets/pages/customerspace/_account.scss */
#profileModal .modal-content form .form-actions .form-button:not(.secondary):hover, #profileModal .modal-content form .form-actions .crm-action-button:not(.secondary):hover, #profileModal .modal-content form .form-actions .users-management-container .users-header .add-user-btn:not(.secondary):hover, .users-management-container .users-header #profileModal .modal-content form .form-actions .add-user-btn:not(.secondary):hover {
  background-color: #d4a85f;
}

/* Styles pour l'autocomplétion Google Places */
/* line 9185, app/assets/stylesheets/pages/customerspace/_account.scss */
.pac-container {
  z-index: 10000 !important;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-family: inherit;
}

/* line 9193, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] .pac-container {
  background-color: rgba(40, 44, 52, 0.95);
  border-color: rgba(255, 255, 255, 0.2);
}

/* line 9198, app/assets/stylesheets/pages/customerspace/_account.scss */
.pac-container .pac-item {
  padding: 8px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: #333333;
  cursor: pointer;
  transition: background-color 0.2s;
}

/* line 9205, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] .pac-container .pac-item {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* line 9210, app/assets/stylesheets/pages/customerspace/_account.scss */
.pac-container .pac-item:hover {
  background-color: rgba(232, 185, 114, 0.1);
}

/* line 9213, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] .pac-container .pac-item:hover {
  background-color: rgba(232, 185, 114, 0.2);
}

/* line 9218, app/assets/stylesheets/pages/customerspace/_account.scss */
.pac-container .pac-item:last-child {
  border-bottom: none;
}

/* line 9223, app/assets/stylesheets/pages/customerspace/_account.scss */
.pac-container .pac-item-query {
  font-weight: 500;
  color: #333333;
}

/* line 9227, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] .pac-container .pac-item-query {
  color: #ffffff;
}

/* line 9232, app/assets/stylesheets/pages/customerspace/_account.scss */
.pac-container .pac-matched {
  font-weight: bold;
  color: #e8b972;
}

/* Styles spécifiques pour la modal "Modifier votre mot de passe" */
/* line 9240, app/assets/stylesheets/pages/customerspace/_account.scss */
#passwordmodal .modal-content {
  max-width: 700px;
  max-height: 85vh;
  width: 90%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fefefe;
  color: #333333;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 12px;
}

/* line 9253, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #passwordmodal .modal-content {
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
  color: white;
  border: none;
}

/* line 9259, app/assets/stylesheets/pages/customerspace/_account.scss */
#passwordmodal .modal-content .close {
  color: rgba(0, 0, 0, 0.5);
}

/* line 9262, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #passwordmodal .modal-content .close {
  color: rgba(254, 254, 254, 0.8);
}

/* line 9266, app/assets/stylesheets/pages/customerspace/_account.scss */
#passwordmodal .modal-content .close:hover {
  color: #C38761;
}

/* line 9269, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #passwordmodal .modal-content .close:hover {
  color: #fefefe;
  background-color: rgba(254, 254, 254, 0.1);
}

/* line 9276, app/assets/stylesheets/pages/customerspace/_account.scss */
#passwordmodal .modal-content h2, #passwordmodal .modal-content .h2 {
  margin: 0;
  padding: 1.25rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  color: #333333;
  flex-shrink: 0;
}

/* line 9286, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #passwordmodal .modal-content h2, [data-lightmode-target="button"] #passwordmodal .modal-content .h2 {
  border-bottom-color: rgba(255, 255, 255, 0.2);
  color: white;
}

/* line 9292, app/assets/stylesheets/pages/customerspace/_account.scss */
#passwordmodal .modal-content form {
  padding: 1.25rem;
  flex: 1;
  overflow-y: auto;
  max-height: calc(85vh - 120px);
  /* Personnalisation de la barre de défilement */
}

/* line 9299, app/assets/stylesheets/pages/customerspace/_account.scss */
#passwordmodal .modal-content form::-webkit-scrollbar {
  width: 6px;
}

/* line 9303, app/assets/stylesheets/pages/customerspace/_account.scss */
#passwordmodal .modal-content form::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
}

/* line 9307, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #passwordmodal .modal-content form::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

/* line 9312, app/assets/stylesheets/pages/customerspace/_account.scss */
#passwordmodal .modal-content form::-webkit-scrollbar-thumb {
  background: #e8b972;
  border-radius: 3px;
}

/* line 9317, app/assets/stylesheets/pages/customerspace/_account.scss */
#passwordmodal .modal-content form::-webkit-scrollbar-thumb:hover {
  background: #d4a85f;
}

/* line 9321, app/assets/stylesheets/pages/customerspace/_account.scss */
#passwordmodal .modal-content form .form-group {
  margin-bottom: 0.75rem;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

/* line 9328, app/assets/stylesheets/pages/customerspace/_account.scss */
#passwordmodal .modal-content form .form-group label {
  display: block !important;
  font-weight: 500 !important;
  margin-bottom: 0.3rem !important;
  color: #333333 !important;
  opacity: 1 !important;
  visibility: visible !important;
  font-size: 0.85rem !important;
  text-shadow: none !important;
  width: 100% !important;
  text-align: left !important;
  text-transform: none !important;
  padding-left: 0 !important;
}

/* line 9342, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #passwordmodal .modal-content form .form-group label {
  color: #fefefe !important;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.5) !important;
}

/* line 9348, app/assets/stylesheets/pages/customerspace/_account.scss */
#passwordmodal .modal-content form .form-group .password-input-container {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.2);
  width: 100%;
}

/* line 9357, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #passwordmodal .modal-content form .form-group .password-input-container {
  border-color: rgba(255, 255, 255, 0.3);
}

/* line 9361, app/assets/stylesheets/pages/customerspace/_account.scss */
#passwordmodal .modal-content form .form-group .password-input-container .form-input {
  flex-grow: 1;
  border: none;
  border-radius: 0;
  padding: 8px 12px;
  padding-right: 50px;
  height: 38px;
  line-height: 22px;
  font-size: 0.85rem;
  background-color: #ffffff;
  color: #333333;
  margin-right: 40px !important;
}

/* line 9374, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #passwordmodal .modal-content form .form-group .password-input-container .form-input {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

/* line 9379, app/assets/stylesheets/pages/customerspace/_account.scss */
#passwordmodal .modal-content form .form-group .password-input-container .form-input:focus {
  outline: none;
  border-color: #e8b972;
  box-shadow: 0 0 0 2px rgba(232, 185, 114, 0.2);
}

/* line 9384, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #passwordmodal .modal-content form .form-group .password-input-container .form-input:focus {
  border-color: #e8b972;
  box-shadow: 0 0 0 2px rgba(232, 185, 114, 0.3);
}

/* line 9391, app/assets/stylesheets/pages/customerspace/_account.scss */
#passwordmodal .modal-content form .form-group .password-input-container .toggle-password {
  width: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #666666;
  transition: all 0.2s;
  background-color: rgba(0, 0, 0, 0.05);
  border-left: 1px solid rgba(0, 0, 0, 0.2);
}

/* line 9403, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #passwordmodal .modal-content form .form-group .password-input-container .toggle-password {
  color: rgba(254, 254, 254, 0.6);
  background-color: rgba(254, 254, 254, 0.05);
  border-left-color: rgba(254, 254, 254, 0.2);
}

/* line 9409, app/assets/stylesheets/pages/customerspace/_account.scss */
#passwordmodal .modal-content form .form-group .password-input-container .toggle-password:hover {
  color: #e8b972;
  background-color: rgba(0, 0, 0, 0.1);
}

/* line 9413, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #passwordmodal .modal-content form .form-group .password-input-container .toggle-password:hover {
  color: #C38761;
  background-color: rgba(254, 254, 254, 0.1);
}

/* line 9419, app/assets/stylesheets/pages/customerspace/_account.scss */
#passwordmodal .modal-content form .form-group .password-input-container .toggle-password i {
  font-size: 1.1rem;
}

/* line 9425, app/assets/stylesheets/pages/customerspace/_account.scss */
#passwordmodal .modal-content form .form-group .password-match-message {
  font-size: 0.8rem;
  margin-top: 3px;
}

/* line 9429, app/assets/stylesheets/pages/customerspace/_account.scss */
#passwordmodal .modal-content form .form-group .password-match-message.match {
  color: #10b981;
}

/* line 9433, app/assets/stylesheets/pages/customerspace/_account.scss */
#passwordmodal .modal-content form .form-group .password-match-message.mismatch {
  color: #ef4444;
}

/* line 9439, app/assets/stylesheets/pages/customerspace/_account.scss */
#passwordmodal .modal-content form .password-strength {
  margin: 0.75rem 0;
  padding: 0.75rem;
  background-color: rgba(0, 0, 0, 0.02);
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

/* line 9446, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #passwordmodal .modal-content form .password-strength {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

/* line 9451, app/assets/stylesheets/pages/customerspace/_account.scss */
#passwordmodal .modal-content form .password-strength .strength-meter {
  width: 100%;
  height: 6px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  margin: 8px 0;
  overflow: hidden;
}

/* line 9459, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #passwordmodal .modal-content form .password-strength .strength-meter {
  background-color: rgba(254, 254, 254, 0.1);
}

/* line 9463, app/assets/stylesheets/pages/customerspace/_account.scss */
#passwordmodal .modal-content form .password-strength .strength-meter .strength-bar {
  height: 100%;
  width: 0%;
  background-color: #f87171;
  transition: width 0.3s, background-color 0.3s;
}

/* line 9471, app/assets/stylesheets/pages/customerspace/_account.scss */
#passwordmodal .modal-content form .password-strength .strength-text {
  font-size: 0.85rem;
  color: #666666;
  margin: 3px 0;
}

/* line 9476, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #passwordmodal .modal-content form .password-strength .strength-text {
  color: rgba(254, 254, 254, 0.8);
}

/* line 9480, app/assets/stylesheets/pages/customerspace/_account.scss */
#passwordmodal .modal-content form .password-strength .strength-text span {
  font-weight: 500;
}

/* line 9485, app/assets/stylesheets/pages/customerspace/_account.scss */
#passwordmodal .modal-content form .password-strength .password-tip {
  font-size: 0.75rem;
  color: #666666;
  margin: 3px 0 0 0;
  line-height: 1.3;
}

/* line 9491, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #passwordmodal .modal-content form .password-strength .password-tip {
  color: rgba(254, 254, 254, 0.6);
}

/* line 9497, app/assets/stylesheets/pages/customerspace/_account.scss */
#passwordmodal .modal-content form .form-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

/* line 9505, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #passwordmodal .modal-content form .form-actions {
  border-top-color: rgba(255, 255, 255, 0.2);
}

/* line 9509, app/assets/stylesheets/pages/customerspace/_account.scss */
#passwordmodal .modal-content form .form-actions .two-factor-form-actions {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  justify-content: stretch;
  flex-wrap: nowrap;
}

/* line 9517, app/assets/stylesheets/pages/customerspace/_account.scss */
#passwordmodal .modal-content form .form-actions .form-button, #passwordmodal .modal-content form .form-actions .crm-action-button, #passwordmodal .modal-content form .form-actions .users-management-container .users-header .add-user-btn, .users-management-container .users-header #passwordmodal .modal-content form .form-actions .add-user-btn {
  padding: 0.6rem 1rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  flex: 1 1 0;
  min-width: 180px;
  width: auto;
  white-space: nowrap;
}

/* line 9534, app/assets/stylesheets/pages/customerspace/_account.scss */
#passwordmodal .modal-content form .form-actions .form-button[type="submit"], #passwordmodal .modal-content form .form-actions .crm-action-button[type="submit"], #passwordmodal .modal-content form .form-actions .users-management-container .users-header .add-user-btn[type="submit"], .users-management-container .users-header #passwordmodal .modal-content form .form-actions .add-user-btn[type="submit"] {
  background-color: #e8b972;
  color: #333333;
}

/* line 9538, app/assets/stylesheets/pages/customerspace/_account.scss */
#passwordmodal .modal-content form .form-actions .form-button[type="submit"]:hover, #passwordmodal .modal-content form .form-actions .crm-action-button[type="submit"]:hover, #passwordmodal .modal-content form .form-actions .users-management-container .users-header .add-user-btn[type="submit"]:hover, .users-management-container .users-header #passwordmodal .modal-content form .form-actions .add-user-btn[type="submit"]:hover {
  background-color: #d4a85f;
}

/* line 9543, app/assets/stylesheets/pages/customerspace/_account.scss */
#passwordmodal .modal-content form .form-actions .form-button.secondary, #passwordmodal .modal-content form .form-actions .secondary.crm-action-button, #passwordmodal .modal-content form .form-actions .users-management-container .users-header .secondary.add-user-btn, .users-management-container .users-header #passwordmodal .modal-content form .form-actions .secondary.add-user-btn {
  background-color: rgba(0, 0, 0, 0.05);
  color: #666666;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

/* line 9548, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #passwordmodal .modal-content form .form-actions .form-button.secondary, [data-lightmode-target="button"] #passwordmodal .modal-content form .form-actions .secondary.crm-action-button, [data-lightmode-target="button"] #passwordmodal .modal-content form .form-actions .users-management-container .users-header .secondary.add-user-btn, .users-management-container .users-header [data-lightmode-target="button"] #passwordmodal .modal-content form .form-actions .secondary.add-user-btn {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(254, 254, 254, 0.8);
  border-color: rgba(255, 255, 255, 0.2);
}

/* line 9554, app/assets/stylesheets/pages/customerspace/_account.scss */
#passwordmodal .modal-content form .form-actions .form-button.secondary:hover, #passwordmodal .modal-content form .form-actions .secondary.crm-action-button:hover, #passwordmodal .modal-content form .form-actions .users-management-container .users-header .secondary.add-user-btn:hover, .users-management-container .users-header #passwordmodal .modal-content form .form-actions .secondary.add-user-btn:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

/* line 9557, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #passwordmodal .modal-content form .form-actions .form-button.secondary:hover, [data-lightmode-target="button"] #passwordmodal .modal-content form .form-actions .secondary.crm-action-button:hover, [data-lightmode-target="button"] #passwordmodal .modal-content form .form-actions .users-management-container .users-header .secondary.add-user-btn:hover, .users-management-container .users-header [data-lightmode-target="button"] #passwordmodal .modal-content form .form-actions .secondary.add-user-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Styles spécifiques pour la modal "Changer votre photo de profil" */
/* line 9570, app/assets/stylesheets/pages/customerspace/_account.scss */
#avatarModal .modal-content {
  max-width: 500px;
  max-height: 85vh;
  width: 90%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fefefe;
  color: #333333;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 12px;
}

/* line 9583, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #avatarModal .modal-content {
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
  color: white;
  border: none;
}

/* line 9589, app/assets/stylesheets/pages/customerspace/_account.scss */
#avatarModal .modal-content .close {
  color: rgba(0, 0, 0, 0.5);
}

/* line 9592, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #avatarModal .modal-content .close {
  color: rgba(254, 254, 254, 0.8);
}

/* line 9596, app/assets/stylesheets/pages/customerspace/_account.scss */
#avatarModal .modal-content .close:hover {
  color: #C38761;
}

/* line 9599, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #avatarModal .modal-content .close:hover {
  color: #fefefe;
  background-color: rgba(254, 254, 254, 0.1);
}

/* line 9606, app/assets/stylesheets/pages/customerspace/_account.scss */
#avatarModal .modal-content h2, #avatarModal .modal-content .h2 {
  margin: 0;
  padding: 1.25rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  color: #333333;
  flex-shrink: 0;
}

/* line 9616, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #avatarModal .modal-content h2, [data-lightmode-target="button"] #avatarModal .modal-content .h2 {
  border-bottom-color: rgba(255, 255, 255, 0.2);
  color: white;
}

/* line 9622, app/assets/stylesheets/pages/customerspace/_account.scss */
#avatarModal .modal-content form {
  padding: 1.25rem;
  flex: 1;
  overflow-y: auto;
  max-height: calc(85vh - 120px);
  /* Personnalisation de la barre de défilement */
}

/* line 9629, app/assets/stylesheets/pages/customerspace/_account.scss */
#avatarModal .modal-content form::-webkit-scrollbar {
  width: 6px;
}

/* line 9633, app/assets/stylesheets/pages/customerspace/_account.scss */
#avatarModal .modal-content form::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
}

/* line 9637, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #avatarModal .modal-content form::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

/* line 9642, app/assets/stylesheets/pages/customerspace/_account.scss */
#avatarModal .modal-content form::-webkit-scrollbar-thumb {
  background: #e8b972;
  border-radius: 3px;
}

/* line 9647, app/assets/stylesheets/pages/customerspace/_account.scss */
#avatarModal .modal-content form::-webkit-scrollbar-thumb:hover {
  background: #d4a85f;
}

/* line 9651, app/assets/stylesheets/pages/customerspace/_account.scss */
#avatarModal .modal-content form .form-group {
  margin-bottom: 1rem;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

/* line 9658, app/assets/stylesheets/pages/customerspace/_account.scss */
#avatarModal .modal-content form .form-group label {
  display: block !important;
  font-weight: 500 !important;
  margin-bottom: 0.4rem !important;
  color: #333333 !important;
  opacity: 1 !important;
  visibility: visible !important;
  font-size: 0.85rem !important;
  text-shadow: none !important;
  width: 100% !important;
  text-align: left !important;
  text-transform: none !important;
  padding-left: 0 !important;
}

/* line 9672, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #avatarModal .modal-content form .form-group label {
  color: #fefefe !important;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.5) !important;
}

/* line 9678, app/assets/stylesheets/pages/customerspace/_account.scss */
#avatarModal .modal-content form .form-group .file-upload-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

/* line 9684, app/assets/stylesheets/pages/customerspace/_account.scss */
#avatarModal .modal-content form .form-group .file-upload-container .file-upload-button {
  background-color: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0.75rem 1.5rem;
  padding-left: 1.5rem !important;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
}

/* line 9700, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #avatarModal .modal-content form .form-group .file-upload-container .file-upload-button {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

/* line 9706, app/assets/stylesheets/pages/customerspace/_account.scss */
#avatarModal .modal-content form .form-group .file-upload-container .file-upload-button:hover {
  background-color: rgba(0, 0, 0, 0.1);
  border-color: #e8b972;
}

/* line 9710, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #avatarModal .modal-content form .form-group .file-upload-container .file-upload-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: #e8b972;
}

/* line 9716, app/assets/stylesheets/pages/customerspace/_account.scss */
#avatarModal .modal-content form .form-group .file-upload-container .file-upload-button i {
  font-size: 1.1rem;
}

/* line 9721, app/assets/stylesheets/pages/customerspace/_account.scss */
#avatarModal .modal-content form .form-group .file-upload-container .file-input {
  position: absolute;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  z-index: -1;
}

/* line 9730, app/assets/stylesheets/pages/customerspace/_account.scss */
#avatarModal .modal-content form .form-group .file-upload-container .file-name {
  color: #666666;
  font-size: 0.8rem;
  text-align: center;
  padding: 0.5rem;
  background-color: rgba(0, 0, 0, 0.02);
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

/* line 9739, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #avatarModal .modal-content form .form-group .file-upload-container .file-name {
  color: rgba(254, 254, 254, 0.7);
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

/* line 9748, app/assets/stylesheets/pages/customerspace/_account.scss */
#avatarModal .modal-content form .preview-container {
  margin: 1rem 0;
  text-align: center;
}

/* line 9752, app/assets/stylesheets/pages/customerspace/_account.scss */
#avatarModal .modal-content form .preview-container.hidden {
  display: none;
}

/* line 9756, app/assets/stylesheets/pages/customerspace/_account.scss */
#avatarModal .modal-content form .preview-container p {
  margin-bottom: 0.75rem;
  color: #666666;
  font-size: 0.85rem;
  font-weight: 500;
}

/* line 9762, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #avatarModal .modal-content form .preview-container p {
  color: rgba(254, 254, 254, 0.8);
}

/* line 9767, app/assets/stylesheets/pages/customerspace/_account.scss */
#avatarModal .modal-content form .preview-container .avatar-preview-box {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border: 2px solid rgba(0, 0, 0, 0.1);
}

/* line 9779, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #avatarModal .modal-content form .preview-container .avatar-preview-box {
  background-color: rgba(254, 254, 254, 0.05);
  border-color: rgba(254, 254, 254, 0.2);
}

/* line 9784, app/assets/stylesheets/pages/customerspace/_account.scss */
#avatarModal .modal-content form .preview-container .avatar-preview-box .avatar-preview-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* line 9792, app/assets/stylesheets/pages/customerspace/_account.scss */
#avatarModal .modal-content form .avatar-info-box {
  display: flex;
  align-items: flex-start;
  padding: 0.75rem;
  background-color: rgba(0, 0, 0, 0.02);
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin: 1rem 0;
}

/* line 9801, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #avatarModal .modal-content form .avatar-info-box {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

/* line 9806, app/assets/stylesheets/pages/customerspace/_account.scss */
#avatarModal .modal-content form .avatar-info-box i {
  color: #e8b972;
  margin-right: 0.5rem;
  font-size: 1rem;
  margin-top: 0.1rem;
}

/* line 9813, app/assets/stylesheets/pages/customerspace/_account.scss */
#avatarModal .modal-content form .avatar-info-box p {
  font-size: 0.8rem;
  color: #666666;
  margin: 0;
  line-height: 1.4;
}

/* line 9819, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #avatarModal .modal-content form .avatar-info-box p {
  color: rgba(254, 254, 254, 0.8);
}

/* line 9825, app/assets/stylesheets/pages/customerspace/_account.scss */
#avatarModal .modal-content form .form-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

/* line 9833, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #avatarModal .modal-content form .form-actions {
  border-top-color: rgba(255, 255, 255, 0.2);
}

/* line 9837, app/assets/stylesheets/pages/customerspace/_account.scss */
#avatarModal .modal-content form .form-actions .two-factor-form-actions {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  justify-content: stretch;
  flex-wrap: nowrap;
}

/* line 9845, app/assets/stylesheets/pages/customerspace/_account.scss */
#avatarModal .modal-content form .form-actions .form-button, #avatarModal .modal-content form .form-actions .crm-action-button, #avatarModal .modal-content form .form-actions .users-management-container .users-header .add-user-btn, .users-management-container .users-header #avatarModal .modal-content form .form-actions .add-user-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  min-width: 120px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 9859, app/assets/stylesheets/pages/customerspace/_account.scss */
#avatarModal .modal-content form .form-actions .form-button.secondary, #avatarModal .modal-content form .form-actions .secondary.crm-action-button, #avatarModal .modal-content form .form-actions .users-management-container .users-header .secondary.add-user-btn, .users-management-container .users-header #avatarModal .modal-content form .form-actions .secondary.add-user-btn {
  background-color: rgba(0, 0, 0, 0.1);
  color: #333333;
}

/* line 9863, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #avatarModal .modal-content form .form-actions .form-button.secondary, [data-lightmode-target="button"] #avatarModal .modal-content form .form-actions .secondary.crm-action-button, [data-lightmode-target="button"] #avatarModal .modal-content form .form-actions .users-management-container .users-header .secondary.add-user-btn, .users-management-container .users-header [data-lightmode-target="button"] #avatarModal .modal-content form .form-actions .secondary.add-user-btn {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* line 9868, app/assets/stylesheets/pages/customerspace/_account.scss */
#avatarModal .modal-content form .form-actions .form-button.secondary:hover, #avatarModal .modal-content form .form-actions .secondary.crm-action-button:hover, #avatarModal .modal-content form .form-actions .users-management-container .users-header .secondary.add-user-btn:hover, .users-management-container .users-header #avatarModal .modal-content form .form-actions .secondary.add-user-btn:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

/* line 9871, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #avatarModal .modal-content form .form-actions .form-button.secondary:hover, [data-lightmode-target="button"] #avatarModal .modal-content form .form-actions .secondary.crm-action-button:hover, [data-lightmode-target="button"] #avatarModal .modal-content form .form-actions .users-management-container .users-header .secondary.add-user-btn:hover, .users-management-container .users-header [data-lightmode-target="button"] #avatarModal .modal-content form .form-actions .secondary.add-user-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* line 9877, app/assets/stylesheets/pages/customerspace/_account.scss */
#avatarModal .modal-content form .form-actions .form-button:not(.secondary), #avatarModal .modal-content form .form-actions .crm-action-button:not(.secondary), #avatarModal .modal-content form .form-actions .users-management-container .users-header .add-user-btn:not(.secondary), .users-management-container .users-header #avatarModal .modal-content form .form-actions .add-user-btn:not(.secondary) {
  background-color: #e8b972;
  color: #333333;
}

/* line 9881, app/assets/stylesheets/pages/customerspace/_account.scss */
#avatarModal .modal-content form .form-actions .form-button:not(.secondary):hover, #avatarModal .modal-content form .form-actions .crm-action-button:not(.secondary):hover, #avatarModal .modal-content form .form-actions .users-management-container .users-header .add-user-btn:not(.secondary):hover, .users-management-container .users-header #avatarModal .modal-content form .form-actions .add-user-btn:not(.secondary):hover {
  background-color: #d4a85f;
}

/* Styles spécifiques pour la modal 2FA - Priorité maximale */
/* line 9892, app/assets/stylesheets/pages/customerspace/_account.scss */
#twoFactorModal .modal-content .two-factor-setup .form-actions .form-button, #twoFactorModal .modal-content .two-factor-setup .form-actions .crm-action-button, #twoFactorModal .modal-content .two-factor-setup .form-actions .users-management-container .users-header .add-user-btn, .users-management-container .users-header #twoFactorModal .modal-content .two-factor-setup .form-actions .add-user-btn,
#disableTwoFactorModal .modal-content form .form-actions .form-button,
#disableTwoFactorModal .modal-content form .form-actions .crm-action-button,
#disableTwoFactorModal .modal-content form .form-actions .users-management-container .users-header .add-user-btn,
.users-management-container .users-header #disableTwoFactorModal .modal-content form .form-actions .add-user-btn {
  all: unset !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 6px !important;
  font-weight: 500 !important;
  font-size: 0.9rem !important;
  transition: all 0.2s !important;
  border: none !important;
  cursor: pointer !important;
  min-width: 120px !important;
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: #e8b972 !important;
  color: #333333 !important;
  box-shadow: none !important;
  text-decoration: none !important;
  white-space: normal !important;
  height: auto !important;
  transform: none !important;
}

/* line 9915, app/assets/stylesheets/pages/customerspace/_account.scss */
#twoFactorModal .modal-content .two-factor-setup .form-actions .form-button.secondary, #twoFactorModal .modal-content .two-factor-setup .form-actions .secondary.crm-action-button, #twoFactorModal .modal-content .two-factor-setup .form-actions .users-management-container .users-header .secondary.add-user-btn, .users-management-container .users-header #twoFactorModal .modal-content .two-factor-setup .form-actions .secondary.add-user-btn,
#disableTwoFactorModal .modal-content form .form-actions .form-button.secondary,
#disableTwoFactorModal .modal-content form .form-actions .secondary.crm-action-button,
#disableTwoFactorModal .modal-content form .form-actions .users-management-container .users-header .secondary.add-user-btn,
.users-management-container .users-header #disableTwoFactorModal .modal-content form .form-actions .secondary.add-user-btn {
  background-color: rgba(0, 0, 0, 0.1) !important;
  color: #333333 !important;
}

/* line 9919, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #twoFactorModal .modal-content .two-factor-setup .form-actions .form-button.secondary, [data-lightmode-target="button"] #twoFactorModal .modal-content .two-factor-setup .form-actions .secondary.crm-action-button, [data-lightmode-target="button"] #twoFactorModal .modal-content .two-factor-setup .form-actions .users-management-container .users-header .secondary.add-user-btn, .users-management-container .users-header [data-lightmode-target="button"] #twoFactorModal .modal-content .two-factor-setup .form-actions .secondary.add-user-btn, [data-lightmode-target="button"] #disableTwoFactorModal .modal-content form .form-actions .form-button.secondary, [data-lightmode-target="button"] #disableTwoFactorModal .modal-content form .form-actions .secondary.crm-action-button, [data-lightmode-target="button"] #disableTwoFactorModal .modal-content form .form-actions .users-management-container .users-header .secondary.add-user-btn, .users-management-container .users-header [data-lightmode-target="button"] #disableTwoFactorModal .modal-content form .form-actions .secondary.add-user-btn {
  background-color: rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
}

/* line 9924, app/assets/stylesheets/pages/customerspace/_account.scss */
#twoFactorModal .modal-content .two-factor-setup .form-actions .form-button.secondary:hover, #twoFactorModal .modal-content .two-factor-setup .form-actions .secondary.crm-action-button:hover, #twoFactorModal .modal-content .two-factor-setup .form-actions .users-management-container .users-header .secondary.add-user-btn:hover, .users-management-container .users-header #twoFactorModal .modal-content .two-factor-setup .form-actions .secondary.add-user-btn:hover,
#disableTwoFactorModal .modal-content form .form-actions .form-button.secondary:hover,
#disableTwoFactorModal .modal-content form .form-actions .secondary.crm-action-button:hover,
#disableTwoFactorModal .modal-content form .form-actions .users-management-container .users-header .secondary.add-user-btn:hover,
.users-management-container .users-header #disableTwoFactorModal .modal-content form .form-actions .secondary.add-user-btn:hover {
  background-color: rgba(0, 0, 0, 0.2) !important;
}

/* line 9927, app/assets/stylesheets/pages/customerspace/_account.scss */
[data-lightmode-target="button"] #twoFactorModal .modal-content .two-factor-setup .form-actions .form-button.secondary:hover, [data-lightmode-target="button"] #twoFactorModal .modal-content .two-factor-setup .form-actions .secondary.crm-action-button:hover, [data-lightmode-target="button"] #twoFactorModal .modal-content .two-factor-setup .form-actions .users-management-container .users-header .secondary.add-user-btn:hover, .users-management-container .users-header [data-lightmode-target="button"] #twoFactorModal .modal-content .two-factor-setup .form-actions .secondary.add-user-btn:hover, [data-lightmode-target="button"] #disableTwoFactorModal .modal-content form .form-actions .form-button.secondary:hover, [data-lightmode-target="button"] #disableTwoFactorModal .modal-content form .form-actions .secondary.crm-action-button:hover, [data-lightmode-target="button"] #disableTwoFactorModal .modal-content form .form-actions .users-management-container .users-header .secondary.add-user-btn:hover, .users-management-container .users-header [data-lightmode-target="button"] #disableTwoFactorModal .modal-content form .form-actions .secondary.add-user-btn:hover {
  background-color: rgba(255, 255, 255, 0.3) !important;
}

/* line 9933, app/assets/stylesheets/pages/customerspace/_account.scss */
#twoFactorModal .modal-content .two-factor-setup .form-actions .form-button:not(.secondary), #twoFactorModal .modal-content .two-factor-setup .form-actions .crm-action-button:not(.secondary), #twoFactorModal .modal-content .two-factor-setup .form-actions .users-management-container .users-header .add-user-btn:not(.secondary), .users-management-container .users-header #twoFactorModal .modal-content .two-factor-setup .form-actions .add-user-btn:not(.secondary),
#disableTwoFactorModal .modal-content form .form-actions .form-button:not(.secondary),
#disableTwoFactorModal .modal-content form .form-actions .crm-action-button:not(.secondary),
#disableTwoFactorModal .modal-content form .form-actions .users-management-container .users-header .add-user-btn:not(.secondary),
.users-management-container .users-header #disableTwoFactorModal .modal-content form .form-actions .add-user-btn:not(.secondary) {
  background-color: #e8b972 !important;
  color: #333333 !important;
}

/* line 9937, app/assets/stylesheets/pages/customerspace/_account.scss */
#twoFactorModal .modal-content .two-factor-setup .form-actions .form-button:not(.secondary):hover, #twoFactorModal .modal-content .two-factor-setup .form-actions .crm-action-button:not(.secondary):hover, #twoFactorModal .modal-content .two-factor-setup .form-actions .users-management-container .users-header .add-user-btn:not(.secondary):hover, .users-management-container .users-header #twoFactorModal .modal-content .two-factor-setup .form-actions .add-user-btn:not(.secondary):hover,
#disableTwoFactorModal .modal-content form .form-actions .form-button:not(.secondary):hover,
#disableTwoFactorModal .modal-content form .form-actions .crm-action-button:not(.secondary):hover,
#disableTwoFactorModal .modal-content form .form-actions .users-management-container .users-header .add-user-btn:not(.secondary):hover,
.users-management-container .users-header #disableTwoFactorModal .modal-content form .form-actions .add-user-btn:not(.secondary):hover {
  background-color: #d4a85f !important;
}

/* line 1, app/assets/stylesheets/pages/customerspace/_home.scss */
.bloc-client-content-home {
  height: 100%;
  width: 100%;
  max-width: 100%;
  /* Empêche tout débordement horizontal */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 15px;
  overflow-x: hidden;
  /* Masque tout débordement horizontal */
  overflow-y: auto;
  /* Permettre scroll si nécessaire */
  scrollbar-color: rgba(232, 185, 114, 0.6) rgba(255, 255, 255, 0.05);
  /* Firefox */
}

/* line 15, app/assets/stylesheets/pages/customerspace/_home.scss */
.bloc-client-content-home::-webkit-scrollbar {
  width: 5px;
}

/* line 19, app/assets/stylesheets/pages/customerspace/_home.scss */
.bloc-client-content-home::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

/* line 24, app/assets/stylesheets/pages/customerspace/_home.scss */
.bloc-client-content-home::-webkit-scrollbar-thumb {
  background: rgba(232, 185, 114, 0.6);
  border-radius: 3px;
}

/* line 29, app/assets/stylesheets/pages/customerspace/_home.scss */
.bloc-client-content-home::-webkit-scrollbar-thumb:hover {
  background: rgba(232, 185, 114, 0.8);
}

/* line 35, app/assets/stylesheets/pages/customerspace/_home.scss */
.bloc-client-content-home-column1 {
  width: 100%;
  max-width: 100%;
  /* Empêche tout débordement horizontal */
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 0px;
  /* Padding en bas pour aligner les actualités */
  position: relative;
  /* Pour le positionnement absolu de la row 1 */
  overflow-x: hidden;
  /* Masque tout débordement horizontal */
}

/* Nouvelles structures pour les rows */
/* line 48, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-row-1 {
  display: flex !important;
  flex-direction: row !important;
  gap: 16px;
  align-items: stretch !important;
  /* Aligner les cards en hauteur */
  transition: opacity 350ms ease, transform 350ms ease;
  opacity: 1;
  transform: translateY(0);
  height: 180px !important;
  /* Hauteur réduite pour éliminer le vide */
  position: absolute !important;
  top: 20% !important;
  /* Repositionné plus haut */
  left: 0 !important;
  right: 0 !important;
  transform: translateY(-50%) !important;
  z-index: 10 !important;
  padding: 0 20px;
  /* Ajout de padding pour éviter que les cartes touchent les bords */
}

/* line 66, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-row-2 {
  position: absolute !important;
  bottom: 0 !important;
  left: 20px !important;
  right: 20px !important;
  height: 100% !important;
  /* Hauteur initiale plus grande */
  z-index: 5 !important;
  padding: 0;
  /* Pas de padding supplémentaire car left/right gèrent déjà l'espacement */
}

/* Cards de la première row */
/* line 77, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-card {
  flex: 1 !important;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 20px;
  box-sizing: border-box;
  /* Inclut le padding dans le calcul de largeur */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  flex-direction: column !important;
  gap: 5px;
  height: 200px !important;
  /* Hauteur réduite pour éliminer le vide */
  max-height: 200px !important;
  /* Limiter la hauteur maximale */
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  /* Effet hover très subtil */
  /* Effet de lueur au survol */
  /* Effets spécifiques par carte */
}

/* line 95, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.12);
}

/* line 99, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-card:hover .card-icon {
  transform: scale(1.02);
}

/* line 105, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-card .card-hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

/* line 118, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-card.assistant-card .card-hover-effect {
  background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.1), transparent);
}

/* line 122, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-card.support-card .card-hover-effect {
  background: radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.1), transparent);
}

/* line 127, app/assets/stylesheets/pages/customerspace/_home.scss */
.card-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* line 133, app/assets/stylesheets/pages/customerspace/_home.scss */
.support-card {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

/* line 138, app/assets/stylesheets/pages/customerspace/_home.scss */
.support-card .card-content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  /* Prend l'espace disponible */
}

/* line 146, app/assets/stylesheets/pages/customerspace/_home.scss */
.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(99, 102, 241, 0.4));
  color: #6366f1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transition: transform 0.3s ease;
  position: relative;
  /* Effet de lueur */
  /* Styles spécifiques par carte */
}

/* line 161, app/assets/stylesheets/pages/customerspace/_home.scss */
.card-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  opacity: 0.3;
  filter: blur(15px);
  z-index: 1;
  background: #6366f1;
}

/* line 175, app/assets/stylesheets/pages/customerspace/_home.scss */
.card-icon i {
  z-index: 2;
  position: relative;
}

/* line 181, app/assets/stylesheets/pages/customerspace/_home.scss */
.assistant-card .card-icon {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(99, 102, 241, 0.4));
  color: #6366f1;
}

/* line 185, app/assets/stylesheets/pages/customerspace/_home.scss */
.assistant-card .card-icon::before {
  background: #6366f1;
}

/* line 190, app/assets/stylesheets/pages/customerspace/_home.scss */
.support-card .card-icon {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.4));
  color: #f59e0b;
}

/* line 194, app/assets/stylesheets/pages/customerspace/_home.scss */
.support-card .card-icon::before {
  background: #f59e0b;
}

/* line 200, app/assets/stylesheets/pages/customerspace/_home.scss */
.card-text h3, .card-text .h3 {
  font-size: 14px !important;
  font-weight: bold !important;
  margin: 0 0 4px 0;
  color: #fefefe;
}

/* line 207, app/assets/stylesheets/pages/customerspace/_home.scss */
.card-text p {
  font-size: 0.8rem;
  margin: 0;
  opacity: 0.8;
  color: #fefefe;
}

/* line 214, app/assets/stylesheets/pages/customerspace/_home.scss */
.card-button {
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  color: #fefefe;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  /* Pas d'effet hover */
}

/* line 230, app/assets/stylesheets/pages/customerspace/_home.scss */
.card-button.secondary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  border-color: rgba(255, 255, 255, 0.18);
}

/* line 236, app/assets/stylesheets/pages/customerspace/_home.scss */
.card-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  /* Pousse les boutons vers le bas */
}

/* Responsive Design */
@media (max-width: 1200px) {
  /* line 246, app/assets/stylesheets/pages/customerspace/_home.scss */
  .home-row-1 {
    flex-direction: column;
    gap: 16px;
  }
  /* line 251, app/assets/stylesheets/pages/customerspace/_home.scss */
  .home-card {
    flex: none;
  }
}

@media (max-width: 768px) {
  /* line 257, app/assets/stylesheets/pages/customerspace/_home.scss */
  .home-row-1 {
    gap: 12px;
  }
  /* line 261, app/assets/stylesheets/pages/customerspace/_home.scss */
  .home-card {
    padding: 20px;
  }
  /* line 265, app/assets/stylesheets/pages/customerspace/_home.scss */
  .card-content {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  /* line 270, app/assets/stylesheets/pages/customerspace/_home.scss */
  .card-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  /* line 276, app/assets/stylesheets/pages/customerspace/_home.scss */
  .card-text h3, .card-text .h3 {
    font-size: 16px !important;
  }
  /* line 280, app/assets/stylesheets/pages/customerspace/_home.scss */
  .card-text p {
    font-size: 0.85rem;
  }
  /* Signatures AES */
  /* line 285, app/assets/stylesheets/pages/customerspace/_home.scss */
  .home-row-signatures {
    margin-top: 340px;
    padding: 0 20px 40px;
  }
}

@media (max-width: 768px) and (max-width: 1100px) {
  /* line 285, app/assets/stylesheets/pages/customerspace/_home.scss */
  .home-row-signatures {
    margin-top: 220px;
  }
}

@media (max-width: 768px) {
  /* line 294, app/assets/stylesheets/pages/customerspace/_home.scss */
  .customerspace-signature-widget {
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 24px;
    color: #f8fafc;
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(16px);
  }
  /* line 303, app/assets/stylesheets/pages/customerspace/_home.scss */
  .customerspace-signature-widget__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  /* line 310, app/assets/stylesheets/pages/customerspace/_home.scss */
  .customerspace-signature-widget__header h3, .customerspace-signature-widget__header .h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
  }
  /* line 316, app/assets/stylesheets/pages/customerspace/_home.scss */
  .customerspace-signature-widget__header p {
    margin: 0.2rem 0 0;
    font-size: 0.9rem;
    color: rgba(241, 245, 249, 0.7);
  }
  /* line 322, app/assets/stylesheets/pages/customerspace/_home.scss */
  .customerspace-signature-widget__header i {
    font-size: 1.8rem;
    color: #a855f7;
  }
  /* line 328, app/assets/stylesheets/pages/customerspace/_home.scss */
  .customerspace-signature-widget__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  /* line 337, app/assets/stylesheets/pages/customerspace/_home.scss */
  .customerspace-signature-widget__item {
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 16px;
    padding: 16px;
    background: rgba(15, 23, 42, 0.65);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  /* line 347, app/assets/stylesheets/pages/customerspace/_home.scss */
  .customerspace-signature-widget__item-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  /* line 353, app/assets/stylesheets/pages/customerspace/_home.scss */
  .customerspace-signature-widget__item-main strong {
    font-size: 1rem;
    font-weight: 600;
    color: #f8fafc;
  }
  /* line 360, app/assets/stylesheets/pages/customerspace/_home.scss */
  .customerspace-signature-widget__status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    background: rgba(148, 163, 184, 0.15);
  }
  /* line 372, app/assets/stylesheets/pages/customerspace/_home.scss */
  .customerspace-signature-widget__status--pending {
    background: rgba(234, 179, 8, 0.15);
    color: #facc15;
  }
  /* line 377, app/assets/stylesheets/pages/customerspace/_home.scss */
  .customerspace-signature-widget__status--viewed {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
  }
  /* line 382, app/assets/stylesheets/pages/customerspace/_home.scss */
  .customerspace-signature-widget__status--signed {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
  }
  /* line 387, app/assets/stylesheets/pages/customerspace/_home.scss */
  .customerspace-signature-widget__status--declined {
    background: rgba(248, 113, 113, 0.15);
    color: #f87171;
  }
  /* line 392, app/assets/stylesheets/pages/customerspace/_home.scss */
  .customerspace-signature-widget__status--bounced {
    background: rgba(248, 181, 0, 0.15);
    color: #f59e0b;
  }
  /* line 398, app/assets/stylesheets/pages/customerspace/_home.scss */
  .customerspace-signature-widget__item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: rgba(226, 232, 240, 0.75);
  }
  /* line 405, app/assets/stylesheets/pages/customerspace/_home.scss */
  .customerspace-signature-widget__item-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
  }
  /* line 412, app/assets/stylesheets/pages/customerspace/_home.scss */
  .customerspace-signature-widget__empty {
    text-align: center;
    padding: 2rem 1rem;
    border: 1px dashed rgba(148, 163, 184, 0.3);
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.5);
  }
  /* line 419, app/assets/stylesheets/pages/customerspace/_home.scss */
  .customerspace-signature-widget__empty i {
    font-size: 1.7rem;
    display: block;
    margin-bottom: 0.75rem;
    color: rgba(148, 163, 184, 0.8);
  }
  /* line 426, app/assets/stylesheets/pages/customerspace/_home.scss */
  .customerspace-signature-widget__empty p {
    margin: 0.3rem 0;
    color: rgba(226, 232, 240, 0.78);
  }
  /* line 433, app/assets/stylesheets/pages/customerspace/_home.scss */
  .card-button {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
  /* line 438, app/assets/stylesheets/pages/customerspace/_home.scss */
  .welcome-header {
    padding: 16px 12px;
  }
  /* line 442, app/assets/stylesheets/pages/customerspace/_home.scss */
  .welcome-avatars {
    gap: 12px;
  }
  /* line 446, app/assets/stylesheets/pages/customerspace/_home.scss */
  .user-avatar, .orizen-avatar {
    width: 40px;
    height: 40px;
  }
  /* line 451, app/assets/stylesheets/pages/customerspace/_home.scss */
  .user-avatar.default i,
.orizen-avatar i {
    font-size: 16px;
  }
  /* line 456, app/assets/stylesheets/pages/customerspace/_home.scss */
  .welcome-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  /* line 463, app/assets/stylesheets/pages/customerspace/_home.scss */
  .home-card {
    padding: 16px;
  }
  /* line 467, app/assets/stylesheets/pages/customerspace/_home.scss */
  .card-buttons {
    gap: 8px;
  }
  /* line 471, app/assets/stylesheets/pages/customerspace/_home.scss */
  .card-button {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
}

/* Animation pour masquer la première row quand actualités s'agrandit */
/* line 478, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu.up ~ .home-row-1,
.bloc-client-content-home-column1.up .home-row-1 {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(-50%) scale(0.8) !important;
  pointer-events: none !important;
  transition: opacity 600ms ease, transform 600ms ease, visibility 600ms ease !important;
  z-index: 1 !important;
  /* Descendre le z-index pour être derrière */
}

/* Animation pour faire réapparaître la première row quand actualités se ferme */
/* line 489, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu.down ~ .home-row-1,
.bloc-client-content-home-column1.down .home-row-1 {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(-50%) scale(1) !important;
  pointer-events: auto !important;
  transition: opacity 600ms ease, transform 600ms ease, visibility 600ms ease !important;
  z-index: 10 !important;
  /* Remonter le z-index */
}

/* line 499, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu {
  margin-bottom: 0;
  width: 100%;
  max-width: 100%;
  /* Empêche tout débordement horizontal */
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 20px;
  padding-top: 25px;
  /* Espace supplémentaire en haut pour la flèche */
  box-sizing: border-box;
  /* Inclut le padding dans le calcul de largeur */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  z-index: 100;
  justify-content: flex-start;
  /* Aligner les actualités en haut pour mieux utiliser l'espace */
  min-height: 0;
  /* Important pour le scroll dans flexbox */
  overflow-x: hidden;
  /* Masque le débordement horizontal */
  overflow-y: hidden;
  /* Masque le débordement vertical */
}

/* ANCIENS STYLES - DÉSACTIVÉS - Remplacés par .home-row-actualites (Phase 4) */
/*
.zone-actu.up {
  height: 100% !important;
  justify-content: flex-start !important;
  z-index: 30 !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
}

.zone-actu.up ~ .home-row-1 {
  display: none !important;
}

.zone-actu.down{
  height: 60%;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
}
*/
/* Anciens styles zone-welcome supprimés - remplacés par home-row-1 */
/* Nouveau header de bienvenue + KPIs */
/* Section welcome raffinée */
/* line 553, app/assets/stylesheets/pages/customerspace/_home.scss */
.welcome-header {
  flex: 2 !important;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 20px;
  margin-bottom: 30px;
  box-sizing: border-box;
  /* Inclut le padding dans le calcul de largeur */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  flex-direction: column !important;
  justify-content: space-between !important;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  /* Effet de lueur subtil */
  /* Effet hover subtil sans changement de position */
  /* Contenu au-dessus de l'effet */
  height: 200px !important;
  /* Hauteur réduite pour éliminer le vide */
  max-height: 200px !important;
  /* Limiter la hauteur maximale */
}

/* line 570, app/assets/stylesheets/pages/customerspace/_home.scss */
.welcome-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.05), transparent);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

/* line 584, app/assets/stylesheets/pages/customerspace/_home.scss */
.welcome-header:hover {
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.15);
}

/* line 590, app/assets/stylesheets/pages/customerspace/_home.scss */
.welcome-header > * {
  position: relative;
  z-index: 1;
}

/* line 600, app/assets/stylesheets/pages/customerspace/_home.scss */
.welcome-user-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 609, app/assets/stylesheets/pages/customerspace/_home.scss */
.user-connection-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* line 615, app/assets/stylesheets/pages/customerspace/_home.scss */
.connection-label {
  font-size: 0.9rem;
  color: rgba(254, 254, 254, 0.7);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 623, app/assets/stylesheets/pages/customerspace/_home.scss */
.user-name {
  font-size: 16px !important;
  font-weight: bold !important;
  color: #fefefe;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* line 630, app/assets/stylesheets/pages/customerspace/_home.scss */
.user-avatar-container {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

/* line 638, app/assets/stylesheets/pages/customerspace/_home.scss */
.user-avatar-container:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* line 643, app/assets/stylesheets/pages/customerspace/_home.scss */
.user-avatar-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* line 651, app/assets/stylesheets/pages/customerspace/_home.scss */
.welcome-orizen-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* line 657, app/assets/stylesheets/pages/customerspace/_home.scss */
.orizen-avatar-container {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* line 669, app/assets/stylesheets/pages/customerspace/_home.scss */
.orizen-avatar-container:hover {
  transform: scale(1.05);
}

/* line 674, app/assets/stylesheets/pages/customerspace/_home.scss */
.orizen-name {
  font-style: italic;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2px;
  font-weight: 500;
}

/* line 682, app/assets/stylesheets/pages/customerspace/_home.scss */
.orizen-question-button {
  margin-left: auto;
}

/* line 685, app/assets/stylesheets/pages/customerspace/_home.scss */
.orizen-question-button .btn-oriz-question {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

/* line 697, app/assets/stylesheets/pages/customerspace/_home.scss */
.orizen-question-button .btn-oriz-question:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
  text-decoration: none;
  color: white;
}

/* line 708, app/assets/stylesheets/pages/customerspace/_home.scss */
.support-button-container {
  display: flex;
  justify-content: center;
  /* Centre horizontalement le bouton */
}

/* line 714, app/assets/stylesheets/pages/customerspace/_home.scss */
.btn-support-question {
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  margin-bottom: 7px;
  cursor: pointer;
}

/* line 727, app/assets/stylesheets/pages/customerspace/_home.scss */
.btn-support-question:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
  text-decoration: none;
  color: white;
}

/* line 737, app/assets/stylesheets/pages/customerspace/_home.scss */
.welcome-message-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 744, app/assets/stylesheets/pages/customerspace/_home.scss */
.welcome-title {
  font-size: 14px !important;
  font-weight: bold !important;
  color: #fefefe;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

/* line 752, app/assets/stylesheets/pages/customerspace/_home.scss */
.welcome-sub {
  font-size: 0.85rem;
  color: rgba(254, 254, 254, 0.85);
  font-style: italic;
  line-height: 1.3;
}

/* line 759, app/assets/stylesheets/pages/customerspace/_home.scss */
.welcome-assistant-button {
  margin-top: 12px;
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 768px) {
  /* line 767, app/assets/stylesheets/pages/customerspace/_home.scss */
  .welcome-header {
    padding: 20px;
    margin-bottom: 20px;
    min-height: 180px;
  }
  /* line 773, app/assets/stylesheets/pages/customerspace/_home.scss */
  .welcome-user-info {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
  }
  /* line 781, app/assets/stylesheets/pages/customerspace/_home.scss */
  .user-connection-text {
    align-items: center;
  }
  /* line 785, app/assets/stylesheets/pages/customerspace/_home.scss */
  .user-name {
    font-size: 1.2rem;
  }
  /* line 789, app/assets/stylesheets/pages/customerspace/_home.scss */
  .user-avatar-container {
    width: 50px;
    height: 50px;
  }
  /* line 794, app/assets/stylesheets/pages/customerspace/_home.scss */
  .welcome-orizen-section {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  /* line 800, app/assets/stylesheets/pages/customerspace/_home.scss */
  .orizen-avatar-container {
    width: 60px;
    height: 60px;
  }
  /* line 805, app/assets/stylesheets/pages/customerspace/_home.scss */
  .welcome-title {
    font-size: 1.2rem;
  }
  /* line 809, app/assets/stylesheets/pages/customerspace/_home.scss */
  .welcome-sub {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  /* line 815, app/assets/stylesheets/pages/customerspace/_home.scss */
  .welcome-header {
    padding: 15px;
    min-height: 160px;
  }
  /* line 820, app/assets/stylesheets/pages/customerspace/_home.scss */
  .connection-label {
    font-size: 0.8rem;
  }
  /* line 824, app/assets/stylesheets/pages/customerspace/_home.scss */
  .user-name {
    font-size: 1.1rem;
  }
  /* line 828, app/assets/stylesheets/pages/customerspace/_home.scss */
  .user-avatar-container {
    width: 45px;
    height: 45px;
  }
  /* line 833, app/assets/stylesheets/pages/customerspace/_home.scss */
  .orizen-avatar-container {
    width: 55px;
    height: 55px;
  }
  /* line 838, app/assets/stylesheets/pages/customerspace/_home.scss */
  .welcome-title {
    font-size: 1.1rem;
  }
  /* line 842, app/assets/stylesheets/pages/customerspace/_home.scss */
  .welcome-sub {
    font-size: 0.85rem;
  }
}

/* line 847, app/assets/stylesheets/pages/customerspace/_home.scss */
.welcome-avatars {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

/* line 854, app/assets/stylesheets/pages/customerspace/_home.scss */
.user-avatar, .orizen-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* line 865, app/assets/stylesheets/pages/customerspace/_home.scss */
.user-avatar {
  background: linear-gradient(135deg, rgba(246, 229, 179, 0.8), rgba(246, 229, 179, 0.6));
  color: #fefefe;
}

/* line 870, app/assets/stylesheets/pages/customerspace/_home.scss */
.user-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* line 877, app/assets/stylesheets/pages/customerspace/_home.scss */
.user-avatar.default {
  background: linear-gradient(135deg, rgba(166, 2, 64, 0.8), rgba(166, 2, 64, 0.6));
  color: #fefefe;
}

/* line 882, app/assets/stylesheets/pages/customerspace/_home.scss */
.user-avatar.default i {
  font-size: 20px;
}

/* line 886, app/assets/stylesheets/pages/customerspace/_home.scss */
.orizen-avatar {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(99, 102, 241, 0.4));
  color: #6366f1;
  position: relative;
  /* Effet de lueur */
}

/* line 892, app/assets/stylesheets/pages/customerspace/_home.scss */
.orizen-avatar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  opacity: 0.3;
  filter: blur(15px);
  z-index: 1;
  background: #6366f1;
}

/* line 906, app/assets/stylesheets/pages/customerspace/_home.scss */
.orizen-avatar i {
  z-index: 2;
  position: relative;
}

/* line 912, app/assets/stylesheets/pages/customerspace/_home.scss */
.orizen-avatar i {
  font-size: 20px;
}

/* line 916, app/assets/stylesheets/pages/customerspace/_home.scss */
.welcome-avatars:hover .user-avatar,
.welcome-avatars:hover .orizen-avatar {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* line 922, app/assets/stylesheets/pages/customerspace/_home.scss */
.welcome-title {
  font-size: 1.4rem;
  font-weight: 700;
}

/* line 927, app/assets/stylesheets/pages/customerspace/_home.scss */
.welcome-title .subtle {
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.85;
}

/* line 933, app/assets/stylesheets/pages/customerspace/_home.scss */
.kpi-grid {
  display: none;
}

/* line 935, app/assets/stylesheets/pages/customerspace/_home.scss */
.kpi-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

/* line 947, app/assets/stylesheets/pages/customerspace/_home.scss */
.kpi-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

/* line 953, app/assets/stylesheets/pages/customerspace/_home.scss */
.kpi-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(246, 229, 179, 0.18);
  color: #F6E5B3;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

/* line 965, app/assets/stylesheets/pages/customerspace/_home.scss */
.kpi-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* line 966, app/assets/stylesheets/pages/customerspace/_home.scss */
.kpi-value {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

/* line 967, app/assets/stylesheets/pages/customerspace/_home.scss */
.kpi-label {
  font-size: 0.85rem;
  opacity: 0.9;
}

@media (max-width: 992px) {
  /* line 970, app/assets/stylesheets/pages/customerspace/_home.scss */
  .kpi-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  /* line 974, app/assets/stylesheets/pages/customerspace/_home.scss */
  .kpi-grid {
    grid-template-columns: 1fr;
  }
}

/* Carte Copilote */
/* line 978, app/assets/stylesheets/pages/customerspace/_home.scss */
.kpi-copilot {
  justify-content: space-between;
}

/* line 982, app/assets/stylesheets/pages/customerspace/_home.scss */
.kpi-cta {
  margin-left: auto;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

/* line 994, app/assets/stylesheets/pages/customerspace/_home.scss */
.kpi-cta:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.2);
}

/* line 995, app/assets/stylesheets/pages/customerspace/_home.scss */
.kpi-cta:active {
  transform: translateY(0);
}

/* Disparition élégante quand actu s'agrandit */
/* line 998, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-welcome {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 350ms ease, transform 350ms ease;
}

/* Anciens styles KPI supprimés - remplacés par les nouvelles cards */
/* line 1006, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu.down ~ .zone-welcome,
.bloc-client-content-home-column1.down .zone-welcome {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}

/* Anciens styles zone-welcome-persistant supprimés */
/* Anciens styles zone-welcome-avatar et zone-welcome-message supprimés */
/* line 1018, app/assets/stylesheets/pages/customerspace/_home.scss */
.bloc-client-content-home-column2 {
  width: 25%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* line 1026, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-droparrow {
  position: absolute;
  top: 5px;
  /* Positionnée dans l'espace du padding-top */
  width: 100%;
  height: 40px;
  /* Hauteur suffisante pour contenir la flèche complète */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  /* Au-dessus du contenu */
}

/* line 1037, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-droparrow-arrow {
  width: 35px;
  height: 35px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  cursor: pointer;
  rotate: 0deg;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #140D23;
  transition: rotate 600ms cubic-bezier(0.4, 0, 0.2, 1), transform 300ms ease, background-color 300ms ease, color 300ms ease;
}

/* line 1056, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-droparrow-arrow:hover {
  background-color: #864B28;
  color: #fefefe;
  transform: scale(1.1);
}

/* line 1062, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-droparrow-arrow.turned {
  rotate: 180deg;
}

/* line 1067, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-sectorielle {
  border-radius: 30px;
  width: 100%;
  height: 50%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* line 1076, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-business {
  border-radius: 30px;
  width: 100%;
  height: 50%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* line 1085, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-title {
  position: relative;
  font-size: 16px;
  font-weight: bold;
  text-align: start;
  height: 5%;
  width: 100%;
  padding-left: 30px;
  padding-right: 100px;
  /* Espace pour le bouton et le chevron */
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fefefe;
  gap: 10px;
  z-index: 5;
  /* Au-dessus du contenu mais sous le chevron */
  overflow: visible;
  /* Permet au bouton de dépasser */
}

/* line 1102, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-title > span:first-child {
  font-size: 16px;
  font-weight: bold;
  color: #fefefe;
}

/* line 1109, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-topics {
  font-size: 10px;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.5);
  opacity: 0.7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 0 1 50%;
  /* Shrink if needed, with a maximum of ~50% of the title width */
  min-width: 0;
  /* Allow flexbox to shrink content so ellipsis can apply */
  text-align: right;
}

/* line 1126, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-content {
  font-size: 12px;
  text-align: start;
  height: 95%;
  width: 100%;
  max-width: 100%;
  /* Empêche tout débordement horizontal */
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
  overflow-y: auto;
  overflow-x: hidden;
  /* Masque tout débordement horizontal */
  padding: 15px 10px 10px 10px;
  /* Padding ajusté car l'espace est maintenant géré au niveau de zone-actu */
  box-sizing: border-box;
  /* Inclut le padding dans le calcul de largeur */
  color: #fefefe;
  /* Personnalisation de la barre de défilement */
}

/* line 1143, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-content::-webkit-scrollbar {
  width: 8px;
  /* Largeur de la barre de défilement */
}

/* line 1147, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  /* Couleur de l'arrière-plan de la barre */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 1152, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-content::-webkit-scrollbar-thumb {
  background: #C38761;
  /* Couleur de la barre de défilement */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 1157, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-content::-webkit-scrollbar-thumb:hover {
  background: #fefefe;
  /* Couleur de la barre au survol */
}

/* line 1162, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-capsule-content {
  min-height: 100px;
  width: 100%;
  max-width: 100%;
  /* Empêche tout débordement horizontal */
  display: flex;
  flex-direction: row;
  transition: transform 0.3s ease;
  gap: 8px;
  /* Espace entre l'article et l'icône */
  box-sizing: border-box;
  /* Inclut le padding dans le calcul de largeur */
}

/* line 1173, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-capsule-content:hover {
  transform: scale(1.01);
}

/* line 1177, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-content1 {
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  font-size: 12px;
  text-align: start;
  height: 100%;
  min-height: 100px;
  /* Augmenté pour accommoder les images */
  flex: 1;
  /* Utilise flex au lieu d'une largeur fixe pour éviter les débordements */
  min-width: 0;
  /* Important pour permettre au contenu flex de se rétrécir */
  display: flex;
  flex-direction: row;
  /* Changé à row pour avoir image + texte horizontalement */
  align-items: center;
  /* Centrer verticalement l'image et le texte */
  gap: 12px;
  /* Espace entre l'image et le texte */
  padding: 10px;
  box-sizing: border-box;
  /* Inclut le padding dans le calcul de largeur */
  overflow: hidden;
  transition: transform 0.2s ease;
}

/* line 1195, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-content1:hover {
  transform: translateY(-2px);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
}

/* line 1202, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-content-image {
  width: 120px;
  /* Largeur fixe pour les images */
  height: 80px;
  /* Hauteur fixe pour uniformiser */
  flex-shrink: 0;
  /* Ne rétrécit jamais l'image */
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  /* Placeholder si l'image ne charge pas */
}

/* line 1210, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Garde le ratio de l'image tout en remplissant l'espace */
  display: block;
}

/* line 1219, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-content-text {
  flex: 1;
  /* Prend tout l'espace restant */
  min-width: 0;
  /* Important pour permettre au texte de se rétrécir */
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  /* Centre le texte verticalement */
}

/* line 1228, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-content-check {
  height: 100%;
  width: 40px;
  /* Largeur fixe pour l'icône au lieu d'un pourcentage */
  flex-shrink: 0;
  /* Empêche la réduction de l'icône */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* line 1237, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-content-check i {
  color: rgba(128, 128, 128, 0.5);
  font-size: 30px;
}

/* line 1242, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-content-check.visited i {
  color: #E5A82E;
  /* Change la couleur de l'icône en vert */
}

/* line 1247, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-content-title {
  height: 20%;
  width: 100%;
  max-width: 100%;
  /* Empêche tout débordement horizontal */
  display: flex;
  flex: column;
  align-items: center;
  font-weight: bold;
  font-size: 14px;
  /* Taille augmentée pour une meilleure lisibilité */
  overflow: hidden;
  /* Masque tout débordement */
  white-space: nowrap;
  text-overflow: ellipsis;
  /* Ajoute des points de suspension si le texte est trop long */
}

/* line 1261, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-content-description {
  height: 60%;
  width: 100%;
  max-width: 100%;
  /* Empêche tout débordement horizontal */
  font-size: 12px;
  /* Taille augmentée pour une meilleure lisibilité */
  line-height: 1.5;
  /* Meilleure lisibilité avec plus d'espace entre les lignes */
  overflow: hidden;
  /* Masque tout débordement */
  word-wrap: break-word;
  /* Permet de couper les mots longs */
}

/* line 1271, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-content-source {
  height: 20%;
  width: 100%;
  max-width: 100%;
  /* Empêche tout débordement horizontal */
  font-size: 11px;
  /* Taille légèrement augmentée */
  opacity: 0.9;
  overflow: hidden;
  /* Masque tout débordement */
  white-space: nowrap;
  text-overflow: ellipsis;
  /* Ajoute des points de suspension si le texte est trop long */
}

/* line 1282, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-title-and-arrow {
  width: 100%;
  height: 20%;
  display: flex;
  justify-content: space-between;
}

/* line 1290, app/assets/stylesheets/pages/customerspace/_home.scss */
.agenda {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  width: 100%;
  height: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

/* line 1301, app/assets/stylesheets/pages/customerspace/_home.scss */
.agenda:hover {
  transform: scale(1.01);
}

/* line 1305, app/assets/stylesheets/pages/customerspace/_home.scss */
.suivi_client {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  width: 100%;
  height: 50%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

/* line 1316, app/assets/stylesheets/pages/customerspace/_home.scss */
.suivi_client:hover {
  transform: scale(1.01);
}

/* line 1320, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-sectorielle.lightmode {
  color: #140D23;
  /* Utilise la couleur du parent */
}

/* line 1324, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-sectorielle.nightmode {
  color: #fefefe;
  /* Utilise la couleur du parent */
}

/* line 1329, app/assets/stylesheets/pages/customerspace/_home.scss */
.bloc-client-content-home a {
  text-decoration: none;
  font-weight: normal;
  font-size: 11px;
}

/* line 1339, app/assets/stylesheets/pages/customerspace/_home.scss */
.bloc-client-content-home.lightmode a {
  color: #140D23;
}

/* line 1343, app/assets/stylesheets/pages/customerspace/_home.scss */
.bloc-client-content-home.nightmode a {
  color: #fefefe;
}

/* line 1355, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-title.lightmode {
  color: #140D23;
}

/* line 1359, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-title.nightmode {
  color: #fefefe;
}

/* line 1363, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-agenda-capsule-with-scroll {
  width: 100%;
  height: 80%;
  padding: 15px;
  display: flex;
}

/* line 1370, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-agenda-capsule {
  width: 100%;
  height: 100%;
  padding: 5px;
  text-align: center;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  gap: 7px;
  /* Personnalisation de la barre de défilement */
}

/* line 1382, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-agenda-capsule::-webkit-scrollbar {
  width: 4px;
  /* Largeur de la barre de défilement */
}

/* line 1386, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-agenda-capsule::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  /* Couleur de l'arrière-plan de la barre */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 1391, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-agenda-capsule::-webkit-scrollbar-thumb {
  background: #C38761;
  /* Couleur de la barre de défilement */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 1398, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-agenda-rdv {
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  font-size: 12px;
  text-align: start;
  max-height: 30px;
  min-height: 30px;
  width: 95%;
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 4px;
  padding: 5px;
  overflow: hidden;
}

/* line 1415, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-agenda-content-date {
  font-size: 0.7rem;
  height: 100%;
  width: 25%;
  display: flex;
  flex: column;
  align-items: center;
  font-weight: normal;
}

/* line 1425, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-agenda-content-horaire {
  font-size: 0.7rem;
  height: 100%;
  width: 12%;
  display: flex;
  flex: column;
  align-items: center;
  font-weight: normal;
}

/* line 1435, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-agenda-content-title {
  font-size: 0.7rem;
  height: 100%;
  width: 63%;
  display: flex;
  flex: column;
  align-items: center;
  font-weight: normal;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* line 1451, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-welcome-capsule {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 16px;
  padding: 14px 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: opacity 600ms ease, transform 600ms ease, visibility 600ms ease, box-shadow 0.3s ease;
}

/* line 1465, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-welcome-capsule:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border-color: rgba(139, 92, 246, 0.4);
}

/* line 1470, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-welcome-capsule .welcome-capsule-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* line 1476, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-welcome-capsule .capsule-orizen {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* line 1485, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-welcome-capsule .capsule-orizen .orizen-avatar {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 1492, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-welcome-capsule .capsule-orizen .orizen-avatar .orizen-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* line 1498, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-welcome-capsule .capsule-orizen .orizen-avatar i {
  display: none;
}

/* line 1504, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-welcome-capsule .capsule-message {
  flex: 1;
}

/* line 1507, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-welcome-capsule .capsule-message .capsule-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* line 1515, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-welcome-capsule .capsule-message .capsule-subtitle {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
}

/* line 1522, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-welcome-capsule .capsule-cta {
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

/* line 1530, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-welcome-capsule .capsule-cta .btn-capsule-chat,
.home-welcome-capsule .capsule-cta .btn-capsule-notifications,
.home-welcome-capsule .capsule-cta .btn-capsule-assistant {
  padding: 8px 14px;
  border-radius: 10px;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  background: rgba(139, 92, 246, 0.2);
  border: 1px solid rgba(139, 92, 246, 0.4);
  cursor: pointer;
}

/* line 1548, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-welcome-capsule .capsule-cta .btn-capsule-chat:hover:not(:disabled),
.home-welcome-capsule .capsule-cta .btn-capsule-notifications:hover:not(:disabled),
.home-welcome-capsule .capsule-cta .btn-capsule-assistant:hover:not(:disabled) {
  background: rgba(139, 92, 246, 0.3);
  transform: scale(1.08);
  text-decoration: none;
}

/* line 1554, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-welcome-capsule .capsule-cta .btn-capsule-chat:disabled,
.home-welcome-capsule .capsule-cta .btn-capsule-notifications:disabled,
.home-welcome-capsule .capsule-cta .btn-capsule-assistant:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.2);
}

/* line 1560, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-welcome-capsule .capsule-cta .btn-capsule-chat:disabled:hover,
.home-welcome-capsule .capsule-cta .btn-capsule-notifications:disabled:hover,
.home-welcome-capsule .capsule-cta .btn-capsule-assistant:disabled:hover {
  transform: none;
  background: rgba(139, 92, 246, 0.1);
}

/* line 1570, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-main-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  margin-bottom: 10px;
  transition: opacity 600ms ease, transform 600ms ease, visibility 600ms ease;
}

/* line 1583, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-column {
  min-width: 0;
}

/* line 1588, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-notifications-column,
.home-todos-column {
  min-width: 0;
}

/* line 1594, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 14px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  height: 100%;
  max-height: 360px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

/* line 1610, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 10px;
}

/* line 1620, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-header .agenda-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 1625, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-header .agenda-title .agenda-icon {
  width: 38px;
  height: 38px;
  background: rgba(246, 229, 179, 0.1);
  border: 1px solid rgba(246, 229, 179, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #F6E5B3;
}

/* line 1639, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-header .agenda-title .agenda-title-text h3, .home-agenda-section .agenda-header .agenda-title .agenda-title-text .h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
  margin: 0 0 2px 0;
}

/* line 1646, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-header .agenda-title .agenda-title-text .text-muted {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* line 1654, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-header .agenda-view-toggles {
  display: flex;
  gap: 6px;
}

/* line 1658, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-header .agenda-view-toggles .view-toggle {
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* line 1671, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-header .agenda-view-toggles .view-toggle.active {
  background: rgba(246, 229, 179, 0.2);
  border-color: rgba(246, 229, 179, 0.4);
  color: #F6E5B3;
  font-weight: 600;
}

/* line 1678, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-header .agenda-view-toggles .view-toggle:hover:not(.active) {
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

/* line 1685, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-header .btn-add-event {
  padding: 6px 12px;
  background: rgba(76, 175, 80, 0.2);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 8px;
  color: #4CAF50;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* line 1699, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-header .btn-add-event:hover {
  background: rgba(76, 175, 80, 0.3);
  transform: translateY(-2px);
  text-decoration: none;
}

/* line 1707, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-events-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  overflow-y: scroll;
  scrollbar-gutter: stable both-edges;
  min-height: 0;
  padding-right: 8px;
  /* Scrollbar custom */
}

/* line 1718, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-events-list::-webkit-scrollbar {
  width: 8px;
}

/* line 1722, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-events-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
}

/* line 1727, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-events-list::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(246, 229, 179, 0.9) 0%, rgba(246, 229, 179, 0.6) 100%);
  border-radius: 4px;
}

/* line 1731, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-events-list::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #f6e5b3 0%, rgba(246, 229, 179, 0.75) 100%);
}

/* line 1737, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-event {
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.2);
  border-left: 3px solid;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 1751, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-event:hover {
  background: rgba(0, 0, 0, 0.3);
  transform: translateX(4px);
}

/* line 1756, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-event .event-date {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  min-width: 100px;
}

/* line 1766, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-event .event-time {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  min-width: 80px;
}

/* line 1775, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-event .event-time .all-day-badge {
  padding: 2px 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-size: 0.65rem;
}

/* line 1783, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-event .event-content {
  flex: 1;
  min-width: 0;
}

/* line 1787, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-event .event-content .event-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* line 1798, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-event .event-content .event-title .all-day-badge {
  padding: 2px 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 500;
  flex-shrink: 0;
}

/* line 1808, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-event .event-content .event-description {
  display: none;
}

/* line 1813, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-event .event-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
}

/* line 1820, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-event .event-meta .event-module {
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* line 1830, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-event .event-meta .event-module.meeting {
  background: rgba(99, 102, 241, 0.2);
  color: #6366f1;
}

/* line 1835, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-event .event-meta .event-module.appointment {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

/* line 1840, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-event .event-meta .event-module.deadline {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

/* line 1845, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-event .event-meta .event-module.call {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

/* line 1850, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-event .event-meta .event-module.task {
  background: rgba(139, 92, 246, 0.2);
  color: #8b5cf6;
}

/* line 1855, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-event .event-meta .event-module.other {
  background: rgba(107, 114, 128, 0.2);
  color: #6b7280;
}

/* line 1861, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-event .event-meta .event-module.crm {
  background: rgba(76, 175, 80, 0.2);
  color: #4CAF50;
}

/* line 1866, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-event .event-meta .event-module.project {
  background: rgba(33, 150, 243, 0.2);
  color: #2196F3;
}

/* line 1871, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-event .event-meta .event-module.finance {
  background: rgba(255, 152, 0, 0.2);
  color: #FF9800;
}

/* line 1876, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-event .event-meta .event-module.rh {
  background: rgba(156, 39, 176, 0.2);
  color: #9C27B0;
}

/* line 1881, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-event .event-meta .event-module.custom {
  background: rgba(136, 136, 136, 0.2);
  color: #888888;
}

/* line 1887, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-event .event-meta .event-status.ongoing {
  padding: 4px 10px;
  background: rgba(76, 175, 80, 0.2);
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #4CAF50;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* line 1898, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-event .event-meta .event-status.ongoing i {
  animation: blink 1.5s ease-in-out infinite;
}

/* line 1905, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-event .event-actions {
  display: flex;
  align-items: center;
  margin-left: auto;
  padding-left: 0.5rem;
  flex-shrink: 0;
}

/* line 1912, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-event .event-actions .btn-event-delete {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  padding: 6px 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 1924, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-event .event-actions .btn-event-delete i {
  font-size: 0.8rem;
}

/* line 1928, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-event .event-actions .btn-event-delete:hover {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.15);
}

/* line 1933, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-event .event-actions .btn-event-delete:focus-visible {
  outline: 2px solid rgba(239, 68, 68, 0.6);
  outline-offset: 2px;
}

/* line 1941, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-empty-state {
  text-align: center;
  padding: 40px 20px;
}

/* line 1945, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-empty-state .empty-icon {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 12px;
}

/* line 1952, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-empty-state .empty-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

/* line 1958, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-empty-state .empty-text .btn-empty-cta {
  padding: 10px 20px;
  background: rgba(76, 175, 80, 0.2);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 12px;
  color: #4CAF50;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

/* line 1972, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-empty-state .empty-text .btn-empty-cta:hover {
  background: rgba(76, 175, 80, 0.3);
  transform: translateY(-2px);
  text-decoration: none;
}

/* line 1982, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-calendar-view {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: visible;
  overflow-x: hidden;
}

/* line 1990, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-calendar-view .month-calendar {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 0;
  width: 100%;
  box-sizing: border-box;
}

/* line 1999, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-calendar-view .month-calendar .calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 8px;
  background: rgba(0, 0, 0, 0.18);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 2008, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-calendar-view .month-calendar .calendar-header .calendar-current-month {
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  text-transform: capitalize;
}

/* line 2015, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-calendar-view .month-calendar .calendar-header .calendar-nav {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 2px 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem !important;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 2025, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-calendar-view .month-calendar .calendar-header .calendar-nav:hover {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

/* line 2032, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-calendar-view .month-calendar .calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  padding: 4px 0;
}

/* line 2042, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-calendar-view .month-calendar .calendar-weekdays .weekday {
  padding: 2px 0;
}

/* line 2047, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-calendar-view .month-calendar .calendar-grid {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 0;
  overflow: visible;
  padding-right: 4px;
}

/* line 2056, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-calendar-view .month-calendar .calendar-grid::-webkit-scrollbar {
  width: 8px;
}

/* line 2060, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-calendar-view .month-calendar .calendar-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
}

/* line 2065, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-calendar-view .month-calendar .calendar-grid::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(246, 229, 179, 0.9) 0%, rgba(246, 229, 179, 0.6) 100%);
  border-radius: 4px;
}

/* line 2069, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-calendar-view .month-calendar .calendar-grid::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #f6e5b3 0%, rgba(246, 229, 179, 0.75) 100%);
}

/* line 2074, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-calendar-view .month-calendar .calendar-grid .calendar-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  min-width: 0;
}

/* line 2081, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-calendar-view .month-calendar .calendar-grid .calendar-day {
  position: relative;
  min-height: 35px;
  padding: 4px 5px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all 0.25s ease;
  cursor: pointer;
}

/* line 2094, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-calendar-view .month-calendar .calendar-grid .calendar-day.outside-month {
  opacity: 0.35;
}

/* line 2098, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-calendar-view .month-calendar .calendar-grid .calendar-day.today {
  border-color: rgba(99, 102, 241, 0.6);
  box-shadow: 0 0 12px rgba(99, 102, 241, 0.35);
}

/* line 2103, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-calendar-view .month-calendar .calendar-grid .calendar-day:hover {
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

/* line 2108, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-calendar-view .month-calendar .calendar-grid .calendar-day .day-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  width: 100%;
  min-height: 18px;
}

/* line 2117, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-calendar-view .month-calendar .calendar-grid .calendar-day .day-number {
  font-size: 0.78rem;
  font-weight: 600;
  color: white;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* line 2128, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-calendar-view .month-calendar .calendar-grid .calendar-day .day-event-indicators {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex-wrap: wrap;
  flex: 1;
  min-width: 0;
}

/* line 2137, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-calendar-view .month-calendar .calendar-grid .calendar-day .day-event-indicators .indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* line 2144, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-calendar-view .month-calendar .calendar-grid .calendar-day .day-event-indicators .more-count {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 2150, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-calendar-view .month-calendar .calendar-grid .calendar-day .calendar-day-popover {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 220px;
  background: rgba(14, 13, 30, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 30;
  max-height: 180px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(246, 229, 179, 0.6) transparent;
}

/* line 2170, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-calendar-view .month-calendar .calendar-grid .calendar-day .calendar-day-popover header {
  font-size: 0.75rem;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
}

/* line 2177, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-calendar-view .month-calendar .calendar-grid .calendar-day .calendar-day-popover ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* line 2185, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-calendar-view .month-calendar .calendar-grid .calendar-day .calendar-day-popover ul li {
  display: flex;
  align-items: center;
}

/* line 2189, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-calendar-view .month-calendar .calendar-grid .calendar-day .calendar-day-popover ul li a {
  display: flex;
  gap: 8px;
  align-items: center;
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 8px;
  transition: background 0.2s ease;
  flex: 1;
  min-width: 0;
}

/* line 2200, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-calendar-view .month-calendar .calendar-grid .calendar-day .calendar-day-popover ul li a .event-time {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.65);
  min-width: 46px;
}

/* line 2206, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-calendar-view .month-calendar .calendar-grid .calendar-day .calendar-day-popover ul li a .event-title {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.92);
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 2215, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-calendar-view .month-calendar .calendar-grid .calendar-day .calendar-day-popover ul li a:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* line 2220, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-calendar-view .month-calendar .calendar-grid .calendar-day .calendar-day-popover ul li .popover-delete-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  padding: 4px 6px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

/* line 2230, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-calendar-view .month-calendar .calendar-grid .calendar-day .calendar-day-popover ul li .popover-delete-btn i {
  font-size: 0.7rem;
}

/* line 2234, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-calendar-view .month-calendar .calendar-grid .calendar-day .calendar-day-popover ul li .popover-delete-btn:hover {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.15);
}

/* line 2239, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-calendar-view .month-calendar .calendar-grid .calendar-day .calendar-day-popover ul li .popover-delete-btn:focus-visible {
  outline: 2px solid rgba(239, 68, 68, 0.6);
  outline-offset: 2px;
}

/* line 2248, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-calendar-view .month-calendar .calendar-grid .calendar-day.is-hovered .calendar-day-popover, .home-agenda-section .agenda-calendar-view .month-calendar .calendar-grid .calendar-day.is-open .calendar-day-popover,
.home-agenda-section .agenda-calendar-view .month-calendar .calendar-grid .calendar-day .calendar-day-popover:hover {
  opacity: 1;
  transform: translate(-50%, -110%);
  pointer-events: auto;
}

/* line 2256, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-calendar-view .month-calendar .calendar-grid .calendar-day .calendar-day-popover::-webkit-scrollbar {
  width: 6px;
}

/* line 2260, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-calendar-view .month-calendar .calendar-grid .calendar-day .calendar-day-popover::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

/* line 2265, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-calendar-view .month-calendar .calendar-grid .calendar-day .calendar-day-popover::-webkit-scrollbar-thumb {
  background: rgba(246, 229, 179, 0.6);
  border-radius: 3px;
}

/* line 2269, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-agenda-section .agenda-calendar-view .month-calendar .calendar-grid .calendar-day .calendar-day-popover::-webkit-scrollbar-thumb:hover {
  background: rgba(246, 229, 179, 0.85);
}

/* line 2280, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-notifications-section {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  height: 100%;
  max-height: 450px;
  display: flex;
  flex-direction: column;
}

/* line 2292, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-notifications-section .notifications-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 2300, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-notifications-section .notifications-header .notifications-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 2305, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-notifications-section .notifications-header .notifications-title .notifications-icon {
  width: 36px;
  height: 36px;
  background: rgba(246, 229, 179, 0.1);
  border: 1px solid rgba(246, 229, 179, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #F6E5B3;
}

/* line 2318, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-notifications-section .notifications-header .notifications-title h3, .home-notifications-section .notifications-header .notifications-title .h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  margin: 0;
}

/* line 2325, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-notifications-section .notifications-header .notifications-title .notifications-count {
  padding: 4px 10px;
  background: rgba(255, 68, 68, 0.3);
  border: 1px solid rgba(255, 68, 68, 0.4);
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #FF4444;
}

/* line 2336, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-notifications-section .notifications-header .notifications-mark-read {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* line 2349, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-notifications-section .notifications-header .notifications-mark-read:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

/* line 2356, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-notifications-section .notifications-list {
  flex: 1;
  overflow-y: auto;
  padding-right: 8px;
  /* Scrollbar custom */
}

/* line 2362, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-notifications-section .notifications-list::-webkit-scrollbar {
  width: 6px;
}

/* line 2366, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-notifications-section .notifications-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

/* line 2371, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-notifications-section .notifications-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

/* line 2375, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-notifications-section .notifications-list::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* line 2381, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-notifications-section .notification-item {
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.2);
  border-left: 3px solid;
  border-radius: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

/* line 2391, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-notifications-section .notification-item.unread {
  background: rgba(246, 229, 179, 0.05);
  border-left-color: #F6E5B3;
}

/* line 2396, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-notifications-section .notification-item.support {
  border-left-color: #FFA040;
}

/* line 2397, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-notifications-section .notification-item.alert {
  border-left-color: #FF4444;
}

/* line 2398, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-notifications-section .notification-item.achievement {
  border-left-color: #4CAF50;
}

/* line 2399, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-notifications-section .notification-item.system {
  border-left-color: #2196F3;
}

/* line 2401, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-notifications-section .notification-item:hover {
  background: rgba(0, 0, 0, 0.3);
  transform: translateX(4px);
}

/* line 2406, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-notifications-section .notification-item .notification-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

/* line 2411, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-notifications-section .notification-item .notification-header .notification-type {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* line 2421, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-notifications-section .notification-item .notification-header .notification-time {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
}

/* line 2427, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-notifications-section .notification-item .notification-content {
  font-size: 0.85rem;
  color: white;
  line-height: 1.4;
}

/* line 2432, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-notifications-section .notification-item .notification-content strong {
  display: block;
  margin-bottom: 4px;
  color: #F6E5B3;
}

/* line 2438, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-notifications-section .notification-item .notification-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

/* line 2444, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-notifications-section .notification-item .notification-priority {
  margin-top: 8px;
  padding: 4px 8px;
  background: rgba(255, 68, 68, 0.2);
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #FF4444;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* line 2456, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-notifications-section .notification-item .notification-priority.high {
  background: rgba(255, 152, 0, 0.2);
  color: #FF9800;
}

/* line 2462, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-notifications-section .notification-item .notification-unread-indicator {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.5rem;
  color: #F6E5B3;
  animation: pulse 2s ease-in-out infinite;
}

/* line 2472, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-notifications-section .notifications-see-all {
  display: block;
  text-align: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 12px;
}

/* line 2486, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-notifications-section .notifications-see-all:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(246, 229, 179, 0.3);
  color: #F6E5B3;
  text-decoration: none;
}

/* line 2494, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-notifications-section .notifications-empty-state {
  text-align: center;
  padding: 40px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* line 2502, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-notifications-section .notifications-empty-state .empty-icon {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 12px;
}

/* line 2509, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-notifications-section .notifications-empty-state .empty-text p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}

/* line 2515, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-notifications-section .notifications-empty-state .empty-text small, .home-notifications-section .notifications-empty-state .empty-text .small {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* line 2525, app/assets/stylesheets/pages/customerspace/_home.scss */
.bloc-client-content-home-column1.up .home-main-row {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(-20px) scale(0.95) !important;
  pointer-events: none !important;
  transition: opacity 600ms cubic-bezier(0.4, 0, 0.2, 1), transform 600ms cubic-bezier(0.4, 0, 0.2, 1), visibility 600ms ease !important;
  z-index: 1 !important;
}

/* line 2541, app/assets/stylesheets/pages/customerspace/_home.scss */
div.bloc-client-content-home-column1 div.home-row-actualites div.zone-actu {
  height: auto !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  transition: height 600ms cubic-bezier(0.4, 0, 0.2, 1), min-height 600ms cubic-bezier(0.4, 0, 0.2, 1), max-height 600ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 600ms ease, border-color 600ms ease !important;
  will-change: height;
}

/* line 2565, app/assets/stylesheets/pages/customerspace/_home.scss */
div.bloc-client-content-home-column1 div.home-row-actualites div.zone-actu.down {
  height: 165px !important;
  min-height: 140px !important;
  max-height: 165px !important;
  overflow: hidden !important;
  z-index: 5 !important;
}

/* line 2572, app/assets/stylesheets/pages/customerspace/_home.scss */
div.bloc-client-content-home-column1 div.home-row-actualites div.zone-actu.down .zone-actu-content {
  overflow: hidden !important;
  transition: max-height 600ms cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* line 2579, app/assets/stylesheets/pages/customerspace/_home.scss */
div.bloc-client-content-home-column1 div.home-row-actualites div.zone-actu.up {
  height: 550px !important;
  min-height: 400px !important;
  max-height: 550px !important;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  z-index: 100 !important;
  overflow: hidden !important;
}

/* line 2590, app/assets/stylesheets/pages/customerspace/_home.scss */
div.bloc-client-content-home-column1 div.home-row-actualites div.zone-actu.up .zone-actu-content {
  overflow-y: auto !important;
  transition: max-height 600ms cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* line 2597, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-row-actualites {
  position: relative;
  min-height: 160px;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

@media (max-width: 1200px) {
  /* line 2610, app/assets/stylesheets/pages/customerspace/_home.scss */
  .home-main-row {
    grid-template-columns: 1fr;
  }
  /* line 2614, app/assets/stylesheets/pages/customerspace/_home.scss */
  .home-notifications-section {
    max-height: 400px;
  }
}

@media (max-width: 768px) {
  /* line 2620, app/assets/stylesheets/pages/customerspace/_home.scss */
  .home-welcome-capsule {
    padding: 16px 20px;
  }
  /* line 2623, app/assets/stylesheets/pages/customerspace/_home.scss */
  .home-welcome-capsule .welcome-capsule-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  /* line 2630, app/assets/stylesheets/pages/customerspace/_home.scss */
  .home-welcome-capsule .capsule-message .capsule-title {
    font-size: 1rem;
  }
  /* line 2634, app/assets/stylesheets/pages/customerspace/_home.scss */
  .home-welcome-capsule .capsule-message .capsule-subtitle {
    font-size: 0.85rem;
  }
  /* line 2640, app/assets/stylesheets/pages/customerspace/_home.scss */
  .agenda-header {
    flex-direction: column;
    align-items: flex-start !important;
  }
  /* line 2644, app/assets/stylesheets/pages/customerspace/_home.scss */
  .agenda-header .agenda-view-toggles {
    width: 100%;
    justify-content: space-between;
  }
  /* line 2649, app/assets/stylesheets/pages/customerspace/_home.scss */
  .agenda-header .btn-add-event {
    width: 100%;
    justify-content: center;
  }
}

/* line 2657, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-todos-column {
  min-width: 0;
}

/* line 2661, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-todos-section {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 14px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  height: 100%;
  max-height: 360px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

/* line 2675, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-todos-section .todos-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 2683, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-todos-section .todos-header .todos-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 2688, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-todos-section .todos-header .todos-title .todos-icon {
  width: 38px;
  height: 38px;
  background: rgba(246, 229, 179, 0.1);
  border: 1px solid rgba(246, 229, 179, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #F6E5B3;
}

/* line 2701, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-todos-section .todos-header .todos-title h3, .home-todos-section .todos-header .todos-title .h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
  margin: 0;
}

/* line 2708, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-todos-section .todos-header .todos-title .todos-count {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border-radius: 12px;
  padding: 2px 8px;
  font-size: 0.75rem;
  font-weight: 700;
  min-width: 20px;
  text-align: center;
}

/* line 2720, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-todos-section .todos-header .todos-add-btn {
  padding: 6px 12px;
  background: rgba(76, 175, 80, 0.2);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 8px;
  color: #4CAF50;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* line 2734, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-todos-section .todos-header .todos-add-btn:hover {
  background: rgba(76, 175, 80, 0.3);
  transform: translateY(-2px);
}

/* line 2741, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-todos-section .todos-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  overflow-y: auto;
  scrollbar-gutter: stable both-edges;
  min-height: 0;
  padding-right: 16px;
}

/* line 2751, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-todos-section .todos-list::-webkit-scrollbar {
  width: 8px;
}

/* line 2755, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-todos-section .todos-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
}

/* line 2760, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-todos-section .todos-list::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(246, 229, 179, 0.9) 0%, rgba(246, 229, 179, 0.6) 100%);
  border-radius: 4px;
}

/* line 2764, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-todos-section .todos-list::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #f6e5b3 0%, rgba(246, 229, 179, 0.75) 100%);
}

/* line 2770, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-todos-section .todo-item {
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.2);
  border-left: 3px solid rgba(246, 229, 179, 0.5);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 2781, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-todos-section .todo-item:hover {
  background: rgba(0, 0, 0, 0.3);
  transform: translateX(4px);
}

/* line 2786, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-todos-section .todo-item.completed {
  opacity: 0.6;
}

/* line 2789, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-todos-section .todo-item.completed .todo-title {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.5);
}

/* line 2795, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-todos-section .todo-item .todo-checkbox-wrapper {
  flex-shrink: 0;
}

/* line 2798, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-todos-section .todo-item .todo-checkbox-wrapper .todo-checkbox {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #4CAF50;
}

/* line 2806, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-todos-section .todo-item .todo-content {
  flex: 1;
  min-width: 0;
}

/* line 2810, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-todos-section .todo-item .todo-content .todo-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 2822, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-todos-section .todo-item .todo-content .todo-title .todo-title-attachment {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* line 2830, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-todos-section .todo-item .todo-actions {
  flex-shrink: 0;
  display: flex;
  gap: 4px;
}

/* line 2835, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-todos-section .todo-item .todo-actions .todo-delete-btn {
  padding: 2px 6px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 4px;
  color: #ef4444;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* line 2848, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-todos-section .todo-item .todo-actions .todo-delete-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  transform: scale(1.1);
}

/* line 2856, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-todos-section .todos-empty-state {
  text-align: center;
  padding: 2rem 1rem;
  color: rgba(255, 255, 255, 0.6);
}

/* line 2861, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-todos-section .todos-empty-state .empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.3;
}

/* line 2868, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-todos-section .todos-empty-state .empty-text p {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

/* line 2874, app/assets/stylesheets/pages/customerspace/_home.scss */
.home-todos-section .todos-empty-state .empty-text small, .home-todos-section .todos-empty-state .empty-text .small {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* line 2883, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* line 2897, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-modal.visible {
  display: flex;
  opacity: 1;
  visibility: visible;
}

/* line 2903, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-modal .todo-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

/* line 2914, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-modal .todo-modal-content {
  position: relative;
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.98) 0%, rgba(100, 1, 39, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 10001;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 2930, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-modal.visible .todo-modal .todo-modal-content {
  transform: scale(1);
}

/* line 2935, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-modal .todo-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 2942, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-modal .todo-modal-header h3, .todo-modal .todo-modal-header .h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 600;
}

/* line 2949, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-modal .todo-modal-header .todo-modal-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 2964, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-modal .todo-modal-header .todo-modal-close:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

/* line 2971, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-modal .todo-form {
  padding: 1.5rem;
  overflow-y: auto;
  flex: 1;
}

/* line 2976, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-modal .todo-form::-webkit-scrollbar {
  width: 10px;
}

/* line 2980, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-modal .todo-form::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

/* line 2985, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-modal .todo-form::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 2989, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-modal .todo-form::-webkit-scrollbar-thumb:hover {
  background: #D4A259;
}

/* line 2994, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-modal .todo-form .todo-form-field {
  margin-bottom: 1.5rem;
}

/* line 2997, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-modal .todo-form .todo-form-field .todo-form-label {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* line 3005, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-modal .todo-form .todo-form-field .todo-form-input,
.todo-modal .todo-form .todo-form-field .todo-form-textarea {
  width: 100%;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: white;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

/* line 3016, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-modal .todo-form .todo-form-field .todo-form-input:focus,
.todo-modal .todo-form .todo-form-field .todo-form-textarea:focus {
  outline: none;
  border-color: rgba(246, 229, 179, 0.5);
  background: rgba(255, 255, 255, 0.15);
}

/* line 3022, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-modal .todo-form .todo-form-field .todo-form-input::placeholder,
.todo-modal .todo-form .todo-form-field .todo-form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* line 3027, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-modal .todo-form .todo-form-field .todo-form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* line 3032, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-modal .todo-form .todo-form-field .todo-form-file-input {
  width: 100%;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: white;
  font-size: 0.85rem;
  cursor: pointer;
}

/* line 3042, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-modal .todo-form .todo-form-field .todo-form-file-input::file-selector-button {
  padding: 0.5rem 1rem;
  background: rgba(76, 175, 80, 0.2);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 6px;
  color: #4CAF50;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  margin-right: 1rem;
  transition: all 0.3s ease;
}

/* line 3054, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-modal .todo-form .todo-form-field .todo-form-file-input::file-selector-button:hover {
  background: rgba(76, 175, 80, 0.3);
}

/* line 3060, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-modal .todo-form .todo-form-field .todo-form-help {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  margin-top: 0.5rem;
}

/* line 3067, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-modal .todo-form .todo-form-field .todo-form-attachments-preview {
  margin-top: 1rem;
}

/* line 3070, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-modal .todo-form .todo-form-field .todo-form-attachments-preview .attachment-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

/* line 3081, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-modal .todo-form .todo-form-field .todo-form-attachments-preview .attachment-item .attachment-link {
  margin-left: auto;
  color: rgba(246, 229, 179, 0.8);
  text-decoration: none;
}

/* line 3086, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-modal .todo-form .todo-form-field .todo-form-attachments-preview .attachment-item .attachment-link:hover {
  color: #F6E5B3;
}

/* line 3091, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-modal .todo-form .todo-form-field .todo-form-attachments-preview .attachment-item .attachment-size {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

/* line 3099, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-modal .todo-form .todo-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 3107, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-modal .todo-form .todo-form-actions .todo-form-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

/* line 3116, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-modal .todo-form .todo-form-actions .todo-form-btn.todo-form-btn-cancel {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

/* line 3120, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-modal .todo-form .todo-form-actions .todo-form-btn.todo-form-btn-cancel:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

/* line 3126, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-modal .todo-form .todo-form-actions .todo-form-btn.todo-form-btn-submit {
  background: rgba(76, 175, 80, 0.2);
  color: #4CAF50;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

/* line 3131, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-modal .todo-form .todo-form-actions .todo-form-btn.todo-form-btn-submit:hover {
  background: rgba(76, 175, 80, 0.3);
  transform: translateY(-2px);
}

/* line 3136, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-modal .todo-form .todo-form-actions .todo-form-btn.todo-form-btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* line 3148, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-delete-confirm-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* line 3161, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-delete-confirm-modal.visible {
  opacity: 1;
}

/* line 3165, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-delete-confirm-modal .todo-delete-confirm-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

/* line 3176, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-delete-confirm-modal .todo-delete-confirm-content {
  position: relative;
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.98) 0%, rgba(100, 1, 39, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  width: 90%;
  max-width: 450px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  transform: scale(0.9);
  transition: transform 0.2s ease;
}

/* line 3190, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-delete-confirm-modal.visible .todo-delete-confirm-modal .todo-delete-confirm-content {
  transform: scale(1);
}

/* line 3195, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-delete-confirm-modal .todo-delete-confirm-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 3202, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-delete-confirm-modal .todo-delete-confirm-header h3, .todo-delete-confirm-modal .todo-delete-confirm-header .h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.25rem;
  font-weight: 600;
}

/* line 3209, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-delete-confirm-modal .todo-delete-confirm-header .todo-delete-confirm-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s ease;
}

/* line 3222, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-delete-confirm-modal .todo-delete-confirm-header .todo-delete-confirm-close:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
}

/* line 3229, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-delete-confirm-modal .todo-delete-confirm-body {
  padding: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* line 3235, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-delete-confirm-modal .todo-delete-confirm-body p {
  margin: 0 0 0.75rem 0;
}

/* line 3238, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-delete-confirm-modal .todo-delete-confirm-body p:last-child {
  margin-bottom: 0;
}

/* line 3243, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-delete-confirm-modal .todo-delete-confirm-body .todo-delete-confirm-warning {
  color: rgba(255, 193, 7, 0.9);
  font-size: 0.85rem;
  font-weight: 500;
}

/* line 3250, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-delete-confirm-modal .todo-delete-confirm-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 3257, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-delete-confirm-modal .todo-delete-confirm-actions .todo-delete-confirm-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 3269, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-delete-confirm-modal .todo-delete-confirm-actions .todo-delete-confirm-btn.todo-delete-confirm-btn-cancel {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

/* line 3273, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-delete-confirm-modal .todo-delete-confirm-actions .todo-delete-confirm-btn.todo-delete-confirm-btn-cancel:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* line 3279, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-delete-confirm-modal .todo-delete-confirm-actions .todo-delete-confirm-btn.todo-delete-confirm-btn-confirm {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* line 3284, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-delete-confirm-modal .todo-delete-confirm-actions .todo-delete-confirm-btn.todo-delete-confirm-btn-confirm:hover {
  background: rgba(239, 68, 68, 0.3);
  transform: translateY(-2px);
}

/* line 3289, app/assets/stylesheets/pages/customerspace/_home.scss */
.todo-delete-confirm-modal .todo-delete-confirm-actions .todo-delete-confirm-btn.todo-delete-confirm-btn-confirm:active {
  transform: translateY(0);
}

@keyframes skeleton-shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* line 3310, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-skeleton-container {
  pointer-events: none;
}

/* line 3314, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-skeleton-item {
  pointer-events: none;
}

/* line 3319, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-skeleton-text {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.12) 50%, rgba(255, 255, 255, 0.05) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
  border-radius: 4px;
  height: 14px;
  width: 60%;
}

/* line 3332, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-skeleton-text--multi {
  height: 40px;
  width: 100%;
}

/* line 3337, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-skeleton-text--short {
  width: 30%;
  height: 12px;
}

/* line 3344, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-skeleton-image {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.12) 50%, rgba(255, 255, 255, 0.05) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
  width: 120px;
  height: 80px;
  border-radius: 8px;
  flex-shrink: 0;
}

/* line 3360, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-skeleton-circle {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.12) 50%, rgba(255, 255, 255, 0.05) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

/* line 3375, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-loading-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-style: italic;
}

/* line 3385, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-loading-message i {
  color: #C38761;
}

/* line 3391, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  width: 100%;
}

/* line 3400, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-empty .zone-actu-empty-icon {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 16px;
}

/* line 3407, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-empty .zone-actu-empty-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

/* line 3413, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-empty .zone-actu-empty-text small, .zone-actu-empty .zone-actu-empty-text .small {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* line 3419, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-empty .btn-actualites-refresh {
  margin-top: 20px;
  padding: 12px 24px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 3434, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-empty .btn-actualites-refresh:hover:not(:disabled) {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.3));
  border-color: rgba(139, 92, 246, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

/* line 3441, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-empty .btn-actualites-refresh:disabled, .zone-actu-empty .btn-actualites-refresh.loading {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* line 3448, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-empty .btn-actualites-refresh i {
  font-size: 0.9rem;
}

/* line 3455, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  width: 100%;
}

/* line 3464, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-error .zone-actu-error-icon {
  font-size: 3rem;
  color: rgba(220, 53, 69, 0.7);
  margin-bottom: 16px;
}

/* line 3471, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-error .zone-actu-error-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

/* line 3478, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-error .btn-actualites-retry {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 3492, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-error .btn-actualites-retry:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* line 3498, app/assets/stylesheets/pages/customerspace/_home.scss */
.zone-actu-error .btn-actualites-retry i {
  font-size: 0.85rem;
}

/* line 3, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-page {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0.5rem 0 2rem;
  width: 100%;
  max-width: 100%;
}

/* line 12, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-header {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  backdrop-filter: blur(12px);
}

/* line 23, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-header .assistant-header-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* line 29, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-header .assistant-header-avatar .orizen-avatar {
  width: 46px;
  height: 46px;
  font-size: 1.2rem;
}

/* line 36, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-header .assistant-header-text .assistant-eyebrow {
  margin: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.55);
}

/* line 44, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-header .assistant-header-text h1, .assistant-header .assistant-header-text .h1 {
  margin: 0.2rem 0 0.35rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
}

/* line 51, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-header .assistant-header-text .assistant-subtitle {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

/* line 58, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-header .assistant-progress-card {
  min-width: 240px;
  background: rgba(20, 20, 38, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 0.95rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

/* line 68, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-header .assistant-progress-card .progress-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* line 73, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-header .assistant-progress-card .progress-top .label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
}

/* line 80, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-header .assistant-progress-card .progress-top .value {
  font-size: 1.3rem;
  font-weight: 700;
  color: #f6e5b3;
}

/* line 87, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-header .assistant-progress-card .progress-bar {
  height: 7px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

/* line 93, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-header .assistant-progress-card .progress-bar .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #f6e5b3, #ffd54f);
  transition: width 0.35s ease;
  box-shadow: 0 0 8px rgba(246, 229, 179, 0.35);
}

/* line 101, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-header .assistant-progress-card .progress-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

/* line 109, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-header .assistant-progress-card .progress-bottom .next-tutorial {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(214, 216, 255, 0.9);
  font-weight: 600;
}

/* line 120, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-header.assistant-header-enhanced {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  flex-direction: column;
  align-items: stretch;
  gap: 2rem;
}

/* line 128, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-header.assistant-header-enhanced .assistant-header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

/* line 136, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-header.assistant-header-enhanced .assistant-header-text h1, .assistant-header.assistant-header-enhanced .assistant-header-text .h1 {
  font-size: 1.8rem;
  margin: 0.2rem 0 0.6rem;
}

/* line 141, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-header.assistant-header-enhanced .assistant-header-text .assistant-subtitle {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 600px;
}

/* line 148, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-header.assistant-header-enhanced .hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

/* line 153, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-header.assistant-header-enhanced .hero-stats .stat-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* line 162, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-header.assistant-header-enhanced .hero-stats .stat-card .stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(246, 229, 179, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f6e5b3;
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* line 175, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-header.assistant-header-enhanced .hero-stats .stat-card .stat-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

/* line 180, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-header.assistant-header-enhanced .hero-stats .stat-card .stat-content .stat-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
}

/* line 186, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-header.assistant-header-enhanced .hero-stats .stat-card .stat-content .stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

/* line 196, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-section {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

/* line 205, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-section.support {
  background: rgba(255, 180, 120, 0.08);
  border-color: rgba(255, 180, 120, 0.22);
}

/* line 211, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 218, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-section-header .icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: rgba(246, 229, 179, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f6e5b3;
  font-size: 1.25rem;
}

/* line 230, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-section-header h2, .assistant-section-header .h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
}

/* line 237, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-section-header p {
  margin: 0.3rem 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

/* line 243, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-section-header .section-badge {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 193, 7, 0.18);
  border: 1px solid rgba(255, 193, 7, 0.28);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffd54f;
}

/* line 260, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 2.5rem 1.2rem;
  border-radius: 14px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

/* line 271, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-empty-state i {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.6);
}

/* line 276, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-empty-state p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

/* line 284, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

/* line 290, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 1.1rem 1.1rem 1rem;
  transition: all 0.25s ease;
  cursor: pointer;
  overflow: hidden;
}

/* line 300, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(246, 229, 179, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

/* line 309, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(246, 229, 179, 0.28);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
}

/* line 314, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-card:hover::before {
  opacity: 1;
}

/* line 318, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-card:hover .tutorial-status-badge {
  color: rgba(255, 255, 255, 0.75);
}

/* line 323, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-card.tutorial-card-advanced {
  background: rgba(99, 102, 241, 0.08);
  border-color: rgba(99, 102, 241, 0.22);
}

/* line 328, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-card .tutorial-status-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.68rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.75);
}

/* line 346, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-card .tutorial-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f6e5b3;
  font-size: 1.3rem;
  margin-bottom: 0.9rem;
}

/* line 359, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-card .tutorial-content {
  margin-bottom: 1rem;
}

/* line 362, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-card .tutorial-content .tutorial-title {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
}

/* line 369, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-card .tutorial-content .tutorial-description {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.45;
}

/* line 377, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-card .tutorial-progress-bar {
  height: 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
  margin-bottom: 0.5rem;
}

/* line 384, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-card .tutorial-progress-bar .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #f6e5b3, #ffd54f);
  transition: width 0.3s ease;
}

/* line 391, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-card .tutorial-progress-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.58);
}

/* line 398, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-card .tutorial-progress-text .completed-date {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #a5d6a7;
}

/* line 406, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-card .tutorial-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.8rem;
}

/* line 411, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-card .tutorial-action .btn-tutorial {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 10px;
  padding: 0.4rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  transition: all 0.25s ease;
}

/* line 424, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-card .tutorial-action .btn-tutorial:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-2px);
}

/* line 430, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-card .tutorial-action .btn-tutorial-start {
  background: rgba(99, 102, 241, 0.18);
  border-color: rgba(99, 102, 241, 0.35);
}

/* line 435, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-card .tutorial-action .btn-tutorial-review {
  background: rgba(76, 175, 80, 0.18);
  border-color: rgba(76, 175, 80, 0.35);
}

/* line 441, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-card.completed {
  border-color: rgba(76, 175, 80, 0.38);
}

/* line 444, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-card.completed .tutorial-status-badge {
  background: rgba(76, 175, 80, 0.22);
  border-color: rgba(76, 175, 80, 0.35);
  color: #a5d6a7;
}

/* line 451, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-card.completed:hover .tutorial-status-badge {
  color: #a5d6a7;
}

/* line 457, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-card.in_progress {
  border-color: rgba(33, 150, 243, 0.28);
}

/* line 460, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-card.in_progress .tutorial-status-badge {
  background: rgba(33, 150, 243, 0.22);
  border-color: rgba(33, 150, 243, 0.32);
  color: #90caf9;
}

/* line 467, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-card.in_progress:hover .tutorial-status-badge {
  color: #90caf9;
}

/* line 474, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.support-actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

/* line 480, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.support-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* line 492, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.support-card .card-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #ffb478;
}

/* line 504, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.support-card .card-content {
  flex: 1;
}

/* line 507, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.support-card .card-content h3, .support-card .card-content .h3 {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: white;
}

/* line 514, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.support-card .card-content p {
  margin: 0.2rem 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.62);
}

/* line 521, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.support-card .card-arrow {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.52);
  transition: transform 0.25s ease;
}

/* line 527, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.support-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

/* line 532, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.support-card:hover .card-arrow {
  transform: translateX(6px);
  color: #ffb478;
}

/* line 538, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.support-card.is-static {
  cursor: default;
}

/* line 541, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.support-card.is-static:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

/* line 546, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.support-card.is-static:hover .card-arrow {
  transform: none;
}

/* line 553, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.support-recent-tickets {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 562, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.support-recent-tickets h3, .support-recent-tickets .h3 {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 571, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.support-recent-tickets h3 i, .support-recent-tickets .h3 i {
  color: #ffb478;
}

/* line 576, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.support-recent-tickets .tickets-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* line 586, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.ticket-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  padding: 0.75rem 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* line 599, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.ticket-row:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateX(4px);
}

/* line 605, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.ticket-row .ticket-title {
  font-size: 0.84rem;
  font-weight: 500;
}

/* line 610, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.ticket-row .ticket-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
}

/* line 616, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.ticket-row .ticket-meta .ticket-status {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
}

/* line 625, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.ticket-row .ticket-meta .ticket-status.pending {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
}

/* line 630, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.ticket-row .ticket-meta .ticket-status.answered {
  background: rgba(76, 175, 80, 0.2);
  color: #81c784;
}

/* line 635, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.ticket-row .ticket-meta .ticket-status.closed {
  background: rgba(158, 158, 158, 0.2);
  color: #bdbdbd;
}

/* line 641, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.ticket-row .ticket-meta .ticket-date {
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 1100px) {
  /* line 648, app/assets/stylesheets/pages/customerspace/_assistant.scss */
  .assistant-header {
    flex-direction: column;
    align-items: flex-start;
  }
  /* line 652, app/assets/stylesheets/pages/customerspace/_assistant.scss */
  .assistant-header .assistant-progress-card {
    width: 100%;
  }
  /* line 657, app/assets/stylesheets/pages/customerspace/_assistant.scss */
  .assistant-header.assistant-header-enhanced .assistant-header-main {
    flex-direction: column;
    align-items: flex-start;
  }
  /* line 662, app/assets/stylesheets/pages/customerspace/_assistant.scss */
  .assistant-header.assistant-header-enhanced .hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* line 670, app/assets/stylesheets/pages/customerspace/_assistant.scss */
  .assistant-page {
    padding: 0.25rem 0 1.5rem;
  }
  /* line 674, app/assets/stylesheets/pages/customerspace/_assistant.scss */
  .assistant-header {
    padding: 1rem 1.1rem;
  }
  /* line 678, app/assets/stylesheets/pages/customerspace/_assistant.scss */
  .assistant-section {
    padding: 1.1rem 1.2rem;
  }
  /* line 682, app/assets/stylesheets/pages/customerspace/_assistant.scss */
  .support-actions-grid {
    grid-template-columns: 1fr;
  }
}

/* line 689, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-detail-page {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0.5rem 0 2rem;
}

/* line 696, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-header {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* line 705, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-header .tutorial-header-content {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

/* line 710, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-header .tutorial-header-content .tutorial-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(246, 229, 179, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f6e5b3;
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* line 723, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-header .tutorial-header-content .tutorial-title-block {
  flex: 1;
}

/* line 726, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-header .tutorial-header-content .tutorial-title-block .tutorial-title {
  margin: 0 0 0.35rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
}

/* line 733, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-header .tutorial-header-content .tutorial-title-block .tutorial-description {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

/* line 742, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-header .tutorial-meta-bar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* line 747, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-header .tutorial-meta-bar .meta-badges {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

/* line 753, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-header .tutorial-meta-bar .meta-badges .meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

/* line 765, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-header .tutorial-meta-bar .meta-badges .meta-badge i {
  font-size: 0.7rem;
}

/* line 769, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-header .tutorial-meta-bar .meta-badges .meta-badge.badge-success {
  background: rgba(76, 175, 80, 0.2);
  border-color: rgba(76, 175, 80, 0.32);
  color: #a5d6a7;
}

/* line 775, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-header .tutorial-meta-bar .meta-badges .meta-badge.badge-progress {
  background: rgba(33, 150, 243, 0.2);
  border-color: rgba(33, 150, 243, 0.32);
  color: #90caf9;
}

/* line 784, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-header .tutorial-meta-bar .tutorial-progress-container .progress-bar-track {
  height: 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

/* line 790, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-header .tutorial-meta-bar .tutorial-progress-container .progress-bar-track .progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #f6e5b3, #ffd54f);
  transition: width 0.35s ease;
}

/* line 800, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content-container {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.8rem 2rem;
}

/* line 806, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content-container .tutorial-article {
  color: white;
}

/* line 811, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* line 816, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-intro {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 1.5rem 1.6rem;
}

/* line 822, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-intro h2, .tutorial-content .tutorial-intro .h2 {
  margin: 0 0 0.8rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
}

/* line 830, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-intro p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* line 838, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-section {
  padding: 1.3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* line 842, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

/* line 847, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-section h3, .tutorial-content .tutorial-section .h3 {
  margin: 0 0 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #f6e5b3;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 858, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-section > p {
  margin: 0 0 1.2rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
}

/* line 864, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-section > p:last-child {
  margin-bottom: 0;
}

/* line 869, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-section ul, .tutorial-content .tutorial-section ol {
  margin: 1.2rem 0;
  padding-left: 1.8rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

/* line 876, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-section ul li, .tutorial-content .tutorial-section ol li {
  margin: 0.7rem 0;
  position: relative;
}

/* line 880, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-section ul li strong, .tutorial-content .tutorial-section ol li strong {
  color: white;
  font-weight: 600;
}

/* line 885, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-section ul li::marker, .tutorial-content .tutorial-section ol li::marker {
  color: rgba(246, 229, 179, 0.6);
}

/* line 890, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-section ul ul, .tutorial-content .tutorial-section ul ol, .tutorial-content .tutorial-section ol ul, .tutorial-content .tutorial-section ol ol {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
}

/* line 897, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-section ol li {
  padding-left: 0.4rem;
}

/* line 903, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-tip,
.tutorial-content .tutorial-action {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  margin: 0.9rem 0;
}

/* line 911, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-tip .tip-icon,
.tutorial-content .tutorial-tip .action-icon,
.tutorial-content .tutorial-action .tip-icon,
.tutorial-content .tutorial-action .action-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* line 923, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-tip .tip-content,
.tutorial-content .tutorial-tip .action-content,
.tutorial-content .tutorial-action .tip-content,
.tutorial-content .tutorial-action .action-content {
  flex: 1;
}

/* line 927, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-tip .tip-content strong,
.tutorial-content .tutorial-tip .action-content strong,
.tutorial-content .tutorial-action .tip-content strong,
.tutorial-content .tutorial-action .action-content strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.85rem;
  font-weight: 600;
}

/* line 934, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-tip .tip-content p,
.tutorial-content .tutorial-tip .action-content p,
.tutorial-content .tutorial-action .tip-content p,
.tutorial-content .tutorial-action .action-content p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
}

/* line 942, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-tip {
  background: rgba(255, 193, 7, 0.12);
  border: 1px solid rgba(255, 193, 7, 0.25);
}

/* line 946, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-tip .tip-icon {
  background: rgba(255, 193, 7, 0.18);
  color: #ffd54f;
}

/* line 952, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-tip .tip-content strong {
  color: #ffd54f;
}

/* line 956, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-tip .tip-content p {
  color: rgba(255, 255, 255, 0.8);
}

/* line 962, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-action {
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.25);
}

/* line 966, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-action .action-icon {
  background: rgba(99, 102, 241, 0.18);
  color: #a5b4fc;
}

/* line 972, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-action .action-content strong {
  color: #a5b4fc;
}

/* line 976, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-action .action-content p {
  color: rgba(255, 255, 255, 0.8);
}

/* line 982, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-help {
  background: rgba(255, 180, 120, 0.12);
  border: 1px solid rgba(255, 180, 120, 0.25);
  border-radius: 14px;
  padding: 1.4rem 1.6rem;
  margin-top: 0.5rem;
}

/* line 989, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-help h3, .tutorial-content .tutorial-help .h3 {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffb478;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

/* line 998, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-help h3 i, .tutorial-content .tutorial-help .h3 i {
  font-size: 1rem;
}

/* line 1003, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-help p {
  margin: 0 0 0.9rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* line 1010, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-help ul {
  margin: 1rem 0 1.2rem;
  padding-left: 1.8rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
}

/* line 1016, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-help ul li {
  margin: 0.35rem 0;
}

/* line 1021, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-help .btn-support-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.3rem;
  border-radius: 11px;
  background: rgba(255, 180, 120, 0.2);
  border: 1px solid rgba(255, 180, 120, 0.35);
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.25s ease;
  margin-top: 0.5rem;
}

/* line 1036, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-help .btn-support-link:hover {
  background: rgba(255, 180, 120, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 180, 120, 0.2);
}

/* line 1042, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-help .btn-support-link i {
  font-size: 0.95rem;
}

/* line 1050, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-checklist {
  background: rgba(76, 175, 80, 0.08);
  border: 1px solid rgba(76, 175, 80, 0.22);
  border-radius: 14px;
  padding: 1.4rem 1.6rem;
  margin: 1.5rem 0;
}

/* line 1057, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-checklist .checklist-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(76, 175, 80, 0.2);
  flex-wrap: wrap;
}

/* line 1067, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-checklist .checklist-header .checklist-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* line 1072, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-checklist .checklist-header .checklist-title i {
  font-size: 1.1rem;
  color: #a5d6a7;
}

/* line 1077, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-checklist .checklist-header .checklist-title h4, .tutorial-content .tutorial-checklist .checklist-header .checklist-title .h4 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
}

/* line 1085, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-checklist .checklist-header .checklist-progress {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 180px;
}

/* line 1091, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-checklist .checklist-header .checklist-progress .progress-bar-track {
  height: 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

/* line 1097, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-checklist .checklist-header .checklist-progress .progress-bar-track .progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #a5d6a7, #81c784);
  transition: width 0.4s ease;
  box-shadow: 0 0 8px rgba(165, 214, 167, 0.4);
}

/* line 1105, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-checklist .checklist-header .checklist-progress .progress-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  text-align: right;
}

/* line 1113, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-checklist .checklist-items {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

/* line 1118, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-checklist .checklist-items .checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 1129, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-checklist .checklist-items .checklist-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(76, 175, 80, 0.3);
}

/* line 1134, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-checklist .checklist-items .checklist-item.checked {
  background: rgba(76, 175, 80, 0.12);
  border-color: rgba(76, 175, 80, 0.25);
}

/* line 1138, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-checklist .checklist-items .checklist-item.checked .item-text {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
}

/* line 1143, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-checklist .checklist-items .checklist-item.checked .checkbox-custom {
  background: rgba(76, 175, 80, 0.3);
  border-color: rgba(76, 175, 80, 0.5);
}

/* line 1147, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-checklist .checklist-items .checklist-item.checked .checkbox-custom i {
  opacity: 1;
}

/* line 1153, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-checklist .checklist-items .checklist-item .item-checkbox {
  position: relative;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* line 1158, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-checklist .checklist-items .checklist-item .item-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* line 1164, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-checklist .checklist-items .checklist-item .item-checkbox .checkbox-custom {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

/* line 1175, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-checklist .checklist-items .checklist-item .item-checkbox .checkbox-custom i {
  font-size: 0.7rem;
  color: white;
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* line 1184, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-checklist .checklist-items .checklist-item .item-content {
  flex: 1;
}

/* line 1187, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-checklist .checklist-items .checklist-item .item-content .item-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  transition: all 0.25s ease;
}

/* line 1197, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-checklist.completed {
  background: rgba(76, 175, 80, 0.15);
  border-color: rgba(76, 175, 80, 0.35);
}

/* line 1201, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-content .tutorial-checklist.completed .checklist-header .checklist-title i {
  animation: celebrate 0.6s ease;
}

@keyframes celebrate {
  0% {
    transform: scale(1) rotate(0deg);
  }
  25% {
    transform: scale(1.2) rotate(-10deg);
  }
  50% {
    transform: scale(1.3) rotate(10deg);
  }
  75% {
    transform: scale(1.2) rotate(-5deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

/* line 1226, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-footer {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.2rem 1.6rem;
}

/* line 1232, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-footer .tutorial-footer-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

/* line 1238, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-footer .tutorial-footer-actions .btn-secondary, .tutorial-footer .tutorial-footer-actions .crm-action-button.crm-action-button-secondary,
.tutorial-footer .tutorial-footer-actions .btn-primary,
.tutorial-footer .tutorial-footer-actions .crm-action-button.crm-action-button-primary,
.tutorial-footer .tutorial-footer-actions .btn-success {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.2rem;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid;
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none;
}

/* line 1253, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-footer .tutorial-footer-actions .btn-secondary i, .tutorial-footer .tutorial-footer-actions .crm-action-button.crm-action-button-secondary i,
.tutorial-footer .tutorial-footer-actions .btn-primary i,
.tutorial-footer .tutorial-footer-actions .crm-action-button.crm-action-button-primary i,
.tutorial-footer .tutorial-footer-actions .btn-success i {
  font-size: 0.85rem;
}

/* line 1258, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-footer .tutorial-footer-actions .btn-secondary, .tutorial-footer .tutorial-footer-actions .crm-action-button.crm-action-button-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  color: white;
}

/* line 1263, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-footer .tutorial-footer-actions .btn-secondary:hover, .tutorial-footer .tutorial-footer-actions .crm-action-button.crm-action-button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

/* line 1269, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-footer .tutorial-footer-actions .btn-primary, .tutorial-footer .tutorial-footer-actions .crm-action-button.crm-action-button-primary {
  background: rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.35);
  color: white;
}

/* line 1274, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-footer .tutorial-footer-actions .btn-primary:hover, .tutorial-footer .tutorial-footer-actions .crm-action-button.crm-action-button-primary:hover {
  background: rgba(99, 102, 241, 0.28);
  transform: translateY(-2px);
}

/* line 1280, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-footer .tutorial-footer-actions .btn-success {
  background: rgba(76, 175, 80, 0.2);
  border-color: rgba(76, 175, 80, 0.35);
  color: #a5d6a7;
  cursor: default;
}

/* line 1286, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-footer .tutorial-footer-actions .btn-success:disabled {
  opacity: 0.7;
}

@media (max-width: 768px) {
  /* line 1294, app/assets/stylesheets/pages/customerspace/_assistant.scss */
  .tutorial-header {
    padding: 1.1rem 1.2rem;
  }
  /* line 1298, app/assets/stylesheets/pages/customerspace/_assistant.scss */
  .tutorial-header .tutorial-header-content .tutorial-icon-wrapper {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
  /* line 1305, app/assets/stylesheets/pages/customerspace/_assistant.scss */
  .tutorial-header .tutorial-header-content .tutorial-title-block .tutorial-title {
    font-size: 1.3rem;
  }
  /* line 1312, app/assets/stylesheets/pages/customerspace/_assistant.scss */
  .tutorial-content-container {
    padding: 1.3rem 1.4rem;
  }
  /* line 1316, app/assets/stylesheets/pages/customerspace/_assistant.scss */
  .tutorial-footer .tutorial-footer-actions {
    flex-direction: column;
    align-items: stretch;
  }
  /* line 1320, app/assets/stylesheets/pages/customerspace/_assistant.scss */
  .tutorial-footer .tutorial-footer-actions .btn-secondary, .tutorial-footer .tutorial-footer-actions .crm-action-button.crm-action-button-secondary,
.tutorial-footer .tutorial-footer-actions .btn-primary,
.tutorial-footer .tutorial-footer-actions .crm-action-button.crm-action-button-primary,
.tutorial-footer .tutorial-footer-actions .btn-success {
    justify-content: center;
  }
}

/* line 1330, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  margin-bottom: 1.5rem;
}

/* line 1340, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-breadcrumb .breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

/* line 1349, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-breadcrumb .breadcrumb-list .breadcrumb-item {
  display: flex;
  align-items: center;
}

/* line 1354, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-breadcrumb .breadcrumb-list .breadcrumb-item.active .breadcrumb-current {
  color: white;
  font-weight: 600;
}

/* line 1361, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-breadcrumb .breadcrumb-list .breadcrumb-separator {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.65rem;
  margin: 0 0.2rem;
}

/* line 1369, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-breadcrumb .breadcrumb-list .breadcrumb-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* line 1380, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-breadcrumb .breadcrumb-list .breadcrumb-link i {
  font-size: 0.75rem;
  color: rgba(246, 229, 179, 0.6);
}

/* line 1385, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-breadcrumb .breadcrumb-list .breadcrumb-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

/* line 1389, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-breadcrumb .breadcrumb-list .breadcrumb-link:hover i {
  color: #f6e5b3;
}

/* line 1395, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-breadcrumb .breadcrumb-list .breadcrumb-current {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.6rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

/* line 1403, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-breadcrumb .breadcrumb-list .breadcrumb-current i {
  font-size: 0.75rem;
  color: rgba(246, 229, 179, 0.8);
}

/* line 1411, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-breadcrumb .breadcrumb-progress .progress-ring {
  position: relative;
  width: 32px;
  height: 32px;
}

/* line 1416, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-breadcrumb .breadcrumb-progress .progress-ring svg {
  transform: rotate(-90deg);
}

/* line 1419, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-breadcrumb .breadcrumb-progress .progress-ring svg circle {
  transition: stroke-dashoffset 0.5s ease;
}

/* line 1424, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-breadcrumb .breadcrumb-progress .progress-ring .progress-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.65rem;
  font-weight: 700;
  color: #f6e5b3;
}

/* line 1439, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-section-header-contextual {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.8rem 2rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

/* line 1451, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-section-header-contextual .section-header-content {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex: 1;
  min-width: 300px;
}

/* line 1458, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-section-header-contextual .section-header-content .section-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(246, 229, 179, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f6e5b3;
  font-size: 1.6rem;
  flex-shrink: 0;
}

/* line 1471, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-section-header-contextual .section-header-content .section-text {
  flex: 1;
}

/* line 1474, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-section-header-contextual .section-header-content .section-text h1, .assistant-section-header-contextual .section-header-content .section-text .h1 {
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
}

/* line 1482, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-section-header-contextual .section-header-content .section-text .section-subtitle {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0;
}

/* line 1491, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-section-header-contextual .section-progress-compact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 200px;
}

/* line 1497, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-section-header-contextual .section-progress-compact .progress-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* line 1502, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-section-header-contextual .section-progress-compact .progress-info .progress-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* line 1509, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-section-header-contextual .section-progress-compact .progress-info .progress-percentage {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f6e5b3;
}

/* line 1516, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-section-header-contextual .section-progress-compact .progress-bar-mini {
  height: 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

/* line 1522, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-section-header-contextual .section-progress-compact .progress-bar-mini .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #f6e5b3, #ffd54f);
  transition: width 0.5s ease;
}

/* line 1529, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-section-header-contextual .section-progress-compact .progress-details {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: right;
}

/* line 1538, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.section-stats-badges {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* line 1544, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.section-stats-badges .stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

/* line 1556, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.section-stats-badges .stat-badge i {
  font-size: 0.75rem;
  color: rgba(246, 229, 179, 0.7);
}

/* line 1561, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.section-stats-badges .stat-badge.in-progress {
  background: rgba(33, 150, 243, 0.15);
  border-color: rgba(33, 150, 243, 0.3);
  color: #90caf9;
}

/* line 1566, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.section-stats-badges .stat-badge.in-progress i {
  color: #90caf9;
}

/* line 1577, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-learning-paths {
  margin-bottom: 3rem;
}

/* line 1580, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-learning-paths .section-header-centered {
  text-align: center;
  margin-bottom: 2.5rem;
}

/* line 1584, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-learning-paths .section-header-centered h2, .assistant-home .assistant-learning-paths .section-header-centered .h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin: 0 0 0.6rem;
  letter-spacing: -0.02em;
}

/* line 1592, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-learning-paths .section-header-centered p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* line 1599, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-learning-paths .learning-paths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.8rem;
}

/* line 1604, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-learning-paths .learning-paths-grid .learning-path-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  overflow: hidden;
  min-height: 420px;
}

/* line 1618, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-learning-paths .learning-paths-grid .learning-path-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(246, 229, 179, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* line 1630, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-learning-paths .learning-paths-grid .learning-path-card:hover:not(.coming-soon) {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(246, 229, 179, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* line 1636, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-learning-paths .learning-paths-grid .learning-path-card:hover:not(.coming-soon)::before {
  opacity: 1;
}

/* line 1640, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-learning-paths .learning-paths-grid .learning-path-card:hover:not(.coming-soon) .card-cta i {
  transform: translateX(4px);
}

/* line 1645, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-learning-paths .learning-paths-grid .learning-path-card.coming-soon {
  opacity: 0.6;
  cursor: not-allowed;
}

/* line 1649, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-learning-paths .learning-paths-grid .learning-path-card.coming-soon:hover {
  transform: none;
}

/* line 1654, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-learning-paths .learning-paths-grid .learning-path-card .card-ribbon {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

/* line 1659, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-learning-paths .learning-paths-grid .learning-path-card .card-ribbon .ribbon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
}

/* line 1668, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-learning-paths .learning-paths-grid .learning-path-card .card-ribbon .ribbon-badge.new {
  background: rgba(255, 193, 7, 0.2);
  border: 1px solid rgba(255, 193, 7, 0.4);
  color: #ffd54f;
}

/* line 1674, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-learning-paths .learning-paths-grid .learning-path-card .card-ribbon .ribbon-badge.in-progress {
  background: rgba(33, 150, 243, 0.2);
  border: 1px solid rgba(33, 150, 243, 0.4);
  color: #90caf9;
}

/* line 1680, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-learning-paths .learning-paths-grid .learning-path-card .card-ribbon .ribbon-badge.completed {
  background: rgba(76, 175, 80, 0.2);
  border: 1px solid rgba(76, 175, 80, 0.4);
  color: #a5d6a7;
}

/* line 1686, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-learning-paths .learning-paths-grid .learning-path-card .card-ribbon .ribbon-badge.soon {
  background: rgba(156, 163, 175, 0.2);
  border: 1px solid rgba(156, 163, 175, 0.4);
  color: #d1d5db;
}

/* line 1694, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-learning-paths .learning-paths-grid .learning-path-card .card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(246, 229, 179, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f6e5b3;
  font-size: 1.8rem;
}

/* line 1706, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-learning-paths .learning-paths-grid .learning-path-card .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* line 1712, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-learning-paths .learning-paths-grid .learning-path-card .card-content h3, .assistant-home .assistant-learning-paths .learning-paths-grid .learning-path-card .card-content .h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* line 1721, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-learning-paths .learning-paths-grid .learning-path-card .card-content > p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  flex-shrink: 0;
}

/* line 1731, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-learning-paths .learning-paths-grid .learning-path-card .card-content .card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

/* line 1737, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-learning-paths .learning-paths-grid .learning-path-card .card-content .card-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* line 1744, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-learning-paths .learning-paths-grid .learning-path-card .card-content .card-meta .meta-item i {
  font-size: 0.75rem;
  color: rgba(246, 229, 179, 0.7);
}

/* line 1752, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-learning-paths .learning-paths-grid .learning-path-card .card-content .card-progress .progress-track {
  height: 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
  margin-bottom: 0.5rem;
}

/* line 1759, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-learning-paths .learning-paths-grid .learning-path-card .card-content .card-progress .progress-track .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #f6e5b3, #ffd54f);
  transition: width 0.5s ease;
}

/* line 1766, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-learning-paths .learning-paths-grid .learning-path-card .card-content .card-progress .progress-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

/* line 1773, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-learning-paths .learning-paths-grid .learning-path-card .card-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 1780, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-learning-paths .learning-paths-grid .learning-path-card .card-cta .cta-text {
  font-size: 0.92rem;
  font-weight: 600;
  color: #f6e5b3;
}

/* line 1786, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-learning-paths .learning-paths-grid .learning-path-card .card-cta i {
  font-size: 0.9rem;
  color: rgba(246, 229, 179, 0.7);
  transition: transform 0.3s ease;
}

/* line 1792, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-learning-paths .learning-paths-grid .learning-path-card .card-cta.disabled {
  opacity: 0.5;
}

/* line 1795, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-learning-paths .learning-paths-grid .learning-path-card .card-cta.disabled .cta-text {
  color: rgba(255, 255, 255, 0.5);
}

/* line 1799, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-learning-paths .learning-paths-grid .learning-path-card .card-cta.disabled i {
  color: rgba(255, 255, 255, 0.3);
}

/* line 1808, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-recommended {
  margin-bottom: 3rem;
}

/* line 1811, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-recommended .recommended-card {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.06) 100%);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: 18px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* line 1820, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-recommended .recommended-card .recommended-header {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

/* line 1825, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-recommended .recommended-card .recommended-header .recommended-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(246, 229, 179, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f6e5b3;
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* line 1838, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-recommended .recommended-card .recommended-header .recommended-text {
  flex: 1;
}

/* line 1841, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-recommended .recommended-card .recommended-header .recommended-text .recommended-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(246, 229, 179, 0.8);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

/* line 1851, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-recommended .recommended-card .recommended-header .recommended-text h3, .assistant-home .assistant-recommended .recommended-card .recommended-header .recommended-text .h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin: 0;
}

/* line 1860, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-recommended .recommended-card .recommended-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* line 1867, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-recommended .recommended-card .recommended-footer .recommended-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* line 1872, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-recommended .recommended-card .recommended-footer .recommended-meta .meta-badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(246, 229, 179, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f6e5b3;
  font-size: 1rem;
}

/* line 1884, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-recommended .recommended-card .recommended-footer .recommended-meta .meta-duration {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 1891, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-recommended .recommended-card .recommended-footer .recommended-meta .meta-duration i {
  color: rgba(246, 229, 179, 0.7);
}

/* line 1897, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-recommended .recommended-card .recommended-footer .btn-primary-large {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.6rem;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.25);
  border: 1px solid rgba(99, 102, 241, 0.4);
  color: white;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* line 1911, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-recommended .recommended-card .recommended-footer .btn-primary-large:hover {
  background: rgba(99, 102, 241, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* line 1917, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-recommended .recommended-card .recommended-footer .btn-primary-large i {
  font-size: 0.85rem;
}

/* line 1925, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-benefits {
  margin-bottom: 3rem;
}

/* line 1928, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-benefits .section-header-centered {
  text-align: center;
  margin-bottom: 2.5rem;
}

/* line 1932, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-benefits .section-header-centered h2, .assistant-home .assistant-benefits .section-header-centered .h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin: 0 0 0.6rem;
  letter-spacing: -0.02em;
}

/* line 1940, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-benefits .section-header-centered p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* line 1947, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-benefits .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* line 1952, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-benefits .benefits-grid .benefit-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.8rem;
}

/* line 1958, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-benefits .benefits-grid .benefit-card .benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(246, 229, 179, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f6e5b3;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  flex-shrink: 0;
}

/* line 1972, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-benefits .benefits-grid .benefit-card h3, .assistant-home .assistant-benefits .benefits-grid .benefit-card .h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin: 0 0 0.6rem;
}

/* line 1979, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-benefits .benefits-grid .benefit-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

/* line 1985, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.assistant-home .assistant-benefits .benefits-grid .benefit-card p strong {
  color: #f6e5b3;
  font-weight: 600;
}

@media (max-width: 768px) {
  /* line 1998, app/assets/stylesheets/pages/customerspace/_assistant.scss */
  .assistant-home .assistant-header-enhanced {
    padding: 1.5rem;
  }
  /* line 2001, app/assets/stylesheets/pages/customerspace/_assistant.scss */
  .assistant-home .assistant-header-enhanced .assistant-header-text h1, .assistant-home .assistant-header-enhanced .assistant-header-text .h1 {
    font-size: 1.5rem;
  }
  /* line 2005, app/assets/stylesheets/pages/customerspace/_assistant.scss */
  .assistant-home .assistant-header-enhanced .hero-stats {
    grid-template-columns: 1fr;
  }
  /* line 2010, app/assets/stylesheets/pages/customerspace/_assistant.scss */
  .assistant-home .learning-paths-grid {
    grid-template-columns: 1fr !important;
  }
  /* line 2014, app/assets/stylesheets/pages/customerspace/_assistant.scss */
  .assistant-home .recommended-card .recommended-footer {
    flex-direction: column;
    align-items: stretch;
  }
  /* line 2018, app/assets/stylesheets/pages/customerspace/_assistant.scss */
  .assistant-home .recommended-card .recommended-footer .btn-primary-large {
    justify-content: center;
  }
  /* line 2023, app/assets/stylesheets/pages/customerspace/_assistant.scss */
  .assistant-home .benefits-grid {
    grid-template-columns: 1fr !important;
  }
}

/* line 2033, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-category-page .kb-category-header {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(139, 92, 246, 0.08) 100%);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* line 2043, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-category-page .kb-category-header .category-header-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

/* line 2053, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-category-page .kb-category-header .category-header-icon.category-icon-primary {
  background: rgba(99, 102, 241, 0.25);
  color: #a5b4fc;
}

/* line 2054, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-category-page .kb-category-header .category-header-icon.category-icon-purple {
  background: rgba(139, 92, 246, 0.25);
  color: #c4b5fd;
}

/* line 2055, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-category-page .kb-category-header .category-header-icon.category-icon-green {
  background: rgba(76, 175, 80, 0.25);
  color: #a5d6a7;
}

/* line 2056, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-category-page .kb-category-header .category-header-icon.category-icon-blue {
  background: rgba(33, 150, 243, 0.25);
  color: #90caf9;
}

/* line 2057, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-category-page .kb-category-header .category-header-icon.category-icon-orange {
  background: rgba(255, 152, 0, 0.25);
  color: #ffb74d;
}

/* line 2058, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-category-page .kb-category-header .category-header-icon.category-icon-red {
  background: rgba(244, 67, 54, 0.25);
  color: #ef9a9a;
}

/* line 2059, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-category-page .kb-category-header .category-header-icon.category-icon-yellow {
  background: rgba(255, 193, 7, 0.25);
  color: #ffd54f;
}

/* line 2062, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-category-page .kb-category-header .category-header-content {
  flex: 1;
}

/* line 2065, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-category-page .kb-category-header .category-header-content h1, .kb-category-page .kb-category-header .category-header-content .h1 {
  margin: 0 0 0.6rem;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
}

/* line 2073, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-category-page .kb-category-header .category-header-content .category-description {
  margin: 0 0 0.8rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
}

/* line 2080, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-category-page .kb-category-header .category-header-content .category-meta .meta-count {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

/* line 2092, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-category-page .kb-category-header .category-header-content .category-meta .meta-count i {
  color: rgba(246, 229, 179, 0.8);
}

/* line 2100, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-category-page .kb-articles-section {
  margin-bottom: 3rem;
  width: 100%;
  max-width: none;
}

/* line 2109, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-search-page .kb-search-header {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(139, 92, 246, 0.08) 100%);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  margin-bottom: 3rem;
}

/* line 2116, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-search-page .kb-search-header .search-header-content {
  text-align: center;
  margin-bottom: 2rem;
}

/* line 2120, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-search-page .kb-search-header .search-header-content h1, .kb-search-page .kb-search-header .search-header-content .h1 {
  margin: 0 0 0.6rem;
  font-size: 2rem;
  font-weight: 700;
  color: white;
}

/* line 2127, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-search-page .kb-search-header .search-header-content .search-query {
  margin: 0;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
}

/* line 2132, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-search-page .kb-search-header .search-header-content .search-query strong {
  color: #f6e5b3;
  font-weight: 600;
}

/* line 2137, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-search-page .kb-search-header .search-header-content .search-query .results-count {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

/* line 2144, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-search-page .kb-search-header .kb-search-container {
  max-width: 900px;
  margin: 0 auto;
}

/* line 2148, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-search-page .kb-search-header .kb-search-container .kb-search-form {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 0;
}

/* line 2153, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-search-page .kb-search-header .kb-search-container .kb-search-form .kb-search-input-wrapper {
  flex: 1;
  position: relative;
}

/* line 2157, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-search-page .kb-search-header .kb-search-container .kb-search-form .kb-search-input-wrapper i {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
}

/* line 2166, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-search-page .kb-search-header .kb-search-container .kb-search-form .kb-search-input-wrapper .kb-search-input {
  width: 100%;
  padding: 0.95rem 1.2rem 0.95rem 3rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

/* line 2176, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-search-page .kb-search-header .kb-search-container .kb-search-form .kb-search-input-wrapper .kb-search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 2180, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-search-page .kb-search-header .kb-search-container .kb-search-form .kb-search-input-wrapper .kb-search-input:focus {
  outline: none;
  border-color: rgba(246, 229, 179, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

/* line 2188, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-search-page .kb-search-header .kb-search-container .kb-search-form .kb-search-button {
  padding: 0.95rem 1.8rem;
  border-radius: 12px;
  border: none;
  background: rgba(99, 102, 241, 0.25);
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* line 2199, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-search-page .kb-search-header .kb-search-container .kb-search-form .kb-search-button:hover {
  background: rgba(99, 102, 241, 0.35);
  transform: translateY(-2px);
}

/* line 2208, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-search-page .kb-articles-section {
  margin-bottom: 3rem;
  width: 100%;
  max-width: none;
}

/* line 2214, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-search-page .kb-empty-results {
  text-align: center;
  padding: 4rem 2rem;
}

/* line 2218, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-search-page .kb-empty-results .empty-state-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 2rem;
}

/* line 2231, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-search-page .kb-empty-results h2, .kb-search-page .kb-empty-results .h2 {
  margin: 0 0 0.8rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
}

/* line 2238, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-search-page .kb-empty-results > p {
  margin: 0 0 2rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 2244, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-search-page .kb-empty-results .empty-state-suggestions {
  max-width: 500px;
  margin: 0 auto 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}

/* line 2252, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-search-page .kb-empty-results .empty-state-suggestions > p {
  margin: 0 0 0.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(246, 229, 179, 0.9);
}

/* line 2259, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-search-page .kb-empty-results .empty-state-suggestions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 2264, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-search-page .kb-empty-results .empty-state-suggestions ul li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

/* line 2269, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-search-page .kb-empty-results .empty-state-suggestions ul li:before {
  content: "•";
  color: rgba(246, 229, 179, 0.7);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

/* line 2281, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-search-page .kb-empty-results .btn-back-kb {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.6rem;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.2);
  border: 1px solid rgba(99, 102, 241, 0.35);
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

/* line 2295, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-search-page .kb-empty-results .btn-back-kb:hover {
  background: rgba(99, 102, 241, 0.3);
  transform: translateY(-2px);
}

/* line 2305, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.2rem;
}

/* line 2310, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-articles-grid .kb-article-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.25s ease;
  overflow: hidden;
}

/* line 2322, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-articles-grid .kb-article-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(246, 229, 179, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

/* line 2331, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-articles-grid .kb-article-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(246, 229, 179, 0.28);
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
}

/* line 2337, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-articles-grid .kb-article-card:hover::before {
  opacity: 1;
}

/* line 2342, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-articles-grid .kb-article-card .article-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

/* line 2348, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-articles-grid .kb-article-card .article-header .article-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* line 2359, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-articles-grid .kb-article-card .article-header .article-category-badge i {
  font-size: 0.65rem;
}

/* line 2361, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-articles-grid .kb-article-card .article-header .article-category-badge.category-badge-primary {
  background: rgba(99, 102, 241, 0.2);
  color: #a5b4fc;
}

/* line 2362, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-articles-grid .kb-article-card .article-header .article-category-badge.category-badge-purple {
  background: rgba(139, 92, 246, 0.2);
  color: #c4b5fd;
}

/* line 2363, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-articles-grid .kb-article-card .article-header .article-category-badge.category-badge-green {
  background: rgba(76, 175, 80, 0.2);
  color: #a5d6a7;
}

/* line 2364, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-articles-grid .kb-article-card .article-header .article-category-badge.category-badge-blue {
  background: rgba(33, 150, 243, 0.2);
  color: #90caf9;
}

/* line 2365, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-articles-grid .kb-article-card .article-header .article-category-badge.category-badge-orange {
  background: rgba(255, 152, 0, 0.2);
  color: #ffb74d;
}

/* line 2366, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-articles-grid .kb-article-card .article-header .article-category-badge.category-badge-red {
  background: rgba(244, 67, 54, 0.2);
  color: #ef9a9a;
}

/* line 2367, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-articles-grid .kb-article-card .article-header .article-category-badge.category-badge-yellow {
  background: rgba(255, 193, 7, 0.2);
  color: #ffd54f;
}

/* line 2370, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-articles-grid .kb-article-card .article-header .article-reading-time {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

/* line 2377, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-articles-grid .kb-article-card .article-header .article-reading-time i {
  font-size: 0.7rem;
}

/* line 2381, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-articles-grid .kb-article-card .article-title {
  margin: 0 0 0.8rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  line-height: 1.4;
}

/* line 2389, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-articles-grid .kb-article-card .article-description {
  margin: 0 0 1.2rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  flex: 1;
}

/* line 2398, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-articles-grid .kb-article-card .article-footer .article-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* line 2403, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-articles-grid .kb-article-card .article-footer .article-tags .tag {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
}

/* line 2415, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-help-section {
  width: 100%;
  max-width: none;
}

/* line 2419, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-help-section .help-card {
  background: rgba(255, 180, 120, 0.08);
  border: 1px solid rgba(255, 180, 120, 0.22);
  border-radius: 18px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* line 2429, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-help-section .help-card .help-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 180, 120, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffb478;
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* line 2442, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-help-section .help-card .help-content {
  flex: 1;
  min-width: 200px;
}

/* line 2446, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-help-section .help-card .help-content h3, .kb-help-section .help-card .help-content .h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
}

/* line 2453, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-help-section .help-card .help-content p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 2460, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-help-section .help-card .btn-help {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  background: rgba(255, 180, 120, 0.22);
  border: 1px solid rgba(255, 180, 120, 0.35);
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

/* line 2474, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-help-section .help-card .btn-help:hover {
  background: rgba(255, 180, 120, 0.3);
  transform: translateY(-2px);
}

/* line 2483, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.knowledge-base-page .kb-hero {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 3rem 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

/* line 2491, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.knowledge-base-page .kb-hero .kb-hero-content {
  margin-bottom: 2rem;
}

/* line 2494, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.knowledge-base-page .kb-hero .kb-hero-content .kb-hero-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(246, 229, 179, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f6e5b3;
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}

/* line 2507, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.knowledge-base-page .kb-hero .kb-hero-content h1, .knowledge-base-page .kb-hero .kb-hero-content .h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  margin: 0 0 0.6rem;
  letter-spacing: -0.02em;
}

/* line 2515, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.knowledge-base-page .kb-hero .kb-hero-content .kb-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* line 2522, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.knowledge-base-page .kb-hero .kb-search-container {
  max-width: 900px;
  margin: 0 auto;
}

/* line 2526, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.knowledge-base-page .kb-hero .kb-search-container .kb-search-form {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

/* line 2531, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.knowledge-base-page .kb-hero .kb-search-container .kb-search-form .kb-search-input-wrapper {
  flex: 1;
  position: relative;
}

/* line 2535, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.knowledge-base-page .kb-hero .kb-search-container .kb-search-form .kb-search-input-wrapper i {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
}

/* line 2544, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.knowledge-base-page .kb-hero .kb-search-container .kb-search-form .kb-search-input-wrapper .kb-search-input {
  width: 100%;
  padding: 0.95rem 1.2rem 0.95rem 3rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

/* line 2554, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.knowledge-base-page .kb-hero .kb-search-container .kb-search-form .kb-search-input-wrapper .kb-search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 2558, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.knowledge-base-page .kb-hero .kb-search-container .kb-search-form .kb-search-input-wrapper .kb-search-input:focus {
  outline: none;
  border-color: rgba(246, 229, 179, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

/* line 2566, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.knowledge-base-page .kb-hero .kb-search-container .kb-search-form .kb-search-button {
  padding: 0.95rem 1.8rem;
  border-radius: 12px;
  border: none;
  background: rgba(99, 102, 241, 0.25);
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* line 2577, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.knowledge-base-page .kb-hero .kb-search-container .kb-search-form .kb-search-button:hover {
  background: rgba(99, 102, 241, 0.35);
  transform: translateY(-2px);
}

/* line 2584, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.knowledge-base-page .kb-hero .kb-search-container .kb-search-hints {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* line 2593, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.knowledge-base-page .kb-hero .kb-search-container .kb-search-hints .search-hint-tag {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.2s ease;
}

/* line 2602, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.knowledge-base-page .kb-hero .kb-search-container .kb-search-hints .search-hint-tag:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

/* line 2611, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.knowledge-base-page .kb-categories-section, .knowledge-base-page .kb-popular-section {
  margin-bottom: 3rem;
  width: 100%;
  max-width: none;
}

/* line 2616, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.knowledge-base-page .kb-categories-section .section-header, .knowledge-base-page .kb-popular-section .section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

/* line 2620, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.knowledge-base-page .kb-categories-section .section-header h2, .knowledge-base-page .kb-categories-section .section-header .h2, .knowledge-base-page .kb-popular-section .section-header h2, .knowledge-base-page .kb-popular-section .section-header .h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin: 0 0 0.6rem;
}

/* line 2627, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.knowledge-base-page .kb-categories-section .section-header p, .knowledge-base-page .kb-popular-section .section-header p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* line 2635, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.knowledge-base-page .kb-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.2rem;
}

/* line 2640, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.knowledge-base-page .kb-categories-grid .kb-category-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* line 2651, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.knowledge-base-page .kb-categories-grid .kb-category-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(246, 229, 179, 0.3);
  transform: translateY(-2px);
}

/* line 2656, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.knowledge-base-page .kb-categories-grid .kb-category-card:hover .category-arrow {
  transform: translateX(4px);
  color: #f6e5b3;
}

/* line 2662, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.knowledge-base-page .kb-categories-grid .kb-category-card .category-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* line 2672, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.knowledge-base-page .kb-categories-grid .kb-category-card .category-icon.category-icon-primary {
  background: rgba(99, 102, 241, 0.18);
  color: #a5b4fc;
}

/* line 2673, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.knowledge-base-page .kb-categories-grid .kb-category-card .category-icon.category-icon-purple {
  background: rgba(139, 92, 246, 0.18);
  color: #c4b5fd;
}

/* line 2674, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.knowledge-base-page .kb-categories-grid .kb-category-card .category-icon.category-icon-green {
  background: rgba(76, 175, 80, 0.18);
  color: #a5d6a7;
}

/* line 2675, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.knowledge-base-page .kb-categories-grid .kb-category-card .category-icon.category-icon-blue {
  background: rgba(33, 150, 243, 0.18);
  color: #90caf9;
}

/* line 2676, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.knowledge-base-page .kb-categories-grid .kb-category-card .category-icon.category-icon-orange {
  background: rgba(255, 152, 0, 0.18);
  color: #ffb74d;
}

/* line 2677, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.knowledge-base-page .kb-categories-grid .kb-category-card .category-icon.category-icon-red {
  background: rgba(244, 67, 54, 0.18);
  color: #ef9a9a;
}

/* line 2678, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.knowledge-base-page .kb-categories-grid .kb-category-card .category-icon.category-icon-yellow {
  background: rgba(255, 193, 7, 0.18);
  color: #ffd54f;
}

/* line 2681, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.knowledge-base-page .kb-categories-grid .kb-category-card .category-content {
  flex: 1;
}

/* line 2684, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.knowledge-base-page .kb-categories-grid .kb-category-card .category-content h3, .knowledge-base-page .kb-categories-grid .kb-category-card .category-content .h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
}

/* line 2691, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.knowledge-base-page .kb-categories-grid .kb-category-card .category-content p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

/* line 2698, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.knowledge-base-page .kb-categories-grid .kb-category-card .category-arrow {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.25s ease;
}

/* line 2710, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}

/* line 2716, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-sidebar {
  position: sticky;
  top: 2rem;
}

/* line 2720, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-sidebar .sidebar-sticky {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* line 2726, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-sidebar .sidebar-sticky .sidebar-category .category-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.25);
  color: #a5b4fc;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

/* line 2740, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-sidebar .sidebar-sticky .sidebar-category .category-link:hover {
  background: rgba(99, 102, 241, 0.22);
  transform: translateX(-2px);
}

/* line 2747, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-sidebar .sidebar-sticky .sidebar-meta {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

/* line 2752, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-sidebar .sidebar-sticky .sidebar-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

/* line 2759, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-sidebar .sidebar-sticky .sidebar-meta .meta-item i {
  color: rgba(246, 229, 179, 0.7);
}

/* line 2766, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-sidebar .sidebar-sticky .sidebar-related h4, .kb-article-page .kb-article-container .kb-article-sidebar .sidebar-sticky .sidebar-related .h4 {
  margin: 0 0 0.8rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* line 2775, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-sidebar .sidebar-sticky .sidebar-related .related-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* line 2783, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-sidebar .sidebar-sticky .sidebar-related .related-links li a {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.7rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  line-height: 1.4;
  transition: all 0.2s ease;
}

/* line 2796, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-sidebar .sidebar-sticky .sidebar-related .related-links li a i {
  margin-top: 0.2rem;
  font-size: 0.7rem;
  color: rgba(246, 229, 179, 0.6);
  flex-shrink: 0;
}

/* line 2803, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-sidebar .sidebar-sticky .sidebar-related .related-links li a:hover {
  background: rgba(255, 255, 255, 0.09);
  color: white;
}

/* line 2807, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-sidebar .sidebar-sticky .sidebar-related .related-links li a:hover i {
  color: #f6e5b3;
  transform: translateX(2px);
}

/* line 2819, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-header {
  margin-bottom: 3rem;
}

/* line 2822, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-header h1, .kb-article-page .kb-article-container .kb-article-content .article-header .h1 {
  margin: 0 0 1rem;
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  line-height: 1.3;
}

/* line 2830, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-header .article-lead {
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

/* line 2837, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-header .article-tags {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

/* line 2842, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-header .article-tags .tag {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.25);
  font-size: 0.8rem;
  color: #a5b4fc;
  font-weight: 600;
}

/* line 2854, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-body {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.8rem 2rem;
}

/* line 2860, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-placeholder {
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(255, 193, 7, 0.08);
  border: 2px dashed rgba(255, 193, 7, 0.25);
  border-radius: 18px;
}

/* line 2867, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-placeholder .placeholder-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffd54f;
  font-size: 2rem;
}

/* line 2880, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-placeholder h2, .kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-placeholder .h2 {
  margin: 0 0 0.8rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
}

/* line 2887, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-placeholder > p {
  margin: 0 0 2rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* line 2897, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-placeholder .placeholder-info {
  max-width: 550px;
  margin: 0 auto 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  text-align: left;
}

/* line 2905, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-placeholder .placeholder-info p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* line 2911, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-placeholder .placeholder-info p strong {
  display: block;
  margin-bottom: 0.6rem;
  color: #ffd54f;
  font-weight: 600;
}

/* line 2920, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-placeholder .placeholder-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

/* line 2927, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-placeholder .placeholder-tags .tag-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}

/* line 2933, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-placeholder .placeholder-tags .tag {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 193, 7, 0.15);
  border: 1px solid rgba(255, 193, 7, 0.25);
  font-size: 0.8rem;
  color: #ffd54f;
  font-weight: 600;
}

/* line 2945, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-section {
  margin-bottom: 2.5rem;
}

/* line 2948, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-section h2, .kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-section .h2 {
  margin: 0 0 1rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #f6e5b3;
  letter-spacing: -0.01em;
}

/* line 2956, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-section h3, .kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-section .h3 {
  margin: 1.5rem 0 0.8rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
}

/* line 2963, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-section h4, .kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-section .h4 {
  margin: 1.2rem 0 0.6rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
}

/* line 2970, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-section p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
}

/* line 2977, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-section ul, .kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-section ol {
  margin: 1rem 0;
  padding-left: 1.8rem;
}

/* line 2981, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-section ul li, .kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-section ol li {
  margin: 0.6rem 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* line 2987, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-section ul li strong, .kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-section ol li strong {
  color: white;
  font-weight: 600;
}

/* line 2994, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-section .kb-tip, .kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-section .kb-note, .kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-section .kb-warning {
  display: flex;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 12px;
  margin: 1.5rem 0;
}

/* line 3002, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-section .kb-tip {
  background: rgba(255, 193, 7, 0.12);
  border: 1px solid rgba(255, 193, 7, 0.25);
}

/* line 3006, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-section .kb-tip .tip-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 193, 7, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffd54f;
  flex-shrink: 0;
}

/* line 3019, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-section .kb-note {
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.25);
}

/* line 3023, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-section .kb-note .note-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(99, 102, 241, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a5b4fc;
  flex-shrink: 0;
}

/* line 3036, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-section .kb-warning {
  background: rgba(244, 67, 54, 0.12);
  border: 1px solid rgba(244, 67, 54, 0.25);
}

/* line 3040, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-section .kb-warning .warning-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(244, 67, 54, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef9a9a;
  flex-shrink: 0;
}

/* line 3054, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-section .contact-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

/* line 3062, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-section .contact-cta .btn-primary, .kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-section .contact-cta .crm-action-button.crm-action-button-primary, .kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-section .contact-cta .btn-secondary, .kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-section .contact-cta .crm-action-button.crm-action-button-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.6rem;
  border-radius: 12px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

/* line 3073, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-section .contact-cta .btn-primary i, .kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-section .contact-cta .crm-action-button.crm-action-button-primary i, .kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-section .contact-cta .btn-secondary i, .kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-section .contact-cta .crm-action-button.crm-action-button-secondary i {
  font-size: 1rem;
}

/* line 3078, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-section .contact-cta .btn-primary, .kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-section .contact-cta .crm-action-button.crm-action-button-primary {
  background: rgba(99, 102, 241, 0.2);
  border: 1px solid rgba(99, 102, 241, 0.35);
  color: #a5b4fc;
}

/* line 3083, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-section .contact-cta .btn-primary:hover, .kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-section .contact-cta .crm-action-button.crm-action-button-primary:hover {
  background: rgba(99, 102, 241, 0.3);
  border-color: rgba(99, 102, 241, 0.5);
  transform: translateY(-2px);
}

/* line 3090, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-section .contact-cta .btn-secondary, .kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-section .contact-cta .crm-action-button.crm-action-button-secondary {
  background: rgba(255, 180, 120, 0.2);
  border: 1px solid rgba(255, 180, 120, 0.35);
  color: #ffb74d;
}

/* line 3095, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-section .contact-cta .btn-secondary:hover, .kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-section .contact-cta .crm-action-button.crm-action-button-secondary:hover {
  background: rgba(255, 180, 120, 0.3);
  border-color: rgba(255, 180, 120, 0.5);
  transform: translateY(-2px);
}

/* line 3102, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-body .kb-article-section .contact-cta .or-separator {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0 0.5rem;
}

/* line 3114, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 3119, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-footer .article-feedback {
  margin-bottom: 2rem;
  text-align: center;
}

/* line 3123, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-footer .article-feedback p {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: white;
  font-weight: 600;
}

/* line 3130, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-footer .article-feedback .feedback-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* line 3135, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-footer .article-feedback .feedback-buttons .btn-feedback {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.4rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* line 3149, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-footer .article-feedback .feedback-buttons .btn-feedback:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

/* line 3154, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-footer .article-feedback .feedback-buttons .btn-feedback.btn-feedback-yes:hover {
  background: rgba(76, 175, 80, 0.2);
  border-color: rgba(76, 175, 80, 0.35);
  color: #a5d6a7;
}

/* line 3160, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-footer .article-feedback .feedback-buttons .btn-feedback.btn-feedback-no:hover {
  background: rgba(244, 67, 54, 0.2);
  border-color: rgba(244, 67, 54, 0.35);
  color: #ef9a9a;
}

/* line 3167, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-footer .article-feedback .feedback-buttons .btn-feedback.selected {
  cursor: default;
  transform: none !important;
}

/* line 3171, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-footer .article-feedback .feedback-buttons .btn-feedback.selected.btn-success {
  background: rgba(76, 175, 80, 0.25);
  border-color: rgba(76, 175, 80, 0.5);
  color: #a5d6a7;
}

/* line 3177, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-footer .article-feedback .feedback-buttons .btn-feedback.selected.btn-danger {
  background: rgba(244, 67, 54, 0.25);
  border-color: rgba(244, 67, 54, 0.5);
  color: #ef9a9a;
}

/* line 3185, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-footer .article-feedback .feedback-buttons .btn-feedback:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* line 3189, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-footer .article-feedback .feedback-buttons .btn-feedback:disabled:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: none;
}

/* line 3198, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-footer .article-feedback .feedback-message {
  margin-top: 1rem;
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

/* line 3207, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-footer .article-feedback .feedback-message.show {
  opacity: 1;
  transform: translateY(0);
}

/* line 3212, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-footer .article-feedback .feedback-message .feedback-confirmation,
.kb-article-page .kb-article-container .kb-article-content .article-footer .article-feedback .feedback-message .feedback-error {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

/* line 3219, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-footer .article-feedback .feedback-message .feedback-confirmation i,
.kb-article-page .kb-article-container .kb-article-content .article-footer .article-feedback .feedback-message .feedback-error i {
  font-size: 1.1rem;
}

/* line 3223, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-footer .article-feedback .feedback-message .feedback-confirmation span,
.kb-article-page .kb-article-container .kb-article-content .article-footer .article-feedback .feedback-message .feedback-error span {
  font-weight: 500;
}

/* line 3228, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-footer .article-feedback .feedback-message .feedback-confirmation {
  color: #a5d6a7;
  background: rgba(76, 175, 80, 0.15);
  border: 1px solid rgba(76, 175, 80, 0.3);
}

/* line 3234, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-footer .article-feedback .feedback-message .feedback-error {
  color: #ffb74d;
  background: rgba(255, 152, 0, 0.15);
  border: 1px solid rgba(255, 152, 0, 0.3);
}

/* line 3242, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-footer .article-help {
  text-align: center;
}

/* line 3245, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-footer .article-help p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 3251, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-footer .article-help .btn-contact-support {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.6rem;
  border-radius: 12px;
  background: rgba(255, 180, 120, 0.2);
  border: 1px solid rgba(255, 180, 120, 0.35);
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

/* line 3265, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.kb-article-page .kb-article-container .kb-article-content .article-footer .article-help .btn-contact-support:hover {
  background: rgba(255, 180, 120, 0.3);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  /* line 3277, app/assets/stylesheets/pages/customerspace/_assistant.scss */
  .kb-article-page .kb-article-container {
    grid-template-columns: 1fr;
  }
  /* line 3280, app/assets/stylesheets/pages/customerspace/_assistant.scss */
  .kb-article-page .kb-article-container .kb-article-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  /* line 3288, app/assets/stylesheets/pages/customerspace/_assistant.scss */
  .knowledge-base-page .kb-hero {
    padding: 2rem 1.5rem;
  }
  /* line 3291, app/assets/stylesheets/pages/customerspace/_assistant.scss */
  .knowledge-base-page .kb-hero .kb-hero-content h1, .knowledge-base-page .kb-hero .kb-hero-content .h1 {
    font-size: 1.8rem;
  }
  /* line 3295, app/assets/stylesheets/pages/customerspace/_assistant.scss */
  .knowledge-base-page .kb-hero .kb-search-container .kb-search-form {
    flex-direction: column;
  }
  /* line 3298, app/assets/stylesheets/pages/customerspace/_assistant.scss */
  .knowledge-base-page .kb-hero .kb-search-container .kb-search-form .kb-search-button {
    width: 100%;
  }
  /* line 3304, app/assets/stylesheets/pages/customerspace/_assistant.scss */
  .knowledge-base-page .kb-categories-grid {
    grid-template-columns: 1fr;
  }
  /* line 3308, app/assets/stylesheets/pages/customerspace/_assistant.scss */
  .knowledge-base-page .kb-articles-grid {
    grid-template-columns: 1fr;
  }
}

/* line 3318, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-tr-success {
  background-color: #d1fae5;
}

/* line 3322, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-tr-warning {
  background-color: #fef3c7;
}

/* line 3326, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-tr-danger {
  background-color: #fee2e2;
}

/* line 3330, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-tr-orange {
  background-color: #fed7aa;
}

/* line 3334, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-tr-info {
  background-color: #f0f8ff;
}

/* line 3338, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-tr-info-bold {
  background-color: #f0f8ff;
  font-weight: bold;
}

/* line 3343, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-tr-success-bold {
  background-color: #e8f5e9;
  font-weight: bold;
}

/* line 3348, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-tr-warning-bold {
  background-color: #fff9c4;
  font-weight: bold;
}

/* line 3353, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-tr-neutral {
  background-color: #f3f4f6;
}

/* line 3358, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-text-success {
  color: #10b981;
}

/* line 3362, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-text-warning {
  color: #f59e0b;
}

/* line 3366, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-text-danger {
  color: #ef4444;
}

/* line 3370, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-text-danger-dark {
  color: #dc2626;
}

/* line 3374, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-text-muted {
  color: #6b7280;
}

/* line 3379, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-border-top {
  border-top: 2px solid #333;
}

/* line 3383, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-border-top-light {
  border-top: 1px solid #ccc;
}

/* line 3387, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-list-margin {
  margin: 5px 0 0 20px;
}

/* line 3392, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-badge-success {
  background-color: #10b981;
  color: white;
}

/* line 3397, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-badge-warning-bg {
  text-align: center;
  background-color: #fff3e0;
}

/* line 3402, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-badge-success-bg {
  text-align: center;
  background-color: #e8f5e9;
}

/* line 3407, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-tr-danger-white {
  background-color: #ef4444;
  color: white;
}

/* line 3412, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-footnote {
  font-size: 0.9em;
  margin-top: 10px;
}

/* line 3417, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-footnote-inline {
  font-size: 0.9em;
}

/* line 3421, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-completion-box {
  margin-top: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  color: white;
}

/* line 3429, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-completion-title {
  margin: 0 0 1rem 0;
  font-size: 1.3rem;
}

/* line 3434, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-completion-text {
  margin: 0;
  line-height: 1.6;
}

/* line 3439, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-completion-text-mt {
  margin: 1rem 0 0 0;
  line-height: 1.6;
}

/* line 3445, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-th-strengths {
  background-color: #c8e6c9;
}

/* line 3449, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-th-weaknesses {
  background-color: #ffccbc;
}

/* line 3453, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-th-opportunities {
  background-color: #fff9c4;
}

/* line 3457, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-th-threats {
  background-color: #ffcdd2;
}

/* line 3461, app/assets/stylesheets/pages/customerspace/_assistant.scss */
.tutorial-code-block {
  font-family: monospace;
  background: #f5f5f5;
  padding: 10px;
  border-radius: 5px;
}

/* line 3, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.assistant-settings-container-card {
  padding: 2rem;
}

/* line 9, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.tier-card {
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.03);
}

/* line 15, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.tier-card--free {
  border-color: rgba(99, 102, 241, 0.25);
  background: rgba(99, 102, 241, 0.04);
}

/* line 20, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.tier-card--pro {
  border-color: rgba(195, 135, 97, 0.4);
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.08), rgba(195, 135, 97, 0.02));
}

/* line 26, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.tier-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* line 37, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
}

/* line 46, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.tier-badge--free {
  background: rgba(99, 102, 241, 0.15);
  color: #818cf8;
}

/* line 51, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.tier-badge--pro {
  background: linear-gradient(135deg, #C38761, #a06e4a);
  color: #fff;
}

/* line 57, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.tier-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* line 62, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.tier-price--free {
  color: #34d399;
  font-weight: 700;
}

/* line 68, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.tier-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.6rem 1.5rem;
  margin-bottom: 1.25rem;
}

/* line 75, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.tier-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-primary);
}

/* line 82, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.tier-feature i {
  color: #34d399;
  font-size: 0.75rem;
  width: 1rem;
  text-align: center;
  flex-shrink: 0;
}

/* line 91, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.tier-upgrade-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
}

/* line 100, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.btn-upgrade {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  background: linear-gradient(135deg, #C38761, #a06e4a);
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
}

/* line 114, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.btn-upgrade:hover {
  opacity: 0.9;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(195, 135, 97, 0.3);
}

/* line 123, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.tier-upgrade-hint {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* line 128, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.assistant-settings-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* line 137, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.settings-section {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

/* line 144, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.section-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

/* line 149, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.section-header h3, .section-header .h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

/* line 155, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.section-header h3 i, .section-header .h3 i {
  margin-right: 0.5rem;
}

/* line 158, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.section-header .section-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

/* line 168, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.consumption-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

/* line 175, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.consumption-stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
}

/* line 182, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.consumption-stat-card .stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

/* line 188, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.consumption-stat-card .stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

/* line 195, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.consumption-stat-card .stat-pct {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.4rem;
}

/* line 201, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.consumption-stat-card .stat-detail {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

/* line 209, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.consumption-stat-card .stat-detail .token-detail {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* line 215, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.consumption-stat-card .stat-detail .token-detail i {
  font-size: 0.7rem;
  opacity: 0.7;
}

/* line 223, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.stat-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

/* line 230, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.stat-bar .stat-bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.4s ease;
}

/* line 235, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.stat-bar .stat-bar-fill.bar-success {
  background: linear-gradient(90deg, #34d399, #10b981);
}

/* line 239, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.stat-bar .stat-bar-fill.bar-warning {
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
}

/* line 243, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.stat-bar .stat-bar-fill.bar-danger {
  background: linear-gradient(90deg, #ef4444, #dc2626);
}

/* line 250, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.consumption-chart-wrapper {
  margin-bottom: 1.5rem;
}

/* line 253, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.consumption-chart-wrapper .chart-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

/* line 259, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.consumption-chart-wrapper .chart-title i {
  margin-right: 0.4rem;
}

/* line 262, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.consumption-chart-wrapper .chart-container {
  position: relative;
  height: 280px;
}

/* line 269, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.consumption-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

/* line 275, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.consumption-detail-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1rem;
}

/* line 281, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.consumption-detail-card h4, .consumption-detail-card .h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

/* line 287, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.consumption-detail-card h4 i, .consumption-detail-card .h4 i {
  margin-right: 0.4rem;
}

/* line 290, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.consumption-detail-card .detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 295, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.consumption-detail-card .detail-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* line 302, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.consumption-detail-card .detail-list li:last-child {
  border-bottom: none;
}

/* line 305, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.consumption-detail-card .detail-list .detail-name {
  font-size: 0.9rem;
  color: var(--text-primary);
}

/* line 310, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.consumption-detail-card .detail-list .detail-count {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* line 317, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.consumption-detail-card .detail-empty {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-style: italic;
}

/* line 326, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.limits-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.25rem;
}

/* line 333, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.limits-rows {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* line 339, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.limits-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* line 346, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.limits-row:last-child {
  border-bottom: none;
}

/* line 348, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.limits-row .limits-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 355, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.limits-row .limits-label i {
  width: 1rem;
  text-align: center;
}

/* line 358, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.limits-row .limits-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* line 363, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.limits-row .limits-value.limits-value-ok {
  color: #10b981;
}

/* line 367, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.limits-row .limits-value.limits-value-low {
  color: #ef4444;
}

/* line 373, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.limits-alert {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 382, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.limits-alert.limits-alert-danger {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* line 389, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.limits-info-note {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* line 397, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.limits-info-note i {
  color: var(--primary-color);
  flex-shrink: 0;
}

/* line 405, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.autonomy-levels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

/* line 411, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.autonomy-level-card {
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 1.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

/* line 419, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.autonomy-level-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* line 424, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.autonomy-level-card.active {
  border-color: var(--primary-color);
  background: var(--primary-color-light);
}

/* line 430, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.autonomy-radio {
  position: absolute;
  opacity: 0;
}

/* line 435, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.level-content {
  display: flex;
  gap: 1rem;
}

/* line 440, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.level-icon {
  font-size: 2rem;
  color: var(--primary-color);
}

/* line 445, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.level-name {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* line 450, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.level-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* line 457, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.preferences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 1.5rem;
}

/* line 464, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.preference-group,
.context-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow: visible;
  min-width: 0;
}

/* line 473, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.preference-label,
.context-label {
  font-weight: 500;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 482, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.orizen-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
  display: block;
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 0.75rem;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  font-size: 0.95rem;
  line-height: 1.4;
  background: rgba(255, 255, 255, 0.06) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C38761' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 0.75rem center/12px 8px;
  color: var(--text-primary);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

/* line 499, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.orizen-select:hover {
  border-color: rgba(195, 135, 97, 0.5);
  background-color: rgba(255, 255, 255, 0.08);
}

/* line 504, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.orizen-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.15);
  background-color: rgba(255, 255, 255, 0.08);
}

/* line 511, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.orizen-select option {
  background: #1e1528;
  color: #e8ddd4;
  padding: 0.6rem 0.75rem;
  font-size: 0.95rem;
}

/* line 517, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.orizen-select option:hover, .orizen-select option:checked {
  background: #3d2a4a;
  color: #c38761;
}

/* line 525, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.assistant-settings-grid .form-input {
  padding: 0.75rem;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  transition: all 0.2s ease;
}

/* line 534, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.assistant-settings-grid .form-input:hover {
  border-color: rgba(195, 135, 97, 0.5);
  background-color: rgba(255, 255, 255, 0.08);
}

/* line 539, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.assistant-settings-grid .form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.15);
  background-color: rgba(255, 255, 255, 0.08);
}

/* line 546, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.assistant-settings-grid .form-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

/* line 551, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.preference-hint,
.context-hint {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* line 559, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.goals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* line 565, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.goal-dimension-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  transition: border-color 0.2s ease;
}

/* line 572, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.goal-dimension-card:hover {
  border-color: var(--primary-color);
}

/* line 577, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.goal-dimension-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* line 585, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.goal-dimension-header > i {
  font-size: 1.35rem;
  color: var(--primary-color);
  width: 1.5rem;
  text-align: center;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

/* line 596, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.goal-dimension-title h4, .goal-dimension-title .h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 0.25rem;
}

/* line 603, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.goal-dimension-title .goal-dimension-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
}

/* line 611, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.goal-dimension-fields {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

/* line 617, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.goal-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

/* line 623, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.goal-field-kpi {
  flex: 0 0 160px;
}

/* line 627, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.goal-field-text {
  flex: 1;
  min-width: 0;
}

/* line 632, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.goal-field-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* line 638, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.goal-kpi-input {
  width: 100%;
}

/* line 642, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.goal-text-input {
  resize: vertical;
  min-height: 4.5rem;
  font-size: 0.9rem;
  width: 100%;
}

/* line 651, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.memory-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

/* line 658, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.memory-type-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

/* line 667, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.memory-type-card i {
  font-size: 1.25rem;
  color: var(--primary-color);
}

/* line 672, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.memory-type-card .memory-type-info {
  display: flex;
  flex-direction: column;
}

/* line 677, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.memory-type-card .memory-type-count {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* line 683, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.memory-type-card .memory-type-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* line 689, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.memories-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

/* line 695, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.memories-subtitle i {
  margin-right: 0.4rem;
}

/* line 698, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.memories-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* line 704, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.memory-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.02);
}

/* line 712, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.memory-item .memory-item-icon {
  font-size: 1rem;
  color: var(--primary-color);
  padding-top: 0.2rem;
}

/* line 718, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.memory-item .memory-item-content {
  flex: 1;
  min-width: 0;
}

/* line 723, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.memory-item .memory-item-text {
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  word-break: break-word;
}

/* line 730, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.memory-item .memory-item-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* line 737, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.memory-item .memory-item-type,
.memory-item .memory-item-date {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* line 743, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.memory-item .memory-item-badge {
  font-size: 0.75rem;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}

/* line 748, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.memory-item .memory-item-badge.badge-important {
  background: rgba(195, 135, 97, 0.2);
  color: #c38761;
}

/* line 757, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.rgpd-section {
  border-color: rgba(99, 102, 241, 0.3);
}

/* line 761, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.rgpd-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* line 767, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.rgpd-intro p {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.6;
}

/* line 773, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.rgpd-rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

/* line 779, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.rgpd-rule-card {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

/* line 787, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.rgpd-rule-card .rgpd-rule-icon {
  font-size: 1.5rem;
  color: #6366f1;
  flex-shrink: 0;
  width: 2rem;
  text-align: center;
  padding-top: 0.15rem;
}

/* line 796, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.rgpd-rule-card .rgpd-rule-info {
  flex: 1;
}

/* line 799, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.rgpd-rule-card .rgpd-rule-info h4, .rgpd-rule-card .rgpd-rule-info .h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

/* line 806, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.rgpd-rule-card .rgpd-rule-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

/* line 811, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.rgpd-rule-card .rgpd-rule-info p code {
  background: rgba(99, 102, 241, 0.15);
  color: #818cf8;
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  font-size: 0.8rem;
}

/* line 820, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.rgpd-rule-card .rgpd-rule-info .rgpd-example {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-style: italic;
  opacity: 0.8;
}

/* line 829, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.rgpd-details {
  background: rgba(99, 102, 241, 0.05);
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: 8px;
  padding: 1.25rem;
}

/* line 835, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.rgpd-details h4, .rgpd-details .h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

/* line 841, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.rgpd-details h4 i, .rgpd-details .h4 i {
  margin-right: 0.4rem;
}

/* line 844, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.rgpd-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 850, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.rgpd-details li {
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: var(--text-primary);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

/* line 858, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.rgpd-details li i {
  color: #10b981;
  font-size: 0.8rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* line 868, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.settings-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  padding-top: 1rem;
}

/* line 874, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.settings-actions .btn-save-settings {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 500;
}

/* line 882, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.settings-info-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

/* line 891, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.settings-info-box > i {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-top: 0.1rem;
  flex-shrink: 0;
}

/* line 899, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.settings-info-box .info-content h4, .settings-info-box .info-content .h4 {
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: var(--text-primary);
}

/* line 906, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.settings-info-box .info-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 912, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.settings-info-box .info-content li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* line 922, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.settings-info-box .info-content li:last-child {
  border-bottom: none;
}

/* line 924, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.settings-info-box .info-content li strong {
  color: var(--text-primary);
  min-width: 130px;
  flex-shrink: 0;
}

/* line 934, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-secondary);
}

/* line 939, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
.empty-state .empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.3;
}

@media (max-width: 768px) {
  /* line 948, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
  .assistant-settings-container-card {
    padding: 1rem;
  }
  /* line 952, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
  .consumption-stats-grid,
.memory-types-grid,
.rgpd-rules-grid {
    grid-template-columns: 1fr;
  }
  /* line 958, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
  .goals-grid {
    grid-template-columns: 1fr;
  }
  /* line 962, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
  .goal-dimension-fields {
    flex-direction: column;
  }
  /* line 966, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
  .goal-field-kpi {
    flex: auto;
  }
  /* line 970, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
  .autonomy-levels-grid {
    grid-template-columns: 1fr;
  }
  /* line 974, app/assets/stylesheets/pages/customerspace/_assistant_settings.scss */
  .consumption-details-grid {
    grid-template-columns: 1fr;
  }
}

/* line 4, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
body:has(.calendar-events-page),
body:has(.calendar-event-new-page),
body:has(.calendar-event-edit-page),
body:has(.calendar-event-show-page) {
  min-height: 100vh;
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
  color: #fefefe;
  overflow-x: hidden;
}

/* line 15, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-events-header {
  max-width: 1200px;
  margin: 24px auto 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* line 25, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-events-header .btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
}

/* line 40, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-events-header .btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
  color: #fff;
}

/* line 48, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-events-title {
  text-align: center;
  color: #F6E5B3;
  font-weight: 700;
  font-size: 1.8rem;
  margin: 0;
  flex: 1;
}

/* line 56, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-events-title i {
  margin-right: 8px;
}

/* line 61, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-events-actions {
  margin-bottom: 0;
  min-width: 160px;
}

/* line 65, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-events-actions:last-child {
  display: flex;
  justify-content: flex-end;
}

/* line 71, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.btn-create-event {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  transition: all .3s ease;
}

/* line 85, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.btn-create-event:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  color: #fff;
  text-decoration: none;
}

/* line 93, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-events-container-card {
  max-width: 1200px;
  margin: 24px auto 56px auto;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  min-height: 60vh;
}

/* line 105, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

/* line 110, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-filters .filter-btn {
  padding: 8px 18px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s ease;
}

/* line 121, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-filters .filter-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(246, 229, 179, 0.4);
  color: #fff;
}

/* line 127, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-filters .filter-btn.active {
  background: rgba(246, 229, 179, 0.15);
  border-color: #F6E5B3;
  color: #F6E5B3;
}

/* line 135, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.events-day-group {
  margin-bottom: 28px;
}

/* line 138, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.events-day-group .day-title {
  color: #F6E5B3;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 147, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.events-day-group .day-title .event-count {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
  border-radius: 20px;
}

/* line 158, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.event-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid rgba(246, 229, 179, 0.5);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 10px;
  transition: all .25s ease;
}

/* line 167, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.event-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* line 173, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.event-card .event-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

/* line 179, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.event-card .event-card-header h4, .event-card .event-card-header .h4 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

/* line 184, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.event-card .event-card-header h4 a, .event-card .event-card-header .h4 a {
  color: #fff;
  text-decoration: none;
}

/* line 188, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.event-card .event-card-header h4 a:hover, .event-card .event-card-header .h4 a:hover {
  color: #F6E5B3;
  text-decoration: none;
}

/* line 195, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.event-card .event-card-header .event-time {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

/* line 203, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.event-card .event-card-header .event-time i {
  color: #F6E5B3;
  font-size: 0.75rem;
}

/* line 210, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.event-card .event-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0 0 10px 0;
}

/* line 217, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.event-card .event-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* line 222, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.event-card .event-card-footer .event-type-badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  text-transform: capitalize;
}

/* line 232, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.event-card .event-card-footer .event-actions {
  display: flex;
  gap: 8px;
}

/* line 236, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.event-card .event-card-footer .event-actions .btn-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all .25s ease;
  cursor: pointer;
}

/* line 250, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.event-card .event-card-footer .event-actions .btn-icon:hover {
  background: rgba(246, 229, 179, 0.15);
  border-color: rgba(246, 229, 179, 0.3);
  color: #F6E5B3;
}

/* line 256, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.event-card .event-card-footer .event-actions .btn-icon i {
  font-size: 0.75rem;
}

/* line 262, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.event-card .event-card-footer .event-actions .btn-icon-danger:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

/* line 272, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-events-page .empty-state {
  text-align: center;
  padding: 4rem 2rem;
}

/* line 276, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-events-page .empty-state > i {
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.3);
  display: block;
  margin-bottom: 1rem;
}

/* line 283, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-events-page .empty-state h3, .calendar-events-page .empty-state .h3 {
  font-size: 1.5rem;
  color: #F6E5B3;
  margin-bottom: 0.5rem;
}

/* line 289, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-events-page .empty-state p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  /* line 297, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
  .calendar-events-header {
    padding: 0 16px;
    flex-wrap: wrap;
  }
  /* line 301, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
  .calendar-events-header .calendar-events-actions {
    min-width: auto;
  }
  /* line 306, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
  .calendar-events-title {
    font-size: 1.4rem;
    order: -1;
    flex-basis: 100%;
    margin-bottom: 8px;
  }
  /* line 313, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
  .calendar-events-container-card {
    margin: 16px auto 32px auto;
    padding: 20px;
  }
  /* line 318, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
  .event-card .event-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

/* line 326, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-event-header {
  max-width: 1200px;
  margin: 24px auto 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* line 337, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-event-actions {
  margin-bottom: 0;
}

/* line 341, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-event-title {
  text-align: center;
  color: #F6E5B3;
  font-weight: 700;
  font-size: 1.8rem;
  margin: 0;
  flex: 1;
}

/* line 350, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-event-container-card {
  max-width: 1100px;
  margin: 16px auto 40px auto;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  max-height: calc(100vh - 140px);
  overflow-y: auto;
}

@media (max-width: 1080px) {
  /* line 350, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
  .calendar-event-container-card {
    max-height: none;
    padding: 20px;
  }
}

/* line 368, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.multi-select-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

/* line 374, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.multi-select-wrapper .ms-input {
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: text;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

/* line 387, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.multi-select-wrapper .ms-input:focus {
  outline: none;
  border-color: #F6E5B3;
  box-shadow: 0 0 0 4px rgba(246, 229, 179, 0.18);
}

/* line 394, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.multi-select-wrapper .ms-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* line 399, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.multi-select-wrapper .ms-chips .ms-chip {
  background: rgba(246, 229, 179, 0.2);
  border: 1px solid rgba(246, 229, 179, 0.4);
  color: #F6E5B3;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* line 410, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.multi-select-wrapper .ms-chips .ms-chip .ms-chip-x {
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  font-weight: 600;
}

/* line 420, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.multi-select-wrapper .ms-dropdown {
  display: none;
  max-height: 220px;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 8px;
  z-index: 10;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
}

/* line 434, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.multi-select-wrapper .ms-dropdown .ms-empty {
  padding: 12px;
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
}

/* line 442, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.multi-select-wrapper .ms-dropdown .ms-option label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
}

/* line 451, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.multi-select-wrapper .ms-dropdown .ms-option label:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* line 456, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.multi-select-wrapper .ms-dropdown .ms-option input {
  accent-color: #F6E5B3;
}

/* line 463, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.ms-input.is-empty[data-placeholder]::before {
  content: attr(data-placeholder);
  color: rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

/* line 469, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.ms-input:focus {
  caret-color: #fff;
}

/* line 473, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.email-tokens-field {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 44px;
}

/* line 480, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.email-tokens-field .ms-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* line 486, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.email-tokens-field .email-token-editor {
  display: inline-flex;
  align-items: center;
  min-width: 120px;
  padding: 4px 0;
  color: #fff;
  outline: none;
  border: none;
  background: transparent;
  font-size: 0.9rem;
}

/* line 499, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.email-invite-wrapper .ms-chip {
  background: rgba(246, 229, 179, 0.2);
  border: 1px solid rgba(246, 229, 179, 0.4);
  color: #F6E5B3;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* line 510, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.email-invite-wrapper .ms-chip .ms-chip-x {
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  font-weight: 600;
}

/* line 519, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.scheduler-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* line 525, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.scheduler-date .support-input {
  cursor: pointer;
}

/* line 529, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.scheduler-time-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 24px;
}

@media (max-width: 920px) {
  /* line 529, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
  .scheduler-time-grid {
    grid-template-columns: 1fr;
  }
}

/* line 539, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.scheduler-time-grid.is-disabled .support-input {
  opacity: 0.5;
  pointer-events: none;
}

/* line 544, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.scheduler-time-grid.is-disabled .form-hint {
  opacity: 0.5;
}

/* line 548, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.scheduler-all-day {
  margin-top: 8px;
}

/* line 552, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.flatpickr-calendar {
  font-family: 'Poppins', sans-serif;
  color: #F6E5B3;
  border-radius: 18px;
  border: 1px solid rgba(246, 229, 179, 0.18);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(16px);
  overflow: visible;
  width: 340px;
  max-width: 340px;
  box-sizing: border-box;
  background: linear-gradient(150deg, rgba(29, 18, 53, 0.98) 0%, rgba(62, 24, 74, 0.95) 100%) !important;
}

@media (max-width: 388px) {
  /* line 552, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
  .flatpickr-calendar {
    max-width: calc(100vw - 48px);
  }
}

/* line 573, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.flatpickr-calendar.noCalendar {
  width: 220px;
  min-width: 220px;
  max-width: 220px;
  border-radius: 12px;
  padding: 0;
}

/* line 580, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.flatpickr-calendar.noCalendar .flatpickr-time {
  border: none;
  border-radius: 12px;
  padding: 10px 14px;
  background: transparent;
  height: auto;
  max-height: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* line 592, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.flatpickr-calendar.noCalendar .flatpickr-time .numInputWrapper {
  flex: 1;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  border: 1px solid rgba(246, 229, 179, 0.2);
  position: relative;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

/* line 601, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.flatpickr-calendar.noCalendar .flatpickr-time .numInputWrapper:hover {
  border-color: rgba(246, 229, 179, 0.4);
  background: rgba(255, 255, 255, 0.1);
}

/* line 606, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.flatpickr-calendar.noCalendar .flatpickr-time .numInputWrapper:focus-within {
  border-color: #F6E5B3;
  background: rgba(246, 229, 179, 0.12);
  box-shadow: 0 0 0 2px rgba(246, 229, 179, 0.15);
}

/* line 612, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.flatpickr-calendar.noCalendar .flatpickr-time .numInputWrapper input {
  background: transparent;
  color: #F6E5B3;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  box-shadow: none;
  text-align: center;
  height: 100%;
  padding: 0;
  line-height: 36px;
}

/* line 624, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.flatpickr-calendar.noCalendar .flatpickr-time .numInputWrapper input:hover, .flatpickr-calendar.noCalendar .flatpickr-time .numInputWrapper input:focus {
  background: transparent;
  outline: none;
}

/* line 631, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.flatpickr-calendar.noCalendar .flatpickr-time .numInputWrapper span.arrowUp,
.flatpickr-calendar.noCalendar .flatpickr-time .numInputWrapper span.arrowDown {
  display: none;
}

/* line 637, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.flatpickr-calendar.noCalendar .flatpickr-time .flatpickr-time-separator {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0;
  line-height: 36px;
}

/* line 647, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.flatpickr-calendar .flatpickr-innerContainer {
  background: transparent;
}

/* line 651, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.flatpickr-calendar .flatpickr-months {
  border-bottom: 1px solid rgba(246, 229, 179, 0.18);
  padding: 12px 14px;
  background: rgba(246, 229, 179, 0.07);
}

/* line 656, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.flatpickr-calendar .flatpickr-months .flatpickr-prev-month,
.flatpickr-calendar .flatpickr-months .flatpickr-next-month {
  color: rgba(246, 229, 179, 0.85);
  width: 32px;
  height: 32px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
}

/* line 666, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.flatpickr-calendar .flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-calendar .flatpickr-months .flatpickr-next-month:hover {
  background: rgba(246, 229, 179, 0.18);
  color: #23152e;
}

/* line 671, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.flatpickr-calendar .flatpickr-months .flatpickr-prev-month svg path,
.flatpickr-calendar .flatpickr-months .flatpickr-next-month svg path {
  fill: currentColor;
}

/* line 677, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.flatpickr-calendar .flatpickr-current-month {
  color: #f9edd3;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 686, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.flatpickr-calendar .flatpickr-current-month .flatpickr-monthDropdown-months {
  background: rgba(35, 21, 46, 0.6);
  color: #f9edd3;
  border-radius: 12px;
  border: 1px solid rgba(246, 229, 179, 0.28);
  padding: 6px 12px;
  backdrop-filter: blur(6px);
}

/* line 694, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.flatpickr-calendar .flatpickr-current-month .flatpickr-monthDropdown-months option {
  color: #23152e;
}

/* line 699, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.flatpickr-calendar .flatpickr-current-month input.cur-year {
  color: inherit;
  background: transparent;
  border: none;
  font-weight: 600;
  width: 72px;
}

/* line 707, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.flatpickr-calendar .flatpickr-current-month .numInputWrapper {
  display: inline-flex;
  align-items: center;
  background: rgba(35, 21, 46, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(246, 229, 179, 0.28);
  padding: 0 8px;
}

/* line 715, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.flatpickr-calendar .flatpickr-current-month .numInputWrapper span {
  display: none;
}

/* line 721, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.flatpickr-calendar .flatpickr-weekdays {
  letter-spacing: 0.05em;
  margin-top: 6px;
}

/* line 725, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.flatpickr-calendar .flatpickr-weekdays .flatpickr-weekday {
  color: rgba(246, 229, 179, 0.68);
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
}

/* line 733, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.flatpickr-calendar .flatpickr-days {
  padding: 12px 18px 18px;
}

/* line 737, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.flatpickr-calendar .flatpickr-day {
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.82);
  border: none;
  margin: 2px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

/* line 745, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.flatpickr-calendar .flatpickr-day:not(.flatpickr-disabled):hover {
  background: rgba(246, 229, 179, 0.22);
  color: #1c1028;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(246, 229, 179, 0.3);
}

/* line 752, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.flatpickr-calendar .flatpickr-day.today {
  position: relative;
  color: #ffeec7;
  font-weight: 600;
}

/* line 757, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.flatpickr-calendar .flatpickr-day.today::after {
  content: '•';
  position: absolute;
  top: 4px;
  right: 8px;
  font-size: 0.65rem;
  color: #F6E5B3;
}

/* line 767, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.flatpickr-calendar .flatpickr-day.selected, .flatpickr-calendar .flatpickr-day.startRange, .flatpickr-calendar .flatpickr-day.endRange {
  background: linear-gradient(145deg, #ffecc4, #fbcf7b);
  color: #201433;
  box-shadow: 0 8px 22px rgba(251, 207, 123, 0.35);
  font-weight: 600;
}

/* line 775, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.flatpickr-calendar .flatpickr-day.selected:hover, .flatpickr-calendar .flatpickr-day.startRange:hover, .flatpickr-calendar .flatpickr-day.endRange:hover {
  background: linear-gradient(145deg, #ffe4ab, #f8c567);
  color: #1a0f2c;
}

/* line 781, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.flatpickr-calendar .flatpickr-day.inRange {
  background: rgba(246, 229, 179, 0.18);
  color: #ffeec9;
  box-shadow: inset 0 0 0 1px rgba(246, 229, 179, 0.25);
}

/* line 787, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.flatpickr-calendar .flatpickr-day.flatpickr-disabled, .flatpickr-calendar .flatpickr-day.flatpickr-disabled:hover {
  color: rgba(255, 255, 255, 0.25);
  background: transparent;
  cursor: not-allowed;
}

/* line 795, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.flatpickr-calendar .flatpickr-time {
  background: rgba(246, 229, 179, 0.08);
  border-top: 1px solid rgba(246, 229, 179, 0.14);
  padding: 10px 16px;
}

/* line 800, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.flatpickr-calendar .flatpickr-time input,
.flatpickr-calendar .flatpickr-time .flatpickr-am-pm {
  background: rgba(246, 229, 179, 0.16);
  color: #1d102c;
  border: 1px solid rgba(246, 229, 179, 0.28);
  border-radius: 12px;
  font-weight: 600;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.12);
}

/* line 811, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.flatpickr-calendar .flatpickr-range {
  margin: 0 16px 14px;
  background: rgba(246, 229, 179, 0.12);
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 0.8rem;
  color: #f0dfb3;
}

/* line 819, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.flatpickr-calendar .flatpickr-range strong {
  color: #ffe4a4;
  font-weight: 700;
}

@media (max-width: 640px) {
  /* line 552, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
  .flatpickr-calendar {
    width: 320px;
  }
}

@media (max-width: 640px) and (max-width: 352px) {
  /* line 552, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
  .flatpickr-calendar {
    width: calc(100vw - 32px);
  }
}

@media (max-width: 640px) {
  /* line 831, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
  .flatpickr-calendar .flatpickr-days {
    padding: 12px;
  }
  /* line 835, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
  .flatpickr-calendar .flatpickr-day {
    margin: 2px;
  }
}

/* line 840, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.existing-attachments {
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 12px 16px;
}

/* line 846, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.existing-attachments ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 855, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.existing-attachments li label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
}

/* line 861, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.existing-attachments li label span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* line 867, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.existing-attachments li label input {
  accent-color: #F6E5B3;
}

/* line 873, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.file-input {
  padding: 10px 12px;
}

/* line 877, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-event-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

@media (max-width: 1080px) {
  /* line 877, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
  .calendar-event-form-grid {
    grid-template-columns: 1fr;
  }
}

/* line 888, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-event-form-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* line 893, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-event-form-column.secondary {
  position: sticky;
  top: 0;
}

@media (max-width: 1080px) {
  /* line 893, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
  .calendar-event-form-column.secondary {
    position: static;
  }
}

/* line 903, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.form-card {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

/* line 915, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.form-card-header h3, .form-card-header .h3 {
  margin: 0 0 6px 0;
  color: #F6E5B3;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 924, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.form-card-header h3 i, .form-card-header .h3 i {
  color: #F6E5B3;
}

/* line 929, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.form-card-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

/* line 936, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.two-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 24px;
}

@media (max-width: 920px) {
  /* line 936, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
  .two-columns {
    grid-template-columns: 1fr;
  }
}

/* line 948, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-event-form-section .form-header,
.event-details-section .form-header {
  margin-bottom: 24px;
}

/* line 951, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-event-form-section .form-header h2, .calendar-event-form-section .form-header .h2,
.event-details-section .form-header h2,
.event-details-section .form-header .h2 {
  color: #F6E5B3;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* line 957, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-event-form-section .form-header h2 i, .calendar-event-form-section .form-header .h2 i,
.event-details-section .form-header h2 i,
.event-details-section .form-header .h2 i {
  margin-right: 0.5rem;
  color: #F6E5B3;
}

/* line 963, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-event-form-section .form-header p,
.event-details-section .form-header p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* line 971, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-event-form {
  display: flex;
  flex-direction: column;
  max-width: 1100px;
  margin: 16px auto 40px auto;
  padding: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  box-sizing: border-box;
}

@media (max-width: 1080px) {
  /* line 971, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
  .calendar-event-form {
    max-height: none;
    padding: 20px;
  }
}

/* line 991, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-event-form .form-group {
  margin-bottom: 18px;
}

/* line 995, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-event-form .form-label {
  display: block;
  margin-bottom: 8px;
  color: #F6E5B3;
  font-weight: 600;
  font-size: 0.9rem;
}

/* line 1003, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-event-form .support-input {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.9rem;
  transition: all .25s ease;
  min-height: 48px;
  box-sizing: border-box;
}

/* line 1015, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-event-form .support-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 1019, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-event-form .support-input:focus {
  outline: none;
  border-color: #F6E5B3;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(246, 229, 179, 0.18);
}

/* line 1026, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-event-form .support-input option {
  background: #140D23;
  color: #fff;
}

/* line 1031, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-event-form .support-input.color-input {
  height: 48px;
  cursor: pointer;
  max-width: 180px;
}

/* line 1038, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-event-form textarea.support-input {
  min-height: 120px;
  resize: vertical;
}

/* line 1043, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-event-form .form-hint {
  display: block;
  margin-top: 6px;
  font-size: 0.75rem;
  color: #ffffff;
}

/* line 1050, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-event-form .form-group .form-hint,
.calendar-event-form .form-group-checkbox .form-hint,
.calendar-event-form small.form-hint,
.calendar-event-form .form-hint.small {
  color: #ffffff !important;
}

/* line 1056, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-event-form .form-grid-two-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 18px 32px;
  margin-top: 12px;
}

/* line 1062, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-event-form .form-grid-two-columns .form-group {
  margin-bottom: 0;
}

/* line 1066, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-event-form .form-grid-two-columns .form-group-checkbox {
  align-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 100%;
  width: 100%;
}

@media (max-width: 920px) {
  /* line 1056, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
  .calendar-event-form .form-grid-two-columns {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  /* line 1079, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
  .calendar-event-form .form-grid-two-columns .form-group-checkbox {
    align-self: auto;
    justify-content: flex-start;
    width: auto;
  }
}

/* line 1087, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-event-form .form-check-custom {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  min-height: 48px;
}

/* line 1097, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-event-form .form-check-custom .form-check-input {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #F6E5B3;
}

/* line 1104, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-event-form .form-check-custom .form-check-label {
  color: white;
  opacity: 1 !important;
  cursor: pointer;
  font-size: 0.9rem;
}

/* line 1112, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-event-form .form-actions {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
  justify-content: flex-end;
}

/* line 1122, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-event-form input.support-submit,
.calendar-event-form button.support-submit,
.calendar-event-form .support-submit {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  transition: all .3s ease;
}

/* line 1140, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-event-form input.support-submit:hover,
.calendar-event-form button.support-submit:hover,
.calendar-event-form .support-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* line 1146, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-event-form a.btn-cancel,
.calendar-event-form .btn-cancel {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

/* line 1161, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.calendar-event-form a.btn-cancel:hover,
.calendar-event-form .btn-cancel:hover {
  background: rgba(255, 255, 255, 0.15);
  text-decoration: none;
}

/* line 1170, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.event-details-section .event-meta-row {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

/* line 1176, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.event-details-section .event-meta-row .event-type-badge,
.event-details-section .event-meta-row .module-badge,
.event-details-section .event-meta-row .all-day-badge-large {
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* line 1188, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.event-details-section .event-meta-row .event-type-badge {
  color: white;
  background-color: var(--event-color, #6c757d);
}

/* line 1194, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.event-details-section .event-meta-row .module-badge {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

/* line 1199, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.event-details-section .event-meta-row .all-day-badge-large {
  background: rgba(99, 102, 241, 0.2);
  color: #6366f1;
}

/* line 1205, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.event-details-section .event-details-card {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
}

/* line 1212, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.event-details-section .event-details-card .detail-row {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 1218, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.event-details-section .event-details-card .detail-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* line 1223, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.event-details-section .event-details-card .detail-row:first-child {
  padding-top: 0;
}

/* line 1227, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.event-details-section .event-details-card .detail-row .detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(246, 229, 179, 0.1);
  border: 1px solid rgba(246, 229, 179, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #F6E5B3;
  flex-shrink: 0;
}

/* line 1241, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.event-details-section .event-details-card .detail-row .detail-content {
  flex: 1;
}

/* line 1244, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.event-details-section .event-details-card .detail-row .detail-content strong {
  display: block;
  margin-bottom: 6px;
  color: #F6E5B3;
  font-size: 0.9rem;
}

/* line 1251, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.event-details-section .event-details-card .detail-row .detail-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* line 1258, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.event-details-section .event-details-card .detail-row .detail-content .text-muted {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

/* line 1267, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.event-details-section .invite-list {
  list-style: none;
  padding: 0;
  margin: 5px 0;
}

/* line 1272, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.event-details-section .invite-list li {
  padding: 3px 0;
}

/* line 1277, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.event-details-section .invite-status-badge {
  font-size: 0.75em;
}

/* line 1281, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.event-details-section .event-actions-row {
  display: flex;
  gap: 12px;
  padding-top: 20px;
  justify-content: center;
}

/* line 1288, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.event-details-section .event-actions-row form.button_to {
  margin: 0;
  padding: 0;
  display: inline;
}

/* line 1294, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.event-details-section .event-actions-row .btn-primary-action {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: #fff;
  padding: 12px 24px;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  transition: all .3s ease;
}

/* line 1309, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.event-details-section .event-actions-row .btn-primary-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  text-decoration: none;
}

/* line 1316, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.event-details-section .event-actions-row .btn-danger-action {
  background: rgba(220, 38, 38, 0.2);
  color: #ef4444;
  padding: 12px 24px;
  border: 1px solid rgba(220, 38, 38, 0.4);
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

/* line 1331, app/assets/stylesheets/pages/customerspace/_calendar_events.scss */
.event-details-section .event-actions-row .btn-danger-action:hover {
  background: rgba(220, 38, 38, 0.3);
  transform: translateY(-2px);
  text-decoration: none;
}

/* line 1, app/assets/stylesheets/pages/customerspace/_commerce.scss */
.bloc-client-content-commerce {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* line 10, app/assets/stylesheets/pages/customerspace/_commerce.scss */
.bloc-client-content-commerce a {
  text-decoration: none;
}

/* line 14, app/assets/stylesheets/pages/customerspace/_commerce.scss */
.bloc-client-content-commerce.lightmode a {
  color: #140D23;
}

/* line 18, app/assets/stylesheets/pages/customerspace/_commerce.scss */
.bloc-client-content-commerce.nightmode a {
  color: #fefefe;
}

/* line 22, app/assets/stylesheets/pages/customerspace/_commerce.scss */
.bloc-client-content-commerce-row1 {
  width: 100%;
  height: 35%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 5px;
  align-items: center;
  margin-bottom: 5px;
}

/* line 33, app/assets/stylesheets/pages/customerspace/_commerce.scss */
.bloc-client-content-commerce-row2 {
  width: 100%;
  height: 65%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

/* line 42, app/assets/stylesheets/pages/customerspace/_commerce.scss */
.bloc-client-content-commerce-column1 {
  width: 75%;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-left: 5px;
  gap: 5px;
}

/* line 60, app/assets/stylesheets/pages/customerspace/_commerce.scss */
.identite_graphique_zone.lightmode,
.crm_zone.lightmode,
.projets_zone.lightmode,
.sav_zone.lightmode,
.site_web_zone.lightmode,
.ecommerce_zone.lightmode,
.avis_zone.lightmode,
.reseaux_sociaux_zone.lightmode {
  background-color: rgba(255, 255, 255, 0.3);
}

/* line 65, app/assets/stylesheets/pages/customerspace/_commerce.scss */
.identite_graphique_zone {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  width: 25%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

/* line 76, app/assets/stylesheets/pages/customerspace/_commerce.scss */
.identite_graphique_zone:hover {
  transform: scale(1.01);
}

/* line 80, app/assets/stylesheets/pages/customerspace/_commerce.scss */
.crm_zone {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  width: 25%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

/* line 91, app/assets/stylesheets/pages/customerspace/_commerce.scss */
.crm_zone:hover {
  transform: scale(1.01);
}

/* line 95, app/assets/stylesheets/pages/customerspace/_commerce.scss */
.projets_zone {
  background-color: rgba(255, 255, 255, 0.1);
  width: 25%;
  height: 100%;
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

/* line 106, app/assets/stylesheets/pages/customerspace/_commerce.scss */
.projets_zone:hover {
  transform: scale(1.01);
}

/* line 110, app/assets/stylesheets/pages/customerspace/_commerce.scss */
.sav_zone {
  background-color: rgba(255, 255, 255, 0.1);
  width: 25%;
  height: 100%;
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

/* line 121, app/assets/stylesheets/pages/customerspace/_commerce.scss */
.sav_zone:hover {
  transform: scale(1.01);
}

/* line 125, app/assets/stylesheets/pages/customerspace/_commerce.scss */
.site_web_zone {
  background-color: rgba(255, 255, 255, 0.1);
  width: 25%;
  height: 100%;
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

/* line 136, app/assets/stylesheets/pages/customerspace/_commerce.scss */
.commasite_web_zonedes_frs:hover {
  transform: scale(1.01);
}

/* line 140, app/assets/stylesheets/pages/customerspace/_commerce.scss */
.ecommerce_zone {
  background-color: rgba(255, 255, 255, 0.1);
  width: 100%;
  height: 33%;
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

/* line 151, app/assets/stylesheets/pages/customerspace/_commerce.scss */
.ecommerce_zone:hover {
  transform: scale(1.01);
}

/* line 155, app/assets/stylesheets/pages/customerspace/_commerce.scss */
.avis_zone {
  background-color: rgba(255, 255, 255, 0.1);
  width: 100%;
  height: 33%;
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

/* line 166, app/assets/stylesheets/pages/customerspace/_commerce.scss */
.avis_zone:hover {
  transform: scale(1.01);
}

/* line 170, app/assets/stylesheets/pages/customerspace/_commerce.scss */
.reseaux_sociaux_zone {
  background-color: rgba(255, 255, 255, 0.1);
  width: 100%;
  height: 33%;
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

/* line 181, app/assets/stylesheets/pages/customerspace/_commerce.scss */
.reseaux_sociaux_zone:hover {
  transform: scale(1.01);
}

/* line 2, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  padding: 1.5rem;
  height: 100%;
  overflow-y: auto;
  width: 100%;
  max-width: none;
  align-items: start;
  grid-auto-rows: min-content;
}

/* line 15, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
}

/* line 22, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-empty-state p {
  margin: 0;
}

/* line 28, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .collapsible-section-wrapper {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 0;
}

/* line 38, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-section-separator {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0 0 0;
  width: 100%;
}

/* line 46, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-section-separator .separator-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2), transparent);
}

/* line 58, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-section-separator .separator-title {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: color 200ms ease;
  cursor: pointer;
  user-select: none;
}

/* line 73, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-section-separator .separator-title:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* line 77, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-section-separator .separator-title .separator-chevron {
  font-size: 0.75rem;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.7;
  margin-left: auto;
}

/* line 84, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-section-separator .separator-title .separator-chevron.rotated {
  transform: rotate(180deg);
}

/* line 91, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard [data-collapsible-section-target="content"] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  overflow: hidden;
  transition: max-height 400ms cubic-bezier(0.4, 0, 0.2, 1), opacity 400ms cubic-bezier(0.4, 0, 0.2, 1), margin-top 400ms cubic-bezier(0.4, 0, 0.2, 1), margin-bottom 400ms cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 0;
  opacity: 0;
  margin-top: 1.5rem;
  margin-bottom: 0;
  overflow: hidden;
  gap: 1.5rem;
}

/* line 110, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard [data-collapsible-section-target="content"]:not(.collapsed) {
  max-height: 5000px;
  opacity: 1;
  margin-top: 1.5rem;
  margin-bottom: 0;
}

/* line 119, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* line 124, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-link:hover {
  text-decoration: none;
}

/* line 128, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-link:focus {
  outline: none;
}

/* line 132, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-link:active {
  outline: none;
}

/* line 138, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-card {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  color: white;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  height: auto;
  min-height: auto;
  width: 100%;
}

/* line 153, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* line 169, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-card .widget-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  flex-shrink: 0;
}

/* line 176, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-card .widget-header .widget-title-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

/* line 182, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-card .widget-header .widget-title-section .widget-picto {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
}

/* line 194, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-card .widget-header .widget-title-section .widget-picto i {
  color: white;
}

/* line 200, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-card .widget-header .widget-title {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  flex: 1;
}

/* line 208, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-card .widget-header .widget-actions {
  display: flex;
  gap: 0.5rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

/* line 217, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-card.widget-disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* line 221, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-card.widget-disabled:hover {
  transform: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}

/* line 231, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-card.available .widget-info {
  display: none !important;
}

/* line 237, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-card .widget-info-message {
  text-align: center;
  padding: 1rem;
  opacity: 0.7;
}

/* line 242, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-card .widget-info-message .widget-info-icon {
  display: inline-block;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* line 248, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-card .widget-info-message .widget-info-text {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 500;
}

/* line 254, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-card .widget-info-message .widget-info-subtext {
  margin: 0.5rem 0 0 0;
  font-size: 0.7rem;
  opacity: 0.7;
}

/* line 260, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-card .widget-info-message.is-locked {
  color: #ef4444;
}

/* line 266, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-card .widget-info-state {
  text-align: center;
  padding: 1rem;
  opacity: 0.7;
}

/* line 271, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-card .widget-info-state i {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

/* line 277, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-card .widget-info-state p {
  margin: 0;
  font-size: 0.8rem;
}

/* line 283, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-card .widget-info-state--maintenance {
  opacity: 0.8;
}

/* line 286, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-card .widget-info-state--maintenance i {
  color: #ef4444;
}

/* line 290, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-card .widget-info-state--maintenance p {
  color: #ef4444;
  font-weight: 500;
}

/* line 294, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-card .widget-info-state--maintenance p:nth-child(3) {
  margin-top: 0.5rem;
  font-size: 0.7rem;
  opacity: 0.7;
  color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
}

/* line 306, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-card .widget-info-state--available i {
  color: #48bb78;
}

/* line 313, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-card .widget-info-state--coming-soon i {
  color: #8b5cf6;
}

/* line 320, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-card .widget-badges {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 10;
}

/* line 331, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-card .widget-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

/* line 337, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-card .widget-content .widget-description {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  flex-shrink: 0;
}

/* line 346, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-card .widget-content .widget-metrics {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
  min-height: 0;
}

/* line 353, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-card .widget-content .widget-metrics .metric-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* line 362, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-card .widget-content .widget-metrics .metric-item .metric-icon {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: rgba(232, 185, 114, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #e8b972;
  flex-shrink: 0;
}

/* line 375, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-card .widget-content .widget-metrics .metric-item .metric-label {
  font-size: 0.75rem;
  opacity: 0.8;
  font-weight: 500;
  flex: 1;
}

/* line 382, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-card .widget-content .widget-metrics .metric-item .metric-value {
  font-weight: 600;
  font-size: 0.9rem;
  color: #e8b972;
}

/* line 390, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-card .widget-content .widget-metrics .metric-item.metric-with-chart .metric-chart {
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin-top: 0.25rem;
  overflow: hidden;
  width: 100%;
}

/* line 398, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-card .widget-content .widget-metrics .metric-item.metric-with-chart .metric-chart .chart-fill {
  height: 100%;
  background: #e8b972;
  border-radius: 2px;
  transition: width 0.8s ease;
}

/* line 410, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-card .widget-content .widget-voting {
  margin-top: 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* line 416, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-card .widget-content .widget-voting .vote-actions-simple {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}

/* line 422, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-card .widget-content .widget-voting .vote-actions-simple .vote-picto-btn, .widget-dashboard .widget-card .widget-content .widget-voting .vote-actions-simple .ranking-picto-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 50px;
}

/* line 436, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-card .widget-content .widget-voting .vote-actions-simple .vote-picto-btn:hover, .widget-dashboard .widget-card .widget-content .widget-voting .vote-actions-simple .ranking-picto-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

/* line 442, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-card .widget-content .widget-voting .vote-actions-simple .vote-picto-btn i, .widget-dashboard .widget-card .widget-content .widget-voting .vote-actions-simple .ranking-picto-btn i {
  font-size: 1rem;
}

/* line 446, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-card .widget-content .widget-voting .vote-actions-simple .vote-picto-btn .vote-count, .widget-dashboard .widget-card .widget-content .widget-voting .vote-actions-simple .ranking-picto-btn .vote-count {
  font-size: 0.6rem;
  opacity: 0.8;
  font-weight: 500;
}

/* line 454, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-card .widget-content .widget-voting .vote-actions-simple .vote-picto-btn:hover {
  background: rgba(255, 149, 0, 0.2);
  border-color: rgba(255, 149, 0, 0.4);
}

/* line 461, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard .widget-card .widget-content .widget-voting .vote-actions-simple .ranking-picto-btn:hover {
  background: rgba(175, 82, 222, 0.2);
  border-color: rgba(175, 82, 222, 0.4);
}

/* line 475, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-status {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

/* line 482, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.status-badge, .access-badge {
  padding: 0.08rem 0.25rem;
  border-radius: 4px;
  font-size: 0.45rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.1rem;
  white-space: nowrap;
  opacity: 0.75;
}

/* line 496, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.status-badge.concept-badge, .access-badge.concept-badge {
  background: rgba(232, 185, 114, 0.08);
  border: 1px solid rgba(232, 185, 114, 0.3);
  color: rgba(232, 185, 114, 0.8);
}

/* line 502, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.status-badge.development-badge, .access-badge.development-badge {
  background: rgba(0, 122, 255, 0.08);
  border: 1px solid rgba(0, 122, 255, 0.3);
  color: rgba(0, 122, 255, 0.8);
}

/* line 508, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.status-badge.restricted-badge, .access-badge.restricted-badge {
  background: rgba(255, 59, 48, 0.08);
  border: 1px solid rgba(255, 59, 48, 0.3);
  color: rgba(255, 59, 48, 0.8);
}

/* line 514, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.status-badge.coming-soon-badge, .access-badge.coming-soon-badge {
  background: rgba(255, 149, 0, 0.08);
  border: 1px solid rgba(255, 149, 0, 0.3);
  color: rgba(255, 149, 0, 0.8);
}

/* line 520, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.status-badge.admin-badge, .access-badge.admin-badge {
  background: rgba(142, 68, 173, 0.08);
  border: 1px solid rgba(142, 68, 173, 0.3);
  color: rgba(142, 68, 173, 0.8);
}

/* line 526, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.status-badge.available-badge, .access-badge.available-badge {
  background: rgba(52, 199, 89, 0.08);
  border: 1px solid rgba(52, 199, 89, 0.3);
  color: rgba(52, 199, 89, 0.8);
}

/* line 532, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.status-badge.maintenance-badge, .access-badge.maintenance-badge {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: rgba(239, 68, 68, 0.8);
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }
  50% {
    box-shadow: 0 2px 16px rgba(255, 149, 0, 0.4);
  }
}

/* line 549, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard {
  overflow-y: auto;
  max-height: 80vh;
}

/* line 553, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard::-webkit-scrollbar {
  width: 8px;
}

/* line 557, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 562, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard::-webkit-scrollbar-thumb {
  background: #e8b972;
  border-radius: 10px;
}

/* line 567, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.widget-dashboard::-webkit-scrollbar-thumb:hover {
  background: #d4a85f;
}

/* line 573, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.commerce-dashboard,
.backoffice-dashboard,
.gouvernance-dashboard {
  overflow-y: auto;
  max-height: 80vh;
}

/* line 579, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.commerce-dashboard::-webkit-scrollbar,
.backoffice-dashboard::-webkit-scrollbar,
.gouvernance-dashboard::-webkit-scrollbar {
  width: 8px;
}

/* line 583, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.commerce-dashboard::-webkit-scrollbar-track,
.backoffice-dashboard::-webkit-scrollbar-track,
.gouvernance-dashboard::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 588, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.commerce-dashboard::-webkit-scrollbar-thumb,
.backoffice-dashboard::-webkit-scrollbar-thumb,
.gouvernance-dashboard::-webkit-scrollbar-thumb {
  background: #e8b972;
  border-radius: 10px;
}

/* line 593, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.commerce-dashboard::-webkit-scrollbar-thumb:hover,
.backoffice-dashboard::-webkit-scrollbar-thumb:hover,
.gouvernance-dashboard::-webkit-scrollbar-thumb:hover {
  background: #d4a85f;
}

/* line 599, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.dashboard-container {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

/* line 606, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.bloc-client-content-commerce,
.bloc-client-content-backoffice,
.bloc-client-content-gouvernance {
  height: 100%;
  overflow: hidden;
}

@media (max-width: 1200px) {
  /* line 617, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
  .widget-dashboard {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  /* line 625, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
  .widget-dashboard {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0.75rem;
  }
  /* line 630, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
  .widget-dashboard .widget-card {
    grid-row: span 1 !important;
    min-height: 200px !important;
  }
}

/* line 638, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-voting-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

/* line 652, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-voting-modal.modal-show {
  opacity: 1;
  visibility: visible;
}

/* line 657, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-voting-modal .modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  z-index: 1;
}

/* line 668, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-voting-modal .modal-content {
  position: relative;
  background: #0a0a14;
  border-radius: 16px;
  border: 3px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9);
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  pointer-events: auto;
  z-index: 2;
}

/* line 683, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.modal-show .module-voting-modal .modal-content {
  transform: scale(1);
}

/* line 688, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-voting-modal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 695, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-voting-modal .modal-header h3, .module-voting-modal .modal-header .h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* line 703, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-voting-modal .modal-header .modal-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* line 713, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-voting-modal .modal-header .modal-close:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

/* line 720, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-voting-modal .modal-body {
  padding: 1.5rem;
}

/* line 723, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-voting-modal .modal-body .voting-info {
  margin-bottom: 1.5rem;
  text-align: center;
}

/* line 727, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-voting-modal .modal-body .voting-info p {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* line 736, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-voting-modal .modal-body .voting-section {
  text-align: center;
}

/* line 739, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-voting-modal .modal-body .voting-section .vote-btn {
  background: linear-gradient(135deg, #e8b972, #d4a85f);
  border: 2px solid rgba(232, 185, 114, 0.5);
  color: #1a1a1a;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 4px 15px rgba(232, 185, 114, 0.4);
  text-shadow: none;
}

/* line 756, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-voting-modal .modal-body .voting-section .vote-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(232, 185, 114, 0.6);
  background: linear-gradient(135deg, #f0c085, #e0b065);
}

/* line 762, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-voting-modal .modal-body .voting-section .vote-btn i {
  font-size: 1.2rem;
}

/* line 766, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-voting-modal .modal-body .voting-section .vote-btn.voted {
  background: linear-gradient(135deg, #10b981, #059669);
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

/* line 771, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-voting-modal .modal-body .voting-section .vote-btn.voted i {
  font-size: 1rem;
  color: #ffffff;
}

/* line 776, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-voting-modal .modal-body .voting-section .vote-btn.voted .vote-count {
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffffff;
}

/* line 784, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-voting-modal .modal-body .voting-section .vote-count-display {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* line 788, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-voting-modal .modal-body .voting-section .vote-count-display .vote-count {
  color: #e8b972;
  font-weight: 600;
}

/* line 798, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-ranking-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

/* line 812, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-ranking-modal.modal-show {
  opacity: 1;
  visibility: visible;
}

/* line 817, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-ranking-modal .modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  z-index: 1;
}

/* line 828, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-ranking-modal .modal-content {
  position: relative;
  background: #0a0a14;
  border-radius: 16px;
  border: 3px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9);
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  pointer-events: auto;
  z-index: 2;
}

/* line 843, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.modal-show .module-ranking-modal .modal-content {
  transform: scale(1);
}

/* line 848, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-ranking-modal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 855, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-ranking-modal .modal-header h3, .module-ranking-modal .modal-header .h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* line 863, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-ranking-modal .modal-header .modal-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* line 873, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-ranking-modal .modal-header .modal-close:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

/* line 880, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-ranking-modal .modal-body {
  padding: 1.5rem;
}

/* line 883, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-ranking-modal .modal-body .ranking-info {
  margin-bottom: 1.5rem;
  text-align: center;
}

/* line 887, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-ranking-modal .modal-body .ranking-info p {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* line 896, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-ranking-modal .modal-body .ranking-list {
  margin-bottom: 1.5rem;
}

/* line 899, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-ranking-modal .modal-body .ranking-list .ranking-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  cursor: grab;
}

/* line 911, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-ranking-modal .modal-body .ranking-list .ranking-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(232, 185, 114, 0.3);
  transform: translateY(-1px);
}

/* line 917, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-ranking-modal .modal-body .ranking-list .ranking-item.dragging {
  opacity: 0.5;
  transform: rotate(2deg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* line 923, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-ranking-modal .modal-body .ranking-list .ranking-item .ranking-drag-handle {
  color: rgba(255, 255, 255, 0.4);
  cursor: grab;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

/* line 929, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-ranking-modal .modal-body .ranking-list .ranking-item .ranking-drag-handle:hover {
  color: rgba(232, 185, 114, 0.8);
}

/* line 933, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-ranking-modal .modal-body .ranking-list .ranking-item .ranking-drag-handle:active {
  cursor: grabbing;
}

/* line 938, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-ranking-modal .modal-body .ranking-list .ranking-item .ranking-content {
  flex: 1;
}

/* line 941, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-ranking-modal .modal-body .ranking-list .ranking-item .ranking-content h4, .module-ranking-modal .modal-body .ranking-list .ranking-item .ranking-content .h4 {
  margin: 0 0 0.25rem 0;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
}

/* line 948, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-ranking-modal .modal-body .ranking-list .ranking-item .ranking-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* line 955, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-ranking-modal .modal-body .ranking-list .ranking-item .ranking-position {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

/* line 961, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-ranking-modal .modal-body .ranking-list .ranking-item .ranking-position .position-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8b972, #d4a85f);
  color: #1a1a1a;
  font-weight: 700;
  font-size: 0.9rem;
}

/* line 974, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-ranking-modal .modal-body .ranking-list .ranking-item .ranking-position .ranking-position-input {
  width: 50px;
  padding: 0.25rem 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s ease;
  -moz-appearance: textfield;
}

/* line 986, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-ranking-modal .modal-body .ranking-list .ranking-item .ranking-position .ranking-position-input:focus {
  outline: none;
  border-color: #e8b972;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 2px rgba(232, 185, 114, 0.3);
}

/* line 993, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-ranking-modal .modal-body .ranking-list .ranking-item .ranking-position .ranking-position-input:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
}

/* line 999, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-ranking-modal .modal-body .ranking-list .ranking-item .ranking-position .ranking-position-input::-webkit-inner-spin-button, .module-ranking-modal .modal-body .ranking-list .ranking-item .ranking-position .ranking-position-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* line 1012, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-ranking-modal .modal-body .ranking-actions {
  text-align: center;
}

/* line 1015, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-ranking-modal .modal-body .ranking-actions .btn-save-ranking {
  background: linear-gradient(135deg, #e8b972, #d4a85f);
  border: 2px solid rgba(232, 185, 114, 0.5);
  color: #1a1a1a;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 4px 15px rgba(232, 185, 114, 0.4);
}

/* line 1030, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-ranking-modal .modal-body .ranking-actions .btn-save-ranking:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(232, 185, 114, 0.6);
  background: linear-gradient(135deg, #f0c085, #e0b065);
}

/* line 1036, app/assets/stylesheets/pages/customerspace/_widget_dashboard.scss */
.module-ranking-modal .modal-body .ranking-actions .btn-save-ranking i {
  font-size: 1.2rem;
}

/* line 9, app/assets/stylesheets/pages/customerspace/_backoffice.scss */
.access-restriction-indicator {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 10;
}

/* line 16, app/assets/stylesheets/pages/customerspace/_backoffice.scss */
.voting-indicator {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 10;
}

/* line 24, app/assets/stylesheets/pages/customerspace/_backoffice.scss */
.access-restriction-indicator + .voting-indicator {
  top: 8px;
  right: 120px;
}

/* line 29, app/assets/stylesheets/pages/customerspace/_backoffice.scss */
.voting-indicator + .access-restriction-indicator {
  top: 8px;
  right: 8px;
}

/* line 34, app/assets/stylesheets/pages/customerspace/_backoffice.scss */
.restriction-badge,
.voting-badge {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.6rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulse-glow 2s ease-in-out infinite;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* line 50, app/assets/stylesheets/pages/customerspace/_backoffice.scss */
.restriction-badge {
  background: linear-gradient(135deg, #ef4444 0%, #ef444480 100%);
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

/* line 55, app/assets/stylesheets/pages/customerspace/_backoffice.scss */
.voting-badge {
  background: linear-gradient(135deg, #f59e0b 0%, #f59e0b80 100%);
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

/* line 60, app/assets/stylesheets/pages/customerspace/_backoffice.scss */
.restriction-badge i,
.voting-badge i {
  font-size: 0.5rem;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
  }
}

/* line 77, app/assets/stylesheets/pages/customerspace/_backoffice.scss */
.access-denied {
  position: relative;
}

/* line 80, app/assets/stylesheets/pages/customerspace/_backoffice.scss */
.access-denied::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 30px;
  pointer-events: none;
}

/* line 4, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
body:has(.support-tickets-page) {
  min-height: 100vh;
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
  color: #fefefe;
  overflow-x: hidden;
}

/* line 11, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-tickets-header {
  max-width: 1200px;
  margin: 24px auto 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* line 22, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-tickets-actions {
  margin-bottom: 0;
}

/* line 26, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-tickets-title {
  text-align: center;
  color: #F6E5B3;
  font-weight: 700;
  font-size: 1.8rem;
  margin: 0;
  flex: 1;
}

/* line 35, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-tickets-container-card {
  max-width: 1200px;
  margin: 24px auto 56px auto;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  min-height: 80vh;
}

/* line 47, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-tickets-grid {
  display: grid;
  gap: 24px;
}

/* line 52, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-tickets-header-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* line 60, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-tickets-header-section .header-content h2, .support-tickets-header-section .header-content .h2 {
  color: #F6E5B3;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-align: left;
}

/* line 67, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-tickets-header-section .header-content h2 i, .support-tickets-header-section .header-content .h2 i {
  margin-right: 0.5rem;
  color: #F6E5B3;
}

/* line 73, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-tickets-header-section .header-content .header-subtitle {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  text-align: left;
}

/* line 80, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-tickets-header-section .btn-create-ticket {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  transition: all .3s ease;
}

/* line 94, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-tickets-header-section .btn-create-ticket:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  color: #fff;
  text-decoration: none;
}

/* line 105, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-filters .filters-form {
  display: flex;
  gap: 1rem;
  align-items: end;
  flex-wrap: wrap;
}

/* line 111, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-filters .filters-form .filter-group {
  min-width: 300px;
}

/* line 114, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-filters .filters-form .filter-group .support-input {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.85rem;
  transition: all .25s ease;
  min-height: 48px;
  box-sizing: border-box;
}

/* line 126, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-filters .filters-form .filter-group .support-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 130, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-filters .filters-form .filter-group .support-input:focus {
  outline: none;
  border-color: #F6E5B3;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(246, 229, 179, 0.18);
}

/* line 137, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-filters .filters-form .filter-group .support-input option {
  background: #140D23;
  color: #fff;
}

/* line 144, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-filters .filters-form .btn-filter {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 12px 20px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all .25s ease;
}

/* line 154, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-filters .filters-form .btn-filter:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #F6E5B3;
}

/* line 160, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-filters .filters-form .btn-reset {
  color: rgba(255, 255, 255, 0.8);
  padding: 12px 20px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  font-size: 0.85rem;
  transition: all .25s ease;
}

/* line 169, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-filters .filters-form .btn-reset:hover {
  color: #F6E5B3;
  border-color: #F6E5B3;
  text-decoration: none;
}

/* line 179, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

/* line 184, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-stats .stat-card.transparent {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.75rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 193, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-stats .stat-card.transparent .stat-icon {
  font-size: 1.5rem;
  opacity: 0.9;
}

/* line 197, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-stats .stat-card.transparent .stat-icon.open {
  color: #ff6b6b;
}

/* line 201, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-stats .stat-card.transparent .stat-icon.waiting {
  color: #ffd43b;
}

/* line 205, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-stats .stat-card.transparent .stat-icon.resolved {
  color: #51cf66;
}

/* line 210, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-stats .stat-card.transparent .stat-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: #F6E5B3;
}

/* line 216, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-stats .stat-card.transparent .stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

/* line 224, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-list-container.transparent {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  overflow: hidden;
  padding: 15px;
}

/* line 231, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-list-container.transparent .tickets-table-wrapper {
  overflow-x: auto;
}

/* line 234, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-list-container.transparent .tickets-table-wrapper .tickets-table {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

/* line 241, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-list-container.transparent .tickets-table-wrapper .tickets-table .tickets-table-head {
  width: 97%;
  display: flex;
  padding-right: 8px;
  flex-direction: row;
  font-weight: bold;
  font-size: 0.75rem;
  margin-bottom: 5px;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 10px;
}

/* line 254, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-list-container.transparent .tickets-table-wrapper .tickets-table .tickets-table-head .tickets-table-column {
  display: flex;
  align-items: center;
  font-size: 0.7rem;
  padding: 5px 10px;
  text-align: center;
  justify-content: center;
}

/* line 262, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-list-container.transparent .tickets-table-wrapper .tickets-table .tickets-table-head .tickets-table-column:nth-child(1) {
  width: 15%;
  text-align: left;
  justify-content: flex-start;
  padding-left: 20px;
}

/* line 269, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-list-container.transparent .tickets-table-wrapper .tickets-table .tickets-table-head .tickets-table-column:nth-child(2) {
  width: 25%;
  text-align: left;
  justify-content: flex-start;
}

/* line 275, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-list-container.transparent .tickets-table-wrapper .tickets-table .tickets-table-head .tickets-table-column:nth-child(3), .tickets-list-container.transparent .tickets-table-wrapper .tickets-table .tickets-table-head .tickets-table-column:nth-child(4) {
  width: 12%;
}

/* line 280, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-list-container.transparent .tickets-table-wrapper .tickets-table .tickets-table-head .tickets-table-column:nth-child(5), .tickets-list-container.transparent .tickets-table-wrapper .tickets-table .tickets-table-head .tickets-table-column:nth-child(6) {
  width: 15%;
}

/* line 285, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-list-container.transparent .tickets-table-wrapper .tickets-table .tickets-table-head .tickets-table-column:nth-child(7) {
  width: 6%;
  text-align: right;
  justify-content: flex-end;
  padding-right: 15px;
}

/* line 294, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-list-container.transparent .tickets-table-wrapper .tickets-table .tickets-table-entries {
  width: 100%;
  display: flex;
  gap: 5px;
  flex-direction: column;
  overflow-y: auto;
}

/* line 301, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-list-container.transparent .tickets-table-wrapper .tickets-table .tickets-table-entries .ticket-row {
  width: 97%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  font-size: 0.7rem;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 2px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 40px;
  padding: 3px 0;
  margin-bottom: 2px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* line 320, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-list-container.transparent .tickets-table-wrapper .tickets-table .tickets-table-entries .ticket-row:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
  background: rgba(255, 255, 255, 0.12);
}

/* line 326, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-list-container.transparent .tickets-table-wrapper .tickets-table .tickets-table-entries .ticket-row.unread {
  background: rgba(255, 193, 7, 0.15);
  font-weight: 600;
}

/* line 330, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-list-container.transparent .tickets-table-wrapper .tickets-table .tickets-table-entries .ticket-row.unread:hover {
  background: rgba(255, 193, 7, 0.25);
}

/* line 335, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-list-container.transparent .tickets-table-wrapper .tickets-table .tickets-table-entries .ticket-row .tickets-table-column {
  display: flex;
  align-items: center;
  font-size: 0.7rem;
  padding: 5px 10px;
  text-align: center;
  justify-content: center;
}

/* line 343, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-list-container.transparent .tickets-table-wrapper .tickets-table .tickets-table-entries .ticket-row .tickets-table-column:nth-child(1) {
  width: 15%;
  text-align: left;
  justify-content: flex-start;
  padding-left: 20px;
}

/* line 350, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-list-container.transparent .tickets-table-wrapper .tickets-table .tickets-table-entries .ticket-row .tickets-table-column:nth-child(2) {
  width: 25%;
  text-align: left;
  justify-content: flex-start;
}

/* line 356, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-list-container.transparent .tickets-table-wrapper .tickets-table .tickets-table-entries .ticket-row .tickets-table-column:nth-child(3), .tickets-list-container.transparent .tickets-table-wrapper .tickets-table .tickets-table-entries .ticket-row .tickets-table-column:nth-child(4) {
  width: 12%;
}

/* line 361, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-list-container.transparent .tickets-table-wrapper .tickets-table .tickets-table-entries .ticket-row .tickets-table-column:nth-child(5), .tickets-list-container.transparent .tickets-table-wrapper .tickets-table .tickets-table-entries .ticket-row .tickets-table-column:nth-child(6) {
  width: 15%;
}

/* line 366, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-list-container.transparent .tickets-table-wrapper .tickets-table .tickets-table-entries .ticket-row .tickets-table-column:nth-child(7) {
  width: 6%;
  text-align: right;
  justify-content: flex-end;
  padding-right: 15px;
}

/* line 373, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-list-container.transparent .tickets-table-wrapper .tickets-table .tickets-table-entries .ticket-row .tickets-table-column.ticket-number {
  font-weight: 600;
  color: #F6E5B3;
}

/* line 377, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-list-container.transparent .tickets-table-wrapper .tickets-table .tickets-table-entries .ticket-row .tickets-table-column.ticket-number .badge-new {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.25rem 0.5rem;
  background: #51cf66;
  color: #000;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 600;
}

/* line 390, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-list-container.transparent .tickets-table-wrapper .tickets-table .tickets-table-entries .ticket-row .tickets-table-column.ticket-subject .ticket-link {
  color: #F6E5B3;
  text-decoration: none;
  font-weight: 500;
}

/* line 395, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-list-container.transparent .tickets-table-wrapper .tickets-table .tickets-table-entries .ticket-row .tickets-table-column.ticket-subject .ticket-link:hover {
  text-decoration: underline;
}

/* line 401, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-list-container.transparent .tickets-table-wrapper .tickets-table .tickets-table-entries .ticket-row .tickets-table-column.ticket-date {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.65rem;
}

/* line 405, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-list-container.transparent .tickets-table-wrapper .tickets-table .tickets-table-entries .ticket-row .tickets-table-column.ticket-date small, .tickets-list-container.transparent .tickets-table-wrapper .tickets-table .tickets-table-entries .ticket-row .tickets-table-column.ticket-date .small {
  display: block;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.5);
}

/* line 412, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-list-container.transparent .tickets-table-wrapper .tickets-table .tickets-table-entries .ticket-row .tickets-table-column .badge {
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 0.65rem;
  font-weight: 500;
  display: inline-block;
  min-width: 70px;
  text-align: center;
  transition: all 0.2s ease-in-out;
}

/* line 424, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-list-container.transparent .tickets-table-wrapper .tickets-table .tickets-table-entries .ticket-row .ticket-actions {
  display: flex;
  gap: 10px;
  z-index: 10;
}

/* line 429, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-list-container.transparent .tickets-table-wrapper .tickets-table .tickets-table-entries .ticket-row .ticket-actions .btn-view-ticket {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: #fff;
  padding: 6px 12px;
  border: none;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
  transition: all .3s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* line 444, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-list-container.transparent .tickets-table-wrapper .tickets-table .tickets-table-entries .ticket-row .ticket-actions .btn-view-ticket i {
  font-size: 0.65rem;
  vertical-align: middle;
}

/* line 449, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-list-container.transparent .tickets-table-wrapper .tickets-table .tickets-table-entries .ticket-row .ticket-actions .btn-view-ticket:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
  color: #fff;
  text-decoration: none;
}

/* line 462, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-list-container.transparent .empty-state {
  text-align: center;
  padding: 4rem 2rem;
}

/* line 466, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-list-container.transparent .empty-state .empty-icon {
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

/* line 472, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-list-container.transparent .empty-state h3, .tickets-list-container.transparent .empty-state .h3 {
  font-size: 1.5rem;
  color: #F6E5B3;
  margin-bottom: 0.5rem;
}

/* line 478, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-list-container.transparent .empty-state p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

/* line 483, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-list-container.transparent .empty-state .btn-create-first-ticket {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: #fff;
  padding: 12px 24px;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  transition: all .3s ease;
}

/* line 497, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.tickets-list-container.transparent .empty-state .btn-create-first-ticket:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  color: #fff;
  text-decoration: none;
}

/* line 508, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
body:has(.support-ticket-new-page) {
  min-height: 100vh;
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
  color: #fefefe;
  overflow-x: hidden;
}

/* line 515, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-header {
  max-width: 1200px;
  margin: 24px auto 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* line 526, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-actions {
  margin-bottom: 0;
}

/* line 530, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-title {
  text-align: center;
  color: #F6E5B3;
  font-weight: 700;
  font-size: 1.8rem;
  margin: 0;
  flex: 1;
}

/* line 539, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-container-card {
  max-width: 1200px;
  margin: 24px auto 56px auto;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
}

/* line 550, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-grid {
  display: block;
}

/* line 555, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-form-section .form-header {
  margin-bottom: 1.5rem;
}

/* line 558, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-form-section .form-header h2, .support-ticket-form-section .form-header .h2 {
  color: #F6E5B3;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* line 565, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-form-section .form-header p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.9rem;
}

/* line 573, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-form-section .support-ticket-form .form-group {
  margin-bottom: 1.2rem;
}

/* line 576, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-form-section .support-ticket-form .form-group .support-input {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.9rem;
  transition: all .25s ease;
  min-height: 44px;
  box-sizing: border-box;
}

/* line 588, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-form-section .support-ticket-form .form-group .support-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 592, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-form-section .support-ticket-form .form-group .support-input:focus {
  outline: none;
  border-color: #F6E5B3;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(246, 229, 179, 0.18);
}

/* line 599, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-form-section .support-ticket-form .form-group .support-input.support-textarea {
  min-height: 100px;
  resize: vertical;
}

/* line 604, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-form-section .support-ticket-form .form-group .support-input option {
  background: #140D23;
  color: #fff;
}

/* line 610, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-form-section .support-ticket-form .form-group .form-hint {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 618, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-form-section .support-ticket-form .form-group-with-highlights {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

/* line 624, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-form-section .support-ticket-form .form-group-with-highlights .form-group {
  flex: 1;
  max-width: 400px;
  margin-bottom: 0;
}

/* line 631, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-form-section .support-ticket-form .form-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}

/* line 637, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-form-section .support-ticket-form .form-actions .support-submit {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  min-width: 180px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  transition: all .3s ease;
}

/* line 649, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-form-section .support-ticket-form .form-actions .support-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* line 658, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-highlights {
  margin-top: 0;
  flex-shrink: 0;
  width: 450px;
}

/* line 663, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-highlights .highlight-item {
  list-style: none;
  color: rgba(255, 255, 255, 0.9);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 8px;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px;
  width: 100%;
}

/* line 676, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-highlights .highlight-item .highlight-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(246, 229, 179, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(246, 229, 179, 0.2);
}

/* line 686, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-highlights .highlight-item .highlight-icon i {
  font-size: 1.1rem;
  color: #F6E5B3;
}

/* line 693, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-highlights .highlight-item .content h5, .support-ticket-highlights .highlight-item .content .h5 {
  color: #F6E5B3;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

/* line 700, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-highlights .highlight-item .content p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.3;
}

/* line 711, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
body:has(.support-ticket-show-page) {
  min-height: 100vh;
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
  color: #fefefe;
  overflow-x: hidden;
}

/* line 718, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page {
  min-height: 100vh;
  padding: 32px 0;
}

/* line 722, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-header {
  max-width: 1600px;
  margin: 0 auto 32px auto;
  padding: 0 24px;
  margin-left: 40px;
  margin-right: 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* line 734, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-header .support-ticket-actions {
  position: absolute;
  left: 24px;
  z-index: 10;
}

/* line 739, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-header .support-ticket-actions .btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
}

/* line 754, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-header .support-ticket-actions .btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
  color: #fff;
}

/* line 760, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-header .support-ticket-actions .btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

/* line 768, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-header .support-ticket-title-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* line 775, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-header .support-ticket-title-section .support-ticket-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

/* line 786, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-header .support-ticket-title-section .support-ticket-title i {
  color: #F6E5B3;
  font-size: 1.8rem;
}

/* line 792, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-header .support-ticket-title-section .ticket-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* line 797, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-header .support-ticket-title-section .ticket-badges .badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 805, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-header .support-ticket-title-section .ticket-badges .badge.badge-open {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

/* line 806, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-header .support-ticket-title-section .ticket-badges .badge.badge-in-progress {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

/* line 807, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-header .support-ticket-title-section .ticket-badges .badge.badge-waiting-client {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

/* line 808, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-header .support-ticket-title-section .ticket-badges .badge.badge-resolved {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

/* line 809, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-header .support-ticket-title-section .ticket-badges .badge.badge-closed {
  background: rgba(107, 114, 128, 0.2);
  color: #6b7280;
  border: 1px solid rgba(107, 114, 128, 0.3);
}

/* line 810, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-header .support-ticket-title-section .ticket-badges .badge.badge-low {
  background: rgba(107, 114, 128, 0.2);
  color: #6b7280;
  border: 1px solid rgba(107, 114, 128, 0.3);
}

/* line 811, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-header .support-ticket-title-section .ticket-badges .badge.badge-normal {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

/* line 812, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-header .support-ticket-title-section .ticket-badges .badge.badge-high {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

/* line 813, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-header .support-ticket-title-section .ticket-badges .badge.badge-urgent {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* line 819, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-container-card {
  max-width: 1600px;
  margin: 0 auto;
  padding: 16px 20px;
  margin-left: 40px;
  margin-right: 40px;
}

/* line 827, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 20px;
  align-items: start;
}

/* line 834, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
  backdrop-filter: blur(12px);
}

/* line 843, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card h2, .support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card .h2, .support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card h3, .support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card .h3, .support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card h4, .support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card .h4,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation h2,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation .h2,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation h3,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation .h3,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation h4,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation .h4 {
  color: #F6E5B3;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
}

/* line 852, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card h2 i, .support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card .h2 i, .support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card h3 i, .support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card .h3 i, .support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card h4 i, .support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card .h4 i,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation h2 i,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation .h2 i,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation h3 i,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation .h3 i,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation h4 i,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation .h4 i {
  color: #F6E5B3;
  font-size: 1rem;
}

/* line 858, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card .ticket-subject h2, .support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card .ticket-subject .h2,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation .ticket-subject h2,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation .ticket-subject .h2 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 8px;
}

/* line 864, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card .ticket-meta,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation .ticket-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}

/* line 870, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card .ticket-meta .meta-item,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation .ticket-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

/* line 877, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card .ticket-meta .meta-item i,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation .ticket-meta .meta-item i {
  color: #F6E5B3;
  width: 14px;
  font-size: 0.8rem;
}

/* line 886, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card .ticket-description .description-content,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation .ticket-description .description-content {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  font-size: 0.9rem;
}

/* line 894, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card .replies-list .reply-item,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation .replies-list .reply-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 10px;
}

/* line 901, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card .replies-list .reply-item.reply-admin,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation .replies-list .reply-item.reply-admin {
  border-left: 3px solid #F6E5B3;
  background: rgba(246, 229, 179, 0.05);
}

/* line 906, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card .replies-list .reply-item.reply-client,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation .replies-list .reply-item.reply-client {
  border-left: 3px solid #3b82f6;
  background: rgba(59, 130, 246, 0.05);
}

/* line 911, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card .replies-list .reply-item .reply-header,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation .replies-list .reply-item .reply-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

/* line 917, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card .replies-list .reply-item .reply-header .reply-author,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation .replies-list .reply-item .reply-header .reply-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 922, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card .replies-list .reply-item .reply-header .reply-author .author-avatar,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation .replies-list .reply-item .reply-header .reply-author .author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(246, 229, 179, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(246, 229, 179, 0.2);
}

/* line 932, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card .replies-list .reply-item .reply-header .reply-author .author-avatar i,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation .replies-list .reply-item .reply-header .reply-author .author-avatar i {
  color: #F6E5B3;
  font-size: 0.9rem;
}

/* line 939, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card .replies-list .reply-item .reply-header .reply-author .author-info strong,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation .replies-list .reply-item .reply-header .reply-author .author-info strong {
  color: #fff;
  font-size: 0.85rem;
}

/* line 944, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card .replies-list .reply-item .reply-header .reply-author .author-info .author-role,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation .replies-list .reply-item .reply-header .reply-author .author-info .author-role {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  display: block;
}

/* line 952, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card .replies-list .reply-item .reply-header .reply-date,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation .replies-list .reply-item .reply-header .reply-date {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}

/* line 958, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card .replies-list .reply-item .reply-content,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation .replies-list .reply-item .reply-content {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  font-size: 0.85rem;
}

/* line 966, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card .no-replies,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation .no-replies {
  text-align: center;
  padding: 20px 15px;
  color: rgba(255, 255, 255, 0.7);
}

/* line 971, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card .no-replies i,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation .no-replies i {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 12px;
}

/* line 977, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card .no-replies p,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation .no-replies p {
  font-size: 0.85rem;
}

/* line 982, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card .reply-form-container,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation .reply-form-container {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 987, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card .reply-form-container .form-group,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation .reply-form-container .form-group {
  margin-bottom: 12px;
}

/* line 990, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card .reply-form-container .form-group .form-label,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation .reply-form-container .form-group .form-label {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

/* line 998, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card .reply-form-container .form-group .support-textarea,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation .reply-form-container .form-group .support-textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: #fff;
  font-size: 0.9rem;
  resize: vertical;
  min-height: 100px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

/* line 1011, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card .reply-form-container .form-group .support-textarea::placeholder,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation .reply-form-container .form-group .support-textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* line 1016, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card .reply-form-container .form-group .support-textarea:focus,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation .reply-form-container .form-group .support-textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.12);
  border-color: #F6E5B3;
  box-shadow: 0 0 0 3px rgba(246, 229, 179, 0.15);
  transform: translateY(-1px);
}

/* line 1024, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card .reply-form-container .form-group .support-textarea:hover,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation .reply-form-container .form-group .support-textarea:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
}

/* line 1031, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card .reply-form-container .form-actions,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation .reply-form-container .form-actions {
  display: flex;
  justify-content: flex-end;
}

/* line 1035, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card .reply-form-container .form-actions .support-submit,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation .reply-form-container .form-actions .support-submit {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  min-width: 140px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  transition: all .3s ease;
}

/* line 1047, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card .reply-form-container .form-actions .support-submit:hover,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation .reply-form-container .form-actions .support-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* line 1055, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card .ticket-closed-notice,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation .ticket-closed-notice {
  text-align: center;
  padding: 40px 20px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.8);
}

/* line 1063, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card .ticket-closed-notice i,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation .ticket-closed-notice i {
  font-size: 2rem;
  color: #ef4444;
  margin-bottom: 16px;
}

/* line 1069, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-info-card .ticket-closed-notice .btn,
.support-ticket-show-page .support-ticket-grid .support-ticket-form-section .ticket-conversation .ticket-closed-notice .btn {
  margin-top: 16px;
}

/* line 1077, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .ticket-sidebar .sidebar-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  backdrop-filter: blur(12px);
}

/* line 1085, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .ticket-sidebar .sidebar-card h3, .support-ticket-show-page .support-ticket-grid .ticket-sidebar .sidebar-card .h3 {
  color: #F6E5B3;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 1094, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .ticket-sidebar .sidebar-card h3 i, .support-ticket-show-page .support-ticket-grid .ticket-sidebar .sidebar-card .h3 i {
  color: #F6E5B3;
}

/* line 1100, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .ticket-sidebar .sidebar-card .sidebar-actions .btn {
  width: 100%;
  margin-bottom: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* line 1109, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .ticket-sidebar .sidebar-card .sidebar-actions .btn.btn-success {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

/* line 1114, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .ticket-sidebar .sidebar-card .sidebar-actions .btn.btn-success:hover {
  background: rgba(34, 197, 94, 0.3);
  border-color: rgba(34, 197, 94, 0.5);
  transform: translateY(-1px);
}

/* line 1122, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .ticket-sidebar .sidebar-card .sidebar-actions .sidebar-help {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  line-height: 1.4;
  margin: 0;
}

/* line 1128, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .ticket-sidebar .sidebar-card .sidebar-actions .sidebar-help i {
  color: #F6E5B3;
  margin-right: 4px;
}

/* line 1136, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .ticket-sidebar .sidebar-card .info-list dt {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-bottom: 4px;
}

/* line 1142, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .ticket-sidebar .sidebar-card .info-list dd {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
  font-size: 0.9rem;
}

/* line 1147, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .ticket-sidebar .sidebar-card .info-list dd .badge {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* line 1156, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .ticket-sidebar .sidebar-card .help-contact {
  color: #F6E5B3;
  font-weight: 600;
  margin: 12px 0 0 0;
}

/* line 1161, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.support-ticket-show-page .support-ticket-grid .ticket-sidebar .sidebar-card .help-contact i {
  margin-right: 8px;
}

/* line 1171, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.ticket-attachments,
.reply-attachments {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

/* line 1179, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.ticket-attachments h4, .ticket-attachments .h4,
.reply-attachments h4,
.reply-attachments .h4 {
  color: #F6E5B3;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 1188, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.ticket-attachments h4 i, .ticket-attachments .h4 i,
.reply-attachments h4 i,
.reply-attachments .h4 i {
  color: #F6E5B3;
}

/* line 1194, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.attachments-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 1199, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.attachments-list.compact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* line 1206, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.attachment-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 0.5rem;
  transition: all 0.2s ease;
}

/* line 1217, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.attachment-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

/* line 1222, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.compact .attachment-item {
  margin-bottom: 0;
  padding: 0.5rem 0.75rem;
}

/* line 1227, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.attachment-item .attachment-icon {
  color: #ef4444;
  font-size: 1.5rem;
}

/* line 1232, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.attachment-item .attachment-preview {
  flex-shrink: 0;
}

/* line 1237, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.attachment-thumbnail {
  max-width: 80px;
  max-height: 80px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 1245, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.attachment-thumbnail-small {
  max-width: 40px;
  max-height: 40px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 1253, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.attachment-name {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 500;
  word-break: break-all;
}

/* line 1260, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.attachment-size {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}

/* line 1265, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.attachment-download {
  margin-left: auto;
  color: #F6E5B3;
  padding: 0.5rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}

/* line 1272, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.attachment-download:hover {
  color: #fff;
  background: rgba(246, 229, 179, 0.2);
}

/* line 1277, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.attachment-download i {
  font-size: 1rem;
}

/* line 1283, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.ticket-loom,
.reply-loom {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 8px;
}

/* line 1291, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.ticket-loom h4, .ticket-loom .h4,
.reply-loom h4,
.reply-loom .h4 {
  color: #818cf8;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

/* line 1297, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.ticket-loom a, .ticket-loom .loom-link,
.reply-loom a,
.reply-loom .loom-link {
  color: #a5b4fc;
  text-decoration: none;
  font-size: 0.85rem;
  word-break: break-all;
}

/* line 1303, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.ticket-loom a:hover, .ticket-loom .loom-link:hover,
.reply-loom a:hover,
.reply-loom .loom-link:hover {
  color: #c7d2fe;
  text-decoration: underline;
}

/* line 1309, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.ticket-loom i,
.reply-loom i {
  color: #818cf8;
  margin-right: 0.5rem;
}

/* line 1316, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.gdpr-warning {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

/* line 1326, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.gdpr-warning > i {
  font-size: 1.5rem;
  color: #f59e0b;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

/* line 1334, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.gdpr-warning .gdpr-content strong {
  color: #fbbf24;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.25rem;
}

/* line 1341, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.gdpr-warning .gdpr-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.4;
}

/* line 1352, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.file-input::-webkit-file-upload-button {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: #fff;
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  margin-right: 12px;
  transition: all 0.2s ease;
}

/* line 1363, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.file-input::-webkit-file-upload-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* line 1371, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.attachments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 0.75rem;
}

/* line 1378, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.attachment-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 0.75rem;
  text-align: center;
  transition: all 0.2s ease;
}

/* line 1386, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.attachment-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

/* line 1391, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.attachment-card .attachment-thumbnail {
  max-width: 100%;
  max-height: 100px;
  margin-bottom: 0.5rem;
}

/* line 1397, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.attachment-card .attachment-icon {
  padding: 1rem;
}

/* line 1400, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.attachment-card .attachment-icon i {
  color: #ef4444;
}

/* line 1405, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.attachment-card .attachment-info {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5rem;
}

/* line 1410, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.attachment-card .attachment-info .attachment-name {
  font-size: 0.8rem;
}

/* line 1414, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.attachment-card .attachment-info .attachment-size {
  font-size: 0.7rem;
}

/* line 1419, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
.attachment-card .btn {
  width: 100%;
  font-size: 0.75rem;
}

@media (max-width: 768px) {
  /* line 1427, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
  .support-tickets-header,
.support-ticket-header {
    padding: 0 16px;
  }
  /* line 1432, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
  .support-tickets-container-card,
.support-ticket-container-card {
    margin: 16px auto 32px auto;
    padding: 24px;
  }
  /* line 1438, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
  .support-tickets-title,
.support-ticket-title {
    font-size: 1.5rem;
  }
  /* line 1443, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
  .support-tickets-header-section {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  /* line 1449, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
  .tickets-filters .filters-form {
    flex-direction: column;
  }
  /* line 1452, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
  .tickets-filters .filters-form .filter-group {
    min-width: auto;
  }
  /* line 1457, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
  .tickets-stats {
    grid-template-columns: 1fr;
  }
  /* line 1461, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
  .support-ticket-highlights .highlight-item {
    grid-template-columns: 50px 1fr;
    gap: 10px;
  }
  /* line 1465, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
  .support-ticket-highlights .highlight-item .highlight-icon {
    width: 50px;
    height: 50px;
  }
  /* line 1469, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
  .support-ticket-highlights .highlight-item .highlight-icon i {
    font-size: 1.2rem;
  }
  /* line 1474, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
  .support-ticket-highlights .highlight-item .content h5, .support-ticket-highlights .highlight-item .content .h5 {
    font-size: 0.9rem;
  }
  /* line 1481, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
  .support-ticket-show-page .support-ticket-header {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  /* line 1486, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
  .support-ticket-show-page .support-ticket-header .support-ticket-title-section {
    flex-direction: column;
    gap: 12px;
  }
  /* line 1490, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
  .support-ticket-show-page .support-ticket-header .support-ticket-title-section .support-ticket-title {
    font-size: 1.5rem;
  }
  /* line 1496, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
  .support-ticket-show-page .support-ticket-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  /* line 1500, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
  .support-ticket-show-page .support-ticket-grid .ticket-sidebar {
    order: -1;
  }
}

@media (max-width: 480px) {
  /* line 1508, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
  .support-tickets-container-card,
.support-ticket-container-card {
    margin: 12px auto;
    padding: 20px;
  }
  /* line 1514, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
  .support-tickets-title,
.support-ticket-title {
    font-size: 1.3rem;
  }
  /* line 1519, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
  .tickets-table-wrapper {
    font-size: 0.85rem;
  }
  /* line 1524, app/assets/stylesheets/pages/customerspace/_support_tickets.scss */
  .tickets-table th, .tickets-table td {
    padding: 0.5rem !important;
  }
}

/* line 4, app/assets/stylesheets/pages/customerspace/_generators.scss */
body:has(.generators-page) {
  min-height: 100vh;
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
  color: #fefefe;
  overflow-x: hidden;
}

/* line 11, app/assets/stylesheets/pages/customerspace/_generators.scss */
.generators-header {
  max-width: 1200px;
  margin: 24px auto 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* line 22, app/assets/stylesheets/pages/customerspace/_generators.scss */
.generators-actions {
  margin-bottom: 0;
}

/* line 26, app/assets/stylesheets/pages/customerspace/_generators.scss */
.generators-actions-right {
  margin-bottom: 0;
  margin-left: auto;
}

/* line 31, app/assets/stylesheets/pages/customerspace/_generators.scss */
.generators-title {
  text-align: center;
  color: #F6E5B3;
  font-weight: 700;
  font-size: 1.8rem;
  margin: 0;
  flex: 1;
}

/* line 40, app/assets/stylesheets/pages/customerspace/_generators.scss */
.generators-container-card {
  max-width: 1200px;
  margin: 20px auto 40px auto;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  min-height: 80vh;
}

/* line 52, app/assets/stylesheets/pages/customerspace/_generators.scss */
.generators-grid {
  display: grid;
  gap: 18px;
}

/* line 57, app/assets/stylesheets/pages/customerspace/_generators.scss */
.generators-header-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.875rem;
}

/* line 65, app/assets/stylesheets/pages/customerspace/_generators.scss */
.generators-header-section .header-content h2, .generators-header-section .header-content .h2 {
  color: #F6E5B3;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
  text-align: left;
}

/* line 72, app/assets/stylesheets/pages/customerspace/_generators.scss */
.generators-header-section .header-content h2 i, .generators-header-section .header-content .h2 i {
  margin-right: 0.5rem;
  color: #F6E5B3;
  font-size: 1rem;
}

/* line 79, app/assets/stylesheets/pages/customerspace/_generators.scss */
.generators-header-section .header-content .header-subtitle {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  text-align: left;
  font-size: 0.9rem;
}

/* line 87, app/assets/stylesheets/pages/customerspace/_generators.scss */
.generators-header-section .header-actions {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
}

/* line 93, app/assets/stylesheets/pages/customerspace/_generators.scss */
.generators-header-section .btn-create-generator {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  transition: all .3s ease;
}

/* line 108, app/assets/stylesheets/pages/customerspace/_generators.scss */
.generators-header-section .btn-create-generator i {
  font-size: 0.95rem;
}

/* line 112, app/assets/stylesheets/pages/customerspace/_generators.scss */
.generators-header-section .btn-create-generator:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  color: #fff;
  text-decoration: none;
}

/* line 122, app/assets/stylesheets/pages/customerspace/_generators.scss */
.transparent {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 18px;
  backdrop-filter: blur(8px);
}

/* line 131, app/assets/stylesheets/pages/customerspace/_generators.scss */
.section-title {
  color: #F6E5B3;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 140, app/assets/stylesheets/pages/customerspace/_generators.scss */
.section-title i {
  color: #F6E5B3;
  font-size: 0.95rem;
}

/* line 147, app/assets/stylesheets/pages/customerspace/_generators.scss */
.pitch-meta-inline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

/* line 156, app/assets/stylesheets/pages/customerspace/_generators.scss */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 24px;
}

@media (max-width: 768px) {
  /* line 156, app/assets/stylesheets/pages/customerspace/_generators.scss */
  .content-grid {
    grid-template-columns: 1fr;
  }
}

/* line 167, app/assets/stylesheets/pages/customerspace/_generators.scss */
.pitch-content-section .pitch-text-display {
  margin-top: 1rem;
}

/* line 171, app/assets/stylesheets/pages/customerspace/_generators.scss */
.pitch-content-section .pitch-text-content {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* line 176, app/assets/stylesheets/pages/customerspace/_generators.scss */
.pitch-content-section .pitch-text-content p {
  margin-bottom: 1.25rem;
}

/* line 183, app/assets/stylesheets/pages/customerspace/_generators.scss */
.pitch-metadata-section .metadata-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* line 189, app/assets/stylesheets/pages/customerspace/_generators.scss */
.pitch-metadata-section .metadata-item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 195, app/assets/stylesheets/pages/customerspace/_generators.scss */
.pitch-metadata-section .metadata-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* line 201, app/assets/stylesheets/pages/customerspace/_generators.scss */
.pitch-metadata-section .metadata-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* line 206, app/assets/stylesheets/pages/customerspace/_generators.scss */
.pitch-metadata-section .metadata-value {
  color: #F6E5B3;
  font-weight: 600;
  text-align: right;
}

/* line 213, app/assets/stylesheets/pages/customerspace/_generators.scss */
.generating-state-full,
.error-state-full {
  text-align: center;
  padding: 4rem 2rem;
}

/* line 218, app/assets/stylesheets/pages/customerspace/_generators.scss */
.generating-state-full h3, .generating-state-full .h3,
.error-state-full h3,
.error-state-full .h3 {
  color: #F6E5B3;
  font-size: 1.5rem;
  font-weight: 600;
}

/* line 224, app/assets/stylesheets/pages/customerspace/_generators.scss */
.generating-state-full p,
.error-state-full p {
  color: rgba(255, 255, 255, 0.8);
}

/* line 228, app/assets/stylesheets/pages/customerspace/_generators.scss */
.generating-state-full .error-icon,
.error-state-full .error-icon {
  font-size: 3rem;
  color: #FF6B35;
  margin-bottom: 1rem;
}

/* line 236, app/assets/stylesheets/pages/customerspace/_generators.scss */
.generators-form {
  display: grid;
  gap: 16px;
}

/* line 242, app/assets/stylesheets/pages/customerspace/_generators.scss */
.form-section .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 0.75rem;
}

@media (max-width: 768px) {
  /* line 242, app/assets/stylesheets/pages/customerspace/_generators.scss */
  .form-section .form-grid {
    grid-template-columns: 1fr;
  }
}

/* line 253, app/assets/stylesheets/pages/customerspace/_generators.scss */
.form-section .form-grid-full {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 0.75rem;
}

/* line 260, app/assets/stylesheets/pages/customerspace/_generators.scss */
.form-section .form-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

/* line 266, app/assets/stylesheets/pages/customerspace/_generators.scss */
.form-section .form-label {
  color: #F6E5B3;
  font-weight: 500;
  font-size: 0.85rem;
}

/* line 272, app/assets/stylesheets/pages/customerspace/_generators.scss */
.form-section .form-input,
.form-section .form-textarea {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.9rem;
  transition: all .25s ease;
  box-sizing: border-box;
}

/* line 284, app/assets/stylesheets/pages/customerspace/_generators.scss */
.form-section .form-input::placeholder,
.form-section .form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* line 289, app/assets/stylesheets/pages/customerspace/_generators.scss */
.form-section .form-input:focus,
.form-section .form-textarea:focus {
  outline: none;
  border-color: #F6E5B3;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(246, 229, 179, 0.15);
}

/* line 296, app/assets/stylesheets/pages/customerspace/_generators.scss */
.form-section .form-input option,
.form-section .form-textarea option {
  background: #140D23;
  color: #fff;
}

/* line 302, app/assets/stylesheets/pages/customerspace/_generators.scss */
.form-section .form-textarea {
  resize: vertical;
  min-height: 70px;
}

/* line 307, app/assets/stylesheets/pages/customerspace/_generators.scss */
.form-section .form-help {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  margin-top: -0.125rem;
}

/* line 313, app/assets/stylesheets/pages/customerspace/_generators.scss */
.form-section .form-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

/* line 320, app/assets/stylesheets/pages/customerspace/_generators.scss */
.form-section .form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

/* line 325, app/assets/stylesheets/pages/customerspace/_generators.scss */
.form-section .form-checkbox .checkbox-input {
  width: 18px;
  height: 18px;
  accent-color: #F6E5B3;
  flex-shrink: 0;
}

/* line 332, app/assets/stylesheets/pages/customerspace/_generators.scss */
.form-section .form-checkbox .checkbox-label {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  cursor: pointer;
  font-size: 0.9rem;
}

/* line 341, app/assets/stylesheets/pages/customerspace/_generators.scss */
.alert-error {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1rem;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.3);
  color: #fff;
  font-size: 0.9rem;
}

/* line 351, app/assets/stylesheets/pages/customerspace/_generators.scss */
.alert-error i {
  color: #FF6B35;
  font-size: 1.125rem;
  flex-shrink: 0;
}

/* line 358, app/assets/stylesheets/pages/customerspace/_generators.scss */
.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.875rem;
  padding-top: 0.75rem;
  flex-wrap: wrap;
}

/* line 367, app/assets/stylesheets/pages/customerspace/_generators.scss */
.btn-action-primary {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  transition: all .3s ease;
  cursor: pointer;
}

/* line 383, app/assets/stylesheets/pages/customerspace/_generators.scss */
.btn-action-primary i {
  font-size: 0.95rem;
}

/* line 387, app/assets/stylesheets/pages/customerspace/_generators.scss */
.btn-action-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  color: #fff;
  text-decoration: none;
}

/* line 395, app/assets/stylesheets/pages/customerspace/_generators.scss */
.btn-action-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all .3s ease;
  cursor: pointer;
}

/* line 410, app/assets/stylesheets/pages/customerspace/_generators.scss */
.btn-action-secondary i {
  font-size: 0.95rem;
}

/* line 414, app/assets/stylesheets/pages/customerspace/_generators.scss */
.btn-action-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  text-decoration: none;
}

/* line 423, app/assets/stylesheets/pages/customerspace/_generators.scss */
.generators-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.875rem;
}

@media (max-width: 768px) {
  /* line 423, app/assets/stylesheets/pages/customerspace/_generators.scss */
  .generators-stats {
    grid-template-columns: 1fr;
  }
}

/* line 432, app/assets/stylesheets/pages/customerspace/_generators.scss */
.generators-stats .stat-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  min-height: auto;
}

/* line 441, app/assets/stylesheets/pages/customerspace/_generators.scss */
.generators-stats .stat-card .stat-icon {
  font-size: 1.75rem;
  opacity: 0.9;
  flex-shrink: 0;
}

/* line 446, app/assets/stylesheets/pages/customerspace/_generators.scss */
.generators-stats .stat-card .stat-icon.success {
  color: #48bb78;
}

/* line 450, app/assets/stylesheets/pages/customerspace/_generators.scss */
.generators-stats .stat-card .stat-icon.warning {
  color: #F7931E;
}

/* line 454, app/assets/stylesheets/pages/customerspace/_generators.scss */
.generators-stats .stat-card .stat-icon.info {
  color: #667eea;
}

/* line 459, app/assets/stylesheets/pages/customerspace/_generators.scss */
.generators-stats .stat-card .stat-content {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

/* line 465, app/assets/stylesheets/pages/customerspace/_generators.scss */
.generators-stats .stat-card .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #F6E5B3;
  line-height: 1;
}

/* line 472, app/assets/stylesheets/pages/customerspace/_generators.scss */
.generators-stats .stat-card .stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
  line-height: 1.2;
}

/* line 482, app/assets/stylesheets/pages/customerspace/_generators.scss */
.generators-list .generators-table-head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 120px;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 600;
  color: #F6E5B3;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  /* line 482, app/assets/stylesheets/pages/customerspace/_generators.scss */
  .generators-list .generators-table-head {
    display: none;
  }
}

/* line 497, app/assets/stylesheets/pages/customerspace/_generators.scss */
.generators-list .generators-table-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* line 503, app/assets/stylesheets/pages/customerspace/_generators.scss */
.generators-list .generator-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 120px;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all .2s ease;
  cursor: pointer;
}

/* line 512, app/assets/stylesheets/pages/customerspace/_generators.scss */
.generators-list .generator-row:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* line 516, app/assets/stylesheets/pages/customerspace/_generators.scss */
.generators-list .generator-row:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  /* line 503, app/assets/stylesheets/pages/customerspace/_generators.scss */
  .generators-list .generator-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

/* line 526, app/assets/stylesheets/pages/customerspace/_generators.scss */
.generators-list .table-column {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

/* line 532, app/assets/stylesheets/pages/customerspace/_generators.scss */
.generators-list .table-column.generator-title {
  flex-direction: column;
  align-items: flex-start;
}

/* line 537, app/assets/stylesheets/pages/customerspace/_generators.scss */
.generators-list .table-column.generator-date {
  flex-direction: column;
  align-items: flex-start;
}

/* line 542, app/assets/stylesheets/pages/customerspace/_generators.scss */
.generators-list .table-column.generator-actions {
  justify-content: flex-end;
}

/* line 546, app/assets/stylesheets/pages/customerspace/_generators.scss */
.generators-list .table-column .generator-link {
  color: #F6E5B3;
  text-decoration: none;
  font-weight: 500;
}

/* line 551, app/assets/stylesheets/pages/customerspace/_generators.scss */
.generators-list .table-column .generator-link:hover {
  text-decoration: underline;
}

/* line 557, app/assets/stylesheets/pages/customerspace/_generators.scss */
.generators-list .btn-view-generator {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: all .2s ease;
}

/* line 571, app/assets/stylesheets/pages/customerspace/_generators.scss */
.generators-list .btn-view-generator:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  text-decoration: none;
}

/* line 580, app/assets/stylesheets/pages/customerspace/_generators.scss */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
}

/* line 584, app/assets/stylesheets/pages/customerspace/_generators.scss */
.empty-state .empty-icon {
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1.5rem;
}

/* line 590, app/assets/stylesheets/pages/customerspace/_generators.scss */
.empty-state h3, .empty-state .h3 {
  color: #F6E5B3;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* line 597, app/assets/stylesheets/pages/customerspace/_generators.scss */
.empty-state p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

/* line 602, app/assets/stylesheets/pages/customerspace/_generators.scss */
.empty-state .btn-create-first-generator {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  transition: all .3s ease;
}

/* line 616, app/assets/stylesheets/pages/customerspace/_generators.scss */
.empty-state .btn-create-first-generator:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  color: #fff;
  text-decoration: none;
}

/* line 626, app/assets/stylesheets/pages/customerspace/_generators.scss */
.badge {
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
}

/* line 633, app/assets/stylesheets/pages/customerspace/_generators.scss */
.badge.badge-success {
  background: rgba(72, 187, 120, 0.2);
  color: #48bb78;
  border: 1px solid rgba(72, 187, 120, 0.3);
}

/* line 639, app/assets/stylesheets/pages/customerspace/_generators.scss */
.badge.badge-danger {
  background: rgba(255, 107, 53, 0.2);
  color: #FF6B35;
  border: 1px solid rgba(255, 107, 53, 0.3);
}

/* line 645, app/assets/stylesheets/pages/customerspace/_generators.scss */
.badge.badge-warning {
  background: rgba(247, 147, 30, 0.2);
  color: #F7931E;
  border: 1px solid rgba(247, 147, 30, 0.3);
}

/* line 651, app/assets/stylesheets/pages/customerspace/_generators.scss */
.badge.badge-info {
  background: rgba(102, 126, 234, 0.2);
  color: #667eea;
  border: 1px solid rgba(102, 126, 234, 0.3);
}

/* line 659, app/assets/stylesheets/pages/customerspace/_generators.scss */
.copy-toast-notification {
  position: fixed;
  top: 80px;
  right: 20px;
  background: #48bb78;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.3s ease;
  z-index: 10000;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 677, app/assets/stylesheets/pages/customerspace/_generators.scss */
.copy-toast-notification.show {
  opacity: 1;
  transform: translateX(0);
}

/* line 684, app/assets/stylesheets/pages/customerspace/_generators.scss */
.visual-display {
  text-align: center;
  padding: 1rem 0;
}

/* line 688, app/assets/stylesheets/pages/customerspace/_generators.scss */
.visual-display img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* line 696, app/assets/stylesheets/pages/customerspace/_generators.scss */
.prompt-section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 701, app/assets/stylesheets/pages/customerspace/_generators.scss */
.prompt-section .section-title {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

/* line 706, app/assets/stylesheets/pages/customerspace/_generators.scss */
.prompt-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* line 714, app/assets/stylesheets/pages/customerspace/_generators.scss */
.spinner-border.text-light {
  width: 3rem;
  height: 3rem;
}

/* line 721, app/assets/stylesheets/pages/customerspace/_generators.scss */
.form-help.d-block {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  margin-left: 1.75rem;
}

/* ==========================================================================
   Page Mes Abonnements - Style harmonisé avec les autres pages account
   ========================================================================== */
/* Container principal */
/* line 6, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.account-page-capsule-subscription {
  color: #fefefe;
  min-height: 100vh;
  overflow: visible !important;
}

/* line 12, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.subscription-management {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* line 21, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.subscription-main-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

/* ==========================================================================
   Sections principales
   ========================================================================== */
/* line 31, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.subscription-section {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 1.25rem;
}

/* Encart informatif pour modifications planifiées */
/* line 39, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.pending-modifications-notice {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}

/* line 46, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.pending-modifications-notice .notice-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: #ffc107;
}

/* line 53, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.pending-modifications-notice .notice-header i {
  font-size: 1rem;
}

/* line 55, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.pending-modifications-notice .notice-header h4, .pending-modifications-notice .notice-header .h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #ffc107;
}

/* line 63, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.pending-modifications-notice .notice-content {
  color: rgba(255, 255, 255, 0.9);
}

/* line 66, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.pending-modifications-notice .notice-content .notice-intro {
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* line 71, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.pending-modifications-notice .notice-content .notice-intro strong {
  color: #ffc107;
  font-weight: 600;
}

/* line 77, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.pending-modifications-notice .notice-content .notice-modifications {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* line 85, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.pending-modifications-notice .notice-content .notice-modifications li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  border-left: 3px solid #ffc107;
}

/* line 94, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.pending-modifications-notice .notice-content .notice-modifications li i {
  color: #ffc107;
  font-size: 0.9rem;
  width: 18px;
  text-align: center;
}

/* line 101, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.pending-modifications-notice .notice-content .notice-modifications li span {
  flex: 1;
  font-size: 0.85rem;
}

/* line 105, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.pending-modifications-notice .notice-content .notice-modifications li span strong {
  color: #ffc107;
  font-weight: 600;
}

/* line 113, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.pending-modifications-notice .notice-content .notice-note {
  margin: 0 0 0.75rem 0;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  font-size: 0.8rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

/* line 123, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.pending-modifications-notice .notice-content .notice-note i {
  color: #3b82f6;
  margin-top: 0.1rem;
}

/* line 128, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.pending-modifications-notice .notice-content .notice-note strong {
  color: #3b82f6;
}

/* line 131, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.pending-modifications-notice .notice-content .notice-actions {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: flex-end;
}

/* line 138, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.pending-modifications-notice .notice-content .notice-actions .btn-cancel-modifications {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #ef4444;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* line 152, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.pending-modifications-notice .notice-content .notice-actions .btn-cancel-modifications:hover {
  background: rgba(239, 68, 68, 0.25);
}

/* line 156, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.pending-modifications-notice .notice-content .notice-actions .btn-cancel-modifications i {
  font-size: 0.8rem;
}

/* ==========================================================================
   En-têtes de section
   ========================================================================== */
/* line 165, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.section-header-current-subscription {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 170, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.section-header-current-subscription h3, .section-header-current-subscription .h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fefefe;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 179, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.section-header-current-subscription h3 i, .section-header-current-subscription .h3 i {
  color: #C38761;
  font-size: 1rem;
}

/* line 185, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.section-header-current-subscription p {
  margin: 0.4rem 0 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

/* ==========================================================================
   Carte d'abonnement actuel
   ========================================================================== */
/* line 195, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.subscription-card {
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* line 204, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.subscription-card--compact {
  padding: 0.875rem;
  gap: 0.75rem;
}

/* line 210, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.subscription-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* line 217, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.subscription-card__header i {
  font-size: 1.5rem;
  color: #C38761;
}

/* line 222, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.subscription-card__header--compact i {
  font-size: 1.25rem;
}

/* line 227, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.subscription-card__left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

/* line 234, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.subscription-card__title {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

/* line 240, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.subscription-card__name {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fefefe;
}

/* line 246, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.subscription-card__name--compact {
  font-size: 1rem;
}

/* Badges de statut */
/* line 252, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* line 261, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.status-badge--success {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

/* line 267, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.status-badge--warning {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* line 273, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.status-badge--compact {
  padding: 0.2rem 0.4rem;
  font-size: 0.7rem;
}

/* Actions */
/* line 280, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.subscription-card__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

/* line 286, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.subscription-card__actions--header {
  justify-content: flex-end;
}

/* line 291, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.cancellation-actions-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 297, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.cancellation-notice {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* line 304, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.cancellation-notice i {
  font-size: 0.65rem;
}

/* Corps de la carte */
/* line 310, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.subscription-card__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* line 315, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.subscription-card__body--two-columns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* line 322, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.subscription-details-column {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  width: 100%;
}

@media (max-width: 768px) {
  /* line 322, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
  .subscription-details-column {
    flex-direction: column;
  }
}

/* line 333, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.subscription-apps--full-width {
  width: 100%;
}

/* Détails de l'abonnement */
/* line 338, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.subscription-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

/* line 344, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.subscription-details--compact {
  gap: 0.4rem;
}

/* line 349, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
}

/* line 357, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.detail-row--compact {
  padding: 0.4rem 0.6rem;
}

/* line 361, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.detail-row dt {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 400;
}

/* line 370, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.detail-row dt i {
  color: #C38761;
  font-size: 0.8rem;
  width: 16px;
  text-align: center;
}

/* line 377, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.detail-row dt .badge-paiement {
  display: inline-flex;
  padding: 0.15rem 0.35rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-left: 0.3rem;
}

/* line 386, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.detail-row dt .badge-paiement--acquitte {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

/* line 392, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.detail-row dt .badge-paiement--mensuel {
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #3b82f6;
}

/* line 400, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.detail-row dd {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fefefe;
}

/* Prix */
/* line 409, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.price-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* line 414, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.price-row .price-display {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* line 420, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.price-row .price-main {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

/* line 427, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.price-row .amount {
  font-size: 1.1rem;
  font-weight: 600;
  color: #22c55e;
}

/* line 433, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.price-row .price-period {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 439, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.price-row--compact .amount {
  font-size: 1rem;
}

/* line 440, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.price-row--compact .price-period {
  font-size: 0.75rem;
}

/* line 444, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.commitment-label {
  color: #fefefe !important;
  font-weight: 500;
}

/* Options et applications */
/* line 450, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.subscription-options,
.subscription-apps {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* line 456, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.subscription-options--compact,
.subscription-apps--compact {
  gap: 0.4rem;
  min-width: 35%;
}

/* line 462, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.subscription-options h5, .subscription-options .h5,
.subscription-apps h5,
.subscription-apps .h5 {
  margin: 0 0 0.5rem 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fefefe;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 474, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.subscription-options h5 i, .subscription-options .h5 i,
.subscription-apps h5 i,
.subscription-apps .h5 i {
  color: #C38761;
  font-size: 0.85rem;
}

/* Grille d'applications */
/* line 481, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.apps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* line 486, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.apps-grid--compact {
  gap: 0.4rem;
}

/* line 491, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.6rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  font-size: 0.8rem;
}

/* line 501, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.app-badge i {
  font-size: 0.85rem;
  color: #C38761;
}

/* line 506, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.app-badge span {
  font-weight: 500;
  color: #fefefe;
}

/* line 511, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.app-badge .app-price-badge {
  padding: 0.15rem 0.35rem;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 500;
  color: #22c55e;
  margin-left: auto;
}

/* line 522, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.app-badge--compact {
  padding: 0.3rem 0.5rem;
  font-size: 0.75rem;
}

/* line 526, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.app-badge--compact i {
  font-size: 0.75rem;
}

/* Style pour apps incluses dans l'offre */
/* line 531, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.subscription-apps .apps-grid--compact .app-badge--compact {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.3);
}

/* line 535, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.subscription-apps .apps-grid--compact .app-badge--compact i {
  color: #22c55e;
}

/* line 536, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.subscription-apps .apps-grid--compact .app-badge--compact span {
  color: #22c55e;
}

/* ==========================================================================
   Boutons
   ========================================================================== */
/* line 543, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.account-page-capsule-subscription .btn-primary, .account-page-capsule-subscription .crm-action-button.crm-action-button-primary,
.account-page-capsule-subscription .btn-secondary,
.account-page-capsule-subscription .crm-action-button.crm-action-button-secondary,
.account-page-capsule-subscription .btn-danger {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
}

/* line 557, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.account-page-capsule-subscription .btn-primary i, .account-page-capsule-subscription .crm-action-button.crm-action-button-primary i,
.account-page-capsule-subscription .btn-secondary i,
.account-page-capsule-subscription .crm-action-button.crm-action-button-secondary i,
.account-page-capsule-subscription .btn-danger i {
  font-size: 0.8rem;
}

/* line 560, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.account-page-capsule-subscription .btn-primary, .account-page-capsule-subscription .crm-action-button.crm-action-button-primary {
  background: #C38761;
  color: #140D23;
}

/* line 564, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.account-page-capsule-subscription .btn-primary:hover, .account-page-capsule-subscription .crm-action-button.crm-action-button-primary:hover {
  background: #864B28;
}

/* line 569, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.account-page-capsule-subscription .btn-secondary, .account-page-capsule-subscription .crm-action-button.crm-action-button-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fefefe;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 574, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.account-page-capsule-subscription .btn-secondary:hover, .account-page-capsule-subscription .crm-action-button.crm-action-button-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* line 579, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.account-page-capsule-subscription .btn-danger {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* line 584, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.account-page-capsule-subscription .btn-danger:hover {
  background: rgba(239, 68, 68, 0.25);
}

/* line 589, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.account-page-capsule-subscription .btn-compact {
  padding: 0.4rem 0.75rem !important;
  font-size: 0.8rem !important;
}

/* line 594, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.account-page-capsule-subscription .form-button, .account-page-capsule-subscription .crm-action-button, .account-page-capsule-subscription .users-management-container .users-header .add-user-btn, .users-management-container .users-header .account-page-capsule-subscription .add-user-btn {
  padding: 0.6rem 1rem;
  background: #C38761;
  color: #140D23;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 605, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.account-page-capsule-subscription .form-button:hover:not(:disabled), .account-page-capsule-subscription .crm-action-button:hover:not(:disabled), .account-page-capsule-subscription .users-management-container .users-header .add-user-btn:hover:not(:disabled), .users-management-container .users-header .account-page-capsule-subscription .add-user-btn:hover:not(:disabled) {
  background: #864B28;
}

/* line 609, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.account-page-capsule-subscription .form-button:disabled, .account-page-capsule-subscription .crm-action-button:disabled, .account-page-capsule-subscription .users-management-container .users-header .add-user-btn:disabled, .users-management-container .users-header .account-page-capsule-subscription .add-user-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ==========================================================================
   Section Modifier mon abonnement
   ========================================================================== */
/* line 619, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.form-section-modify {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 624, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.form-section-modify:last-child {
  border-bottom: none;
}

/* line 628, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.form-section-modify h4, .form-section-modify .h4 {
  margin: 0 0 0.75rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: #fefefe;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* line 637, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.form-section-modify h4 i, .form-section-modify .h4 i {
  color: #C38761;
  font-size: 0.9rem;
}

/* line 643, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.form-section-modify .section-description {
  margin: 0 0 0.75rem 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

/* line 650, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.form-section-header-modify {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  gap: 1rem;
}

/* line 657, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.form-section-header-modify h4, .form-section-header-modify .h4 {
  margin: 0;
  flex: 1;
}

/* line 660, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.apps-price-badge-modify {
  padding: 0.35rem 0.75rem;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #22c55e;
}

/* Layout utilisateurs */
/* line 671, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.user-count-layout-modify {
  display: flex;
  gap: 1.5rem;
  align-items: flex-end;
}

@media (max-width: 1024px) {
  /* line 671, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
  .user-count-layout-modify {
    flex-direction: column;
  }
}

/* line 681, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.user-count-selection-modify {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.875rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
}

/* line 692, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.user-count-row-modify {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* line 699, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.user-count-display-compact {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

/* line 704, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.user-count-display-compact .user-count-value {
  font-size: 1.5rem;
  font-weight: 600;
  color: #C38761;
  line-height: 1;
}

/* line 711, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.user-count-display-compact .user-count-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 717, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.user-count-buttons-compact {
  display: flex;
  gap: 0.4rem;
}

/* line 722, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.user-count-btn-compact {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: #fefefe;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* line 736, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.user-count-btn-compact:hover {
  border-color: #C38761;
  background: rgba(195, 135, 97, 0.15);
}

/* line 741, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.user-count-btn-compact:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* line 747, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.user-count-slider-compact {
  padding: 0.4rem 0;
}

/* line 751, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.user-count-slider {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  outline: none;
  cursor: pointer;
  border-radius: 3px;
  appearance: none;
  -webkit-appearance: none;
}

/* line 761, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.user-count-slider:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* line 766, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.user-count-slider::-webkit-slider-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #C38761;
  cursor: pointer;
  border: 2px solid #ffffff;
}

/* line 776, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.user-count-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #C38761;
  cursor: pointer;
  border: 2px solid #ffffff;
}

/* line 786, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.slider-labels-compact {
  display: flex;
  justify-content: space-between;
  margin-top: 0.25rem;
}

/* line 791, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.slider-labels-compact span {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Section remises */
/* line 798, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.user-discounts-section-modify {
  flex: 0 0 350px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (max-width: 1024px) {
  /* line 798, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
  .user-discounts-section-modify {
    flex: 1;
    width: 100%;
  }
}

/* line 810, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.discounts-title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #C38761;
}

/* line 818, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.discounts-title i {
  font-size: 0.75rem;
}

/* line 821, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.discount-cards {
  display: flex;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  /* line 821, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
  .discount-cards {
    flex-direction: column;
  }
}

/* line 830, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.discount-card-opportunity {
  flex: 1;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* line 842, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.discount-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}

/* line 848, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.discount-card-header .discount-percentage {
  font-size: 1.1rem;
  font-weight: 600;
  color: #22c55e;
}

/* line 854, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.discount-card-header .discount-icon {
  width: 24px;
  height: 24px;
  background: rgba(34, 197, 94, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 863, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.discount-card-header .discount-icon i {
  color: #22c55e;
  font-size: 0.65rem;
}

/* line 870, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.discount-card-content {
  margin-bottom: 0.5rem;
}

/* line 873, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.discount-card-content .discount-threshold {
  font-size: 0.8rem;
  font-weight: 500;
  color: #fefefe;
  margin-bottom: 0.15rem;
}

/* line 880, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.discount-card-content .discount-description {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
}

/* line 886, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.discount-status {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.65rem;
  padding: 0.2rem 0.4rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 896, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.discount-status i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.55rem;
}

/* line 901, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.discount-status span {
  color: rgba(255, 255, 255, 0.6);
}

/* line 905, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.discount-status.achieved {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.3);
}

/* line 909, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.discount-status.achieved i {
  color: #22c55e;
}

/* line 910, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.discount-status.achieved span {
  color: #22c55e;
  font-weight: 500;
}

/* Sélection d'offres */
/* line 918, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.offers-selection-modify {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

/* line 925, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.offer-option-modify {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

/* line 937, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.offer-option-modify input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* line 943, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.offer-option-modify:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

/* line 948, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.offer-option-modify.is-selected {
  border-color: #C38761;
  background: rgba(195, 135, 97, 0.1);
}

/* line 952, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.offer-option-modify.is-selected::after {
  content: '✓';
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 18px;
  height: 18px;
  background: #C38761;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #140D23;
  font-size: 0.65rem;
  font-weight: bold;
}

/* line 971, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.offer-option-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 0.75rem;
}

/* line 979, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.offer-option-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}

/* line 985, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.offer-option-header i {
  font-size: 1rem;
  color: #C38761;
}

/* line 991, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.offer-option-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: #fefefe;
}

/* line 997, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.offer-option-description {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: right;
}

/* line 1003, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.section-description-modify {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.4rem;
  margin-bottom: 0;
}

/* Engagement */
/* line 1011, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.engagement-selection-modify {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* line 1017, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.engagement-options-modify {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.5rem;
}

/* line 1023, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.engagement-option-modify {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 1034, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.engagement-option-modify input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* line 1040, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.engagement-option-modify:hover:not(.is-disabled) {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

/* line 1045, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.engagement-option-modify.is-selected {
  border-color: #C38761;
  background: rgba(195, 135, 97, 0.1);
}

/* line 1050, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.engagement-option-modify.is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* line 1057, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.engagement-option-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-align: center;
}

/* line 1064, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.engagement-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #fefefe;
}

/* line 1070, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.engagement-description {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
}

/* line 1075, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.engagement-disabled-notice,
.annual-restriction-notice {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 6px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.5rem;
}

/* line 1088, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.engagement-disabled-notice i,
.annual-restriction-notice i {
  color: #3b82f6;
  font-size: 0.85rem;
}

/* line 1094, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.badge-disabled {
  display: inline-block;
  margin-left: 0.4rem;
  padding: 0.15rem 0.4rem;
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 500;
  color: #fbbf24;
}

/* Stockage */
/* line 1107, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.storage-info-box-modify {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  /* line 1107, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
  .storage-info-box-modify {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* line 1122, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.storage-current,
.storage-price {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
}

/* line 1130, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.storage-current i,
.storage-price i {
  color: #C38761;
}

/* line 1132, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.storage-current strong,
.storage-price strong {
  color: #fefefe;
  font-weight: 500;
}

/* line 1138, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.storage-slider-container-modify {
  margin-bottom: 1rem;
}

/* line 1142, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.storage-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
  /* line 1142, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
  .storage-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
}

/* line 1155, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.storage-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

/* line 1160, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.storage-label strong {
  color: #fefefe;
  font-size: 1rem;
}

/* line 1166, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.storage-cost {
  font-size: 1rem;
  font-weight: 600;
  color: #22c55e;
}

/* line 1172, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.storage-slider-container-modify .storage-slider {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.15);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  margin: 0.75rem 0;
}

/* line 1183, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.storage-slider-container-modify .storage-slider:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* line 1188, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.storage-slider-container-modify .storage-slider::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #C38761;
  cursor: pointer;
  border: 2px solid #ffffff;
}

/* line 1199, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.storage-slider-container-modify .storage-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #C38761;
  cursor: pointer;
  border: 2px solid #ffffff;
}

/* line 1209, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.storage-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 0.4rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Assistant Orizen */
/* line 1218, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.assistant-card-modify {
  width: 100%;
  margin-top: 0.4rem;
}

/* line 1223, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.assistant-card-label {
  display: block;
  cursor: pointer;
  width: 100%;
}

/* line 1229, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.assistant-checkbox-modify {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* line 1234, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.assistant-checkbox-modify:disabled + .assistant-card-content-modify {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* line 1241, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.assistant-card-content-modify {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transition: all 0.2s ease;
}

/* line 1252, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.assistant-card-content-modify:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

/* line 1258, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.assistant-card-left {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  flex: 1;
}

/* line 1265, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.assistant-icon-modify {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(195, 135, 97, 0.15);
  border-radius: 8px;
  border: 1px solid rgba(195, 135, 97, 0.3);
}

/* line 1276, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.assistant-icon-modify i {
  font-size: 1rem;
  color: #C38761;
}

/* line 1282, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.assistant-info-modify {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* line 1289, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.assistant-title-modify {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fefefe;
}

/* line 1296, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.assistant-description-modify {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
}

/* line 1302, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.assistant-description-modify strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* line 1308, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.assistant-card-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* line 1316, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.assistant-price-modify {
  font-size: 0.8rem;
  font-weight: 500;
  color: #22c55e;
}

/* line 1322, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.assistant-toggle-modify {
  position: relative;
  width: 44px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  transition: all 0.2s ease;
}

/* line 1331, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.toggle-slider-modify {
  position: absolute;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: transform 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* État checked */
/* line 1344, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.assistant-checkbox-modify:checked ~ .assistant-card-content-modify {
  background: rgba(195, 135, 97, 0.1);
  border-color: rgba(195, 135, 97, 0.4);
}

/* line 1348, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.assistant-checkbox-modify:checked ~ .assistant-card-content-modify .assistant-icon-modify {
  background: rgba(195, 135, 97, 0.2);
  border-color: rgba(195, 135, 97, 0.5);
}

/* line 1353, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.assistant-checkbox-modify:checked ~ .assistant-card-content-modify .assistant-toggle-modify {
  background: #C38761;
}

/* line 1357, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.assistant-checkbox-modify:checked ~ .assistant-card-content-modify .toggle-slider-modify {
  transform: translateX(20px);
}

/* line 1363, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.assistant-card-label:has(.assistant-checkbox-modify:checked) .assistant-card-content-modify .assistant-toggle-modify {
  background: #C38761;
}

/* line 1367, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.assistant-card-label:has(.assistant-checkbox-modify:checked) .assistant-card-content-modify .toggle-slider-modify {
  transform: translateX(20px);
}

/* line 1373, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.assistant-card-content-modify.assistant-active .assistant-toggle-modify {
  background: #C38761 !important;
}

/* line 1377, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.assistant-card-content-modify.assistant-active .toggle-slider-modify {
  transform: translateX(20px) !important;
}

/* Applications à la carte */
/* line 1383, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.apps-grid-modify {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
}

/* line 1389, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.app-card-selectable {
  position: relative;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* line 1401, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.app-card-selectable:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

/* line 1406, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.app-card-selectable .app-checkbox {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #C38761;
}

/* line 1416, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.app-card-selectable:has(.app-checkbox:checked) {
  border-color: #C38761;
  background: rgba(195, 135, 97, 0.1);
}

/* line 1422, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.app-icon-selectable {
  width: 36px;
  height: 36px;
  background: var(--dynamic-bg-color, #C38761);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: white;
}

/* line 1434, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.app-content-selectable {
  flex: 1;
}

/* line 1437, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.app-content-selectable h5, .app-content-selectable .h5 {
  margin: 0 0 0.3rem 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: #fefefe;
}

/* line 1444, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.app-content-selectable .app-description {
  margin: 0 0 0.3rem 0;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.3;
}

/* line 1451, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.app-content-selectable .app-price-selectable {
  font-size: 0.75rem;
  font-weight: 500;
  color: #22c55e;
}

/* Indicateur apps incluses */
/* line 1459, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.offer-included-apps-indicator {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.5rem;
  padding: 0.5rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 6px;
  font-size: 0.75rem;
}

/* line 1470, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.offer-included-apps-indicator i {
  color: #3b82f6;
  font-size: 0.8rem;
}

/* line 1475, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.offer-included-apps-indicator .included-apps-content {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

/* line 1481, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.offer-included-apps-indicator .included-apps-label {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
}

/* line 1487, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.offer-included-apps-indicator .included-apps-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

/* line 1493, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.offer-included-apps-indicator .included-app-badge {
  display: inline-block;
  padding: 0.15rem 0.35rem;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 4px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.9);
}

/* line 1503, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.offer-included-apps-indicator .no-apps {
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
}

/* ==========================================================================
   Récapitulatif
   ========================================================================== */
/* line 1513, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.summary-section {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 1rem;
}

/* line 1520, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.modification-summary {
  margin-bottom: 1rem;
}

/* line 1523, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.modification-summary h4, .modification-summary .h4 {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* line 1529, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.modification-summary h4 i, .modification-summary .h4 i {
  color: #C38761;
}

/* line 1533, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.summary-content-modify {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* line 1539, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.summary-line-modify {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
}

/* line 1547, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.summary-line-modify .label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

/* line 1552, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.summary-line-modify .value {
  font-weight: 500;
  color: #fefefe;
  font-size: 0.9rem;
}

/* line 1559, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.summary-total-modify {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* line 1567, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.summary-total-modify .label {
  font-size: 1rem;
  font-weight: 600;
  color: #fefefe;
}

/* line 1573, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.summary-total-modify .value {
  font-size: 1.2rem;
  font-weight: 600;
}

/* line 1577, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.summary-total-modify .value.positive {
  color: #22c55e;
}

/* line 1578, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.summary-total-modify .value.negative {
  color: #ef4444;
}

/* line 1582, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.summary-total-ttc {
  margin-top: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* line 1592, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.summary-total-ttc .label {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* line 1600, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.summary-total-ttc .label::before {
  content: '💳';
  font-size: 0.9rem;
}

/* line 1606, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.summary-total-ttc .value {
  font-size: 1.1rem;
  font-weight: 600;
}

/* line 1610, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.summary-total-ttc .value.positive {
  color: #22c55e;
}

/* line 1611, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.summary-total-ttc .value.negative {
  color: #ef4444;
}

/* line 1615, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.summary-difference {
  margin-top: 0.4rem;
  padding: 0.5rem 0.75rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* line 1625, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.summary-difference .difference-label-group {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}

/* line 1632, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.summary-difference .label {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
}

/* line 1639, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.summary-difference .prorata-note {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
}

/* line 1646, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.summary-difference .prorata-note i {
  color: #3b82f6;
  font-size: 0.65rem;
}

/* line 1652, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.summary-difference .value {
  font-size: 0.9rem;
  font-weight: 500;
  color: #3b82f6;
}

/* line 1657, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.summary-difference .value.positive {
  color: #3b82f6;
}

/* line 1658, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.summary-difference .value.negative {
  color: #ef4444;
}

/* line 1662, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.form-actions-modify {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}

/* line 1668, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.btn-submit-modify {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* État vide */
/* line 1677, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.empty-state {
  text-align: center;
  padding: 2rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 1682, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.empty-state i {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.75rem;
}

/* line 1688, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.empty-state p {
  margin: 0;
  font-size: 0.95rem;
}

/* line 1694, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.empty-state-modify {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 1701, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.empty-state-modify i {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
}

/* line 1707, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
.empty-state-modify p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 768px) {
  /* line 1719, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
  .subscription-card__body--two-columns {
    flex-direction: column;
  }
  /* line 1724, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
  .subscription-details-column {
    flex-direction: column;
  }
  /* line 1728, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
  .apps-grid-modify {
    grid-template-columns: 1fr;
  }
  /* line 1732, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
  .engagement-options-modify {
    grid-template-columns: repeat(2, 1fr);
  }
  /* line 1736, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
  .user-count-layout-modify {
    flex-direction: column;
  }
  /* line 1740, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
  .user-discounts-section-modify {
    width: 100%;
  }
  /* line 1744, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
  .assistant-card-content-modify {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  /* line 1750, app/assets/stylesheets/pages/customerspace/_subscriptions.scss */
  .assistant-card-right {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* line 1, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 20%;
  padding: 10px;
  gap: 10px;
}

/* line 12, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-menu-separator {
  height: 0%;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

/* line 20, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-separator {
  height: 95%;
  width: 0%;
  margin-top: auto;
  margin-bottom: auto;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}

/* line 28, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 80%;
  padding: 10px;
  gap: 10px;
}

/* line 39, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.service-adv-title {
  height: 6%;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #fefefe;
  gap: 10px;
  border-radius: 8px;
  text-align: center;
  justify-content: center;
}

/* line 52, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.service-adv-title h1, .service-adv-title .h1 {
  font-size: 1.2rem;
  margin: 0;
}

/* line 58, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.service-adv-title p {
  margin-top: auto;
  margin-bottom: auto;
  font-size: 1.4rem;
}

/* line 64, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-top-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 10%;
  width: 100%;
  padding: 10px;
  gap: 10px;
}

/* line 75, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-search {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 10px;
  gap: 10px;
}

/* line 89, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-create {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  width: 30%;
  padding: 10px;
  margin: 10px;
  gap: 10px;
}

/* line 99, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-create .btn {
  font-size: 0.6rem;
  padding: 5px 15px;
}

/* line 105, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.vignette-services-adv-list {
  background-color: rgba(255, 255, 255, 0.8);
  color: black;
  border-radius: 10px;
  width: 100%;
  height: 85%;
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 116, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-list {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  overflow-x: hidden;
}

/* line 126, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-item-separator {
  height: 0%;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

/* line 132, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-item-title {
  height: 4%;
  width: 70%;
  display: flex;
  flex-direction: row;
  gap: 5px;
  text-align: center;
  align-items: center;
  font-size: 0.8rem;
}

/* line 145, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-item {
  height: 96%;
  display: flex;
  flex-direction: row;
  color: black;
}

/* line 154, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-item-infos {
  display: flex;
  flex-direction: row;
  gap: 5px;
  text-align: center;
  width: 70%;
}

/* line 162, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-item-commands {
  display: flex;
  flex-direction: row;
  gap: 5px;
  text-align: center;
  width: 30%;
}

/* line 170, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-item-infos p {
  margin: 0;
}

/* line 174, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-quote-item-infos {
  width: 20%;
  text-align: center;
}

/* line 180, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-item-infos-title {
  width: 25%;
}

/* line 185, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-item-infos-type {
  width: 25%;
}

/* line 190, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-item-infos-description {
  width: 25%;
}

/* line 195, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-cards {
  height: 90%;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 5%;
  padding: 50px;
  overflow-y: auto;
}

/* line 212, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-card {
  background-color: rgba(255, 255, 255, 0.8);
  min-height: 220px;
  height: 50%;
  width: 100%;
  color: black;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  transition: 0.4s ease-out;
  position: relative;
}

/* line 227, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-card:hover {
  transform: translateY(-10px);
  transition: 0.4s ease-out;
}

/* line 232, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-card:hover ~ .card {
  position: relative;
  left: 50px;
  transition: 0.4s ease-out;
}

/* line 239, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-card-infos-topline {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 10%;
  width: 100%;
  position: relative;
}

/* line 249, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-card-infos-id {
  font-size: 0.6rem;
  margin-bottom: 0.1rem;
  height: 100%;
  width: 85%;
  position: relative;
}

/* line 258, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-card-infos-cross {
  font-size: 0.8rem;
  margin-bottom: 0.1rem;
  color: #A60240;
  height: 100%;
  aspect-ratio: 1/1;
  position: relative;
  border: 2px solid #A60240;
  border-radius: 50%;
  align-items: center;
  vertical-align: middle;
}

/* line 272, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-card-infos-title {
  font-size: 0.6rem;
  margin-bottom: 0.1rem;
  height: 10%;
  width: 100%;
  overflow: hidden;
}

/* line 281, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-card-infos-illustration {
  height: 80%;
  width: 100%;
  border-radius: 10px;
  text-align: center;
  align-content: center;
  margin-bottom: 0rem;
}

/* line 291, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-card-infos-illustration img {
  width: 70%;
  /* Ne dépasse pas la largeur du parent */
  height: auto;
  border-radius: 5px;
  object-fit: contain;
}

/* line 299, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-card-infos-picto {
  color: #A60240;
  font-size: 10rem;
  height: 70%;
  width: 100%;
  display: flex;
  text-align: center;
  align-items: center;
}

/* line 309, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-card-infos-picto i {
  color: #A60240;
  font-size: 6rem;
  margin: auto;
}

/* line 315, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-card-infos-description {
  height: 30%;
  width: 100%;
  display: flex;
  color: #A60240;
  font-size: 0.8rem;
}

/* line 326, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-form-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 10px;
  padding: 10px;
}

/* line 333, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-form-container label {
  opacity: 1;
}

/* line 339, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-form-category-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* line 345, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-form-category-container label {
  opacity: 1;
}

/* line 350, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-document-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
}

/* line 358, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-document-form h2, .services-adv-document-form .h2 {
  font-size: 0.8rem;
  margin: 0;
}

/* line 363, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.form-group {
  display: flex;
  gap: 10px;
  width: 100%;
}

/* line 368, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.form-group input:focus {
  background-color: transparent;
}

/* line 372, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.form-group .btn-three {
  font-size: 0.6rem;
  padding: 5px 15px;
}

/* line 376, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.form-group .btn {
  font-size: 0.6rem;
  padding: 5px 15px;
}

/* line 382, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-quote-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 10px;
  gap: 10px;
}

/* line 392, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.quote-form {
  display: grid;
  grid-template-columns: 40% 60%;
  grid-template-rows: 90% 10%;
  width: 100%;
  height: 100%;
  gap: 15px;
}

/* line 402, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
h2, .h2 {
  font-size: 0.6rem;
}

/* line 405, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.search-results {
  display: flex;
  min-height: 30px;
  width: 97% !important;
  align-items: center;
  justify-content: start;
  gap: 5px;
  padding: 5px;
  border-radius: 0.375rem;
  flex-wrap: nowrap;
  cursor: pointer;
}

/* line 416, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.search-results label {
  opacity: 1;
}

/* line 419, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.search-results p {
  all: unset;
  font-size: 0.7rem !important;
  margin: 0;
  font-weight: normal !important;
  color: #140D23 !important;
}

/* line 427, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.search-results .btn {
  font-size: 0.6rem;
  padding: 5px 15px;
}

/* line 431, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.search-results:hover {
  background-color: rgba(254, 254, 254, 0.5);
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

/* line 438, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.articles-results {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  flex-wrap: nowrap;
  font-size: 0.7rem;
}

/* line 447, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.articles-results p {
  margin: 0;
}

/* line 450, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.articles-results .btn {
  font-size: 0.6rem;
}

/* line 454, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.btn-special {
  color: #140D23;
  border-radius: 30px;
  height: 100%;
  width: 100%;
  padding-top: auto;
  padding-bottom: auto;
  display: flex;
  text-align: center;
  justify-content: center;
  cursor: pointer;
}

/* line 468, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.btn-special span {
  margin-top: auto;
  margin-bottom: auto;
  font-size: 0.6rem;
  font-weight: 600;
}

/* line 476, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-quote-search {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 10px;
  gap: 10px;
}

/* line 488, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-quote-search .search-form {
  min-width: 400px;
}

/* line 495, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.results {
  min-height: 50px;
  max-height: 200px;
  overflow-y: auto;
  width: 100%;
  /* Personnalisation de la barre de défilement */
}

/* line 502, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.results::-webkit-scrollbar {
  width: 5px;
  /* Largeur de la barre de défilement */
}

/* line 506, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.results::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  /* Couleur de l'arrière-plan de la barre */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 511, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.results::-webkit-scrollbar-thumb {
  background: #C38761;
  /* Couleur de la barre de défilement */
  border-radius: 10px;
  /* Coins arrondis */
  border: 4px solid #e8e8e8;
  /* Couleur de la bordure */
}

/* line 517, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.results::-webkit-scrollbar-thumb:hover {
  background: #fefefe;
  /* Couleur de la barre au survol */
}

/* line 522, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-search-articles {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  gap: 10px;
}

/* line 531, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-search-articles .form-group {
  margin: 0 !important;
}

/* line 535, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-search-articles .results {
  display: flex;
  justify-content: start;
  flex-direction: column;
  width: 100%;
  position: absolute;
  display: flex;
  justify-content: start;
  flex-direction: column;
  border-radius: 5px;
  padding: 10px;
  top: 100%;
  left: 0;
  transform: translateY(0);
  z-index: 1000;
  background-color: #e8e8e8;
  min-height: 50px;
  min-height: 200px;
  overflow-y: auto;
}

/* line 555, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-search-articles .results .search-results {
  width: 100%;
}

/* line 589, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.basket {
  width: 100%;
}

/* line 593, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.type-of-order-section {
  height: 50%;
  width: 100%;
}

/* line 598, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.type-of-recipient-section {
  height: 50%;
  width: 100%;
}

/* line 603, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.recipient-search {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 10px;
}

/* line 612, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.type-of-order-search {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 15px;
}

/* line 622, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.quote-actions {
  display: flex;
}

/* line 624, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.quote-actions .btn {
  font-size: 0.6rem;
  padding: 5px 15px;
}

/* line 630, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.search-input {
  width: 250px;
  height: 25px;
  font-size: 0.6rem;
}

/* line 634, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.search-input::placeholder {
  color: black;
  font-weight: lighter;
  font-style: italic;
}

/* line 640, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.search-article-input {
  width: 250px;
  height: 25px;
  font-size: 0.6rem;
  border-radius: 0.375rem;
}

/* line 645, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.search-article-input::placeholder {
  color: black;
  font-weight: lighter;
  font-style: italic;
}

/* line 651, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.search-input {
  all: unset;
  width: 100%;
  background-color: transparent;
  height: 100%;
  font-size: 0.7rem;
}

/* line 657, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.search-input::placeholder {
  color: rgba(254, 254, 254, 0.5);
  font-weight: normal;
}

/* line 663, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.trash {
  cursor: pointer;
  font-size: 0.8rem;
}

/* line 666, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.trash:hover {
  color: #A60240;
}

/* line 672, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
select {
  all: unset;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(254, 254, 254, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: normal;
  padding: 5px 15px;
  /* Personnalisation de la barre de défilement */
}

/* line 684, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
select:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 688, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
select:open {
  background-color: transparent;
}

/* line 693, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
select::-webkit-scrollbar {
  width: 10px;
  /* Largeur de la barre de défilement */
}

/* line 697, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
select::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  /* Couleur de l'arrière-plan de la barre */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 702, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
select::-webkit-scrollbar-thumb {
  background: #C38761;
  /* Couleur de la barre de défilement */
  border-radius: 10px;
  /* Coins arrondis */
  border: 2px solid transparent;
  /* Couleur de la bordure */
}

/* line 708, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
select::-webkit-scrollbar-thumb:hover {
  background: #C38761;
  /* Couleur de la barre au survol */
}

/* line 711, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
select option {
  all: unset;
  background-color: #E8E8E8;
  color: #000000;
}

/* line 718, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.total-basket {
  font-size: 1rem;
  font-weight: bold;
}

/* line 724, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.quote-table .services-adv-item-infos-actions {
  display: flex;
  flex-direction: row;
  gap: 5px;
  text-align: center;
  justify-content: center;
  width: 100%;
}

/* line 733, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.quote-table thead th {
  background: none;
  text-align: center;
}

/* line 739, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.quote-table tbody tr {
  cursor: pointer;
  height: 30px;
}

/* line 742, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.quote-table tbody tr:hover {
  background-color: rgba(254, 254, 254, 0.5);
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

/* line 747, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.quote-table tbody tr td {
  font-size: 0.7rem;
}

/* line 752, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.quote-table .quote-states {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* line 759, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.quote-table .quote-states .btn {
  font-size: 0.6rem;
  padding: 5px 15px;
}

/* line 764, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.quote-table .quote-pdf {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* line 769, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.quote-table .quote-pdf .btn {
  font-size: 0.6rem;
  padding: 5px 15px;
}

/* line 774, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.quote-table .conditional-quote-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 778, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.quote-table .conditional-quote-actions .btn {
  font-size: 0.6rem;
  padding: 5px 15px;
}

/* line 785, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.services-adv-quote-item-infos-title {
  width: 25%;
}

/* line 790, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.search-button {
  margin-left: 5px !important;
}

/* line 792, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv.scss */
.search-button i {
  font-size: 0.8rem !important;
}

/* ==========================================================================
   SECTION DE RECHERCHE ADV - Style avec dégradé
   ========================================================================== */
/* line 5, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_searchbar.scss */
.adv-search-section {
  background: none;
  border: none;
  border-radius: 12px;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

/* Classe générique pour les barres de recherche ADV */
/* line 17, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_searchbar.scss */
.adv-searchbar {
  width: 100%;
  background: rgba(254, 254, 254, 0.08);
  border: 1px solid rgba(254, 254, 254, 0.2);
  border-radius: 12px;
  padding: 10px 16px 10px 45px;
  color: #fefefe;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

/* line 27, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_searchbar.scss */
.lightmode .adv-searchbar {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 33, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_searchbar.scss */
.adv-searchbar::placeholder {
  color: rgba(254, 254, 254, 0.5);
}

/* line 36, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_searchbar.scss */
.lightmode .adv-searchbar::placeholder {
  color: rgba(20, 13, 35, 0.5);
}

/* line 41, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_searchbar.scss */
.adv-searchbar:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* Container pour les barres de recherche avec bouton */
/* line 49, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_searchbar.scss */
.adv-searchbar-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

/* line 56, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_searchbar.scss */
.adv-searchbar-container .search-form {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

/* line 63, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_searchbar.scss */
.adv-searchbar-container i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(254, 254, 254, 0.6);
  font-size: 0.9rem;
  z-index: 2;
}

/* line 72, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_searchbar.scss */
.lightmode .adv-searchbar-container i {
  color: rgba(20, 13, 35, 0.6);
}

/* line 77, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_searchbar.scss */
.adv-searchbar-container button {
  all: unset;
  padding: 8px 12px;
  background: #C38761;
  border-radius: 8px;
  color: #140D23;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 86, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_searchbar.scss */
.adv-searchbar-container button:hover {
  background: #864B28;
  transform: scale(1.05);
}

/* line 91, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_searchbar.scss */
.adv-searchbar-container button i {
  position: static;
  transform: none;
  color: #140D23;
}

/* Classe pour forcer la largeur complète */
/* line 100, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_searchbar.scss */
.full-width {
  width: 100% !important;
}

/* ==========================================================================
   TURBO FRAME POUR RÉSULTATS DE RECHERCHE
   ========================================================================== */
/* Turbo Frame pour les résultats de recherche dynamique */
/* line 109, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_searchbar.scss */
turbo-frame#search-results {
  display: block;
  width: 100%;
  min-height: 200px;
  height: 100%;
  /* État de chargement */
  /* Animation de transition */
}

/* line 116, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_searchbar.scss */
turbo-frame#search-results.is-loading {
  opacity: 0.6;
  pointer-events: none;
}

/* line 122, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_searchbar.scss */
turbo-frame#search-results > * {
  animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Indicateur de chargement dans la barre de recherche */
/* line 139, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_searchbar.scss */
.adv-search-loading {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #C38761;
  font-size: 1rem;
  z-index: 2;
}

/* line 148, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_searchbar.scss */
.adv-search-loading.d-none {
  display: none;
}

/* ==========================================================================
   ADV BUTTONS - MODULE ADV
   Classes homogènes pour les boutons d'actions du module ADV
   ========================================================================== */
/* ==========================================================================
   CLASSE PRINCIPALE POUR TOUS LES BOUTONS ADV
   ========================================================================== */
/* line 9, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-button, .adv-button-disabled, .adv-button-warning, .adv-button-success, .adv-cancel-button, .adv-back-button, .adv-button-regular {
  padding: 12px 24px;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

/* line 24, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.lightmode .adv-button, .lightmode .adv-button-disabled, .lightmode .adv-button-warning, .lightmode .adv-button-success, .lightmode .adv-cancel-button, .lightmode .adv-back-button, .lightmode .adv-button-regular {
  border-color: rgba(20, 13, 35, 0.3);
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 30, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-button:hover, .adv-button-disabled:hover, .adv-button-warning:hover, .adv-button-success:hover, .adv-cancel-button:hover, .adv-back-button:hover, .adv-button-regular:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* line 35, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.lightmode .adv-button:hover, .lightmode .adv-button-disabled:hover, .lightmode .adv-button-warning:hover, .lightmode .adv-button-success:hover, .lightmode .adv-cancel-button:hover, .lightmode .adv-back-button:hover, .lightmode .adv-button-regular:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* line 40, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-button:focus, .adv-button-disabled:focus, .adv-button-warning:focus, .adv-button-success:focus, .adv-cancel-button:focus, .adv-back-button:focus, .adv-button-regular:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.3);
}

/* line 45, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-button:disabled, .adv-button-disabled:disabled, .adv-button-warning:disabled, .adv-button-success:disabled, .adv-cancel-button:disabled, .adv-back-button:disabled, .adv-button-regular:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* line 50, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-button:disabled:hover, .adv-button-disabled:disabled:hover, .adv-button-warning:disabled:hover, .adv-button-success:disabled:hover, .adv-cancel-button:disabled:hover, .adv-back-button:disabled:hover, .adv-button-regular:disabled:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: none;
  box-shadow: none;
}

/* line 55, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.lightmode .adv-button:disabled:hover, .lightmode .adv-button-disabled:disabled:hover, .lightmode .adv-button-warning:disabled:hover, .lightmode .adv-button-success:disabled:hover, .lightmode .adv-cancel-button:disabled:hover, .lightmode .adv-back-button:disabled:hover, .lightmode .adv-button-regular:disabled:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* ==========================================================================
   BOUTON RÉGULIER (PRINCIPAL) - Basé sur le bouton "Valider"
   ========================================================================== */
/* line 65, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-button-regular {
  background-color: #E5A82E;
  border-color: #C38761;
  color: #140D23;
}

/* line 71, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.lightmode .adv-button-regular {
  background-color: #c38761;
  border-color: #c38761;
  color: #140D23;
}

/* line 77, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-button-regular:hover {
  background-color: #af6c42;
  border-color: #af6c42;
  transform: translateY(-2px);
  color: #140D23;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* line 84, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.lightmode .adv-button-regular:hover {
  background-color: rgba(195, 135, 97, 0.9);
  border-color: rgba(195, 135, 97, 0.9);
  color: #140D23;
}

/* line 91, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-button-regular:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.3);
}

/* line 96, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-button-regular:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* line 101, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-button-regular:disabled:hover {
  background-color: #C38761;
  border-color: #C38761;
  transform: none;
  box-shadow: none;
}

/* ==========================================================================
   BOUTON RETOUR/SECONDAIRE - Basé sur le bouton "Créer un avoir complet"
   ========================================================================== */
/* line 113, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-back-button {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
}

/* line 119, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.lightmode .adv-back-button {
  background-color: rgba(20, 13, 35, 0.15);
  border-color: rgba(20, 13, 35, 0.4);
  color: #140D23;
}

/* line 125, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-back-button:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* line 131, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.lightmode .adv-back-button:hover {
  background-color: rgba(20, 13, 35, 0.25);
  color: #140D23;
}

/* line 137, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-back-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* line 141, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.lightmode .adv-back-button:focus {
  box-shadow: 0 0 0 3px rgba(20, 13, 35, 0.3);
}

/* line 146, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-back-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* line 151, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-back-button:disabled:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: none;
  box-shadow: none;
}

/* line 156, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.lightmode .adv-back-button:disabled:hover {
  background-color: rgba(20, 13, 35, 0.15);
}

/* ==========================================================================
   BOUTON ANNULER - Basé sur le bouton "Annuler"
   ========================================================================== */
/* line 166, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-cancel-button {
  background-color: rgba(220, 53, 69, 0.8);
  border-color: rgba(220, 53, 69, 0.8);
  color: white;
}

/* line 172, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.lightmode .adv-cancel-button {
  background-color: rgba(220, 53, 69, 0.8);
  border-color: rgba(220, 53, 69, 0.8);
  color: white;
}

/* line 178, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-cancel-button:hover {
  background-color: rgba(220, 53, 69, 0.9);
  border-color: rgba(220, 53, 69, 0.9);
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* line 185, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.lightmode .adv-cancel-button:hover {
  background-color: rgba(220, 53, 69, 0.7);
  border-color: rgba(220, 53, 69, 0.7);
  color: white;
}

/* line 192, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-cancel-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.3);
}

/* line 197, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-cancel-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* line 202, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-cancel-button:disabled:hover {
  background-color: rgba(220, 53, 69, 0.8);
  border-color: rgba(220, 53, 69, 0.8);
  transform: none;
  box-shadow: none;
}

/* ==========================================================================
   BOUTON SUCCESS - Pour actions de validation/paiement
   ========================================================================== */
/* line 214, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-button-success {
  background: linear-gradient(135deg, #10b981 0%, #22c55e 100%);
  border-color: #10b981;
  color: white;
  font-weight: 600;
}

/* line 221, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.lightmode .adv-button-success {
  background: linear-gradient(135deg, #10b981 0%, #22c55e 100%);
  border-color: #10b981;
  color: white;
}

/* line 228, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-button-success:not(:disabled):hover {
  background: linear-gradient(135deg, #0d9367 0%, #1ca24d 100%);
  border-color: #0d9367;
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

/* line 235, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.lightmode .adv-button-success:not(:disabled):hover {
  background: linear-gradient(135deg, #0d9367 0%, #1ca24d 100%);
  border-color: #0d9367;
  color: white;
}

/* line 241, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-button-success:not(:disabled):hover i {
  color: white !important;
  transform: scale(1.15);
}

/* line 247, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-button-success:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.3);
}

/* line 252, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-button-success:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* line 257, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-button-success:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* line 264, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-button-success:disabled:hover {
  background: linear-gradient(135deg, #10b981 0%, #22c55e 100%);
  border-color: #10b981;
  transform: none;
  box-shadow: none;
}

/* line 272, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-button-success i {
  color: white !important;
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}

/* ==========================================================================
   BOUTON WARNING - Pour actions nécessitant attention
   ========================================================================== */
/* line 282, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-button-warning {
  background: linear-gradient(135deg, #ff9800 0%, #ff6f00 100%);
  border-color: #ff9800;
  color: white;
}

/* line 288, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.lightmode .adv-button-warning {
  background: linear-gradient(135deg, #ff9800 0%, #ff6f00 100%);
  border-color: #ff9800;
  color: white;
}

/* line 294, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-button-warning:hover {
  background: linear-gradient(135deg, #ff6f00 0%, #ff5722 100%);
  border-color: #ff6f00;
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
}

/* line 301, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.lightmode .adv-button-warning:hover {
  background: linear-gradient(135deg, #ff6f00 0%, #ff5722 100%);
  border-color: #ff6f00;
  color: white;
}

/* line 308, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-button-warning:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.3);
}

/* line 313, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-button-warning:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* line 318, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-button-warning:disabled:hover {
  background: linear-gradient(135deg, #ff9800 0%, #ff6f00 100%);
  border-color: #ff9800;
  transform: none;
  box-shadow: none;
}

/* ==========================================================================
   VARIANTES DE TAILLE
   ========================================================================== */
/* line 330, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-button-small {
  padding: 8px 16px;
  font-size: 0.8rem;
  border-radius: 15px;
  height: fit-content;
  white-space: nowrap;
}

/* line 338, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-button-large {
  padding: 16px 32px;
  font-size: 1rem;
  border-radius: 15px;
}

/* ==========================================================================
   VARIANTES AVEC ICÔNES
   ========================================================================== */
/* line 348, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-button-with-icon i {
  font-size: 0.8rem;
}

/* line 352, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-button-with-icon.adv-button-small i {
  font-size: 0.7rem;
}

/* line 356, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-button-with-icon.adv-button-large i {
  font-size: 0.9rem;
}

/* ==========================================================================
   BOUTONS EN GROUPE
   ========================================================================== */
/* line 364, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-button-group {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* line 369, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-button-group.adv-button-group-vertical {
  flex-direction: column;
  align-items: stretch;
}

/* line 374, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-button-group.adv-button-group-centered {
  justify-content: center;
}

/* line 378, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-button-group.adv-button-group-end {
  justify-content: flex-end;
}

/* line 382, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-button-group.adv-button-group-space-between {
  justify-content: space-between;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 768px) {
  /* line 391, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
  .adv-button, .adv-button-disabled, .adv-button-regular, .adv-back-button, .adv-cancel-button, .adv-button-success, .adv-button-warning {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
  /* line 396, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
  .adv-button-small {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
  /* line 401, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
  .adv-button-large {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
  /* line 406, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
  .adv-button-group {
    flex-direction: column;
    gap: 8px;
  }
  /* line 410, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
  .adv-button-group.adv-button-group-vertical {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  /* line 417, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
  .adv-button, .adv-button-disabled, .adv-button-regular, .adv-back-button, .adv-cancel-button, .adv-button-success, .adv-button-warning {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
  /* line 422, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
  .adv-button-small {
    padding: 5px 10px;
    font-size: 0.7rem;
  }
  /* line 427, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
  .adv-button-large {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

/* ==========================================================================
   BOUTON DÉSACTIVÉ - Pour fonctionnalités nécessitant le mode Entreprise
   ========================================================================== */
/* line 436, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-button-disabled {
  background-color: rgba(128, 128, 128, 0.3);
  border-color: rgba(128, 128, 128, 0.5);
  color: rgba(255, 255, 255, 0.6);
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: none;
}

/* line 445, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.lightmode .adv-button-disabled {
  background-color: rgba(128, 128, 128, 0.2);
  border-color: rgba(128, 128, 128, 0.4);
  color: rgba(20, 13, 35, 0.5);
}

/* line 451, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-button-disabled:hover {
  background-color: rgba(128, 128, 128, 0.3);
  transform: none;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.6);
}

/* line 457, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.lightmode .adv-button-disabled:hover {
  background-color: rgba(128, 128, 128, 0.2);
  color: rgba(20, 13, 35, 0.5);
}

/* line 463, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.adv-button-disabled i {
  opacity: 0.6;
}

/* ==========================================================================
   MESSAGE D'AVERTISSEMENT MODE ENTREPRISE
   ========================================================================== */
/* line 471, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.business-mode-warning {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ff9800;
  font-size: 0.85rem;
  font-weight: 500;
}

/* line 479, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.business-mode-warning i {
  font-size: 0.9rem;
}

/* line 483, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.lightmode .business-mode-warning {
  color: #ff9800;
}

/* line 488, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.business-mode-warning--inline {
  margin-left: 10px;
  color: #ff9800;
  font-size: 0.85rem;
}

/* line 495, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_buttons.scss */
.business-mode-warning--block {
  margin-top: 8px;
}

/* ==========================================================================
   ADV ICON COLORS - HARMONISATION DES COULEURS DES PICTOGRAMMES
   Harmonise les couleurs des pictos avec le texte des boutons
   ========================================================================== */
/* ==========================================================================
   PICTOGRAMMES DE RECHERCHE - COULEUR DEEPBLUE
   ========================================================================== */
/* line 11, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_icon_colors.scss */
.adv-searchbar-container .search-button i {
  color: #140D23 !important;
  font-size: 0.8rem !important;
}

/* Styles spécifiques pour les boutons de recherche dans les listes */
/* line 27, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_icon_colors.scss */
.adv-category-list-search-button i,
.adv-customer-list-search-button i,
.adv-order-form-list-search-button i,
.adv-quote-list-search-button i,
.adv-client-acceptance-report-list-search-button i,
.adv-invoice-list-search-button i,
.adv-contract-list-search-button i,
.adv-sales-articles-list-search-button i {
  color: #140D23 !important;
}

/* Override pour forcer la couleur deepblue sur tous les pictos de recherche */
/* line 33, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_icon_colors.scss */
.adv-searchbar-container .search-button i,
.adv-category-list-capsule .search-button i,
.adv-customer-list-capsule .search-button i,
.adv-order-form-list-capsule .search-button i,
.adv-quote-list-capsule .search-button i,
.adv-client-acceptance-report-list-capsule .search-button i,
.adv-invoice-list-capsule .search-button i,
.adv-contract-list-capsule .search-button i,
.adv-sales-articles-list-capsule .search-button i {
  color: #140D23 !important;
}

/* ==========================================================================
   PICTOGRAMMES DANS LES BOUTONS ADV - HARMONISATION AVEC LE TEXTE
   ========================================================================== */
/* Boutons réguliers (adv-button-regular) - Texte deepblue */
/* line 51, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_icon_colors.scss */
.adv-button-regular i {
  color: #140D23 !important;
}

/* line 55, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_icon_colors.scss */
.adv-button-regular:hover i {
  color: #140D23 !important;
}

/* Boutons de retour (adv-back-button) - Texte deepblue en lightmode */
/* line 62, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_icon_colors.scss */
.adv-back-button i {
  color: white !important;
}

/* line 67, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_icon_colors.scss */
.lightmode .adv-back-button i {
  color: #140D23 !important;
}

/* line 72, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_icon_colors.scss */
.adv-back-button:hover i {
  color: white !important;
}

/* line 76, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_icon_colors.scss */
.lightmode .adv-back-button:hover i {
  color: #140D23 !important;
}

/* Boutons d'annulation (adv-cancel-button) - Texte blanc */
/* line 83, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_icon_colors.scss */
.adv-cancel-button i {
  color: white !important;
}

/* line 87, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_icon_colors.scss */
.adv-cancel-button:hover i {
  color: white !important;
}

/* ==========================================================================
   PICTOGRAMMES DANS LES BOUTONS D'ACTIONS - HARMONISATION AVEC LE TEXTE
   ========================================================================== */
/* Boutons d'actions primaires - Texte deepblue */
/* line 98, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_icon_colors.scss */
.adv-action-button.adv-action-button-primary i {
  color: #140D23 !important;
}

/* line 102, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_icon_colors.scss */
.adv-action-button.adv-action-button-primary:hover i {
  color: #140D23 !important;
}

/* Boutons d'actions secondaires - Texte blanc/deepblue selon le mode */
/* line 109, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_icon_colors.scss */
.adv-action-button.adv-action-button-secondary i {
  color: white !important;
}

/* line 114, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_icon_colors.scss */
.lightmode .adv-action-button.adv-action-button-secondary i {
  color: #140D23 !important;
}

/* line 119, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_icon_colors.scss */
.adv-action-button.adv-action-button-secondary:hover i {
  color: white !important;
}

/* line 123, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_icon_colors.scss */
.lightmode .adv-action-button.adv-action-button-secondary:hover i {
  color: #140D23 !important;
}

/* Boutons d'actions d'annulation - Texte blanc */
/* line 131, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_icon_colors.scss */
.adv-action-button.adv-action-button-cancel i,
.adv-action-button.adv-action-button-danger i {
  color: white !important;
}

/* line 135, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_icon_colors.scss */
.adv-action-button.adv-action-button-cancel:hover i,
.adv-action-button.adv-action-button-danger:hover i {
  color: white !important;
}

/* ==========================================================================
   PICTOGRAMMES DANS LES BOUTONS DE RECHERCHE - COULEUR DEEPBLUE
   ========================================================================== */
/* line 143, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_icon_colors.scss */
.adv-searchbar-container .search-button i,
.adv-category-list-capsule .search-button i,
.adv-customer-list-capsule .search-button i,
.adv-order-form-list-capsule .search-button i,
.adv-quote-list-capsule .search-button i,
.adv-client-acceptance-report-list-capsule .search-button i,
.adv-invoice-list-capsule .search-button i,
.adv-contract-list-capsule .search-button i,
.adv-sales-articles-list-capsule .search-button i {
  color: #140D23 !important;
}

/* ==========================================================================
   ADV DASHBOARD - MODULE ADV
   Dashboard complet avec widgets, statistiques et graphiques
   Inspiré du thème CRM existant avec adaptation responsive
   ========================================================================== */
/* ==========================================================================
   CONTAINER PRINCIPAL - Structure générale du dashboard
   ========================================================================== */
/* line 11, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding-right: 10px;
  font-size: 1rem;
  gap: 20px;
  overflow: auto;
  /* Personnalisation de la barre de défilement */
}

/* line 24, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule::-webkit-scrollbar {
  width: 8px;
}

/* line 28, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 33, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 38, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule::-webkit-scrollbar-thumb:hover {
  background: #fefefe;
}

/* line 42, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule.lightmode {
  color: #140D23;
}

/* line 46, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule.nightmode {
  color: #fefefe;
}

/* line 50, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule h1, .adv-dashboard-capsule .h1,
.adv-dashboard-capsule h2,
.adv-dashboard-capsule .h2,
.adv-dashboard-capsule h3,
.adv-dashboard-capsule .h3 {
  font-weight: 600;
  margin: 0;
}

/* line 57, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule p {
  font-size: 0.9rem;
  margin: 0;
}

/* ==========================================================================
   HEADER DU DASHBOARD
   ========================================================================== */
/* line 67, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(254, 254, 254, 0.2);
}

/* line 73, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule.lightmode .adv-dashboard-header {
  border-bottom-color: rgba(20, 13, 35, 0.2);
}

/* line 77, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-header h1, .adv-dashboard-header .h1 {
  font-size: 2rem;
  color: #fefefe;
  margin-bottom: 10px;
}

/* line 82, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule.lightmode .adv-dashboard-header h1, .adv-dashboard-capsule.lightmode .adv-dashboard-header .h1 {
  color: #140D23;
}

@media (max-width: 768px) {
  /* line 77, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
  .adv-dashboard-header h1, .adv-dashboard-header .h1 {
    font-size: 1.5rem;
  }
}

/* line 91, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-header .dashboard-period {
  font-size: 1rem;
  color: #C38761;
  font-weight: 500;
}

/* ==========================================================================
   GRID CONTAINER - Structure en grille selon l'image
   ========================================================================== */
/* line 102, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-grid-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto auto auto;
  gap: 10px;
  flex-grow: 1;
  /* Définition des zones selon l'image */
  grid-template-areas: "quotes quotes contracts" "articles orders clients" "invoices invoices cgv" "chart chart chart";
}

@media (max-width: 1200px) {
  /* line 102, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
  .adv-dashboard-grid-container {
    gap: 15px;
  }
}

@media (max-width: 1024px) {
  /* line 102, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
  .adv-dashboard-grid-container {
    gap: 12px;
  }
}

@media (max-width: 768px) {
  /* line 102, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
  .adv-dashboard-grid-container {
    grid-template-columns: 1fr;
    grid-template-areas: "quotes" "contracts" "articles" "orders" "clients" "cgv" "invoices" "chart";
    gap: 10px;
  }
}

/* ==========================================================================
   ZONES DU DASHBOARD - Nouvelles zones selon l'image
   ========================================================================== */
/* line 143, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-zone {
  background-color: rgba(254, 254, 254, 0.1);
  border-radius: 15px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  padding: 15px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  min-height: 180px;
  /* Positionnement des zones selon l'image */
}

/* line 153, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule.lightmode .adv-dashboard-zone {
  border-color: rgba(20, 13, 35, 0.2);
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 158, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-zone:hover {
  background-color: rgba(254, 254, 254, 0.15);
  border-color: rgba(195, 135, 97, 0.5);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* line 163, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule.lightmode .adv-dashboard-zone:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 168, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-zone .adv-zone-title {
  font-size: 1.1rem;
  color: #fefefe;
  margin-bottom: 12px;
  padding-left: 8px;
  font-weight: 600;
  flex-shrink: 0;
  text-align: left;
}

/* line 177, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule.lightmode .adv-dashboard-zone .adv-zone-title {
  color: #140D23;
}

@media (max-width: 768px) {
  /* line 168, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
  .adv-dashboard-zone .adv-zone-title {
    font-size: 1rem;
  }
}

/* line 186, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-zone .adv-zone-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
  overflow-y: auto;
}

/* line 195, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-zone.adv-quotes-zone {
  grid-column: 1 / 3;
  grid-row: 1;
  grid-area: quotes;
  min-height: 220px;
  max-height: none;
  overflow-y: visible;
  width: 100%;
}

/* line 205, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-zone.adv-contracts-zone {
  grid-column: 3;
  grid-row: 1;
  min-height: 200px;
}

/* line 211, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-zone.adv-orders-zone {
  grid-area: orders;
  min-height: 250px;
}

/* line 216, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-zone.adv-articles-zone {
  grid-area: articles;
  min-height: 250px;
}

/* line 221, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-zone.adv-cgv-zone {
  grid-area: cgv;
  min-height: 250px;
}

/* line 226, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-zone.adv-clients-zone {
  grid-area: clients;
  min-height: 180px;
}

/* line 231, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-zone.adv-invoices-zone {
  grid-area: invoices;
  min-height: 220px;
  max-height: none;
  overflow-y: visible;
}

/* line 238, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-zone.adv-chart-zone {
  grid-area: chart;
  min-height: 350px;
  max-height: 500px;
}

@media (max-width: 1024px) {
  /* line 143, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
  .adv-dashboard-zone {
    min-height: 150px;
    padding: 12px;
  }
}

@media (max-width: 768px) {
  /* line 143, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
  .adv-dashboard-zone {
    min-height: 120px;
    padding: 10px;
    max-height: none;
  }
}

/* ==========================================================================
   KPI CARDS GRID - Système de grille pour les cartes KPI
   ========================================================================== */
/* line 260, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-kpi-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: 100%;
}

@media (max-width: 1200px) {
  /* line 260, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
  .adv-kpi-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

@media (max-width: 768px) {
  /* line 260, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
  .adv-kpi-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

@media (max-width: 480px) {
  /* line 260, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
  .adv-kpi-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* line 281, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-kpi-card {
  background-color: rgba(254, 254, 254, 0.08);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease;
  min-height: 100px;
}

/* line 294, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule.lightmode .adv-kpi-card {
  border-color: rgba(20, 13, 35, 0.2);
  background-color: rgba(20, 13, 35, 0.08);
}

/* line 299, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-kpi-card:hover {
  background-color: rgba(254, 254, 254, 0.12);
  border-color: rgba(195, 135, 97, 0.4);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* line 304, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule.lightmode .adv-kpi-card:hover {
  background-color: rgba(20, 13, 35, 0.12);
}

/* line 308, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-kpi-card:hover .adv-kpi-number {
  color: #C38761;
}

/* line 313, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-kpi-card h3, .adv-kpi-card .h3 {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.9;
  color: #fefefe;
  margin-bottom: 8px;
  line-height: 1.2;
  text-align: center;
}

/* line 322, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule.lightmode .adv-kpi-card h3, .adv-dashboard-capsule.lightmode .adv-kpi-card .h3 {
  color: #140D23;
}

/* line 327, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-kpi-card .adv-kpi-number {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fefefe;
  transition: color 0.3s ease;
  line-height: 1;
}

/* line 334, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule.lightmode .adv-kpi-card .adv-kpi-number {
  color: #140D23;
}

/* line 338, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-kpi-card .adv-kpi-number.adv-success-number {
  color: #4caf50;
}

/* line 342, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-kpi-card .adv-kpi-number.adv-alert-number {
  color: #ff9800;
}

@media (max-width: 768px) {
  /* line 327, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
  .adv-kpi-card .adv-kpi-number {
    font-size: 1.4rem;
  }
}

/* line 351, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-kpi-card .adv-kpi-subtitle {
  font-size: 0.65rem;
  opacity: 0.7;
  margin-top: 4px;
  color: #fefefe;
  line-height: 1.1;
}

/* line 358, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule.lightmode .adv-kpi-card .adv-kpi-subtitle {
  color: #140D23;
}

@media (max-width: 1024px) {
  /* line 281, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
  .adv-kpi-card {
    min-height: 90px;
    padding: 12px;
  }
}

@media (max-width: 768px) {
  /* line 281, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
  .adv-kpi-card {
    min-height: 80px;
    padding: 10px;
  }
}

/* line 375, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-kpi-card-clickable {
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

/* line 381, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-kpi-card-clickable::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(195, 135, 97, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

/* line 394, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-kpi-card-clickable:hover {
  box-shadow: 0 6px 20px rgba(195, 135, 97, 0.3);
  border-color: #C38761;
}

/* line 398, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule.lightmode .adv-kpi-card-clickable:hover {
  box-shadow: 0 6px 20px rgba(20, 13, 35, 0.25);
}

/* line 402, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-kpi-card-clickable:hover::before {
  width: 300px;
  height: 300px;
}

/* line 407, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-kpi-card-clickable:hover .adv-kpi-number {
  transform: scale(1.05);
}

/* line 414, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-metric-item-clickable {
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

/* line 420, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-metric-item-clickable:hover {
  box-shadow: 0 4px 12px rgba(195, 135, 97, 0.2);
  border-color: rgba(195, 135, 97, 0.5);
  transform: translateY(-2px);
}

/* line 425, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule.lightmode .adv-metric-item-clickable:hover {
  box-shadow: 0 4px 12px rgba(20, 13, 35, 0.2);
}

/* line 429, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-metric-item-clickable:hover .adv-metric-number {
  transform: scale(1.08);
}

/* ==========================================================================
   METRIC ITEMS - Éléments de métriques dans les zones
   ========================================================================== */
/* line 439, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  background-color: rgba(254, 254, 254, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
  min-height: 70px;
  margin-bottom: 8px;
}

/* line 452, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule.lightmode .adv-metric-item {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 456, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-metric-item:hover {
  background-color: rgba(254, 254, 254, 0.1);
}

/* line 459, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule.lightmode .adv-metric-item:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 463, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-metric-item:hover .adv-metric-number {
  color: #C38761;
}

/* line 468, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-metric-item h3, .adv-metric-item .h3 {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.9;
  color: #fefefe;
  margin-bottom: 6px;
  line-height: 1.2;
}

/* line 476, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule.lightmode .adv-metric-item h3, .adv-dashboard-capsule.lightmode .adv-metric-item .h3 {
  color: #140D23;
}

/* line 481, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-metric-item .adv-metric-number {
  font-size: 1.4rem;
  font-weight: bold;
  color: #fefefe;
  transition: color 0.3s ease;
  line-height: 1;
}

/* line 488, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule.lightmode .adv-metric-item .adv-metric-number {
  color: #140D23;
}

/* line 492, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-metric-item .adv-metric-number.adv-success-number {
  color: #4caf50;
}

/* line 496, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-metric-item .adv-metric-number.adv-alert-number {
  color: #ff9800;
}

@media (max-width: 768px) {
  /* line 481, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
  .adv-metric-item .adv-metric-number {
    font-size: 1.2rem;
  }
}

/* line 505, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-metric-item .adv-metric-subtitle {
  font-size: 0.7rem;
  opacity: 0.7;
  margin-top: 3px;
  color: #fefefe;
  line-height: 1.1;
}

/* line 512, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule.lightmode .adv-metric-item .adv-metric-subtitle {
  color: #140D23;
}

@media (max-width: 1024px) {
  /* line 439, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
  .adv-metric-item {
    min-height: 60px;
    padding: 10px;
  }
}

@media (max-width: 768px) {
  /* line 439, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
  .adv-metric-item {
    min-height: 50px;
    padding: 8px;
  }
}

/* ==========================================================================
   ARTICLES TABS - Système d'onglets pour les articles
   ========================================================================== */
/* line 535, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-zone .adv-zone-content .adv-articles-tabs-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: rgba(254, 254, 254, 0.05);
  border-radius: 8px;
  padding: 12px;
  margin-top: 8px;
}

/* line 544, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule.lightmode .adv-dashboard-zone .adv-zone-content .adv-articles-tabs-container {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 549, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-zone .adv-zone-content .adv-tabs-header {
  display: flex;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(254, 254, 254, 0.1);
}

/* line 554, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule.lightmode .adv-dashboard-zone .adv-zone-content .adv-tabs-header {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 559, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-zone .adv-zone-content .adv-tab-button {
  flex: 1;
  padding: 8px 12px;
  background: none;
  border: none;
  color: #fefefe;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  opacity: 0.7;
}

/* line 572, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule.lightmode .adv-dashboard-zone .adv-zone-content .adv-tab-button {
  color: #140D23;
}

/* line 576, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-zone .adv-zone-content .adv-tab-button:hover {
  opacity: 1;
  background-color: rgba(254, 254, 254, 0.05);
}

/* line 580, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule.lightmode .adv-dashboard-zone .adv-zone-content .adv-tab-button:hover {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 585, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-zone .adv-zone-content .adv-tab-button.active {
  opacity: 1;
  border-bottom-color: #C38761;
  background-color: rgba(254, 254, 254, 0.08);
}

/* line 590, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule.lightmode .adv-dashboard-zone .adv-zone-content .adv-tab-button.active {
  background-color: rgba(20, 13, 35, 0.08);
}

/* line 596, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-zone .adv-zone-content .adv-tab-content {
  position: relative;
  display: block;
  min-height: 120px;
}

/* line 602, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-zone .adv-zone-content .adv-tab-panel {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

/* line 606, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-zone .adv-zone-content .adv-tab-panel.active {
  display: block;
}

/* ==========================================================================
   TOP LISTS - Listes des top performers
   ========================================================================== */
/* line 617, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-top-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  text-align: left;
}

/* line 625, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-top-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background-color: rgba(254, 254, 254, 0.05);
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

/* line 636, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule.lightmode .adv-top-item {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 640, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-top-item:hover {
  background-color: rgba(254, 254, 254, 0.1);
  transform: translateX(3px);
  box-shadow: 0 2px 8px rgba(195, 135, 97, 0.15);
}

/* line 645, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule.lightmode .adv-top-item:hover {
  background-color: rgba(20, 13, 35, 0.1);
  box-shadow: 0 2px 8px rgba(20, 13, 35, 0.15);
}

/* line 651, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-top-item .adv-rank {
  font-size: 1.2rem;
  font-weight: bold;
  color: #C38761;
  margin-right: 10px;
  min-width: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* line 662, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-top-item .adv-name {
  flex-grow: 1;
  font-size: 0.8rem;
  color: #fefefe;
  line-height: 1.2;
}

/* line 668, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule.lightmode .adv-top-item .adv-name {
  color: #140D23;
}

/* line 673, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-top-item .adv-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: #C38761;
  white-space: nowrap;
  transition: all 0.3s ease;
}

/* line 681, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-top-item .adv-value.adv-podium-1 {
  color: #FFD700;
  font-weight: 700;
  font-size: 1rem;
  text-shadow: 0 1px 3px rgba(255, 215, 0, 0.4);
}

/* line 688, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-top-item .adv-value.adv-podium-2 {
  color: #C0C0C0;
  font-weight: 700;
  font-size: 0.95rem;
  text-shadow: 0 1px 3px rgba(192, 192, 192, 0.4);
}

/* line 695, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-top-item .adv-value.adv-podium-3 {
  color: #CD7F32;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(205, 127, 50, 0.4);
}

@media (max-width: 768px) {
  /* line 625, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
  .adv-top-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 6px 10px;
  }
  /* line 708, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
  .adv-top-item .adv-rank {
    margin-right: 8px;
  }
  /* line 712, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
  .adv-top-item .adv-value {
    margin-left: 25px;
  }
}

/* line 718, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-top-item:nth-child(1) {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
  border-left: 3px solid #FFD700;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
}

/* line 723, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule.lightmode .adv-top-item:nth-child(1) {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.08) 100%);
}

/* line 727, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-top-item:nth-child(1):hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(255, 215, 0, 0.1) 100%);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
  transform: translateX(3px);
}

/* line 732, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule.lightmode .adv-top-item:nth-child(1):hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 215, 0, 0.12) 100%);
}

/* line 737, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-top-item:nth-child(1) .adv-rank {
  color: #FFD700;
  font-size: 1.2rem;
  text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

/* line 744, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-top-item:nth-child(2) {
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.15) 0%, rgba(192, 192, 192, 0.05) 100%);
  border-left: 3px solid #C0C0C0;
  box-shadow: 0 2px 8px rgba(192, 192, 192, 0.2);
}

/* line 749, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule.lightmode .adv-top-item:nth-child(2) {
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.2) 0%, rgba(192, 192, 192, 0.08) 100%);
}

/* line 753, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-top-item:nth-child(2):hover {
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.25) 0%, rgba(192, 192, 192, 0.1) 100%);
  box-shadow: 0 4px 12px rgba(192, 192, 192, 0.3);
  transform: translateX(3px);
}

/* line 758, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule.lightmode .adv-top-item:nth-child(2):hover {
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.3) 0%, rgba(192, 192, 192, 0.12) 100%);
}

/* line 763, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-top-item:nth-child(2) .adv-rank {
  color: #C0C0C0;
  font-size: 1.15rem;
  text-shadow: 0 2px 4px rgba(192, 192, 192, 0.3);
}

/* line 770, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-top-item:nth-child(3) {
  background: linear-gradient(135deg, rgba(205, 127, 50, 0.15) 0%, rgba(205, 127, 50, 0.05) 100%);
  border-left: 3px solid #CD7F32;
  box-shadow: 0 2px 8px rgba(205, 127, 50, 0.2);
}

/* line 775, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule.lightmode .adv-top-item:nth-child(3) {
  background: linear-gradient(135deg, rgba(205, 127, 50, 0.2) 0%, rgba(205, 127, 50, 0.08) 100%);
}

/* line 779, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-top-item:nth-child(3):hover {
  background: linear-gradient(135deg, rgba(205, 127, 50, 0.25) 0%, rgba(205, 127, 50, 0.1) 100%);
  box-shadow: 0 4px 12px rgba(205, 127, 50, 0.3);
  transform: translateX(3px);
}

/* line 784, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule.lightmode .adv-top-item:nth-child(3):hover {
  background: linear-gradient(135deg, rgba(205, 127, 50, 0.3) 0%, rgba(205, 127, 50, 0.12) 100%);
}

/* line 789, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-top-item:nth-child(3) .adv-rank {
  color: #CD7F32;
  font-size: 1.1rem;
  text-shadow: 0 2px 4px rgba(205, 127, 50, 0.3);
}

/* ==========================================================================
   CUSTOMER ITEMS - Layout vertical pour les clients
   ========================================================================== */
/* line 801, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-customer-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  background-color: rgba(254, 254, 254, 0.05);
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}

/* line 813, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule.lightmode .adv-customer-item {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 817, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-customer-item:hover {
  background-color: rgba(254, 254, 254, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(195, 135, 97, 0.2);
}

/* line 822, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule.lightmode .adv-customer-item:hover {
  background-color: rgba(20, 13, 35, 0.1);
  box-shadow: 0 4px 12px rgba(20, 13, 35, 0.2);
}

/* line 828, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-customer-item .adv-customer-rank {
  font-size: 1.4rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* line 834, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-customer-item .adv-customer-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 4px;
}

/* line 842, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-customer-item .adv-customer-name {
  font-size: 0.85rem;
  color: #fefefe;
  font-weight: 500;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* line 850, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule.lightmode .adv-customer-item .adv-customer-name {
  color: #140D23;
}

/* line 855, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-customer-item .adv-customer-value {
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.3s ease;
}

/* line 862, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-customer-item .adv-customer-value.adv-podium-1 {
  color: #FFD700;
  font-size: 1rem;
  text-shadow: 0 1px 3px rgba(255, 215, 0, 0.4);
}

/* line 868, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-customer-item .adv-customer-value.adv-podium-2 {
  color: #C0C0C0;
  font-size: 0.95rem;
  text-shadow: 0 1px 3px rgba(192, 192, 192, 0.4);
}

/* line 874, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-customer-item .adv-customer-value.adv-podium-3 {
  color: #CD7F32;
  text-shadow: 0 1px 3px rgba(205, 127, 50, 0.4);
}

/* line 881, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-customer-item:nth-child(1) {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
  border-left: 3px solid #FFD700;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
}

/* line 886, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule.lightmode .adv-customer-item:nth-child(1) {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.08) 100%);
}

/* line 890, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-customer-item:nth-child(1):hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(255, 215, 0, 0.1) 100%);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

/* line 894, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule.lightmode .adv-customer-item:nth-child(1):hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 215, 0, 0.12) 100%);
}

/* line 900, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-customer-item:nth-child(2) {
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.15) 0%, rgba(192, 192, 192, 0.05) 100%);
  border-left: 3px solid #C0C0C0;
  box-shadow: 0 2px 8px rgba(192, 192, 192, 0.2);
}

/* line 905, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule.lightmode .adv-customer-item:nth-child(2) {
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.2) 0%, rgba(192, 192, 192, 0.08) 100%);
}

/* line 909, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-customer-item:nth-child(2):hover {
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.25) 0%, rgba(192, 192, 192, 0.1) 100%);
  box-shadow: 0 4px 12px rgba(192, 192, 192, 0.3);
}

/* line 913, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule.lightmode .adv-customer-item:nth-child(2):hover {
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.3) 0%, rgba(192, 192, 192, 0.12) 100%);
}

/* line 919, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-customer-item:nth-child(3) {
  background: linear-gradient(135deg, rgba(205, 127, 50, 0.15) 0%, rgba(205, 127, 50, 0.05) 100%);
  border-left: 3px solid #CD7F32;
  box-shadow: 0 2px 8px rgba(205, 127, 50, 0.2);
}

/* line 924, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule.lightmode .adv-customer-item:nth-child(3) {
  background: linear-gradient(135deg, rgba(205, 127, 50, 0.2) 0%, rgba(205, 127, 50, 0.08) 100%);
}

/* line 928, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-customer-item:nth-child(3):hover {
  background: linear-gradient(135deg, rgba(205, 127, 50, 0.25) 0%, rgba(205, 127, 50, 0.1) 100%);
  box-shadow: 0 4px 12px rgba(205, 127, 50, 0.3);
}

/* line 932, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule.lightmode .adv-customer-item:nth-child(3):hover {
  background: linear-gradient(135deg, rgba(205, 127, 50, 0.3) 0%, rgba(205, 127, 50, 0.12) 100%);
}

@media (max-width: 768px) {
  /* line 801, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
  .adv-customer-item {
    padding: 8px 10px;
    gap: 8px;
  }
  /* line 942, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
  .adv-customer-item .adv-customer-rank {
    font-size: 1.2rem;
  }
  /* line 946, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
  .adv-customer-item .adv-customer-name {
    font-size: 0.8rem;
  }
  /* line 950, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
  .adv-customer-item .adv-customer-value {
    font-size: 0.85rem;
  }
  /* line 953, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
  .adv-customer-item .adv-customer-value.adv-podium-1 {
    font-size: 0.9rem;
  }
  /* line 957, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
  .adv-customer-item .adv-customer-value.adv-podium-2 {
    font-size: 0.88rem;
  }
}

/* ==========================================================================
   CHART CONTAINER - Conteneur de graphique dans la zone chart
   ========================================================================== */
/* line 968, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-chart-container {
  background-color: rgba(254, 254, 254, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px;
  display: flex;
  flex-direction: column;
  min-height: 350px;
  flex-grow: 1;
}

/* line 978, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-capsule.lightmode .adv-dashboard-chart-container {
  border-color: rgba(20, 13, 35, 0.2);
  background-color: rgba(20, 13, 35, 0.05);
}

@media (max-width: 1024px) {
  /* line 968, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
  .adv-dashboard-chart-container {
    min-height: 250px;
    padding: 12px;
  }
}

@media (max-width: 768px) {
  /* line 968, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
  .adv-dashboard-chart-container {
    min-height: 200px;
    padding: 10px;
  }
}

/* line 994, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-chart-canvas-wrapper {
  flex-grow: 1;
  position: relative;
  min-height: 350px;
}

/* line 999, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-chart-canvas-wrapper canvas {
  width: 100% !important;
  height: 100% !important;
}

@media (max-width: 1024px) {
  /* line 994, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
  .adv-chart-canvas-wrapper {
    min-height: 250px;
  }
}

@media (max-width: 768px) {
  /* line 994, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
  .adv-chart-canvas-wrapper {
    min-height: 200px;
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN - Adaptations mobiles
   ========================================================================== */
@media (max-width: 768px) {
  /* line 1018, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
  .adv-dashboard-capsule {
    padding: 10px;
    gap: 15px;
  }
  /* line 1023, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
  .adv-dashboard-header {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
  /* line 1029, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
  .adv-dashboard-zone .adv-zone-title {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  /* line 1034, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
  .adv-dashboard-zone .adv-zone-content {
    gap: 10px;
  }
}

/* ==========================================================================
   ANIMATIONS ET TRANSITIONS
   ========================================================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* line 1055, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-zone {
  animation: fadeIn 0.5s ease-out;
}

/* line 1059, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-metric-item {
  animation: fadeIn 0.6s ease-out;
}

/* ==========================================================================
   ÉTATS SPÉCIAUX
   ========================================================================== */
/* line 1067, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-zone.loading {
  opacity: 0.6;
  cursor: wait;
}

/* line 1071, app/assets/stylesheets/pages/servicespace/back-office/adv/_adv_dashboard.scss */
.adv-dashboard-zone.loading .adv-metric-number {
  color: transparent;
  background: linear-gradient(90deg, rgba(254, 254, 254, 0.1) 25%, rgba(254, 254, 254, 0.3) 50%, rgba(254, 254, 254, 0.1) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ==========================================================================
   CATEGORY SHARED STYLES - Styles communs new/edit category
   ========================================================================== */
/* === ALERT MESSAGES (partagé) === */
/* line 6, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_shared.scss */
.adv-category-alert {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
  background-color: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: 8px;
  color: #fca5a5;
  font-size: 0.85rem;
}

/* line 19, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_shared.scss */
.lightmode .adv-category-alert {
  background-color: rgba(220, 38, 38, 0.1);
  border-color: rgba(220, 38, 38, 0.3);
  color: #dc2626;
}

/* line 25, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_shared.scss */
.adv-category-alert i {
  color: #ef4444;
  font-size: 1rem;
  margin-top: 2px;
}

/* line 30, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_shared.scss */
.lightmode .adv-category-alert i {
  color: #dc2626;
}

/* line 35, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_shared.scss */
.adv-category-alert strong {
  font-weight: 600;
}

/* line 40, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_shared.scss */
.adv-category-alert-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 46, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_shared.scss */
.adv-category-alert-list {
  margin: 0;
  padding-left: 1.2rem;
}

/* line 50, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_shared.scss */
.adv-category-alert-list li {
  margin-bottom: 4px;
}

/* line 53, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_shared.scss */
.adv-category-alert-list li:last-child {
  margin-bottom: 0;
}

/* === TOAST NOTIFICATIONS (partagé) === */
/* line 60, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_shared.scss */
.adv-category-form-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: rgba(239, 68, 68, 0.95);
  color: white;
  padding: 16px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  max-width: 400px;
  font-size: 0.9rem;
  line-height: 1.4;
  white-space: pre-line;
  animation: adv-category-form-slide-in-right 0.3s ease-out;
}

/* line 76, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_shared.scss */
.adv-category-form-toast.adv-category-form-toast--exiting {
  animation: adv-category-form-slide-out-right 0.3s ease-out;
}

/* line 80, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_shared.scss */
.lightmode .adv-category-form-toast {
  background-color: rgba(220, 38, 38, 0.95);
}

/* Animations pour les toasts */
@keyframes adv-category-form-slide-in-right {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes adv-category-form-slide-out-right {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* === VALIDATION STATES (partagé) === */
/* line 109, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_shared.scss */
.adv-category-input.is-invalid,
.adv-category-select.is-invalid {
  border-color: #ef4444;
  box-shadow: 0 0 8px 2px rgba(239, 68, 68, 0.4);
}

/* ==========================================================================
   CATEGORY LIST - MODULE ADV
   Structure principale et composants pour la gestion des catégories
   ========================================================================== */
/* line 6, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-capsule {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 5px 20px;
  font-size: 1rem;
  gap: 10px;
  overflow: hidden;
}

/* line 18, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-capsule.lightmode {
  color: #140D23;
}

/* line 21, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-capsule.lightmode .adv-category-list-link-entry {
  color: #140D23;
}

/* line 24, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-capsule.lightmode .adv-category-list-link-entry:hover {
  background-color: transparent !important;
}

/* line 30, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-capsule.nightmode {
  color: #fefefe;
}

/* line 35, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 41, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-capsule span {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 47, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-capsule.lightmode span {
  color: #C38761;
}

/* line 51, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-capsule.nightmode span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 55, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-capsule.lightmode p {
  color: #140D23;
}

/* line 59, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-capsule.nightmode p {
  color: #fefefe;
}

/* line 63, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-capsule.lightmode i {
  color: #140D23;
}

/* line 67, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-capsule.nightmode i {
  color: #fefefe;
}

/* ==========================================================================
   BARRE DE RECHERCHE PRINCIPALE - Section de recherche globale
   ========================================================================== */
/* line 75, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-main-search {
  height: 10%;
  width: 100%;
  margin-bottom: 15px;
}

/* ==========================================================================
   SYSTÈME D'ONGLETS - Navigation entre les sections
   Style identique à quote_list
   ========================================================================== */
/* line 86, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-tabs {
  width: 100%;
  height: 10%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

/* line 95, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-tabs-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

/* line 102, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-tab {
  padding: 10px 20px;
  border: none;
  background: rgba(254, 254, 254, 0.1);
  color: #fefefe;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  text-decoration: none;
  margin-right: 5px;
}

/* line 119, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-capsule.lightmode .adv-category-list-tab {
  background: rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 124, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-tab:hover {
  background: rgba(254, 254, 254, 0.2);
  transform: translateY(-2px);
  text-decoration: none;
  color: #fefefe;
}

/* line 130, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-capsule.lightmode .adv-category-list-tab:hover {
  background: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 136, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-tab.active {
  background: #C38761;
  color: #fefefe;
  border-bottom-color: #C38761;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

/* line 144, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-capsule.lightmode .adv-category-list-tab.active {
  background: #C38761;
  color: #fefefe;
}

/* line 149, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-tab.active i {
  color: #fefefe !important;
}

/* line 154, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-tab i {
  font-size: 0.7rem;
  transition: color 0.3s ease;
}

/* ==========================================================================
   CONTENU DES ONGLETS - Affichage conditionnel du contenu
   ========================================================================== */
/* line 164, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-tab-content {
  width: 100%;
  height: 98%;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* line 172, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-tab-content.active {
  display: flex;
}

/* line 177, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-row1 {
  width: 80%;
  height: 50px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  flex-shrink: 0;
  margin-bottom: 5px;
}

/* line 188, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-row1 form {
  width: 100%;
  display: flex;
  padding: 0 !important;
}

/* line 195, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-row1-searchbar {
  width: 100%;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(254, 254, 254, 0.5);
  display: flex;
  justify-content: space-between;
  align-content: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 208, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-capsule.lightmode .adv-category-list-row1-searchbar {
  border-color: rgba(20, 13, 35, 0.5);
  color: #140D23;
}

/* line 213, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-row1-searchbar .search-form {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 220, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-row1-searchbar .adv-category-list-search-input-wrapper {
  position: relative;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

/* line 227, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-row1-searchbar .search-input {
  width: 100%;
  background: transparent;
  border: none;
  color: #fefefe;
  outline: none;
  padding-right: 25px;
}

/* line 235, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-capsule.lightmode .adv-category-list-row1-searchbar .search-input {
  color: #140D23;
}

/* line 238, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-capsule.lightmode .adv-category-list-row1-searchbar .search-input::placeholder {
  color: rgba(20, 13, 35, 0.6);
}

/* line 244, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-row1-searchbar .adv-category-list-clear-search-button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: #fefefe;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 0.6rem;
  text-decoration: none;
}

/* line 259, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-capsule.lightmode .adv-category-list-row1-searchbar .adv-category-list-clear-search-button {
  color: #140D23;
}

/* line 263, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-row1-searchbar .adv-category-list-clear-search-button:hover {
  color: rgba(254, 254, 254, 0.7);
}

/* line 266, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-capsule.lightmode .adv-category-list-row1-searchbar .adv-category-list-clear-search-button:hover {
  color: rgba(20, 13, 35, 0.7);
}

/* line 272, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-row1-searchbar button {
  all: unset;
  cursor: pointer;
}

/* line 277, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-row1-searchbar .search-button {
  padding: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 285, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-row1-searchbar i {
  color: #fefefe !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 290, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-capsule.lightmode .adv-category-list-row1-searchbar i {
  color: #140D23 !important;
}

/* line 295, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-row1-searchbar span {
  font-weight: normal !important;
  color: #fefefe !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 301, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-capsule.lightmode .adv-category-list-row1-searchbar span {
  color: #140D23 !important;
}

/* line 307, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-search-info {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: #fefefe;
  margin-bottom: -10px;
  z-index: 5;
}

/* line 317, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-capsule.lightmode .adv-category-list-search-info {
  color: #140D23;
}

/* line 321, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-search-info span {
  opacity: 0.8;
}

/* line 325, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-search-info .adv-category-list-reset-search-link {
  color: #fefefe;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  border-radius: 4px;
  background-color: rgba(254, 254, 254, 0.1);
  transition: background-color 0.2s ease;
}

/* line 336, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-capsule.lightmode .adv-category-list-search-info .adv-category-list-reset-search-link {
  color: #140D23;
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 341, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-search-info .adv-category-list-reset-search-link:hover {
  background-color: rgba(254, 254, 254, 0.2);
}

/* line 344, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-capsule.lightmode .adv-category-list-search-info .adv-category-list-reset-search-link:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* line 351, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-row2 {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  background-color: rgba(254, 254, 254, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 15px;
  overflow: hidden;
  margin-top: 5px;
}

/* line 365, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-capsule.lightmode .adv-category-list-row2 {
  background-color: rgba(254, 254, 254, 0.1);
}

/* line 370, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-row2-list {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

/* line 379, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-row2-list-head {
  width: 97%;
  display: flex;
  padding-right: 8px;
  flex-direction: row;
  font-weight: bold;
  font-size: 0.75rem;
  margin-bottom: 5px;
  color: #fefefe;
}

/* line 389, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-capsule.lightmode .adv-category-list-row2-list-head {
  color: #140D23;
}

/* line 394, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-row2-list-head .adv-category-list-row2-list-column {
  flex: 1;
  text-align: center;
  justify-content: center;
}

/* line 399, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-row2-list-head .adv-category-list-row2-list-column.sortable {
  cursor: pointer;
  transition: background-color 0.2s ease;
}

/* line 403, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-row2-list-head .adv-category-list-row2-list-column.sortable:hover {
  background-color: rgba(254, 254, 254, 0.05);
}

/* line 406, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-capsule.lightmode .adv-category-list-row2-list-head .adv-category-list-row2-list-column.sortable:hover {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 411, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-row2-list-head .adv-category-list-row2-list-column.sortable .sort-link {
  color: #fefefe;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 100%;
  height: 100%;
}

/* line 421, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-capsule.lightmode .adv-category-list-row2-list-head .adv-category-list-row2-list-column.sortable .sort-link {
  color: #140D23;
}

/* line 425, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-row2-list-head .adv-category-list-row2-list-column.sortable .sort-link i {
  font-size: 0.6rem !important;
}

/* line 428, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-capsule.lightmode .adv-category-list-row2-list-head .adv-category-list-row2-list-column.sortable .sort-link i {
  color: #140D23 !important;
}

/* line 436, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-article-row2-list-column {
  display: flex;
  flex: 4 1 0;
  align-items: center;
  font-size: 0.7rem;
  padding: 5px 10px;
}

/* line 443, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-article-row2-list-column .adv-category-list-article-details {
  flex: 1 1 0;
}

/* line 448, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-row2-list-entries {
  width: 100%;
  height: calc(100% - 30px);
  display: flex;
  gap: 5px;
  flex-direction: column;
  overflow-y: auto;
}

/* line 456, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-row2-list-entries::-webkit-scrollbar {
  width: 8px;
}

/* line 460, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-row2-list-entries::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 464, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-capsule.lightmode .adv-category-list-row2-list-entries::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 469, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-row2-list-entries::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 474, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-row2-list-entries::-webkit-scrollbar-thumb:hover {
  background: #fefefe;
}

/* line 477, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-capsule.lightmode .adv-category-list-row2-list-entries::-webkit-scrollbar-thumb:hover {
  background: #140D23;
}

/* line 483, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-row2-list-entry {
  width: 97%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  font-size: 0.7rem;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 2px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 40px;
  padding: 3px 0;
  margin-bottom: 2px;
  color: #fefefe;
}

/* line 501, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-capsule.lightmode .adv-category-list-row2-list-entry {
  color: #140D23;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 2px;
}

/* line 506, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-row2-list-entry:hover {
  transform: scale(1.01);
  transition: transform 0.3s ease;
  background-color: rgba(254, 254, 254, 0.1);
}

/* line 511, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-capsule.lightmode .adv-category-list-row2-list-entry:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 516, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-row2-list-entry .adv-category-list-row2-list-column {
  flex: 1;
  text-align: center;
  justify-content: center;
}

/* line 522, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-row2-list-entry .adv-category-list-row2-list-column-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 20%;
  height: 100%;
  font-size: 0.7rem;
}

/* line 531, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-row2-list-entry .adv-category-list-row2-list-column-actions a {
  all: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 0.7rem;
  color: #fefefe;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

/* line 542, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-row2-list-entry .adv-category-list-row2-list-column-actions a:hover {
  scale: 1.05;
}

/* line 546, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-row2-list-entry .adv-category-list-row2-list-column-actions a i {
  transition: color 0.3s ease-in-out;
}

/* line 549, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-row2-list-entry .adv-category-list-row2-list-column-actions a i:hover {
  color: #C38761;
}

/* line 555, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-row2-list-entry .adv-category-list-row2-list-column-actions button {
  all: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 0.7rem;
  color: #fefefe;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

/* line 566, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-row2-list-entry .adv-category-list-row2-list-column-actions button:hover {
  scale: 1.05;
}

/* line 570, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-row2-list-entry .adv-category-list-row2-list-column-actions button i {
  transition: color 0.3s ease-in-out;
}

/* line 573, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-row2-list-entry .adv-category-list-row2-list-column-actions button i:hover {
  color: #C38761;
}

/* line 581, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.no-results {
  width: 100%;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #fefefe;
  background-color: rgba(254, 254, 254, 0.05);
  border-radius: 8px;
  margin-top: 10px;
}

/* line 591, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-capsule.lightmode .no-results {
  color: #140D23;
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 597, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.form-button, .crm-action-button, .users-management-container .users-header .add-user-btn {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  border: none;
  cursor: pointer;
  background-color: #C38761;
  color: #fefefe;
}

/* line 612, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.form-button:hover, .crm-action-button:hover, .users-management-container .users-header .add-user-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* line 618, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.d-none {
  display: none !important;
}

/* line 622, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-link-entry {
  display: flex;
  flex: 3 1 0;
  min-width: 0;
  align-items: stretch;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  border-radius: 6px 0 0 6px;
  box-shadow: none;
  color: #fefefe;
  padding: 0;
  font-weight: normal;
}

/* line 638, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-link-entry:hover, .adv-category-list-link-entry:focus {
  transform: scale(1.01);
  text-decoration: none;
  outline: none;
  color: #fefefe;
}

/* line 645, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-capsule.lightmode .adv-category-list-link-entry:hover, .adv-category-list-capsule.lightmode .adv-category-list-link-entry:focus {
  background-color: rgba(20, 13, 35, 0.08);
}

/* line 650, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-link-entry .adv-category-list-row2-list-column {
  background: none;
  box-shadow: none;
  border: none;
  color: inherit;
  padding: 0 0.5em;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  min-width: 0;
  text-align: center;
  flex: 1 1 0;
  display: flex;
}

/* === COLONNES DE DONNÉES === */
/* line 667, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-entry-columns {
  flex: 3 1 0;
  display: flex;
}

/* line 672, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_category_list.scss */
.adv-category-list-entry-cell {
  flex: 1 1 0;
}

/* ==========================================================================
   NEW CATEGORY - MODULE ADV (Harmonisé avec CATEGORY LIST)
   ========================================================================== */
/* line 5, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_new_category.scss */
.adv-new-category-capsule {
  width: 85%;
  max-width: 550px;
  margin: 5px auto;
  background-color: rgba(254, 254, 254, 0.1);
  border: 1.5px solid rgba(232, 232, 232, 0.5);
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 rgba(232, 232, 232, 0.08);
  padding: 32px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1rem;
  gap: 0;
  color: #C38761;
}

/* line 20, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_new_category.scss */
.lightmode .adv-new-category-capsule {
  background-color: transparent;
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 27, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_new_category.scss */
.new-category-form {
  width: 100%;
}

/* === ALERT MESSAGES === */
/* Les styles alert sont maintenant dans _category_shared.scss (classe .adv-category-alert) */
/* Validation states with increased specificity */
/* line 35, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_new_category.scss */
.new-category-form .adv-new-category-input.is-invalid,
.new-category-form .adv-new-category-select.is-invalid,
.adv-new-category-capsule .adv-new-category-input.is-invalid,
.adv-new-category-capsule .adv-new-category-select.is-invalid {
  border-color: #ef4444;
  box-shadow: 0 0 8px 2px rgba(239, 68, 68, 0.4);
}

/* line 42, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_new_category.scss */
.adv-new-category-header {
  width: 100%;
  text-align: center;
  margin-bottom: 18px;
}

/* line 46, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_new_category.scss */
.adv-new-category-header h2, .adv-new-category-header .h2 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: inherit;
}

/* line 52, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_new_category.scss */
.adv-new-category-header .adv-new-category-description {
  font-size: 0.8rem;
  color: #e8e8e8;
  margin-bottom: 0;
}

/* line 56, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_new_category.scss */
.lightmode .adv-new-category-header .adv-new-category-description {
  color: #140D23;
}

/* line 59, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_new_category.scss */
.nightmode .adv-new-category-header .adv-new-category-description {
  color: #fefefe;
}

/* line 65, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_new_category.scss */
.adv-new-category-form {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}

/* line 75, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_new_category.scss */
.adv-new-category-form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* line 81, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_new_category.scss */
.adv-new-category-input {
  width: 100%;
  border-radius: 14px;
  border: 1.5px solid rgba(232, 232, 232, 0.7);
  background: transparent;
  font-size: 0.8rem;
  color: inherit;
  padding: 14px 16px;
  margin: 0 auto;
  box-sizing: border-box;
  font-family: inherit;
  text-align: left;
  transition: border-color 0.2s, box-shadow 0.2s;
}

/* line 94, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_new_category.scss */
.adv-new-category-input:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.15);
}

/* line 99, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_new_category.scss */
.adv-new-category-input::placeholder {
  color: #e8e8e8;
  opacity: 1;
  font-size: 0.7rem;
  font-family: inherit;
}

/* line 105, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_new_category.scss */
.lightmode .adv-new-category-input {
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.3);
  background: rgba(254, 254, 254, 0.7);
}

/* line 109, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_new_category.scss */
.lightmode .adv-new-category-input::placeholder {
  color: rgba(20, 13, 35, 0.5);
}

/* line 113, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_new_category.scss */
.nightmode .adv-new-category-input {
  color: #fefefe;
  border-color: rgba(254, 254, 254, 0.3);
  background: rgba(20, 13, 35, 0.2);
}

/* line 117, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_new_category.scss */
.nightmode .adv-new-category-input::placeholder {
  color: rgba(254, 254, 254, 0.7);
}

/* line 123, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_new_category.scss */
.adv-new-category-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  cursor: pointer;
}

/* line 131, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_new_category.scss */
.adv-new-category-textarea {
  min-height: 80px;
  resize: none;
}

/* line 136, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_new_category.scss */
.adv-new-category-actions {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
}

/* line 145, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_new_category.scss */
.form-button, .crm-action-button, .users-management-container .users-header .add-user-btn {
  border-radius: 8px;
  border: none;
  background: #C38761;
  color: #fefefe;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 22px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 6px rgba(195, 135, 97, 0.08);
}

/* line 156, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_new_category.scss */
.form-button:hover, .crm-action-button:hover, .users-management-container .users-header .add-user-btn:hover {
  background: #C38761;
  color: #fefefe;
  box-shadow: 0 4px 12px rgba(195, 135, 97, 0.12);
}

/* line 163, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_new_category.scss */
.form-button-cancel {
  background: #fefefe;
  color: #e8e8e8;
  border: 1.5px solid #e8e8e8;
}

/* line 167, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_new_category.scss */
.form-button-cancel:hover {
  background: #e8e8e8;
  color: #fefefe;
}

/* line 173, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_new_category.scss */
.adv-new-category-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 179, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_new_category.scss */
.adv-new-category-capsule span {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 185, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_new_category.scss */
.adv-new-category-capsule.lightmode span {
  color: #C38761;
}

/* line 189, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_new_category.scss */
.adv-new-category-capsule.nightmode span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 193, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_new_category.scss */
.adv-new-category-capsule.lightmode p {
  color: #140D23;
}

/* line 197, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_new_category.scss */
.adv-new-category-capsule.nightmode p {
  color: #fefefe;
}

/* line 201, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_new_category.scss */
.adv-new-category-capsule.lightmode i {
  color: #140D23;
}

/* line 205, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_new_category.scss */
.adv-new-category-capsule.nightmode i {
  color: #fefefe;
}

/* line 209, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_new_category.scss */
.adv-new-category-row1 {
  width: 80%;
  height: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 17px;
  background-color: rgba(254, 254, 254, 0.1);
  border: 1px solid rgba(232, 232, 232, 0.5);
  border-radius: 20px;
  padding: 20px;
}

/* line 221, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_new_category.scss */
.adv-new-category-row1 form {
  width: 100%;
  display: flex;
}

/* line 226, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_new_category.scss */
.adv-new-category-row1 form input:focus {
  background-color: transparent;
}

/* line 235, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_new_category.scss */
.adv-new-category-row2 {
  width: 80%;
  height: 10%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
}

/* line 247, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_new_category.scss */
.adv-new-category-row1-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* line 251, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_new_category.scss */
.adv-new-category-row1-form h2, .adv-new-category-row1-form .h2 {
  all: unset;
  font-size: 0.9rem;
  text-align: center;
}

/* line 257, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_new_category.scss */
.adv-new-category-row1-form .adv-new-category-row1-form-field {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* line 264, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_new_category.scss */
.adv-new-category-row1-form .adv-new-category-row1-form-field input {
  all: unset;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(254, 254, 254, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 276, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_new_category.scss */
.adv-new-category-row1-form .adv-new-category-row1-form-field input:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 282, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_new_category.scss */
.adv-new-category-row1-form .adv-new-category-row1-form-field label {
  all: unset;
  color: #fefefe !important;
  font-size: 0.8rem !important;
  text-align: center;
}

/* line 1, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-capsule {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 10px 30px 10px 30px;
  font-size: 1rem;
  gap: 10px;
}

/* line 12, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-capsule h1, .adv-show-category-capsule .h1 {
  all: unset;
  font-size: 1.5rem;
}

/* line 17, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-capsule.lightmode {
  color: #140D23;
}

/* line 19, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-capsule.lightmode .entry {
  color: #140D23;
}

/* line 22, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-capsule.lightmode h1, .adv-show-category-capsule.lightmode .h1 {
  all: unset;
  font-size: 1.5rem;
  color: #140D23;
}

/* line 30, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 36, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-capsule.lightmode span {
  color: #C38761;
}

/* line 40, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-capsule.nightmode span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 44, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-capsule.lightmode p {
  color: #140D23;
}

/* line 48, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-capsule.nightmode p {
  color: #fefefe;
}

/* line 52, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-capsule.lightmode i {
  color: #140D23;
}

/* line 56, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-capsule.nightmode i {
  color: #fefefe;
}

/* line 60, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-grid-capsule {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  overflow-y: auto;
}

/* line 66, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-grid-capsule::-webkit-scrollbar {
  width: 4px;
}

/* line 69, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-grid-capsule::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

/* line 72, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.lightmode .adv-show-category-grid-capsule::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 76, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-grid-capsule::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 2px;
}

/* line 80, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-grid-capsule::-webkit-scrollbar-thumb:hover {
  background: #fefefe;
}

/* line 82, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.lightmode .adv-show-category-grid-capsule::-webkit-scrollbar-thumb:hover {
  background: #140D23;
}

/* line 87, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-row2 {
  width: 80%;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 10px;
}

/* line 95, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-row2 span {
  color: #140D23 !important;
}

/* ==========================================================================
   GRID DE CARTES CATEGORY
   ========================================================================== */
/* line 106, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-grid {
  width: 80%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  padding: 15px;
}

/* line 114, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-card {
  background-color: rgba(254, 254, 254, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  height: 300px;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  text-decoration: none;
}

/* line 124, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* line 129, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.lightmode .adv-show-category-card {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 136, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-card-create {
  background-color: rgba(195, 135, 97, 0.1);
  border: 2px dashed rgba(195, 135, 97, 0.3);
  text-decoration: none;
  cursor: pointer;
}

/* line 142, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-card-create:hover {
  background-color: rgba(195, 135, 97, 0.15);
  border-color: rgba(195, 135, 97, 0.5);
  text-decoration: none;
}

/* line 148, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.lightmode .adv-show-category-card-create {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 152, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.lightmode .adv-show-category-card-create:hover {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 160, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-card-article {
  text-decoration: none;
  color: inherit;
}

/* line 164, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-card-article:hover {
  text-decoration: none;
  color: inherit;
}

/* line 170, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-card-create-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 20px 0;
}

/* line 179, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-card-create-content i {
  font-size: 2.5rem;
  color: #C38761;
  opacity: 0.8;
  transition: transform 0.2s ease-in-out;
}

/* line 185, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.lightmode .adv-show-category-card-create-content i {
  color: #140D23;
}

/* line 190, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-card-create-content p {
  margin: 0;
  font-size: 0.8rem;
  color: #fefefe;
  text-align: center;
  line-height: 1.4;
}

/* line 197, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.lightmode .adv-show-category-card-create-content p {
  color: #140D23;
}

/* line 206, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-card-create:hover .adv-show-category-card-create-content i {
  transform: scale(1.1);
}

/* line 212, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-card-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 15px 20px 10px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 220, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.lightmode .adv-show-category-card-header {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 224, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-card-header h3, .adv-show-category-card-header .h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #fefefe;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

/* line 235, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.lightmode .adv-show-category-card-header h3, .lightmode .adv-show-category-card-header .h3 {
  color: #140D23;
}

/* line 240, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-card-header i {
  font-size: 0.8rem;
  color: #fefefe;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

/* line 245, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-card-header i:hover {
  transform: scale(1.1);
}

/* line 251, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 15px 20px;
  gap: 15px;
}

/* line 260, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-card-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 120px;
}

/* line 267, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-card-image .article-image {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
  border-radius: 8px;
}

/* line 274, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-card-image .article-image-placeholder {
  width: 80px;
  height: 80px;
  background-color: rgba(254, 254, 254, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px dashed rgba(254, 254, 254, 0.3);
}

/* line 284, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.lightmode .adv-show-category-card-image .article-image-placeholder {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 289, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-card-image .article-image-placeholder i {
  font-size: 2rem;
  color: #fefefe;
  opacity: 0.6;
}

/* line 294, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.lightmode .adv-show-category-card-image .article-image-placeholder i {
  color: #140D23;
}

/* line 301, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-card-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 308, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.lightmode .adv-show-category-card-details {
  border-top-color: rgba(20, 13, 35, 0.1);
}

/* line 313, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-card-price,
.adv-show-category-card-vat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}

/* line 320, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-card-price .price-label,
.adv-show-category-card-price .vat-label,
.adv-show-category-card-vat .price-label,
.adv-show-category-card-vat .vat-label {
  color: #fefefe;
  opacity: 0.8;
  font-weight: 500;
}

/* line 326, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.lightmode .adv-show-category-card-price .price-label, .lightmode .adv-show-category-card-price .vat-label, .lightmode .adv-show-category-card-vat .price-label, .lightmode .adv-show-category-card-vat .vat-label {
  color: #140D23;
}

/* line 331, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-card-price .price-value,
.adv-show-category-card-price .vat-value,
.adv-show-category-card-vat .price-value,
.adv-show-category-card-vat .vat-value {
  color: #C38761;
  font-weight: 600;
}

/* line 336, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.lightmode .adv-show-category-card-price .price-value, .lightmode .adv-show-category-card-price .vat-value, .lightmode .adv-show-category-card-vat .price-value, .lightmode .adv-show-category-card-vat .vat-value {
  color: #140D23;
}

/* line 342, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-card-table {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 200px;
}

/* line 350, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-card-table-head {
  display: flex;
  font-weight: bold;
  font-size: 0.7rem;
  color: #fefefe;
  padding: 5px 0;
}

/* line 357, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.lightmode .adv-show-category-card-table-head {
  color: #140D23;
}

/* line 362, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-card-table-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  overflow-y: auto;
}

/* line 369, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-card-table-body::-webkit-scrollbar {
  width: 4px;
}

/* line 372, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-card-table-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

/* line 375, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.lightmode .adv-show-category-card-table-body::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 379, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-card-table-body::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 2px;
}

/* line 383, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-card-table-body::-webkit-scrollbar-thumb:hover {
  background: #fefefe;
}

/* line 385, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.lightmode .adv-show-category-card-table-body::-webkit-scrollbar-thumb:hover {
  background: #140D23;
}

/* line 391, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-card-table-row {
  display: flex;
  align-items: center;
  padding: 5px 8px;
  border-radius: 4px;
  transition: background-color 0.2s ease-in-out;
  cursor: pointer;
}

/* line 399, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-card-table-row:hover {
  background-color: rgba(254, 254, 254, 0.1);
}

/* line 401, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.lightmode .adv-show-category-card-table-row:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 408, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-card-table-row-add {
  background-color: rgba(195, 135, 97, 0.1);
  border: 1px dashed rgba(195, 135, 97, 0.3);
  margin-bottom: 8px;
}

/* line 413, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-card-table-row-add:hover {
  background-color: rgba(195, 135, 97, 0.2);
  border-color: rgba(195, 135, 97, 0.5);
}

/* line 418, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.lightmode .adv-show-category-card-table-row-add {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 422, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.lightmode .adv-show-category-card-table-row-add:hover {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 428, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-card-table-row-add .adv-show-category-card-table-column {
  color: #C38761;
  font-weight: 500;
}

/* line 432, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.lightmode .adv-show-category-card-table-row-add .adv-show-category-card-table-column {
  color: #140D23;
}

/* line 437, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-card-table-row-add .adv-show-category-card-table-column:first-child i {
  font-size: 0.7rem;
  opacity: 0.8;
}

/* line 443, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-card-table-row-add .adv-show-category-card-table-column:nth-child(2) {
  font-size: 0.65rem;
  font-style: italic;
}

/* line 448, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-card-table-row-add .adv-show-category-card-table-column:last-child {
  opacity: 0;
}

/* line 454, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.adv-show-category-card-table-column {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.65rem;
  padding: 3px 5px;
  color: #fefefe;
}

/* line 463, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.lightmode .adv-show-category-card-table-column {
  color: #140D23;
}

/* line 470, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.form-button, .crm-action-button, .users-management-container .users-header .add-user-btn {
  all: unset;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  border-radius: 30px;
  background-color: #C38761;
  color: #fefefe;
  font-size: 0.7rem;
  font-weight: normal;
  transition: transform 0.2s ease-in-out;
  cursor: pointer;
}

/* line 487, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.form-button.lightmode, .lightmode.crm-action-button, .users-management-container .users-header .lightmode.add-user-btn {
  background-color: #C38761;
  color: #fefefe;
}

/* line 492, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.form-button.nightmode, .nightmode.crm-action-button, .users-management-container .users-header .nightmode.add-user-btn {
  background-color: #E5A82E;
  color: #140D23;
}

/* line 497, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.form-button.lightmode:hover, .lightmode.crm-action-button:hover, .users-management-container .users-header .lightmode.add-user-btn:hover {
  background-color: #9d5d76b3;
  transform: scale(1.05);
}

/* line 502, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_show_category.scss */
.form-button.nightmode:hover, .nightmode.crm-action-button:hover, .users-management-container .users-header .nightmode.add-user-btn:hover {
  background-color: #864B28;
  transform: scale(1.05);
}

/* line 1, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.adv-edit-category-capsule {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 20px 30px;
  font-size: 1rem;
  gap: 20px;
}

/* line 12, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.adv-edit-category-capsule.lightmode {
  color: #140D23;
}

/* line 16, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.adv-edit-category-capsule form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* line 25, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.adv-edit-category-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 30, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.lightmode .adv-edit-category-capsule p {
  color: #140D23;
}

/* line 34, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.nightmode .adv-edit-category-capsule p {
  color: #fefefe;
}

/* line 39, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.adv-edit-category-capsule span {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 44, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.lightmode .adv-edit-category-capsule span {
  color: #140D23;
}

/* line 48, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.nightmode .adv-edit-category-capsule span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 54, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.lightmode .adv-edit-category-capsule i {
  color: #140D23;
}

/* line 58, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.nightmode .adv-edit-category-capsule i {
  color: #fefefe;
}

/* line 64, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.adv-edit-category-header {
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}

/* line 69, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.adv-edit-category-header h2, .adv-edit-category-header .h2 {
  all: unset;
  font-size: 1.1rem;
  font-weight: bold;
  color: #fefefe;
  text-align: center;
}

/* line 76, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.lightmode .adv-edit-category-header h2, .lightmode .adv-edit-category-header .h2 {
  color: #140D23;
}

/* === ALERT MESSAGES === */
/* Les styles alert sont maintenant dans _category_shared.scss (classe .adv-category-alert) */
/* line 86, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.adv-edit-category-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: rgba(254, 254, 254, 0.1);
  border: 1px solid rgba(232, 232, 232, 0.5);
  border-radius: 20px;
  padding: 30px;
}

/* line 96, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.lightmode .adv-edit-category-form {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 103, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.adv-edit-category-row1 {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

/* line 113, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.adv-edit-category-row2 {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* line 120, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.adv-edit-category-field {
  width: 48%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 126, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.adv-edit-category-field #category-name-input:focus {
  color: #fefefe;
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
  outline: none;
}

/* line 132, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.lightmode .adv-edit-category-field #category-name-input:focus {
  color: #140D23;
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 139, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.adv-edit-category-field label {
  all: unset;
  color: #fefefe !important;
  font-size: 0.8rem !important;
  text-align: center;
  font-weight: 500;
}

/* line 146, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.lightmode .adv-edit-category-field label {
  color: #140D23 !important;
}

/* line 151, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.adv-edit-category-field input, .adv-edit-category-field select {
  all: unset;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(254, 254, 254, 0.5);
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 10px 15px;
  text-align: center;
}

/* line 162, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.lightmode .adv-edit-category-field input, .lightmode .adv-edit-category-field select {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 167, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.adv-edit-category-field input:focus, .adv-edit-category-field select:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
  outline: none;
}

/* line 172, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.lightmode .adv-edit-category-field input:focus, .lightmode .adv-edit-category-field select:focus {
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 179, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.adv-edit-category-field .filter {
  all: unset;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(254, 254, 254, 0.5);
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 10px 15px;
  text-align: center;
}

/* line 190, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.lightmode .adv-edit-category-field .filter {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 195, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.adv-edit-category-field .filter:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
  outline: none;
}

/* line 200, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.lightmode .adv-edit-category-field .filter:focus {
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 206, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.adv-edit-category-field .filter.is-invalid {
  border-color: #ef4444;
  box-shadow: 0 0 8px 2px rgba(239, 68, 68, 0.4);
}

/* line 212, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.adv-edit-category-field input.is-invalid, .adv-edit-category-field select.is-invalid {
  border-color: #ef4444;
  box-shadow: 0 0 8px 2px rgba(239, 68, 68, 0.4);
}

/* line 219, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.adv-edit-category-field-large {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 225, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.adv-edit-category-field-large label {
  all: unset;
  color: #fefefe !important;
  font-size: 0.8rem !important;
  text-align: center;
  font-weight: 500;
}

/* line 232, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.lightmode .adv-edit-category-field-large label {
  color: #140D23 !important;
}

/* line 237, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.adv-edit-category-field-large .form-control-large {
  all: unset;
  background-color: transparent;
  border-radius: 20px;
  border: 1.5px solid rgba(254, 254, 254, 0.5);
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 15px 20px;
  min-height: 120px;
  resize: vertical;
}

/* line 249, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.lightmode .adv-edit-category-field-large .form-control-large {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 254, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.adv-edit-category-field-large .form-control-large:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
  outline: none;
}

/* line 259, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.lightmode .adv-edit-category-field-large .form-control-large:focus {
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 268, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.adv-edit-category-buttons {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}

/* line 279, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.form-button-primary {
  all: unset;
  background-color: rgba(232, 232, 232, 0.8);
  color: #fefefe;
  border: 1px solid rgba(254, 254, 254, 0.3);
  border-radius: 30px;
  padding: 10px 25px;
  font-size: 0.8rem;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 292, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.lightmode .form-button-primary {
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 298, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.form-button-primary:hover {
  background-color: #e8e8e8;
  box-shadow: 0 0 15px 5px rgba(232, 232, 232, 0.3);
}

/* line 302, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.lightmode .form-button-primary:hover {
  background-color: rgba(20, 13, 35, 0.2);
  box-shadow: 0 0 15px 5px rgba(20, 13, 35, 0.2);
}

/* line 310, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.form-button-secondary {
  all: unset;
  background-color: transparent;
  color: #fefefe;
  border: 1px solid rgba(254, 254, 254, 0.5);
  border-radius: 30px;
  padding: 10px 25px;
  font-size: 0.8rem;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 323, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.lightmode .form-button-secondary {
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 328, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.form-button-secondary:hover {
  background-color: rgba(254, 254, 254, 0.1);
  box-shadow: 0 0 10px 3px rgba(254, 254, 254, 0.2);
}

/* line 332, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
.lightmode .form-button-secondary:hover {
  background-color: rgba(20, 13, 35, 0.05);
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.2);
}

@media (max-width: 768px) {
  /* line 341, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
  .adv-edit-category-row1 {
    flex-direction: column;
    gap: 15px;
  }
  /* line 346, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
  .adv-edit-category-field {
    width: 100%;
  }
  /* line 350, app/assets/stylesheets/pages/servicespace/back-office/adv/category_management/_edit_category.scss */
  .adv-edit-category-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

/* === TOAST NOTIFICATIONS === */
/* Les styles toast sont maintenant dans _category_shared.scss (classe .adv-category-form-toast) */
/* ==========================================================================
   CLIENT ACCEPTANCE REPORT LIST - MODULE ADV
   Structure principale et composants pour la gestion des PV client
   ========================================================================== */
/* line 6, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-capsule {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-right: 10px;
  font-size: 0.8rem;
  gap: 10px;
  overflow: hidden;
}

/* line 18, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-capsule.lightmode {
  color: #140D23;
}

/* line 22, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-capsule.nightmode {
  color: #fefefe;
}

/* line 27, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 33, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-capsule span {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 39, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-capsule.lightmode span {
  color: #C38761;
}

/* line 43, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-capsule.nightmode span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 47, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-capsule.lightmode p {
  color: #140D23;
}

/* line 51, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-capsule.nightmode p {
  color: #fefefe;
}

/* line 55, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-capsule.lightmode i {
  color: #140D23;
}

/* line 59, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-capsule.nightmode i {
  color: #fefefe;
}

/* line 63, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-row1 {
  width: 80%;
  height: 50px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  flex-shrink: 0;
  margin-bottom: 20px;
}

/* line 74, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-row1 form {
  width: 100%;
  display: flex;
  padding: 0 !important;
}

/* line 81, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-row1-searchbar {
  width: 100%;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(254, 254, 254, 0.5);
  display: flex;
  justify-content: space-between;
  align-content: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
  /* Utilise maintenant la classe générique adv-searchbar */
}

/* line 94, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-capsule.lightmode .adv-client-acceptance-report-list-row1-searchbar {
  border-color: rgba(20, 13, 35, 0.5);
  color: #140D23;
}

/* line 99, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-row1-searchbar .adv-client-acceptance-report-list-search-form {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 106, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-row1-searchbar .adv-client-acceptance-report-list-search-input-wrapper {
  position: relative;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

/* line 115, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-row1-searchbar .adv-client-acceptance-report-list-clear-search-button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: #fefefe;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 0.6rem;
  text-decoration: none;
}

/* line 130, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-capsule.lightmode .adv-client-acceptance-report-list-row1-searchbar .adv-client-acceptance-report-list-clear-search-button {
  color: #140D23;
}

/* line 134, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-row1-searchbar .adv-client-acceptance-report-list-clear-search-button:hover {
  color: rgba(254, 254, 254, 0.7);
}

/* line 137, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-capsule.lightmode .adv-client-acceptance-report-list-row1-searchbar .adv-client-acceptance-report-list-clear-search-button:hover {
  color: rgba(20, 13, 35, 0.7);
}

/* line 143, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-row1-searchbar button {
  all: unset;
  cursor: pointer;
}

/* line 148, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-row1-searchbar .adv-client-acceptance-report-list-search-button {
  padding: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 156, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-row1-searchbar i {
  color: #fefefe !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 161, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-capsule.lightmode .adv-client-acceptance-report-list-row1-searchbar i {
  color: #140D23 !important;
}

/* line 166, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-row1-searchbar span {
  font-weight: normal !important;
  color: #fefefe !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 172, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-capsule.lightmode .adv-client-acceptance-report-list-row1-searchbar span {
  color: #140D23 !important;
}

/* line 178, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-search-info {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: #fefefe;
  margin-bottom: -10px;
  z-index: 5;
}

/* line 188, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-capsule.lightmode .adv-client-acceptance-report-list-search-info {
  color: #140D23;
}

/* line 192, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-search-info span {
  opacity: 0.8;
}

/* line 196, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-search-info .adv-client-acceptance-report-list-reset-search-link {
  color: #fefefe;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  border-radius: 4px;
  background-color: rgba(254, 254, 254, 0.1);
  transition: background-color 0.2s ease;
}

/* line 207, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-capsule.lightmode .adv-client-acceptance-report-list-search-info .adv-client-acceptance-report-list-reset-search-link {
  color: #140D23;
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 212, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-search-info .adv-client-acceptance-report-list-reset-search-link:hover {
  background-color: rgba(254, 254, 254, 0.2);
}

/* line 215, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-capsule.lightmode .adv-client-acceptance-report-list-search-info .adv-client-acceptance-report-list-reset-search-link:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* line 222, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-tabs {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
}

/* line 230, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-row2 {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  background-color: rgba(254, 254, 254, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 15px;
  overflow: hidden;
  margin-top: 5px;
}

/* line 244, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-capsule.lightmode .adv-client-acceptance-report-list-row2 {
  background-color: rgba(254, 254, 254, 0.1);
}

/* line 249, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-row2-list {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

/* line 258, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-row2-list-head {
  width: 97%;
  display: flex;
  padding-right: 8px;
  flex-direction: row;
  font-weight: bold;
  font-size: 0.75rem;
  margin-bottom: 5px;
  color: #fefefe;
}

/* line 268, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-capsule.lightmode .adv-client-acceptance-report-list-row2-list-head {
  color: #140D23;
}

/* line 273, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-row2-list-head .adv-client-acceptance-report-list-row2-list-column {
  width: 20%;
  text-align: center;
  justify-content: center;
}

/* line 278, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-row2-list-head .adv-client-acceptance-report-list-row2-list-column.sortable {
  cursor: pointer;
  transition: background-color 0.2s ease;
}

/* line 282, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-row2-list-head .adv-client-acceptance-report-list-row2-list-column.sortable:hover {
  background-color: rgba(254, 254, 254, 0.05);
}

/* line 285, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-capsule.lightmode .adv-client-acceptance-report-list-row2-list-head .adv-client-acceptance-report-list-row2-list-column.sortable:hover {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 290, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-row2-list-head .adv-client-acceptance-report-list-row2-list-column.sortable .sort-link {
  color: #fefefe;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 100%;
  height: 100%;
}

/* line 300, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-capsule.lightmode .adv-client-acceptance-report-list-row2-list-head .adv-client-acceptance-report-list-row2-list-column.sortable .sort-link {
  color: #140D23;
}

/* line 304, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-row2-list-head .adv-client-acceptance-report-list-row2-list-column.sortable .sort-link i {
  font-size: 0.6rem !important;
}

/* line 307, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-capsule.lightmode .adv-client-acceptance-report-list-row2-list-head .adv-client-acceptance-report-list-row2-list-column.sortable .sort-link i {
  color: #140D23 !important;
}

/* line 315, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-row2-list-column {
  display: flex;
  align-items: center;
  font-size: 0.7rem;
  padding: 5px 10px;
}

/* line 322, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-row2-list-entries {
  width: 100%;
  height: calc(100% - 30px);
  display: flex;
  gap: 5px;
  flex-direction: column;
  overflow-y: auto;
}

/* line 330, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-row2-list-entries::-webkit-scrollbar {
  width: 8px;
}

/* line 334, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-row2-list-entries::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 338, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-capsule.lightmode .adv-client-acceptance-report-list-row2-list-entries::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 343, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-row2-list-entries::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 348, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-row2-list-entries::-webkit-scrollbar-thumb:hover {
  background: #fefefe;
}

/* line 351, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-capsule.lightmode .adv-client-acceptance-report-list-row2-list-entries::-webkit-scrollbar-thumb:hover {
  background: #140D23;
}

/* line 357, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-row2-list-entry {
  width: 97%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  font-size: 0.7rem;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 2px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 40px;
  padding: 3px 0;
  margin-bottom: 2px;
  color: #fefefe;
}

/* line 375, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-capsule.lightmode .adv-client-acceptance-report-list-row2-list-entry {
  color: #140D23;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 2px;
}

/* line 380, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-row2-list-entry:hover {
  transform: scale(1.01);
  transition: transform 0.3s ease;
  background-color: rgba(254, 254, 254, 0.1);
}

/* line 385, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-capsule.lightmode .adv-client-acceptance-report-list-row2-list-entry:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 390, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-row2-list-entry .adv-client-acceptance-report-list-row2-list-column {
  width: 20%;
  text-align: center;
  justify-content: center;
}

/* line 397, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.no-results {
  width: 100%;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #fefefe;
  background-color: rgba(254, 254, 254, 0.05);
  border-radius: 8px;
  margin-top: 10px;
}

/* line 407, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.adv-client-acceptance-report-list-capsule.lightmode .no-results {
  color: #140D23;
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 413, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.form-button, .crm-action-button, .users-management-container .users-header .add-user-btn {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  border: none;
  cursor: pointer;
  background-color: #C38761;
  color: #fefefe;
}

/* line 428, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.form-button:hover, .crm-action-button:hover, .users-management-container .users-header .add-user-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* line 434, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_list.scss */
.d-none {
  display: none !important;
}

/* line 1, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-capsule {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 10px 20px 10px 20px;
  font-size: 0.8rem;
  gap: 10px;
}

/* line 12, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-capsule.lightmode {
  color: #140D23;
}

/* line 14, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-capsule.lightmode .adv-new-client-acceptance-report-config-select {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 18, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-capsule.lightmode .adv-new-client-acceptance-report-config-input {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 22, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-capsule.lightmode .new-client-acceptance-report-transaction-choice {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 26, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-capsule.lightmode .search-input {
  border-color: transparent !important;
}

/* line 28, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-capsule.lightmode .search-input:focus {
  border-color: transparent !important;
  box-shadow: none !important;
}

/* line 33, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-capsule.lightmode .recipient-choice {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 37, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-capsule.lightmode #publicMarket {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 41, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-capsule.lightmode #privateMarket {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 47, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-capsule .form-group {
  margin: 0;
}

/* line 51, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-capsule form {
  display: flex !important;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  align-items: center;
  height: 100%;
}

/* Card de Configuration */
/* line 62, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-configuration-card {
  width: 100%;
  max-width: 1400px;
  background: linear-gradient(135deg, rgba(254, 254, 254, 0.1) 0%, rgba(254, 254, 254, 0.05) 100%);
  border: 1px solid rgba(254, 254, 254, 0.2);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

/* line 74, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.lightmode .adv-new-client-acceptance-report-configuration-card {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.08) 0%, rgba(20, 13, 35, 0.03) 100%);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 81, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-config-header {
  text-align: center;
  margin-bottom: 30px;
}

/* line 85, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-config-header h2, .adv-new-client-acceptance-report-config-header .h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fefefe;
  margin-bottom: 8px;
}

/* line 91, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.lightmode .adv-new-client-acceptance-report-config-header h2, .lightmode .adv-new-client-acceptance-report-config-header .h2 {
  color: #140D23;
}

/* line 96, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-config-header p {
  font-size: 0.9rem;
  color: rgba(254, 254, 254, 0.7);
}

/* line 100, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.lightmode .adv-new-client-acceptance-report-config-header p {
  color: rgba(20, 13, 35, 0.7);
}

/* line 106, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-config-header .alert-info {
  margin-top: 15px;
  padding: 15px 20px;
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.15) 0%, rgba(195, 135, 97, 0.08) 100%);
  border: 1px solid rgba(195, 135, 97, 0.3);
  border-left: 4px solid #C38761;
  border-radius: 8px;
  color: rgba(254, 254, 254, 0.95);
  font-size: 0.9rem;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 120, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-config-header .alert-info i {
  color: #C38761;
  font-size: 1.1rem;
  margin-right: 8px;
}

/* line 126, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-config-header .alert-info strong {
  color: #C38761;
  font-weight: 600;
}

/* line 131, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-config-header .alert-info small, .adv-new-client-acceptance-report-config-header .alert-info .small {
  display: block;
  margin-top: 8px;
  color: rgba(254, 254, 254, 0.8);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* line 139, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.lightmode .adv-new-client-acceptance-report-config-header .alert-info {
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.2) 0%, rgba(195, 135, 97, 0.1) 100%);
  border-color: rgba(195, 135, 97, 0.4);
  color: #140D23;
}

/* line 144, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.lightmode .adv-new-client-acceptance-report-config-header .alert-info i {
  color: #C38761;
}

/* line 148, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.lightmode .adv-new-client-acceptance-report-config-header .alert-info strong {
  color: #C38761;
}

/* line 152, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.lightmode .adv-new-client-acceptance-report-config-header .alert-info small, .lightmode .adv-new-client-acceptance-report-config-header .alert-info .small {
  color: rgba(20, 13, 35, 0.8);
}

/* line 159, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-config-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* line 165, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-config-section {
  width: 100%;
}

/* line 169, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-config-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  /* line 169, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
  .adv-new-client-acceptance-report-config-row {
    grid-template-columns: 1fr;
  }
}

/* line 179, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-config-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 185, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-config-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 190, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-config-label i {
  font-size: 1.1rem;
  color: #C38761;
}

/* line 195, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-config-label h3, .adv-new-client-acceptance-report-config-label .h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fefefe;
  margin: 0;
}

/* line 201, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.lightmode .adv-new-client-acceptance-report-config-label h3, .lightmode .adv-new-client-acceptance-report-config-label .h3 {
  color: #140D23;
}

/* line 207, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-config-select {
  width: auto;
  background: rgba(254, 254, 254, 0.08);
  border: 1px solid rgba(254, 254, 254, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  color: #fefefe;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

/* line 217, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.lightmode .adv-new-client-acceptance-report-config-select {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 223, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-config-select:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 229, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-config-select option {
  background: #140D23;
  color: #fefefe;
}

/* line 235, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-config-input {
  width: 100%;
  background: rgba(254, 254, 254, 0.08);
  border: 1px solid rgba(254, 254, 254, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  color: #fefefe;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

/* line 245, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.lightmode .adv-new-client-acceptance-report-config-input {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 251, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-config-input::placeholder {
  color: rgba(254, 254, 254, 0.5);
}

/* line 254, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.lightmode .adv-new-client-acceptance-report-config-input::placeholder {
  color: rgba(20, 13, 35, 0.5);
}

/* line 259, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-config-input:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 266, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-market-type-selector {
  display: flex;
  gap: 12px;
}

/* line 270, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-market-type-selector .adv-new-client-acceptance-report-market-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(254, 254, 254, 0.08);
  border: 1px solid rgba(254, 254, 254, 0.2);
  border-radius: 12px;
  color: #fefefe;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 286, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.lightmode .adv-new-client-acceptance-report-market-type-selector .adv-new-client-acceptance-report-market-option {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 292, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-market-type-selector .adv-new-client-acceptance-report-market-option i {
  font-size: 1rem;
  color: #C38761;
}

/* line 297, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-market-type-selector .adv-new-client-acceptance-report-market-option:hover {
  background: rgba(254, 254, 254, 0.12);
  border-color: rgba(254, 254, 254, 0.3);
  transform: translateY(-1px);
}

/* line 302, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.lightmode .adv-new-client-acceptance-report-market-type-selector .adv-new-client-acceptance-report-market-option:hover {
  background: rgba(20, 13, 35, 0.12);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 308, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-market-type-selector .adv-new-client-acceptance-report-market-option.selected {
  background: #C38761;
  border-color: #C38761;
  color: #140D23;
}

/* line 313, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-market-type-selector .adv-new-client-acceptance-report-market-option.selected i {
  color: #140D23;
}

/* line 320, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-search-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* line 326, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-search-input {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 332, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-search-input .search-form {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

/* line 339, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-search-input i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(254, 254, 254, 0.6);
  font-size: 0.9rem;
  z-index: 2;
}

/* line 348, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.lightmode .adv-new-client-acceptance-report-search-input i {
  color: rgba(20, 13, 35, 0.6);
}

/* line 353, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-search-input button {
  all: unset;
  padding: 8px 12px;
  background: #C38761;
  border-radius: 8px;
  color: #140D23;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 362, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-search-input button:hover {
  background: #864B28;
  transform: scale(1.05);
}

/* line 367, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-search-input button i {
  position: static;
  transform: none;
  color: #140D23;
}

/* Utilise maintenant la classe générique adv-searchbar */
/* line 377, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-search-results {
  min-height: 120px;
  background: rgba(254, 254, 254, 0.05);
  border: 1px solid rgba(254, 254, 254, 0.15);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}

/* line 385, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.lightmode .adv-new-client-acceptance-report-search-results {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 392, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-search-results .userChoice {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* line 399, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-search-results .userChoice .no-recipient, .adv-new-client-acceptance-report-search-results .userChoice .no-document {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(254, 254, 254, 0.6);
}

/* line 406, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.lightmode .adv-new-client-acceptance-report-search-results .userChoice .no-recipient, .lightmode .adv-new-client-acceptance-report-search-results .userChoice .no-document {
  color: rgba(20, 13, 35, 0.6);
}

/* line 410, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-search-results .userChoice .no-recipient::before, .adv-new-client-acceptance-report-search-results .userChoice .no-document::before {
  content: '\f007';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 1.5rem;
  color: rgba(254, 254, 254, 0.4);
}

/* line 417, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.lightmode .adv-new-client-acceptance-report-search-results .userChoice .no-recipient::before, .lightmode .adv-new-client-acceptance-report-search-results .userChoice .no-document::before {
  color: rgba(20, 13, 35, 0.4);
}

/* line 425, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-transaction-selector {
  display: flex;
  gap: 12px;
}

/* line 429, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-transaction-selector .new-client-acceptance-report-transaction-choice {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(254, 254, 254, 0.08);
  border: 1px solid rgba(254, 254, 254, 0.2);
  border-radius: 12px;
  color: #fefefe;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 445, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.lightmode .adv-new-client-acceptance-report-transaction-selector .new-client-acceptance-report-transaction-choice {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 451, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-transaction-selector .new-client-acceptance-report-transaction-choice i {
  font-size: 1rem;
  color: #C38761;
}

/* line 456, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-transaction-selector .new-client-acceptance-report-transaction-choice:hover {
  background: rgba(254, 254, 254, 0.12);
  border-color: rgba(254, 254, 254, 0.3);
  transform: translateY(-1px);
}

/* line 461, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.lightmode .adv-new-client-acceptance-report-transaction-selector .new-client-acceptance-report-transaction-choice:hover {
  background: rgba(20, 13, 35, 0.12);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 467, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-transaction-selector .new-client-acceptance-report-transaction-choice.selected {
  background: #C38761;
  border-color: #C38761;
  color: #140D23;
}

/* line 472, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-transaction-selector .new-client-acceptance-report-transaction-choice.selected i {
  color: #140D23;
}

/* line 479, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-transaction-content {
  margin-top: 20px;
  padding: 20px;
  background: rgba(254, 254, 254, 0.05);
  border: 1px solid rgba(254, 254, 254, 0.15);
  border-radius: 12px;
}

/* line 486, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.lightmode .adv-new-client-acceptance-report-transaction-content {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 492, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-transaction-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(254, 254, 254, 0.08);
  border-radius: 8px;
}

/* line 500, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.lightmode .adv-new-client-acceptance-report-transaction-info {
  background: rgba(20, 13, 35, 0.08);
}

/* line 504, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-transaction-info i {
  color: #C38761;
  font-size: 1.1rem;
}

/* line 509, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-transaction-info span {
  color: #fefefe;
  font-size: 0.9rem;
  font-weight: 500;
}

/* line 514, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.lightmode .adv-new-client-acceptance-report-transaction-info span {
  color: #140D23;
}

/* line 521, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-document-search h4, .adv-new-client-acceptance-report-document-search .h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fefefe;
  margin-bottom: 15px;
}

/* line 527, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.lightmode .adv-new-client-acceptance-report-document-search h4, .lightmode .adv-new-client-acceptance-report-document-search .h4 {
  color: #140D23;
}

/* line 532, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-document-search .search-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* line 538, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-document-search .form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 544, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-document-search .filter {
  width: auto;
  background: rgba(254, 254, 254, 0.08);
  border: 1px solid rgba(254, 254, 254, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  color: #fefefe;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

/* line 554, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.lightmode .adv-new-client-acceptance-report-document-search .filter {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 560, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-document-search .filter:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 566, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-document-search .filter option {
  background: #140D23;
  color: #fefefe;
}

/* Styles pour les résultats de recherche */
/* line 576, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.results {
  min-height: 50px;
  max-height: 200px;
  overflow-y: auto;
  width: 100%;
  /* Personnalisation de la barre de défilement */
}

/* line 583, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.results::-webkit-scrollbar {
  width: 5px;
}

/* line 587, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.results::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 592, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.results::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
  border: 4px solid #e8e8e8;
}

/* line 598, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.results::-webkit-scrollbar-thumb:hover {
  background: #fefefe;
}

/* Styles pour les éléments sélectionnés */
/* line 604, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.userChoice {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 15px;
}

/* line 611, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.userChoice .no-document {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(254, 254, 254, 0.1) 0%, rgba(254, 254, 254, 0.05) 100%);
  border: 1px solid rgba(254, 254, 254, 0.3);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-color-primary);
}

/* line 628, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.lightmode .userChoice .no-document {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.1) 0%, rgba(20, 13, 35, 0.05) 100%);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 635, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.userChoice .item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(254, 254, 254, 0.1) 0%, rgba(254, 254, 254, 0.05) 100%);
  border: 1px solid rgba(254, 254, 254, 0.3);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* line 649, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.lightmode .userChoice .item {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.1) 0%, rgba(20, 13, 35, 0.05) 100%);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 654, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.userChoice .item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  border-color: rgba(232, 232, 232, 0.6);
  background: linear-gradient(135deg, rgba(254, 254, 254, 0.15) 0%, rgba(254, 254, 254, 0.08) 100%);
}

/* line 660, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.lightmode .userChoice .item:hover {
  border-color: rgba(20, 13, 35, 0.4);
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.15) 0%, rgba(20, 13, 35, 0.08) 100%);
}

/* line 666, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.userChoice .item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #C38761, #864B28);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* line 678, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.userChoice .item:hover::before {
  opacity: 1;
}

/* line 682, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.userChoice .item .item-header {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-grow: 1;
}

/* line 688, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.userChoice .item .item-header i {
  color: green;
  font-size: 1rem;
  padding: 8px;
  background-color: rgba(195, 135, 97, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* line 697, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.userChoice .item .item-header p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-color-primary);
  line-height: 1.4;
  transition: color 0.3s ease;
}

/* line 705, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.lightmode .userChoice .item .item-header p {
  color: #140D23;
}

/* line 712, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.userChoice .item:hover .item-header i {
  color: #864B28;
  background-color: rgba(134, 75, 40, 0.15);
  transform: scale(1.1);
}

/* line 718, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.userChoice .item:hover .item-header p {
  color: #fefefe;
}

/* line 721, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.lightmode .userChoice .item:hover .item-header p {
  color: #140D23;
}

/* line 727, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.userChoice .item .item-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* line 734, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.userChoice .item .item-actions button {
  all: unset;
  padding: 6px;
  border-radius: 6px;
  background-color: rgba(254, 254, 254, 0.1);
  color: #fefefe;
  font-size: 0.7rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 744, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.lightmode .userChoice .item .item-actions button {
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 749, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.userChoice .item .item-actions button:hover {
  background-color: rgba(254, 254, 254, 0.2);
  transform: scale(1.05);
}

/* line 753, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.lightmode .userChoice .item .item-actions button:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* line 760, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.userChoice .item:hover .item-actions {
  opacity: 1;
}

/* Boutons d'action */
/* line 767, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-row2 {
  width: 80%;
  height: 7.5%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
}

/* line 777, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-row2 #fakeSubmitButton {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  border: none;
  cursor: pointer;
  background-color: #C38761;
  color: #140D23;
}

/* line 792, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-row2 #fakeSubmitButton:hover {
  background-color: #864B28;
  transform: scale(1.05);
}

/* line 798, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-row2 form {
  display: flex !important;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  align-items: center;
  height: 100%;
}

/* Styles généraux pour les éléments de base */
/* line 809, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 815, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.adv-new-client-acceptance-report-capsule span {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 823, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.lightmode .adv-new-client-acceptance-report-capsule span {
  color: #140D23;
}

/* line 826, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.nightmode .adv-new-client-acceptance-report-capsule span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 832, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.lightmode .adv-new-client-acceptance-report-capsule p {
  color: #140D23;
}

/* line 835, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.nightmode .adv-new-client-acceptance-report-capsule p {
  color: #fefefe;
}

/* line 841, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.lightmode .adv-new-client-acceptance-report-capsule i {
  color: #140D23;
}

/* line 844, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.nightmode .adv-new-client-acceptance-report-capsule i {
  color: #fefefe;
}

/* line 851, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.trash {
  cursor: pointer;
  font-size: 0.8rem;
}

/* line 854, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_new_client_acceptance_report.scss */
.trash:hover {
  color: #A60240;
}

/* line 1, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_edit_client_acceptance_report.scss */
.adv-edit-client-acceptance-report-capsule {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 10px 30px 10px 30px;
  font-size: 0.8rem;
  gap: 10px;
}

/* line 13, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_edit_client_acceptance_report.scss */
.adv-edit-client-acceptance-report-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 19, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_edit_client_acceptance_report.scss */
.adv-edit-client-acceptance-report-capsule span {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 25, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_edit_client_acceptance_report.scss */
.adv-edit-client-acceptance-report-capsule.lightmode span {
  color: #C38761;
}

/* line 29, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_edit_client_acceptance_report.scss */
.adv-edit-client-acceptance-report-capsule.nightmode span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 33, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_edit_client_acceptance_report.scss */
.adv-edit-client-acceptance-report-capsule.lightmode p {
  color: #140D23;
}

/* line 37, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_edit_client_acceptance_report.scss */
.adv-edit-client-acceptance-report-capsule.nightmode p {
  color: #fefefe;
}

/* line 41, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_edit_client_acceptance_report.scss */
.adv-edit-client-acceptance-report-capsule.lightmode i {
  color: #140D23;
}

/* line 45, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_edit_client_acceptance_report.scss */
.adv-edit-client-acceptance-report-capsule.nightmode i {
  color: #fefefe;
}

/* line 49, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_edit_client_acceptance_report.scss */
.adv-edit-client-acceptance-report-row1 {
  width: 80%;
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 17px;
  background-color: rgba(254, 254, 254, 0.1);
  border: 1px solid rgba(232, 232, 232, 0.5);
  border-radius: 20px;
  padding: 10px;
}

/* line 61, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_edit_client_acceptance_report.scss */
.adv-edit-client-acceptance-report-row1 form {
  width: 100%;
  display: flex;
}

/* line 66, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_edit_client_acceptance_report.scss */
.adv-edit-client-acceptance-report-row1 form input:focus {
  background-color: transparent;
}

/* line 72, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_edit_client_acceptance_report.scss */
.adv-edit-client-acceptance-report-row1 h2, .adv-edit-client-acceptance-report-row1 .h2 {
  all: unset;
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 20px;
}

/* line 80, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_edit_client_acceptance_report.scss */
.adv-edit-client-acceptance-report-row2 {
  width: 80%;
  height: 20%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
}

/* line 91, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_edit_client_acceptance_report.scss */
.adv-edit-client-acceptance-report-row1-form {
  width: 100%;
  overflow-y: auto;
  /* Personnalisation de la barre de défilement */
}

/* line 95, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_edit_client_acceptance_report.scss */
.adv-edit-client-acceptance-report-row1-form::-webkit-scrollbar {
  width: 8px;
  /* Largeur de la barre de défilement */
}

/* line 100, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_edit_client_acceptance_report.scss */
.adv-edit-client-acceptance-report-row1-form::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  /* Couleur de l'arrière-plan de la barre */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 105, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_edit_client_acceptance_report.scss */
.adv-edit-client-acceptance-report-row1-form::-webkit-scrollbar-thumb {
  background: #C38761;
  /* Couleur de la barre de défilement */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 111, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_edit_client_acceptance_report.scss */
.adv-edit-client-acceptance-report-row1-form::-webkit-scrollbar-thumb:hover {
  background: #fefefe;
  /* Couleur de la barre au survol */
}

/* line 115, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_edit_client_acceptance_report.scss */
.adv-edit-client-acceptance-report-row1-form form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 121, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_edit_client_acceptance_report.scss */
.adv-edit-client-acceptance-report-row1-form form .adv-edit-client-acceptance-report-row1-form-field {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* line 128, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_edit_client_acceptance_report.scss */
.adv-edit-client-acceptance-report-row1-form form .adv-edit-client-acceptance-report-row1-form-field input {
  all: unset;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(254, 254, 254, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 140, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_edit_client_acceptance_report.scss */
.adv-edit-client-acceptance-report-row1-form form .adv-edit-client-acceptance-report-row1-form-field input:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 146, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_edit_client_acceptance_report.scss */
.adv-edit-client-acceptance-report-row1-form form .adv-edit-client-acceptance-report-row1-form-field select {
  all: unset;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(254, 254, 254, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 158, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_edit_client_acceptance_report.scss */
.adv-edit-client-acceptance-report-row1-form form .adv-edit-client-acceptance-report-row1-form-field select:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 162, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_edit_client_acceptance_report.scss */
.adv-edit-client-acceptance-report-row1-form form .adv-edit-client-acceptance-report-row1-form-field select:open {
  background-color: rgba(0, 0, 0, 0.8);
}

/* line 167, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_edit_client_acceptance_report.scss */
.adv-edit-client-acceptance-report-row1-form form .adv-edit-client-acceptance-report-row1-form-field textarea {
  all: unset;
  background-color: transparent;
  border-radius: 10px;
  border: 1.5px solid rgba(254, 254, 254, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 179, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_edit_client_acceptance_report.scss */
.adv-edit-client-acceptance-report-row1-form form .adv-edit-client-acceptance-report-row1-form-field textarea:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 185, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_edit_client_acceptance_report.scss */
.adv-edit-client-acceptance-report-row1-form form .adv-edit-client-acceptance-report-row1-form-field label {
  all: unset;
  color: #fefefe !important;
  font-size: 0.8rem !important;
  text-align: center;
}

/* ==========================================================================
   ADV SHOW TABS SCROLLER
   Chevrons de navigation horizontale pour les onglets des pages show ADV.
   Réutilise landing_scroller_controller.js (query .orizon-rail-arrow--left/--right).
   ========================================================================== */
/* line 7, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/../../../../../shared/_adv_show_tabs_scroller.scss */
.adv-tabs-scroller {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* line 13, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/../../../../../shared/_adv_show_tabs_scroller.scss */
.adv-tabs-scroller-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.65rem;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

/* line 29, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/../../../../../shared/_adv_show_tabs_scroller.scss */
.lightmode .adv-tabs-scroller-arrow {
  background-color: rgba(20, 13, 35, 0.08);
  color: rgba(20, 13, 35, 0.6);
}

/* line 34, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/../../../../../shared/_adv_show_tabs_scroller.scss */
.adv-tabs-scroller-arrow:hover:not([disabled]) {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* line 38, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/../../../../../shared/_adv_show_tabs_scroller.scss */
.lightmode .adv-tabs-scroller-arrow:hover:not([disabled]) {
  background-color: rgba(20, 13, 35, 0.15);
  color: #140D23;
}

/* line 44, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/../../../../../shared/_adv_show_tabs_scroller.scss */
.adv-tabs-scroller-arrow[disabled] {
  opacity: 0;
  cursor: default;
  pointer-events: none;
}

/* ==========================================================================
   SHOW CLIENT ACCEPTANCE REPORT - MODULE ADV
   Structure principale et composants pour l'affichage détaillé d'un PV de réception
   ========================================================================== */
/* line 6, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  margin: 0;
  height: 100%;
  padding: 20px;
  overflow-x: hidden;
  overflow-y: auto;
  /* Personnalisation de la barre de défilement */
}

/* line 18, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-container::-webkit-scrollbar {
  width: 8px;
}

/* line 22, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 27, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-container::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 32, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-container::-webkit-scrollbar-thumb:hover {
  background: #fefefe;
}

/* line 35, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-container.lightmode {
  color: #140D23;
}

/* line 42, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .adv-document-list p {
  color: #140D23 !important;
}

/* line 48, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-main-content {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 15px;
  min-width: 0;
  flex: 1;
  transition: all 0.3s ease;
}

@media (max-width: 1024px) {
  /* line 48, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
  .adv-show-client-acceptance-report-main-content {
    flex-direction: column;
  }
}

/* line 61, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-main-content.wide-margins {
  justify-content: center;
}

/* line 66, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 5px;
  overflow: hidden;
  flex: 1;
  min-width: 0;
  /* ==========================================================================
     EN-TÊTE AVEC INFORMATIONS DU PV DE RÉCEPTION ET ONGLETS
     ========================================================================== */
  /* ==========================================================================
     CONTENU DES ONGLETS
     ========================================================================== */
  /* ==========================================================================
     ONGLET DÉTAILS - CONTENU SPÉCIFIQUE
     ========================================================================== */
}

@media (max-width: 768px) {
  /* line 66, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
  .adv-show-client-acceptance-report-capsule {
    padding: 15px;
  }
}

/* line 83, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .adv-show-client-acceptance-report-capsule {
  background-color: rgba(20, 13, 35, 0.05);
  color: #140D23;
}

/* line 91, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-header-tabs {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

/* line 97, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-header-tabs .adv-client-acceptance-report-info-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 5px;
  gap: 10px;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  /* line 97, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
  .adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-header-tabs .adv-client-acceptance-report-info-header {
    grid-template-columns: 1fr;
    gap: 5px;
    overflow-x: auto;
  }
  /* line 113, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
  .adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-header-tabs .adv-client-acceptance-report-info-header::-webkit-scrollbar {
    height: 4px;
  }
  /* line 117, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
  .adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-header-tabs .adv-client-acceptance-report-info-header::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
  }
  /* line 122, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
  .adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-header-tabs .adv-client-acceptance-report-info-header::-webkit-scrollbar-thumb {
    background: #C38761;
    border-radius: 10px;
  }
  /* line 127, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
  .adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-header-tabs .adv-client-acceptance-report-info-header::-webkit-scrollbar-thumb:hover {
    background: #fefefe;
  }
}

/* line 132, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-header-tabs .adv-client-acceptance-report-info-header {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 136, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-header-tabs .adv-client-acceptance-report-info-header .adv-header-section, .adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-header-tabs .adv-client-acceptance-report-info-header .adv-contract-number-section,
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-header-tabs .adv-client-acceptance-report-info-header .adv-market-type-section {
  display: flex;
  flex-direction: row;
  gap: 5px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* line 144, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-header-tabs .adv-client-acceptance-report-info-header .adv-header-section .adv-label, .adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-header-tabs .adv-client-acceptance-report-info-header .adv-contract-number-section .adv-label,
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-header-tabs .adv-client-acceptance-report-info-header .adv-market-type-section .adv-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  white-space: nowrap;
  display: block;
}

/* line 150, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-header-tabs .adv-client-acceptance-report-info-header .adv-header-section .adv-label, .lightmode .adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-header-tabs .adv-client-acceptance-report-info-header .adv-contract-number-section .adv-label,
.lightmode .adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-header-tabs .adv-client-acceptance-report-info-header .adv-market-type-section .adv-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 155, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-header-tabs .adv-client-acceptance-report-info-header .adv-header-section .adv-value, .adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-header-tabs .adv-client-acceptance-report-info-header .adv-contract-number-section .adv-value,
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-header-tabs .adv-client-acceptance-report-info-header .adv-market-type-section .adv-value {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  display: block;
}

/* line 161, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-header-tabs .adv-client-acceptance-report-info-header .adv-header-section .adv-value, .lightmode .adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-header-tabs .adv-client-acceptance-report-info-header .adv-contract-number-section .adv-value,
.lightmode .adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-header-tabs .adv-client-acceptance-report-info-header .adv-market-type-section .adv-value {
  color: #140D23;
}

/* line 167, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-header-tabs .adv-client-acceptance-report-info-header .adv-header-section.adv-client-section .adv-value, .adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-header-tabs .adv-client-acceptance-report-info-header .adv-client-section.adv-contract-number-section .adv-value,
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-header-tabs .adv-client-acceptance-report-info-header .adv-client-section.adv-market-type-section .adv-value {
  font-size: 0.9rem;
  white-space: nowrap;
}

/* line 175, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-header-tabs .adv-client-acceptance-report-tabs {
  display: flex;
  gap: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
  overflow-x: auto;
  flex: 1;
  min-width: 0;
  scrollbar-width: none;
}

/* line 184, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-header-tabs .adv-client-acceptance-report-tabs::-webkit-scrollbar {
  display: none;
}

@media (max-width: 768px) {
  /* line 175, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
  .adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-header-tabs .adv-client-acceptance-report-tabs {
    gap: 3px;
  }
}

/* line 190, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-header-tabs .adv-client-acceptance-report-tabs {
  border-bottom: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 194, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-header-tabs .adv-client-acceptance-report-tabs .adv-tab-button {
  padding: 5px 10px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  border-radius: 8px 8px 0 0;
  white-space: nowrap;
}

@media (max-width: 768px) {
  /* line 194, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
  .adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-header-tabs .adv-client-acceptance-report-tabs .adv-tab-button {
    font-size: 0.75rem;
    padding: 5px 8px;
  }
}

/* line 212, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-header-tabs .adv-client-acceptance-report-tabs .adv-tab-button {
  color: rgba(20, 13, 35, 0.7);
}

/* line 216, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-header-tabs .adv-client-acceptance-report-tabs .adv-tab-button:hover {
  color: rgba(255, 255, 255, 0.9);
  background-color: rgba(255, 255, 255, 0.05);
}

/* line 220, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-header-tabs .adv-client-acceptance-report-tabs .adv-tab-button:hover {
  color: rgba(20, 13, 35, 0.9);
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 226, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-header-tabs .adv-client-acceptance-report-tabs .adv-tab-button.active {
  color: #C38761;
  border-bottom-color: #C38761;
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 231, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-header-tabs .adv-client-acceptance-report-tabs .adv-tab-button.active {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 242, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-tab-content {
  flex: 1;
  overflow-y: auto;
}

/* line 246, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-tab-content::-webkit-scrollbar {
  width: 4px;
}

/* line 250, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-tab-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 255, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-tab-content::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 260, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-tab-content::-webkit-scrollbar-thumb:hover {
  background: #fefefe;
}

/* line 264, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-tab-content .adv-tab-panel {
  display: none;
  height: 100%;
  flex-direction: column;
  gap: 15px;
  /* ==========================================================================
         EN-TÊTE DU CONTENU DES ONGLETS
         ========================================================================== */
  /* ==========================================================================
         CORPS DU CONTENU DES ONGLETS
         ========================================================================== */
}

/* line 270, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-tab-content .adv-tab-panel.active {
  display: flex;
}

/* line 277, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-tab-content .adv-tab-panel .adv-tab-content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

/* line 285, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-tab-content .adv-tab-panel .adv-tab-content-header {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 289, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-tab-content .adv-tab-panel .adv-tab-content-header h3, .adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-tab-content .adv-tab-panel .adv-tab-content-header .h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  color: #fff;
}

/* line 295, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-tab-content .adv-tab-panel .adv-tab-content-header h3, .lightmode .adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-tab-content .adv-tab-panel .adv-tab-content-header .h3 {
  color: #140D23;
}

/* line 300, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-tab-content .adv-tab-panel .adv-tab-content-header .adv-create-button {
  padding: 8px 16px;
  background-color: #C38761;
  color: #140D23;
  border: none;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* line 314, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-tab-content .adv-tab-panel .adv-tab-content-header .adv-create-button:hover {
  background-color: #af6c42;
  transform: translateY(-1px);
}

/* line 319, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-tab-content .adv-tab-panel .adv-tab-content-header .adv-create-button i {
  font-size: 0.7rem;
}

/* line 328, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-tab-content .adv-tab-panel .adv-tab-content-body {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  /* Personnalisation de la barre de défilement */
  /* ==========================================================================
           GRILLE DE DOCUMENTS
           ========================================================================== */
}

/* line 335, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-tab-content .adv-tab-panel .adv-tab-content-body {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 340, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-tab-content .adv-tab-panel .adv-tab-content-body::-webkit-scrollbar {
  width: 4px;
}

/* line 344, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-tab-content .adv-tab-panel .adv-tab-content-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 349, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-tab-content .adv-tab-panel .adv-tab-content-body::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 354, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-tab-content .adv-tab-panel .adv-tab-content-body::-webkit-scrollbar-thumb:hover {
  background: #fefefe;
}

/* line 358, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-tab-content .adv-tab-panel .adv-tab-content-body p {
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  text-align: center;
  margin: 2rem 0;
}

/* line 364, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-tab-content .adv-tab-panel .adv-tab-content-body p {
  color: rgba(20, 13, 35, 0.7);
}

/* line 372, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  padding: 5px;
  max-height: 100%;
  overflow-y: auto;
  /* Personnalisation de la barre de défilement */
}

@media (max-width: 768px) {
  /* line 372, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
  .adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* line 372, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
  .adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

/* line 389, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid::-webkit-scrollbar {
  width: 4px;
}

/* line 393, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 398, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 403, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid::-webkit-scrollbar-thumb:hover {
  background: #fefefe;
}

/* line 407, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

/* line 420, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-link {
  background-color: rgba(20, 13, 35, 0.05);
  border: 1px solid rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 426, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-link .adv-document-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* line 433, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-link .adv-document-title i {
  color: #C38761;
  font-size: 0.8rem;
}

/* line 439, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-link .adv-document-details {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 446, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-link .adv-document-details {
  color: rgba(20, 13, 35, 0.7);
}

/* line 450, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-link .adv-document-details .adv-document-amount {
  font-weight: 600;
  color: #C38761;
}

/* line 455, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-link .adv-document-details .adv-document-date {
  font-style: italic;
}

/* line 460, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-link .adv-document-status {
  display: flex;
  justify-content: flex-end;
}

/* line 464, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-link .adv-document-status .status-badge {
  font-size: 0.65rem;
  padding: 2px 8px;
}

/* line 478, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-infos-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* line 483, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-infos-section #adv-client-acceptance-report-card-title {
  height: 100%;
  display: flex;
  margin-bottom: 10px;
  align-items: center;
  justify-content: center;
}

/* line 491, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-infos-section .adv-client-acceptance-report-info-cards-container {
  display: flex;
  gap: 1rem;
  max-height: 200px;
}

@media (max-width: 768px) {
  /* line 491, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
  .adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-infos-section .adv-client-acceptance-report-info-cards-container {
    flex-direction: column;
    max-height: none;
  }
}

/* line 502, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-infos-section .adv-client-acceptance-report-file-card {
  padding: 5px;
  flex: 1;
  height: 0;
}

@media (max-width: 768px) {
  /* line 502, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
  .adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-infos-section .adv-client-acceptance-report-file-card {
    height: auto;
    min-height: 150px;
  }
}

/* line 513, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-infos-section .adv-client-acceptance-report-market-type-card {
  flex: 1;
}

@media (max-width: 768px) {
  /* line 513, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
  .adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-infos-section .adv-client-acceptance-report-market-type-card {
    min-height: auto;
  }
}

/* line 521, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-infos-section .adv-client-acceptance-report-amount-card {
  flex: 1;
}

@media (max-width: 768px) {
  /* line 521, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
  .adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-infos-section .adv-client-acceptance-report-amount-card {
    min-height: auto;
  }
}

/* line 530, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-info-card {
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 80px;
}

/* line 541, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-info-card {
  background-color: rgba(20, 13, 35, 0.07);
  border: 1px solid rgba(20, 13, 35, 0.3);
}

/* line 546, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-info-card .adv-client-acceptance-report-card-title {
  padding: 0.8rem 1rem 0.2rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #C38761;
  letter-spacing: 0.01em;
  text-align: center;
  width: 100%;
}

/* line 556, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-info-card .adv-client-acceptance-report-card-content {
  padding: 0 1rem 1rem 1rem;
  font-size: 0.9rem;
  color: #fff;
  font-weight: 500;
  word-break: break-word;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* line 568, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-info-card .adv-client-acceptance-report-card-content {
  color: #140D23;
}

/* line 572, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-info-card .adv-client-acceptance-report-card-content .no-data {
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

/* line 576, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-info-card .adv-client-acceptance-report-card-content .no-data {
  color: rgba(20, 13, 35, 0.5);
}

/* line 582, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-info-card .adv-client-acceptance-report-card-content-document {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 1rem 1rem 1rem;
  font-size: 0.9rem;
  color: #fff;
  font-weight: 500;
  word-break: break-word;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* line 597, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-info-card .adv-client-acceptance-report-card-content-document {
  color: #140D23;
}

/* line 601, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-info-card .adv-client-acceptance-report-card-content-document #imageButton {
  color: white;
}

/* line 604, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-info-card .adv-client-acceptance-report-card-content-document #imageButton {
  color: #140D23;
}

/* line 609, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-info-card .adv-client-acceptance-report-card-content-document .no-data {
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

/* line 613, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-info-card .adv-client-acceptance-report-card-content-document .no-data {
  color: rgba(20, 13, 35, 0.5);
}

/* line 620, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-market-type-card,
.adv-show-client-acceptance-report-capsule .adv-client-acceptance-report-amount-card {
  min-height: 100px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* line 631, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-client-acceptance-report-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding: 0;
  transition: all 0.3s ease;
}

/* line 639, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-client-acceptance-report-actions.wide-margins {
  margin-right: 0;
}

/* line 643, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-client-acceptance-report-actions .adv-action-button {
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.8rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* line 657, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-client-acceptance-report-actions .adv-action-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

/* line 662, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-client-acceptance-report-actions .adv-action-button.adv-action-button-primary {
  background-color: #C38761;
  border-color: #C38761;
  color: #140D23;
}

/* line 667, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-client-acceptance-report-actions .adv-action-button.adv-action-button-primary:hover {
  background-color: #af6c42;
}

/* line 672, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-client-acceptance-report-actions .adv-action-button.adv-action-button-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

/* line 677, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-client-acceptance-report-actions .adv-action-button.adv-action-button-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 681, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .adv-client-acceptance-report-actions .adv-action-button.adv-action-button-secondary {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 686, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .adv-client-acceptance-report-actions .adv-action-button.adv-action-button-secondary:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* line 694, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-client-acceptance-report-sidebar {
  width: 300px;
  min-width: 280px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 10px;
  height: 100%;
  margin-top: 0;
  transition: all 0.3s ease;
  /* Personnalisation de la barre de défilement */
}

@media (max-width: 1024px) {
  /* line 694, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
  .adv-client-acceptance-report-sidebar {
    width: 100%;
    min-width: 100%;
    height: auto;
  }
}

/* line 710, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .adv-client-acceptance-report-sidebar {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 715, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-client-acceptance-report-sidebar::-webkit-scrollbar {
  width: 6px;
}

/* line 719, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-client-acceptance-report-sidebar::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 724, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-client-acceptance-report-sidebar::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 729, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-client-acceptance-report-sidebar::-webkit-scrollbar-thumb:hover {
  background: #fefefe;
}

/* line 733, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-client-acceptance-report-sidebar.hidden {
  display: none;
}

/* line 737, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-client-acceptance-report-sidebar .client-acceptance-report-documents-section {
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 15px;
}

/* line 742, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-client-acceptance-report-sidebar .client-acceptance-report-documents-section .section-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

/* line 748, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .adv-client-acceptance-report-sidebar .client-acceptance-report-documents-section .section-label {
  color: #140D23;
}

/* line 753, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-client-acceptance-report-sidebar .client-acceptance-report-documents-section .documents-section-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 758, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-client-acceptance-report-sidebar .client-acceptance-report-documents-section .documents-section-content .document-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* line 763, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-client-acceptance-report-sidebar .client-acceptance-report-documents-section .documents-section-content .document-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}

/* line 767, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .adv-client-acceptance-report-sidebar .client-acceptance-report-documents-section .documents-section-content .document-item:not(:last-child) {
  border-bottom: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 772, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-client-acceptance-report-sidebar .client-acceptance-report-documents-section .documents-section-content .document-item .document-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 776, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .adv-client-acceptance-report-sidebar .client-acceptance-report-documents-section .documents-section-content .document-item .document-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 781, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-client-acceptance-report-sidebar .client-acceptance-report-documents-section .documents-section-content .document-item .document-value {
  font-size: 0.85rem;
  color: #fff;
}

/* line 785, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .adv-client-acceptance-report-sidebar .client-acceptance-report-documents-section .documents-section-content .document-item .document-value {
  color: #140D23;
}

/* line 790, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-client-acceptance-report-sidebar .client-acceptance-report-documents-section .documents-section-content .document-item .adv-document-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
}

/* line 803, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .adv-client-acceptance-report-sidebar .client-acceptance-report-documents-section .documents-section-content .document-item .adv-document-link {
  border: 1px solid rgba(20, 13, 35, 0.1);
  background-color: rgba(20, 13, 35, 0.05);
  color: #140D23;
}

/* line 814, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.status-badge {
  display: inline-block;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
}

/* line 823, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.status-badge.draft {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

/* line 827, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .status-badge.draft {
  background-color: rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.8);
}

/* line 833, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.status-badge.sent {
  background-color: #C38761;
  color: #140D23;
}

/* line 838, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.status-badge.validated {
  background-color: #4CAF50;
  color: white;
}

/* line 843, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.status-badge.non-defini {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* line 847, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .status-badge.non-defini {
  background-color: rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.6);
}

/* line 854, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.status-badge.success {
  background-color: #4CAF50;
  color: white;
}

/* line 859, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.status-badge.warning {
  background-color: #FF9800;
  color: white;
}

/* line 864, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.status-badge.secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* line 868, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .status-badge.secondary {
  background-color: rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.6);
}

/* line 875, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.status-badge.paid {
  background-color: #4CAF50;
  color: white;
}

/* line 880, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.status-badge.pending {
  background-color: #FF9800;
  color: white;
}

/* line 885, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.status-badge.overdue {
  background-color: #F44336;
  color: white;
}

/* line 890, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.status-badge.cancelled {
  background-color: #9E9E9E;
  color: white;
}

/* line 896, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.status-badge.completed {
  background-color: #4CAF50;
  color: white;
}

/* line 901, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.status-badge.in_progress {
  background-color: #2196F3;
  color: white;
}

/* line 906, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.status-badge.pending_validation {
  background-color: #FF9800;
  color: white;
}

/* line 911, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.status-badge.rejected {
  background-color: #F44336;
  color: white;
}

/* Classes utilitaires */
/* line 918, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.d-none {
  display: none !important;
}

/* line 922, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.hidden {
  display: none !important;
}

/* ==========================================================================
   STYLES SPÉCIFIQUES POUR LES BOUTONS ET FORMULAIRES
   ========================================================================== */
/* line 930, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.form-button, .crm-action-button, .users-management-container .users-header .add-user-btn {
  padding: 8px 16px;
  background-color: #C38761;
  color: #140D23;
  border: none;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}

/* line 945, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.form-button:hover, .crm-action-button:hover, .users-management-container .users-header .add-user-btn:hover {
  background-color: #af6c42;
  transform: translateY(-1px);
}

/* line 950, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.form-button.btn-secondary, .btn-secondary.crm-action-button, .crm-action-button.crm-action-button-secondary, .users-management-container .users-header .btn-secondary.add-user-btn, .users-management-container .users-header .add-user-btn.crm-action-button.crm-action-button-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* line 955, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.form-button.btn-secondary:hover, .btn-secondary.crm-action-button:hover, .crm-action-button.crm-action-button-secondary:hover, .users-management-container .users-header .btn-secondary.add-user-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 959, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .form-button.btn-secondary, .lightmode .btn-secondary.crm-action-button, .lightmode .crm-action-button.crm-action-button-secondary, .lightmode .users-management-container .users-header .btn-secondary.add-user-btn, .users-management-container .users-header .lightmode .btn-secondary.add-user-btn {
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 964, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .form-button.btn-secondary:hover, .lightmode .btn-secondary.crm-action-button:hover, .lightmode .crm-action-button.crm-action-button-secondary:hover, .lightmode .users-management-container .users-header .btn-secondary.add-user-btn:hover, .users-management-container .users-header .lightmode .btn-secondary.add-user-btn:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* line 971, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.add-btn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: rgba(254, 254, 254, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  margin: 0;
  outline: none;
}

/* line 987, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .add-btn {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 993, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.add-btn:hover {
  background-color: rgba(254, 254, 254, 0.2);
}

/* line 996, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .add-btn:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* ==========================================================================
   MODAL STYLES
   ========================================================================== */
/* line 1006, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.custom-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

/* line 1021, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.custom-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* line 1027, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.custom-modal {
  background-color: #fff;
  border-radius: 15px;
  padding: 20px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(-20px);
  transition: all 0.3s ease;
}

/* line 1039, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.custom-modal-overlay.active .custom-modal {
  transform: translateY(0);
}

/* line 1043, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .custom-modal {
  background-color: #140D23;
  color: white;
}

/* line 1049, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.custom-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* line 1057, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .custom-modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 1061, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.custom-modal-header .custom-modal-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

/* line 1067, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.custom-modal-header .custom-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.5);
  transition: color 0.2s ease;
}

/* line 1075, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .custom-modal-header .custom-modal-close {
  color: rgba(255, 255, 255, 0.5);
}

/* line 1079, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.custom-modal-header .custom-modal-close:hover {
  color: rgba(0, 0, 0, 0.8);
}

/* line 1082, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .custom-modal-header .custom-modal-close:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* line 1090, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.custom-modal-body .form-group {
  margin-bottom: 20px;
}

/* line 1093, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.custom-modal-body .form-group .modal-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.9rem;
}

/* line 1100, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.custom-modal-body .form-group input[type="file"] {
  width: 100%;
  padding: 10px;
  border: 2px dashed rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.02);
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 1109, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .custom-modal-body .form-group input[type="file"] {
  border-color: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.02);
}

/* line 1114, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.custom-modal-body .form-group input[type="file"]:hover {
  border-color: #C38761;
  background-color: rgba(195, 135, 97, 0.05);
}

/* line 1122, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.custom-modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* line 1130, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .custom-modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 1134, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.custom-modal-footer #filename-preview {
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.6);
  font-style: italic;
}

/* line 1139, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .custom-modal-footer #filename-preview {
  color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   STYLES POUR LES FICHIERS MULTIPLES
   ========================================================================== */
/* line 1149, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-client-acceptance-report-files-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

/* line 1156, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-client-acceptance-report-file-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: background-color 0.2s ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.1);
  gap: 0.5rem;
}

@media (max-width: 768px) {
  /* line 1156, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
  .adv-client-acceptance-report-file-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

/* line 1173, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-client-acceptance-report-file-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* line 1177, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .adv-client-acceptance-report-file-item {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 1181, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .adv-client-acceptance-report-file-item:hover {
  background: rgba(20, 13, 35, 0.1);
}

/* line 1187, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-client-acceptance-report-file-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

/* line 1193, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-client-acceptance-report-file-info i {
  color: #C38761;
  font-size: 0.9rem;
}

/* line 1197, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .adv-client-acceptance-report-file-info i {
  color: #140D23;
}

/* line 1202, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-client-acceptance-report-file-info .adv-client-acceptance-report-file-name {
  font-size: 0.85rem;
  color: #fefefe;
  font-weight: 500;
  word-break: break-word;
}

/* line 1208, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .adv-client-acceptance-report-file-info .adv-client-acceptance-report-file-name {
  color: #140D23;
}

/* line 1214, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-client-acceptance-report-file-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  /* line 1214, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
  .adv-client-acceptance-report-file-actions {
    flex-direction: column;
    gap: 0.3rem;
    width: 100%;
  }
}

/* line 1227, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.adv-client-acceptance-report-no-files {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* line 1235, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .adv-client-acceptance-report-no-files {
  color: rgba(20, 13, 35, 0.6);
}

/* line 1240, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.file-info {
  margin-top: 0.5rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  border-left: 3px solid #C38761;
}

/* line 1247, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.file-info p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

/* line 1254, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .file-info {
  background: rgba(20, 13, 35, 0.05);
  border-left-color: #140D23;
}

/* line 1258, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_show_client_acceptance_report.scss */
.lightmode .file-info p {
  color: rgba(20, 13, 35, 0.8);
}

/* line 1, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-capsule {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 10px 30px 10px 30px;
  font-size: 0.8rem;
}

/* line 10, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-capsule.lightmode {
  color: #140D23;
}

/* line 15, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-client-acceptance-report-contacts-capsule span {
  color: #140D23;
}

/* line 19, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.nightmode .adv-client-acceptance-report-contacts-capsule span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 25, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-client-acceptance-report-contacts-capsule p {
  color: #140D23;
}

/* line 29, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.nightmode .adv-client-acceptance-report-contacts-capsule p {
  color: #fefefe;
}

/* line 35, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-client-acceptance-report-contacts-capsule i {
  color: #140D23;
}

/* line 39, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.nightmode .adv-client-acceptance-report-contacts-capsule i {
  color: #fefefe;
}

/* line 45, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 52, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-tabs {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background-color: rgba(254, 254, 254, 0.05);
  border: 1px solid rgba(232, 232, 232, 0.3);
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}

/* line 63, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-client-acceptance-report-contacts-tabs {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 69, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-tab-button {
  flex: 1;
  padding: 15px 20px;
  background-color: transparent;
  border: none;
  color: rgba(254, 254, 254, 0.6);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* line 84, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-tab-button {
  color: rgba(20, 13, 35, 0.6);
}

/* line 88, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-tab-button:hover {
  background-color: rgba(254, 254, 254, 0.1);
  color: #fefefe;
}

/* line 92, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-tab-button:hover {
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 98, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-tab-button.adv-tab-active {
  background-color: rgba(254, 254, 254, 0.15);
  color: #fefefe;
  font-weight: 600;
}

/* line 103, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-tab-button.adv-tab-active {
  background-color: rgba(20, 13, 35, 0.15);
  color: #140D23;
}

/* line 109, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-tab-button i {
  font-size: 1rem;
}

/* line 114, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-content {
  width: 100%;
  height: 85%;
  background-color: rgba(254, 254, 254, 0.1);
  border: 1px solid rgba(232, 232, 232, 0.5);
  border-top: none;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
}

/* line 123, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-client-acceptance-report-contacts-content {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 129, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-tab-content {
  display: none;
  height: 100%;
  width: 100%;
}

/* line 134, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-tab-content.adv-tab-active {
  display: block;
}

/* line 140, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-row1 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

/* line 149, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-row1 form {
  width: 35%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-right: 1px solid rgba(232, 232, 232, 0.5);
  padding: 10px;
}

/* line 160, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-client-acceptance-report-contacts-row1 form {
  border-right-color: rgba(20, 13, 35, 0.2);
}

/* line 165, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-row1 form input:focus {
  background-color: transparent;
}

/* line 171, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-row1 .adv-client-acceptance-report-contacts-row1-column2 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 10px;
  padding: 20px;
  overflow-y: auto;
}

/* line 182, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-row1 .adv-client-acceptance-report-contacts-row1-column2::-webkit-scrollbar {
  width: 4px;
}

/* line 186, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-row1 .adv-client-acceptance-report-contacts-row1-column2::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 191, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-row1 .adv-client-acceptance-report-contacts-row1-column2::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 196, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-row1 .adv-client-acceptance-report-contacts-row1-column2::-webkit-scrollbar-thumb:hover {
  background: #fefefe;
}

/* line 202, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-pdf-document-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

/* line 209, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-pdf-document-actions form {
  border: none;
  padding: 1rem 0 !important;
}

/* line 215, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-row1-column1 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
}

/* line 225, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-row1-column1-create-contact {
  width: 100%;
  margin-bottom: 10px;
}

/* line 230, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-create-contact-button {
  width: 100%;
  padding: 10px 15px;
  background-color: rgba(195, 135, 97, 0.2);
  border: 1px solid rgba(195, 135, 97, 0.4);
  border-radius: 8px;
  color: #C38761;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* line 246, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-create-contact-button {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 252, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-create-contact-button:hover {
  background-color: rgba(195, 135, 97, 0.3);
  border-color: rgba(195, 135, 97, 0.6);
  transform: translateY(-1px);
}

/* line 257, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-create-contact-button:hover {
  background-color: rgba(20, 13, 35, 0.2);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 263, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-create-contact-button i {
  font-size: 0.8rem;
  color: inherit;
}

/* line 269, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-row1-column1-searchbar {
  width: 100%;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(254, 254, 254, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 282, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-client-acceptance-report-contacts-row1-column1-searchbar {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 287, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-row1-column1-searchbar button {
  all: unset;
}

/* line 291, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-row1-column1-searchbar i {
  color: #fefefe !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 296, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-client-acceptance-report-contacts-row1-column1-searchbar i {
  color: #140D23 !important;
}

/* line 301, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-row1-column1-searchbar span {
  font-weight: normal !important;
  color: #fefefe !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 307, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-client-acceptance-report-contacts-row1-column1-searchbar span {
  color: #140D23 !important;
}

/* line 313, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-row1-column1-results {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 10px;
  width: 100%;
}

/* line 321, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-row1-column1-results h3, .adv-client-acceptance-report-contacts-row1-column1-results .h3 {
  all: unset;
  font-size: 0.8rem;
}

/* line 325, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-client-acceptance-report-contacts-row1-column1-results h3, .lightmode .adv-client-acceptance-report-contacts-row1-column1-results .h3 {
  color: #140D23;
}

/* line 330, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-row1-column1-results .results {
  margin-top: 10px;
  display: flex;
  max-height: 60%;
  flex-direction: column;
  align-items: center;
}

/* line 337, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-row1-column1-results .results p {
  all: unset;
  font-size: 0.7rem;
  text-align: center;
  color: #fefefe;
}

/* line 343, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-client-acceptance-report-contacts-row1-column1-results .results p {
  color: #140D23;
}

/* line 351, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-row1-column2-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  width: 100%;
  margin-bottom: 15px;
  height: auto;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
}

/* line 364, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-client-acceptance-report-contacts-row1-column2-header {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 368, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-row1-column2-header .adv-header-section, .adv-client-acceptance-report-contacts-row1-column2-header .adv-contract-number-section,
.adv-client-acceptance-report-contacts-row1-column2-header .adv-market-type-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 3px;
}

/* line 375, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-row1-column2-header .adv-header-section .adv-label, .adv-client-acceptance-report-contacts-row1-column2-header .adv-contract-number-section .adv-label,
.adv-client-acceptance-report-contacts-row1-column2-header .adv-market-type-section .adv-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  margin-bottom: 0;
  display: block;
  white-space: nowrap;
}

/* line 382, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-client-acceptance-report-contacts-row1-column2-header .adv-header-section .adv-label, .lightmode .adv-client-acceptance-report-contacts-row1-column2-header .adv-contract-number-section .adv-label,
.lightmode .adv-client-acceptance-report-contacts-row1-column2-header .adv-market-type-section .adv-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 387, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-row1-column2-header .adv-header-section .adv-value, .adv-client-acceptance-report-contacts-row1-column2-header .adv-contract-number-section .adv-value,
.adv-client-acceptance-report-contacts-row1-column2-header .adv-market-type-section .adv-value {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  display: block;
  white-space: nowrap;
}

/* line 394, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-client-acceptance-report-contacts-row1-column2-header .adv-header-section .adv-value, .lightmode .adv-client-acceptance-report-contacts-row1-column2-header .adv-contract-number-section .adv-value,
.lightmode .adv-client-acceptance-report-contacts-row1-column2-header .adv-market-type-section .adv-value {
  color: #140D23;
}

/* line 400, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-row1-column2-header .adv-header-section.adv-recipient-name-section .adv-value, .adv-client-acceptance-report-contacts-row1-column2-header .adv-recipient-name-section.adv-contract-number-section .adv-value,
.adv-client-acceptance-report-contacts-row1-column2-header .adv-recipient-name-section.adv-market-type-section .adv-value {
  font-size: 0.8rem;
}

/* line 408, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-pdf-documents-section {
  width: 100%;
  margin-bottom: 15px;
}

/* line 412, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-pdf-documents-section h3, .adv-pdf-documents-section .h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fefefe;
}

/* line 418, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-pdf-documents-section h3, .lightmode .adv-pdf-documents-section .h3 {
  color: #140D23;
}

/* line 424, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-pdf-documents-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 430, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-pdf-document-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 12px;
  background-color: rgba(254, 254, 254, 0.05);
  border-radius: 6px;
}

/* line 439, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-pdf-document-item {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 444, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-pdf-document-info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

/* line 450, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-pdf-document-info i {
  color: #e74c3c;
  font-size: 0.9rem;
}

/* line 455, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-pdf-document-info .adv-pdf-document-name {
  font-size: 0.85rem;
  color: #fefefe;
}

/* line 459, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-pdf-document-info .adv-pdf-document-name {
  color: #140D23;
}

/* line 464, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-pdf-document-info .adv-pdf-document-pages {
  font-size: 0.75rem;
  color: rgba(254, 254, 254, 0.6);
  background-color: rgba(254, 254, 254, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

/* line 471, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-pdf-document-info .adv-pdf-document-pages {
  color: rgba(20, 13, 35, 0.6);
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 478, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-pdf-document-view-button {
  color: #C38761;
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 6px;
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background-color: transparent;
  border: 1px solid rgba(195, 135, 97, 0.3);
}

/* line 493, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-pdf-document-view-button:hover {
  background: #C38761;
  color: #fefefe;
  transform: scale(1.05);
  border-color: #C38761;
}

/* line 500, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-pdf-document-view-button i {
  font-size: 0.8rem;
  color: inherit;
}

/* line 505, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-pdf-document-view-button {
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 509, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-pdf-document-view-button:hover {
  background: #140D23;
  color: #fefefe;
  border-color: #140D23;
}

/* line 517, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-pdf-document-delete-button {
  color: #e74c3c;
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 6px;
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background-color: transparent;
  border: 1px solid rgba(231, 76, 60, 0.3);
}

/* line 532, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-pdf-document-delete-button:hover {
  background: #e74c3c;
  color: #fefefe;
  transform: scale(1.05);
  border-color: #e74c3c;
}

/* line 539, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-pdf-document-delete-button i {
  font-size: 0.8rem;
  color: inherit;
}

/* line 545, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-pdf-no-documents {
  text-align: center;
  padding: 15px;
  background-color: rgba(254, 254, 254, 0.03);
  border-radius: 6px;
}

/* line 551, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-pdf-no-documents {
  background-color: rgba(20, 13, 35, 0.03);
}

/* line 555, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-pdf-no-documents p {
  font-size: 0.85rem;
  color: rgba(254, 254, 254, 0.5);
  font-style: italic;
}

/* line 560, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-pdf-no-documents p {
  color: rgba(20, 13, 35, 0.5);
}

/* line 566, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-pdf-info-message {
  margin-top: 10px;
  padding: 8px 12px;
  background-color: rgba(195, 135, 97, 0.1);
  border-radius: 6px;
  border-left: 3px solid #C38761;
}

/* line 573, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-pdf-info-message {
  background-color: rgba(20, 13, 35, 0.1);
  border-left-color: #140D23;
}

/* line 578, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-pdf-info-message p {
  font-size: 0.8rem;
  color: rgba(254, 254, 254, 0.8);
  margin: 0;
}

/* line 583, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-pdf-info-message p {
  color: rgba(20, 13, 35, 0.8);
}

/* line 587, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-pdf-info-message p i {
  color: #C38761;
  margin-right: 5px;
}

/* line 591, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-pdf-info-message p i {
  color: #140D23;
}

/* line 599, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-summary-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

/* line 608, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-client-acceptance-report-summary-section {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 612, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-summary-section .adv-summary-item {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* line 620, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-summary-section .adv-summary-item .adv-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  margin-bottom: 0;
  display: block;
  white-space: nowrap;
}

/* line 627, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-client-acceptance-report-summary-section .adv-summary-item .adv-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 632, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-summary-section .adv-summary-item .adv-value {
  color: #d4a574;
  font-size: 0.9rem;
  font-weight: 600;
  display: block;
  text-align: center;
  white-space: nowrap;
}

/* line 640, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-client-acceptance-report-summary-section .adv-summary-item .adv-value {
  color: #140D23;
}

/* line 648, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-documents-tab-content {
  width: 100%;
  height: 100%;
  padding: 30px;
  overflow-y: auto;
}

/* line 654, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-documents-tab-content::-webkit-scrollbar {
  width: 6px;
}

/* line 658, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-documents-tab-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 663, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-documents-tab-content::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 668, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-documents-tab-content::-webkit-scrollbar-thumb:hover {
  background: #fefefe;
}

/* line 673, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-documents-header {
  text-align: center;
  margin-bottom: 30px;
}

/* line 677, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-documents-header h2, .adv-documents-header .h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fefefe;
}

/* line 683, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-documents-header h2, .lightmode .adv-documents-header .h2 {
  color: #140D23;
}

/* line 688, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-documents-header p {
  font-size: 0.9rem;
  color: rgba(254, 254, 254, 0.7);
}

/* line 692, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-documents-header p {
  color: rgba(20, 13, 35, 0.7);
}

/* line 698, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-documents-sections {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* line 705, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-documents-section h3, .adv-documents-section .h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fefefe;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 714, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-documents-section h3, .lightmode .adv-documents-section .h3 {
  color: #140D23;
}

/* line 718, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-documents-section h3 i, .adv-documents-section .h3 i {
  color: #C38761;
  font-size: 1rem;
}

/* line 725, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-documents-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 731, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-document-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 15px;
  background-color: rgba(254, 254, 254, 0.05);
  border-radius: 8px;
  transition: all 0.2s ease;
}

/* line 741, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-document-item {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 745, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-document-item:hover {
  background-color: rgba(254, 254, 254, 0.08);
  transform: translateX(5px);
}

/* line 749, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-document-item:hover {
  background-color: rgba(20, 13, 35, 0.08);
}

/* line 755, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-document-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

/* line 761, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-document-info .adv-document-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: #fefefe;
}

/* line 766, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-document-info .adv-document-name {
  color: #140D23;
}

/* line 771, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-document-info .adv-document-status {
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 500;
}

/* line 778, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-document-info .adv-document-status.adv-status-draft {
  background-color: rgba(254, 254, 254, 0.1);
  color: rgba(254, 254, 254, 0.7);
}

/* line 782, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-document-info .adv-document-status.adv-status-draft {
  background-color: rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.7);
}

/* line 788, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-document-info .adv-document-status.adv-status-sent {
  background-color: rgba(195, 135, 97, 0.2);
  color: #C38761;
}

/* line 793, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-document-info .adv-document-status.adv-status-validated {
  background-color: rgba(39, 174, 96, 0.2);
  color: #27ae60;
}

/* line 798, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-document-info .adv-document-status.adv-status-paid {
  background-color: rgba(39, 174, 96, 0.2);
  color: #27ae60;
}

/* line 805, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-document-view-button {
  color: #C38761;
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 6px;
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background-color: transparent;
  border: 1px solid rgba(195, 135, 97, 0.3);
}

/* line 820, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-document-view-button:hover {
  background: #C38761;
  color: #fefefe;
  transform: scale(1.05);
  border-color: #C38761;
}

/* line 827, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-document-view-button i {
  font-size: 0.8rem;
  color: inherit;
}

/* line 832, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-document-view-button {
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 836, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-document-view-button:hover {
  background: #140D23;
  color: #fefefe;
  border-color: #140D23;
}

/* line 844, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-documents-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 40px;
}

/* line 854, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-documents-empty-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(254, 254, 254, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* line 864, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-documents-empty-icon {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 868, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-documents-empty-icon i {
  font-size: 2rem;
  color: rgba(254, 254, 254, 0.4);
}

/* line 872, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-documents-empty-icon i {
  color: rgba(20, 13, 35, 0.4);
}

/* line 878, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-documents-empty-state h3, .adv-documents-empty-state .h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fefefe;
}

/* line 884, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-documents-empty-state h3, .lightmode .adv-documents-empty-state .h3 {
  color: #140D23;
}

/* line 889, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-documents-empty-state p {
  font-size: 0.9rem;
  color: rgba(254, 254, 254, 0.6);
  max-width: 400px;
  line-height: 1.5;
}

/* line 895, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-documents-empty-state p {
  color: rgba(20, 13, 35, 0.6);
}

/* line 901, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-actions-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  align-items: center;
}

/* line 910, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-delivery-choice {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(254, 254, 254, 0.06);
  border: 1px solid rgba(254, 254, 254, 0.15);
  width: 100%;
}

/* line 921, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-client-acceptance-report-delivery-choice {
  background: rgba(20, 13, 35, 0.06);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 927, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-delivery-choice-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 933, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-delivery-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(195, 135, 97, 0.2);
  color: #C38761;
}

/* line 943, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-delivery-icon {
  background: rgba(20, 13, 35, 0.12);
  color: #140D23;
}

/* line 948, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-delivery-icon i {
  font-size: 1.1rem;
}

/* line 953, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-delivery-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 958, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-delivery-text h3, .adv-delivery-text .h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #fefefe;
}

/* line 964, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-delivery-text h3, .lightmode .adv-delivery-text .h3 {
  color: #140D23;
}

/* line 969, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-delivery-text p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(254, 254, 254, 0.7);
}

/* line 974, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-delivery-text p {
  color: rgba(20, 13, 35, 0.65);
}

/* line 980, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-delivery-choice-options {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* line 987, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-delivery-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(254, 254, 254, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  flex: 1 1 45%;
  min-width: 0;
}

/* line 1004, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-delivery-option {
  color: rgba(20, 13, 35, 0.7);
}

/* line 1008, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-delivery-option:hover {
  background: rgba(254, 254, 254, 0.08);
}

/* line 1011, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-delivery-option:hover {
  background: rgba(20, 13, 35, 0.12);
}

/* line 1016, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-delivery-option i {
  font-size: 0.9rem;
}

/* line 1021, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-delivery-option--active {
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.25), rgba(195, 135, 97, 0.15));
  color: #fefefe;
  border-color: rgba(195, 135, 97, 0.5);
  box-shadow: 0 4px 10px rgba(195, 135, 97, 0.2);
}

/* line 1027, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-delivery-option--active {
  color: #140D23;
}

/* line 1032, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-signature-panel {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(254, 254, 254, 0.12);
  background: rgba(254, 254, 254, 0.05);
  padding: 20px;
  transition: all 0.3s ease;
}

/* line 1040, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-client-acceptance-report-signature-panel {
  border-color: rgba(20, 13, 35, 0.15);
  background: rgba(20, 13, 35, 0.05);
}

/* line 1045, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-signature-panel .signature-panel {
  box-shadow: none;
  background: transparent;
  border: none;
  color: #fefefe;
}

/* line 1051, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-client-acceptance-report-signature-panel .signature-panel {
  color: #140D23;
}

/* line 1055, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-signature-panel .signature-panel__title h3, .adv-client-acceptance-report-signature-panel .signature-panel__title .h3 {
  color: inherit;
}

/* line 1059, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-signature-panel .signature-panel__meta {
  color: rgba(254, 254, 254, 0.75);
}

/* line 1062, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-client-acceptance-report-signature-panel .signature-panel__meta {
  color: rgba(20, 13, 35, 0.65);
}

/* line 1066, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-signature-panel .signature-panel__meta-item {
  background: rgba(254, 254, 254, 0.12);
}

/* line 1069, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-client-acceptance-report-signature-panel .signature-panel__meta-item {
  background: rgba(20, 13, 35, 0.08);
}

/* line 1075, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-signature-panel .signature-panel__body--split {
  gap: 1.5rem;
}

/* line 1079, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-signature-panel .signature-panel__form {
  background: rgba(254, 254, 254, 0.04);
  border: 1px solid rgba(254, 254, 254, 0.12);
}

/* line 1083, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-client-acceptance-report-signature-panel .signature-panel__form {
  background: rgba(20, 13, 35, 0.04);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 1088, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-signature-panel .signature-panel__form h4, .adv-client-acceptance-report-signature-panel .signature-panel__form .h4 {
  color: inherit;
}

/* line 1093, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-signature-panel .signature-panel__hint {
  color: rgba(254, 254, 254, 0.65);
}

/* line 1096, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-client-acceptance-report-signature-panel .signature-panel__hint {
  color: rgba(20, 13, 35, 0.6);
}

/* line 1101, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-signature-panel .signature-panel__timeline h4, .adv-client-acceptance-report-signature-panel .signature-panel__timeline .h4 {
  color: inherit;
}

/* line 1105, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-signature-panel .signature-panel__empty {
  border-color: rgba(254, 254, 254, 0.2);
  color: rgba(254, 254, 254, 0.7);
}

/* line 1109, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-client-acceptance-report-signature-panel .signature-panel__empty {
  border-color: rgba(20, 13, 35, 0.2);
  color: rgba(20, 13, 35, 0.7);
}

/* line 1114, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-signature-panel .signature-panel__empty i {
  color: rgba(254, 254, 254, 0.6);
}

/* line 1117, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-client-acceptance-report-signature-panel .signature-panel__empty i {
  color: rgba(20, 13, 35, 0.5);
}

/* line 1124, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-signature-panel .signature-form__label {
  color: inherit;
  opacity: 1;
}

/* line 1129, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-signature-panel .signature-form__input,
.adv-client-acceptance-report-signature-panel .signature-form__textarea,
.adv-client-acceptance-report-signature-panel .signature-form__select {
  background: rgba(254, 254, 254, 0.08);
  border-color: rgba(254, 254, 254, 0.2);
  color: #fefefe;
}

/* line 1136, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-client-acceptance-report-signature-panel .signature-form__input, .lightmode .adv-client-acceptance-report-signature-panel .signature-form__textarea, .lightmode .adv-client-acceptance-report-signature-panel .signature-form__select {
  background: rgba(254, 254, 254, 0.95);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 1143, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-signature-panel .signature-form__help {
  color: rgba(254, 254, 254, 0.6);
}

/* line 1146, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-client-acceptance-report-signature-panel .signature-form__help {
  color: rgba(20, 13, 35, 0.55);
}

/* line 1151, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-signature-panel .signature-form__disabled {
  color: rgba(254, 254, 254, 0.6);
}

/* line 1154, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-client-acceptance-report-signature-panel .signature-form__disabled {
  color: rgba(20, 13, 35, 0.55);
}

/* line 1159, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-signature-panel .signature-timeline__item {
  background: linear-gradient(145deg, rgba(254, 254, 254, 0.09) 0%, rgba(254, 254, 254, 0.04) 55%, rgba(254, 254, 254, 0.02) 100%);
  border-color: rgba(254, 254, 254, 0.18);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 18px;
}

/* line 1170, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-client-acceptance-report-signature-panel .signature-timeline__item {
  background: linear-gradient(145deg, rgba(254, 254, 254, 0.95) 0%, rgba(254, 254, 254, 0.9) 50%, rgba(254, 254, 254, 0.85) 100%);
  border-color: rgba(20, 13, 35, 0.12);
  box-shadow: 0 12px 24px rgba(20, 13, 35, 0.12);
}

/* line 1180, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-signature-panel .signature-timeline__header {
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(254, 254, 254, 0.12);
}

/* line 1185, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-client-acceptance-report-signature-panel .signature-timeline__header {
  border-bottom-color: rgba(20, 13, 35, 0.12);
}

/* line 1189, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-signature-panel .signature-timeline__header strong {
  font-size: 0.95rem;
  color: #fefefe;
}

/* line 1193, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-client-acceptance-report-signature-panel .signature-timeline__header strong {
  color: #140D23;
}

/* line 1198, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-signature-panel .signature-timeline__header .signature-timeline__meta span {
  color: rgba(254, 254, 254, 0.65);
  background: rgba(254, 254, 254, 0.08);
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* line 1207, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-client-acceptance-report-signature-panel .signature-timeline__header .signature-timeline__meta span {
  color: rgba(20, 13, 35, 0.65);
  background: rgba(20, 13, 35, 0.08);
}

/* line 1214, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-signature-panel .signature-participant {
  background: rgba(254, 254, 254, 0.06);
  border: 1px solid rgba(254, 254, 254, 0.12);
  border-radius: 12px;
  padding: 10px 14px;
}

/* line 1220, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-client-acceptance-report-signature-panel .signature-participant {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.12);
}

/* line 1226, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-signature-panel .signature-timeline__audit {
  background: rgba(254, 254, 254, 0.04);
  border: 1px dashed rgba(254, 254, 254, 0.18);
  border-radius: 10px;
  padding: 12px;
}

/* line 1232, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-client-acceptance-report-signature-panel .signature-timeline__audit {
  background: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.18);
}

/* line 1237, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-signature-panel .signature-timeline__audit strong {
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: rgba(254, 254, 254, 0.75);
}

/* line 1242, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-client-acceptance-report-signature-panel .signature-timeline__audit strong {
  color: rgba(20, 13, 35, 0.7);
}

/* line 1247, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-signature-panel .signature-timeline__audit li {
  color: rgba(254, 254, 254, 0.7);
  font-size: 0.8rem;
}

/* line 1251, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-client-acceptance-report-signature-panel .signature-timeline__audit li {
  color: rgba(20, 13, 35, 0.65);
}

/* line 1258, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-signature-panel--hidden {
  display: none;
}

/* line 1262, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-actions {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

/* line 1269, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-actions span {
  color: #140D23 !important;
}

/* line 1272, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.nightmode .adv-client-acceptance-report-contacts-actions span {
  color: #fefefe !important;
}

/* line 1278, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-email-form {
  margin: 0;
}

/* line 1282, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-row2 {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

/* line 1290, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-row2 span {
  color: #140D23 !important;
}

/* line 1293, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.nightmode .adv-client-acceptance-report-contacts-row2 span {
  color: #fefefe !important;
}

/* line 1299, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-button-disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}

/* line 1304, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-button-disabled:hover {
  transform: none !important;
}

/* line 1310, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.client-acceptance-report-contact {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* line 1318, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.client-acceptance-report-contact .client-acceptance-report-contact-header p {
  all: unset;
  font-size: 0.7rem;
}

/* line 1326, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.client-acceptance-report-contact span {
  all: unset;
  font-size: 0.7rem;
  text-align: center;
}

/* line 1331, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.client-acceptance-report-contact span:hover {
  cursor: pointer;
}

/* line 1335, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.client-acceptance-report-contact span i {
  transition: 0.3s ease;
}

/* line 1338, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.client-acceptance-report-contact span i:hover {
  color: #640127;
}

/* line 1345, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.search-results-articles {
  display: flex;
  min-height: 30px;
  width: 97% !important;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  padding: 5px;
  width: 250px;
  border-radius: 0.375rem;
  flex-wrap: nowrap;
}

/* line 1357, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.search-results-articles label {
  opacity: 1;
}

/* line 1361, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.search-results-articles p {
  all: unset;
  font-size: 0.7rem !important;
  margin: 0;
  font-weight: normal !important;
  color: #140D23 !important;
}

/* line 1370, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.search-results-articles:hover {
  background-color: rgba(254, 254, 254, 0.5);
  transition: transform 0.3s ease;
}

/* line 1376, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.articles {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

/* Styles pour la liste des contacts sélectionnés */
/* line 1384, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-row1-column1-results {
  height: 100%;
}

/* line 1387, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-row1-column1-results .results {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  background: rgba(254, 254, 254, 0.05);
  border: 1px solid rgba(254, 254, 254, 0.15);
  border-radius: 12px;
  min-height: 60px;
  max-height: 60%;
  overflow-y: auto;
  overflow-x: hidden;
  /* Personnalisation de la barre de défilement */
  /* Style pour le message "Aucun contact sélectionné" */
  /* Style pour chaque contact sélectionné */
}

/* line 1400, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-client-acceptance-report-contacts-row1-column1-results .results {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 1406, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-row1-column1-results .results::-webkit-scrollbar {
  width: 6px;
}

/* line 1410, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-row1-column1-results .results::-webkit-scrollbar-track {
  background: rgba(254, 254, 254, 0.1);
  border-radius: 10px;
}

/* line 1415, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-row1-column1-results .results::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
  border: 2px solid transparent;
}

/* line 1421, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-row1-column1-results .results::-webkit-scrollbar-thumb:hover {
  background: #864B28;
}

/* line 1426, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-row1-column1-results .results p[data-contacts-of-document-target="noContacts"] {
  color: rgba(254, 254, 254, 0.6);
  font-style: italic;
  text-align: center;
  margin: 0;
  padding: 20px;
}

/* line 1433, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-client-acceptance-report-contacts-row1-column1-results .results p[data-contacts-of-document-target="noContacts"] {
  color: rgba(20, 13, 35, 0.6);
}

/* line 1439, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-row1-column1-results .results .contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5px;
  background: linear-gradient(135deg, rgba(254, 254, 254, 0.1) 0%, rgba(254, 254, 254, 0.05) 100%);
  border: 1px solid rgba(254, 254, 254, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  gap: 5px;
  min-height: 80px;
  /* Contenu du contact */
  /* Bouton de suppression */
  /* Animation d'entrée */
  /* Animation de sortie */
}

/* line 1454, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-client-acceptance-report-contacts-row1-column1-results .results .contact-item {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.1) 0%, rgba(20, 13, 35, 0.05) 100%);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 1459, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-row1-column1-results .results .contact-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: rgba(195, 135, 97, 0.4);
  background: linear-gradient(135deg, rgba(254, 254, 254, 0.15) 0%, rgba(254, 254, 254, 0.08) 100%);
}

/* line 1465, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-client-acceptance-report-contacts-row1-column1-results .results .contact-item:hover {
  border-color: rgba(195, 135, 97, 0.4);
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.15) 0%, rgba(20, 13, 35, 0.08) 100%);
}

/* line 1472, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-row1-column1-results .results .contact-item .contact-info {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
  width: 100%;
}

/* line 1479, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-row1-column1-results .results .contact-item .contact-info .contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(195, 135, 97, 0.15);
  border-radius: 50%;
  color: #C38761;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

/* line 1492, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-row1-column1-results .results .contact-item .contact-info .contact-email {
  color: #fefefe;
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0;
  text-align: center;
}

/* line 1499, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-client-acceptance-report-contacts-row1-column1-results .results .contact-item .contact-info .contact-email {
  color: #140D23;
}

/* line 1506, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-row1-column1-results .results .contact-item .contact-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(166, 2, 64, 0.1);
  border: 1px solid rgba(166, 2, 64, 0.3);
  border-radius: 50%;
  color: rgba(166, 2, 64, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
}

/* line 1520, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-row1-column1-results .results .contact-item .contact-remove:hover {
  background: rgba(166, 2, 64, 0.2);
  border-color: #A60240;
  color: #A60240;
  transform: scale(1.1);
}

/* line 1527, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-row1-column1-results .results .contact-item .contact-remove i {
  font-size: 0.8rem;
}

/* line 1533, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-row1-column1-results .results .contact-item.contact-item-enter {
  animation: slideInFromTop 0.3s ease-out;
}

/* line 1538, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-client-acceptance-report-contacts-row1-column1-results .results .contact-item.contact-item-exit {
  animation: slideOutToRight 0.3s ease-in;
}

/* Animations pour les contacts */
@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideOutToRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

/* Styles responsives pour la liste des contacts */
@media (max-width: 768px) {
  /* line 1573, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
  .adv-client-acceptance-report-contacts-row1-column1-results .results {
    padding: 8px;
    gap: 6px;
    max-height: 250px;
  }
  /* line 1578, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
  .adv-client-acceptance-report-contacts-row1-column1-results .results .contact-item {
    padding: 5px;
    gap: 5px;
  }
  /* line 1582, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
  .adv-client-acceptance-report-contacts-row1-column1-results .results .contact-item .contact-info {
    gap: 5px;
  }
  /* line 1585, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
  .adv-client-acceptance-report-contacts-row1-column1-results .results .contact-item .contact-info .contact-icon {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
  /* line 1591, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
  .adv-client-acceptance-report-contacts-row1-column1-results .results .contact-item .contact-info .contact-email {
    font-size: 0.8rem;
  }
  /* line 1596, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
  .adv-client-acceptance-report-contacts-row1-column1-results .results .contact-item .contact-remove {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  /* line 1608, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
  .adv-client-acceptance-report-contacts-row1-column1-results .results {
    padding: 6px;
    gap: 4px;
    max-height: 200px;
  }
  /* line 1613, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
  .adv-client-acceptance-report-contacts-row1-column1-results .results .contact-item {
    padding: 5px;
    gap: 5px;
  }
  /* line 1617, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
  .adv-client-acceptance-report-contacts-row1-column1-results .results .contact-item .contact-info {
    gap: 5px;
  }
  /* line 1620, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
  .adv-client-acceptance-report-contacts-row1-column1-results .results .contact-item .contact-info .contact-icon {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
  }
  /* line 1626, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
  .adv-client-acceptance-report-contacts-row1-column1-results .results .contact-item .contact-info .contact-email {
    font-size: 0.75rem;
    word-break: break-all;
  }
  /* line 1632, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
  .adv-client-acceptance-report-contacts-row1-column1-results .results .contact-item .contact-remove {
    width: 22px;
    height: 22px;
    font-size: 0.65rem;
  }
}

/* line 1643, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-create-contact-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(4px);
}

/* line 1656, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-create-contact-modal-overlay.d-none {
  display: none !important;
}

/* line 1661, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-create-contact-modal {
  background-color: rgba(254, 254, 254, 0.95);
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(232, 232, 232, 0.3);
}

/* line 1671, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-create-contact-modal {
  background-color: rgba(254, 254, 254, 0.98);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 1676, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.nightmode .adv-create-contact-modal {
  background-color: rgba(20, 13, 35, 0.95);
}

/* line 1681, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-create-contact-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid rgba(232, 232, 232, 0.3);
}

/* line 1688, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-create-contact-modal-header {
  border-bottom-color: rgba(20, 13, 35, 0.2);
}

/* line 1692, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-create-contact-modal-header h3, .adv-create-contact-modal-header .h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: #140D23;
}

/* line 1698, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.nightmode .adv-create-contact-modal-header h3, .nightmode .adv-create-contact-modal-header .h3 {
  color: #fefefe;
}

/* line 1704, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-create-contact-modal-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: rgba(20, 13, 35, 0.6);
  padding: 5px;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

/* line 1719, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.nightmode .adv-create-contact-modal-close {
  color: rgba(254, 254, 254, 0.6);
}

/* line 1723, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-create-contact-modal-close:hover {
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 1727, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.nightmode .adv-create-contact-modal-close:hover {
  background-color: rgba(254, 254, 254, 0.1);
  color: #fefefe;
}

/* line 1734, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-create-contact-modal-body {
  padding: 25px;
}

/* line 1738, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-create-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 1744, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 1750, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-form-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #140D23;
}

/* line 1755, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.nightmode .adv-form-label {
  color: #fefefe;
}

/* line 1760, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-form-input {
  padding: 12px 15px;
  border: 1px solid rgba(20, 13, 35, 0.3);
  border-radius: 8px;
  font-size: 0.9rem;
  background-color: rgba(254, 254, 254, 0.8);
  color: #140D23;
  transition: all 0.3s ease;
}

/* line 1769, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.nightmode .adv-form-input {
  background-color: rgba(254, 254, 254, 0.1);
  border-color: rgba(254, 254, 254, 0.3);
  color: #fefefe;
}

/* line 1774, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.nightmode .adv-form-input::placeholder {
  color: rgba(254, 254, 254, 0.6);
}

/* line 1779, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-form-input:focus {
  outline: none;
  border-color: #C38761;
  background-color: rgba(254, 254, 254, 0.95);
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 1785, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.nightmode .adv-form-input:focus {
  background-color: rgba(254, 254, 254, 0.15);
}

/* line 1790, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-form-input.is-invalid {
  border-color: #e74c3c;
}

/* line 1793, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-form-input.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

/* line 1799, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-form-error {
  font-size: 0.8rem;
  color: #e74c3c;
  min-height: 18px;
}

/* line 1804, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-form-error.show {
  display: block;
}

/* line 1809, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-create-contact-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(232, 232, 232, 0.3);
}

/* line 1817, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.lightmode .adv-create-contact-modal-actions {
  border-top-color: rgba(20, 13, 35, 0.2);
}

/* line 1822, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-button-secondary {
  padding: 10px 20px;
  background-color: transparent;
  border: 1px solid rgba(20, 13, 35, 0.3);
  border-radius: 8px;
  color: #140D23;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 1833, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.nightmode .adv-button-secondary {
  border-color: rgba(254, 254, 254, 0.3);
  color: #fefefe;
}

/* line 1838, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-button-secondary:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 1841, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.nightmode .adv-button-secondary:hover {
  background-color: rgba(254, 254, 254, 0.1);
}

/* line 1847, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-button-primary {
  padding: 10px 20px;
  background-color: #C38761;
  border: 1px solid #C38761;
  border-radius: 8px;
  color: #fefefe;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 1858, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-button-primary:hover {
  background-color: #af6c42;
  border-color: #af6c42;
  transform: translateY(-1px);
}

/* line 1864, app/assets/stylesheets/pages/servicespace/back-office/adv/client_acceptance_report_management/_client_acceptance_report_contacts.scss */
.adv-button-primary:disabled {
  background-color: rgba(195, 135, 97, 0.5);
  border-color: rgba(195, 135, 97, 0.5);
  cursor: not-allowed;
  transform: none;
}

/* line 1, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_scoring_index.scss */
.adv-page-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

/* line 8, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_scoring_index.scss */
.adv-customer-list-period-filter {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  width: 80%;
}

/* line 17, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_scoring_index.scss */
.adv-filter-label {
  font-weight: 600;
  color: var(--text-primary);
}

/* line 22, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_scoring_index.scss */
.adv-filter-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* line 28, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_scoring_index.scss */
.adv-period-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.9rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: #fefefe;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* line 42, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_scoring_index.scss */
.adv-period-filter:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
  color: #fefefe;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* line 49, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_scoring_index.scss */
.adv-period-filter:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.35);
  color: #140D23;
}

/* line 55, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_scoring_index.scss */
.adv-period-filter.active {
  background: #C38761;
  border-color: #C38761;
  color: #140D23;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  color: #140D23;
}

/* line 63, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_scoring_index.scss */
.lightmode .adv-period-filter {
  border-color: rgba(20, 13, 35, 0.2);
  background: rgba(20, 13, 35, 0.08);
  color: #140D23;
  box-shadow: none;
}

/* line 69, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_scoring_index.scss */
.lightmode .adv-period-filter:hover {
  background: rgba(20, 13, 35, 0.15);
}

/* line 73, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_scoring_index.scss */
.lightmode .adv-period-filter:focus {
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.35);
}

/* line 77, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_scoring_index.scss */
.lightmode .adv-period-filter.active {
  background: #C38761;
  border-color: #C38761;
  color: #140D23;
}

/* line 85, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_scoring_index.scss */
.score-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
}

/* line 93, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_scoring_index.scss */
.score-excellent {
  background-color: #d4edda;
  color: #155724;
}

/* line 98, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_scoring_index.scss */
.score-good {
  background-color: #d1ecf1;
  color: #0c5460;
}

/* line 103, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_scoring_index.scss */
.score-average {
  background-color: #fff3cd;
  color: #856404;
}

/* line 108, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_scoring_index.scss */
.score-poor {
  background-color: #f8d7da;
  color: #721c24;
}

/* line 113, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_scoring_index.scss */
.text-muted {
  color: #6c757d;
  font-size: 0.85rem;
}

/* line 118, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_scoring_index.scss */
.adv-empty-state {
  text-align: center;
  padding: 3rem;
  color: #6c757d;
}

/* line 124, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_scoring_index.scss */
.adv-empty-state i {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

/* line 130, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_scoring_index.scss */
.adv-empty-state p {
  font-size: 1.1rem;
  margin: 0;
}

/* line 1, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-client-score-show {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  min-height: 100%;
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* line 10, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-client-score-show {
  color: #140D23;
}

/* line 14, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-client-score-show h1, .adv-client-score-show .h1 {
  font-size: 1.8rem;
}

/* line 18, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-client-score-show h2, .adv-client-score-show .h2 {
  font-size: 1.2rem;
  color: #C38761;
}

/* line 23, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-client-score-show h3, .adv-client-score-show .h3 {
  font-size: 1.05rem;
}

/* line 27, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-client-score-show h4, .adv-client-score-show .h4 {
  font-size: 0.95rem;
}

/* line 32, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-client-score-footer {
  display: flex;
  justify-content: flex-end;
  padding-top: 1rem;
}

/* line 38, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-client-score-title-header {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 43, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-client-score-title-header {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 48, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-client-score-title-header > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* line 56, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-client-score-title-header .adv-customer-ranking-badge-mini {
  position: static;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.65rem;
  border-radius: 16px;
  border: 2px solid;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
  animation: badgeFloatMini 4s ease-in-out infinite, badgeGlowMini 3s ease-in-out infinite;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

/* line 73, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-client-score-title-header .adv-customer-ranking-badge-mini:hover {
  animation: badgePulseMini 0.6s ease-in-out;
  transform: scale(1.08) translateY(-2px);
}

/* line 78, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-client-score-title-header .adv-customer-ranking-badge-mini i {
  font-size: 0.9rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* line 83, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-client-score-title-header .adv-customer-ranking-badge-mini .adv-customer-ranking-badge-mini-score {
  font-weight: 800;
  letter-spacing: 0.05em;
}

/* line 89, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-client-score-title-header .adv-customer-ranking-badge-mini.adv-customer-ranking-badge-mini--iron {
  border-color: #71797E;
  background: linear-gradient(135deg, rgba(113, 121, 126, 0.2), rgba(113, 121, 126, 0.05));
}

/* line 93, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-client-score-title-header .adv-customer-ranking-badge-mini.adv-customer-ranking-badge-mini--iron i, .adv-client-score-title-header .adv-customer-ranking-badge-mini.adv-customer-ranking-badge-mini--iron .adv-customer-ranking-badge-mini-score {
  color: #A0A8AC;
}

/* line 97, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-client-score-title-header .adv-customer-ranking-badge-mini.adv-customer-ranking-badge-mini--iron {
  border-color: #5A6268;
  background: linear-gradient(135deg, rgba(90, 98, 104, 0.15), rgba(90, 98, 104, 0.03));
}

/* line 101, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-client-score-title-header .adv-customer-ranking-badge-mini.adv-customer-ranking-badge-mini--iron i, .lightmode .adv-client-score-title-header .adv-customer-ranking-badge-mini.adv-customer-ranking-badge-mini--iron .adv-customer-ranking-badge-mini-score {
  color: #6C757D;
}

/* line 108, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-client-score-title-header .adv-customer-ranking-badge-mini.adv-customer-ranking-badge-mini--bronze {
  border-color: #CD7F32;
  background: linear-gradient(135deg, rgba(205, 127, 50, 0.25), rgba(205, 127, 50, 0.08));
}

/* line 112, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-client-score-title-header .adv-customer-ranking-badge-mini.adv-customer-ranking-badge-mini--bronze i, .adv-client-score-title-header .adv-customer-ranking-badge-mini.adv-customer-ranking-badge-mini--bronze .adv-customer-ranking-badge-mini-score {
  color: #E59856;
}

/* line 116, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-client-score-title-header .adv-customer-ranking-badge-mini.adv-customer-ranking-badge-mini--bronze:hover {
  box-shadow: 0 8px 24px rgba(205, 127, 50, 0.4);
}

/* line 120, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-client-score-title-header .adv-customer-ranking-badge-mini.adv-customer-ranking-badge-mini--bronze {
  border-color: #B8692D;
  background: linear-gradient(135deg, rgba(184, 105, 45, 0.2), rgba(184, 105, 45, 0.05));
}

/* line 124, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-client-score-title-header .adv-customer-ranking-badge-mini.adv-customer-ranking-badge-mini--bronze i, .lightmode .adv-client-score-title-header .adv-customer-ranking-badge-mini.adv-customer-ranking-badge-mini--bronze .adv-customer-ranking-badge-mini-score {
  color: #CD7F32;
}

/* line 131, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-client-score-title-header .adv-customer-ranking-badge-mini.adv-customer-ranking-badge-mini--silver {
  border-color: #C0C0C0;
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.3), rgba(192, 192, 192, 0.1));
}

/* line 135, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-client-score-title-header .adv-customer-ranking-badge-mini.adv-customer-ranking-badge-mini--silver i, .adv-client-score-title-header .adv-customer-ranking-badge-mini.adv-customer-ranking-badge-mini--silver .adv-customer-ranking-badge-mini-score {
  color: #E8E8E8;
}

/* line 139, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-client-score-title-header .adv-customer-ranking-badge-mini.adv-customer-ranking-badge-mini--silver:hover {
  box-shadow: 0 8px 24px rgba(192, 192, 192, 0.5);
}

/* line 143, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-client-score-title-header .adv-customer-ranking-badge-mini.adv-customer-ranking-badge-mini--silver {
  border-color: #A8A8A8;
  background: linear-gradient(135deg, rgba(168, 168, 168, 0.25), rgba(168, 168, 168, 0.08));
}

/* line 147, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-client-score-title-header .adv-customer-ranking-badge-mini.adv-customer-ranking-badge-mini--silver i, .lightmode .adv-client-score-title-header .adv-customer-ranking-badge-mini.adv-customer-ranking-badge-mini--silver .adv-customer-ranking-badge-mini-score {
  color: #909090;
}

/* line 154, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-client-score-title-header .adv-customer-ranking-badge-mini.adv-customer-ranking-badge-mini--gold {
  border-color: #FFD700;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.35), rgba(255, 215, 0, 0.12));
}

/* line 158, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-client-score-title-header .adv-customer-ranking-badge-mini.adv-customer-ranking-badge-mini--gold i, .adv-client-score-title-header .adv-customer-ranking-badge-mini.adv-customer-ranking-badge-mini--gold .adv-customer-ranking-badge-mini-score {
  color: #FFE44D;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
}

/* line 163, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-client-score-title-header .adv-customer-ranking-badge-mini.adv-customer-ranking-badge-mini--gold:hover {
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.6);
}

/* line 167, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-client-score-title-header .adv-customer-ranking-badge-mini.adv-customer-ranking-badge-mini--gold {
  border-color: #E6C200;
  background: linear-gradient(135deg, rgba(230, 194, 0, 0.3), rgba(230, 194, 0, 0.1));
}

/* line 171, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-client-score-title-header .adv-customer-ranking-badge-mini.adv-customer-ranking-badge-mini--gold i, .lightmode .adv-client-score-title-header .adv-customer-ranking-badge-mini.adv-customer-ranking-badge-mini--gold .adv-customer-ranking-badge-mini-score {
  color: #FFD700;
}

@keyframes badgeFloatMini {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-4px) rotate(0.5deg);
  }
  50% {
    transform: translateY(-6px) rotate(0deg);
  }
  75% {
    transform: translateY(-4px) rotate(-0.5deg);
  }
}

@keyframes badgeGlowMini {
  0%, 100% {
    box-shadow: 0 3px 12px rgba(255, 255, 255, 0.15), 0 0 0 0 rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow: 0 5px 18px rgba(255, 255, 255, 0.25), 0 0 12px 3px rgba(255, 255, 255, 0.15);
  }
}

@keyframes badgePulseMini {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

/* line 213, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-client-score-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  color: #C38761;
}

/* line 219, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-client-score-title {
  color: #C38761;
}

/* line 224, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-client-score-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* line 229, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-client-score-actions .adv-button.disabled, .adv-client-score-actions .disabled.adv-button-regular, .adv-client-score-actions .disabled.adv-back-button, .adv-client-score-actions .disabled.adv-cancel-button, .adv-client-score-actions .disabled.adv-button-success, .adv-client-score-actions .disabled.adv-button-warning, .adv-client-score-actions .disabled.adv-button-disabled {
  opacity: 0.6;
  pointer-events: none;
}

/* line 235, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-client-score-summary {
  display: flex;
  width: 100%;
}

/* line 240, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-card--unified {
  width: 100%;
}

/* line 244, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-unified-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 1024px) {
  /* line 244, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
  .adv-score-unified-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* line 255, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-unified-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* line 261, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-unified-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* line 267, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-unified-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* line 272, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-unified-section header {
  margin-bottom: 0.5rem;
}

/* line 277, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-unified-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* line 281, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-score-unified-divider {
  background: linear-gradient(90deg, transparent, rgba(20, 13, 35, 0.2), transparent);
}

/* line 286, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-client-score-carousel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* line 293, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-client-score-tabs {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow-x: auto;
}

/* line 302, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-client-score-tabs {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 307, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-client-score-tabs .adv-client-score-tab {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

/* line 321, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-client-score-tabs .adv-client-score-tab {
  color: rgba(20, 13, 35, 0.7);
}

/* line 325, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-client-score-tabs .adv-client-score-tab:hover:not(.active) {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
}

/* line 329, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-client-score-tabs .adv-client-score-tab:hover:not(.active) {
  color: #140D23;
  background: rgba(20, 13, 35, 0.1);
}

/* line 335, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-client-score-tabs .adv-client-score-tab.active {
  background: rgba(246, 229, 179, 0.2) !important;
  color: #F6E5B3 !important;
  box-shadow: 0 0 5px rgba(246, 229, 179, 0.3);
  border: 1px solid rgba(246, 229, 179, 0.1);
  font-weight: 600;
}

/* line 342, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-client-score-tabs .adv-client-score-tab.active {
  background: rgba(246, 229, 179, 0.25) !important;
  color: #F6E5B3 !important;
}

/* line 347, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-client-score-tabs .adv-client-score-tab.active:hover {
  background: rgba(246, 229, 179, 0.3) !important;
  color: #F6E5B3 !important;
  box-shadow: 0 0 8px rgba(246, 229, 179, 0.4);
}

/* line 352, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-client-score-tabs .adv-client-score-tab.active:hover {
  background: rgba(246, 229, 179, 0.3) !important;
  color: #F6E5B3 !important;
}

/* line 361, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-client-score-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* line 368, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-client-score-organization-header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* line 374, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.6;
}

/* line 382, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-client-score-organization-name {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
}

/* line 388, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-organization-score-display {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 398, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-organization-score-display {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 404, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-organization-score-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.7;
}

/* line 412, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-organization-score-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: #C38761;
  line-height: 1;
}

/* line 418, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-organization-score-value {
  color: #C38761;
}

/* line 423, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-organization-score-suffix {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.7;
}

/* line 429, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-carousel-arrow {
  align-self: flex-start;
  margin-top: 3rem;
  height: 48px;
  width: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fefefe;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
}

/* line 446, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

/* line 451, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-carousel-arrow:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.35);
}

/* line 456, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-carousel-arrow {
  border-color: rgba(20, 13, 35, 0.15);
  background: rgba(20, 13, 35, 0.06);
  color: #140D23;
}

/* line 461, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-carousel-arrow:hover {
  background: rgba(20, 13, 35, 0.1);
}

/* line 465, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-carousel-arrow:focus {
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.35);
}

/* line 471, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-carousel-arrow--left {
  order: 0;
}

/* line 475, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-carousel-arrow--right {
  order: 2;
}

/* line 479, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-client-score-carousel .adv-client-score-content {
  order: 1;
}

@media (max-width: 900px) {
  /* line 483, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
  .adv-client-score-carousel {
    flex-direction: column;
    align-items: stretch;
  }
  /* line 488, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
  .adv-client-score-carousel .adv-carousel-arrow {
    width: 100%;
    border-radius: 14px;
    height: 44px;
  }
  /* line 494, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
  .adv-client-score-carousel .adv-carousel-arrow--left,
.adv-client-score-carousel .adv-carousel-arrow--right {
    order: initial;
  }
}

/* line 501, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-card--info {
  min-height: 280px;
}

@keyframes badgeFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-8px) rotate(2deg);
  }
  50% {
    transform: translateY(-12px) rotate(0deg);
  }
  75% {
    transform: translateY(-8px) rotate(-2deg);
  }
}

@keyframes badgeGlow {
  0%, 100% {
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.15), 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  50% {
    box-shadow: 0 12px 48px rgba(255, 255, 255, 0.25), 0 0 24px 8px rgba(255, 255, 255, 0.2);
  }
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes badgeShine {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes iconSpin {
  0% {
    transform: rotate(0deg) scale(1);
  }
  25% {
    transform: rotate(10deg) scale(1.1);
  }
  50% {
    transform: rotate(0deg) scale(1);
  }
  75% {
    transform: rotate(-10deg) scale(1.1);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}

/* line 566, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-ranking-badge-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 1rem;
  min-height: 150px;
}

/* line 574, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-ranking-badge {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 2rem;
  border-radius: 20px;
  border: 2px solid;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(8px);
  animation: badgeFloat 4s ease-in-out infinite, badgeGlow 3s ease-in-out infinite;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 588, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-ranking-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 18px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  background-size: 200% 100%;
  animation: badgeShine 3s ease-in-out infinite;
  opacity: 0.5;
}

/* line 607, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-ranking-badge:hover {
  animation: badgePulse 0.6s ease-in-out;
  transform: scale(1.05);
}

/* line 613, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-ranking-badge-icon {
  font-size: 3rem;
  animation: iconSpin 5s ease-in-out infinite;
  filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.3));
  transition: all 0.3s ease;
}

/* line 619, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-ranking-badge:hover .adv-ranking-badge-icon {
  animation: iconSpin 1s ease-in-out infinite;
}

/* line 624, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-ranking-badge-label {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* line 633, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-ranking-badge--iron {
  border-color: #71797E;
  background: linear-gradient(135deg, rgba(113, 121, 126, 0.2), rgba(113, 121, 126, 0.05));
}

/* line 637, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-ranking-badge--iron .adv-ranking-badge-icon {
  color: #A0A8AC;
}

/* line 641, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-ranking-badge--iron .adv-ranking-badge-label {
  color: #B8BEC2;
}

/* line 645, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-ranking-badge--iron {
  border-color: #5A6268;
  background: linear-gradient(135deg, rgba(90, 98, 104, 0.15), rgba(90, 98, 104, 0.03));
}

/* line 649, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-ranking-badge--iron .adv-ranking-badge-icon {
  color: #6C757D;
}

/* line 653, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-ranking-badge--iron .adv-ranking-badge-label {
  color: #495057;
}

/* line 660, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-ranking-badge--bronze {
  border-color: #CD7F32;
  background: linear-gradient(135deg, rgba(205, 127, 50, 0.25), rgba(205, 127, 50, 0.08));
}

/* line 664, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-ranking-badge--bronze .adv-ranking-badge-icon {
  color: #E59856;
  text-shadow: 0 0 20px rgba(205, 127, 50, 0.6);
}

/* line 669, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-ranking-badge--bronze .adv-ranking-badge-label {
  color: #F5B97F;
  text-shadow: 0 2px 12px rgba(205, 127, 50, 0.5);
}

/* line 674, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-ranking-badge--bronze::before {
  background: linear-gradient(90deg, transparent, rgba(245, 185, 127, 0.4), transparent);
}

/* line 683, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-ranking-badge--bronze {
  border-color: #B8692D;
  background: linear-gradient(135deg, rgba(184, 105, 45, 0.2), rgba(184, 105, 45, 0.05));
}

/* line 687, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-ranking-badge--bronze .adv-ranking-badge-icon {
  color: #CD7F32;
}

/* line 691, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-ranking-badge--bronze .adv-ranking-badge-label {
  color: #A0621F;
}

/* line 698, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-ranking-badge--silver {
  border-color: #C0C0C0;
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.3), rgba(192, 192, 192, 0.1));
}

/* line 702, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-ranking-badge--silver .adv-ranking-badge-icon {
  color: #E8E8E8;
  text-shadow: 0 0 24px rgba(192, 192, 192, 0.8);
}

/* line 707, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-ranking-badge--silver .adv-ranking-badge-label {
  color: #F5F5F5;
  text-shadow: 0 2px 16px rgba(192, 192, 192, 0.7);
}

/* line 712, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-ranking-badge--silver::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
}

/* line 721, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-ranking-badge--silver {
  border-color: #A8A8A8;
  background: linear-gradient(135deg, rgba(168, 168, 168, 0.25), rgba(168, 168, 168, 0.08));
}

/* line 725, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-ranking-badge--silver .adv-ranking-badge-icon {
  color: #909090;
}

/* line 729, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-ranking-badge--silver .adv-ranking-badge-label {
  color: #6C6C6C;
}

/* line 736, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-ranking-badge--gold {
  border-color: #FFD700;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.35), rgba(255, 215, 0, 0.12));
}

/* line 740, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-ranking-badge--gold .adv-ranking-badge-icon {
  color: #FFE44D;
  text-shadow: 0 0 32px rgba(255, 215, 0, 0.9);
}

/* line 745, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-ranking-badge--gold .adv-ranking-badge-label {
  color: #FFF5CC;
  text-shadow: 0 2px 20px rgba(255, 215, 0, 0.8);
}

/* line 750, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-ranking-badge--gold::before {
  background: linear-gradient(90deg, transparent, rgba(255, 245, 204, 0.7), transparent);
}

/* line 759, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-ranking-badge--gold {
  border-color: #E6C200;
  background: linear-gradient(135deg, rgba(230, 194, 0, 0.3), rgba(230, 194, 0, 0.1));
}

/* line 763, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-ranking-badge--gold .adv-ranking-badge-icon {
  color: #FFD700;
}

/* line 767, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-ranking-badge--gold .adv-ranking-badge-label {
  color: #B8960A;
}

/* line 773, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-card--compact {
  min-height: 120px;
}

/* line 777, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-client-global-score {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* line 786, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-client-global-score {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.08), rgba(20, 13, 35, 0.02));
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 792, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-client-global-score-value {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  color: #C38761;
}

/* line 801, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-client-global-score-value {
  color: #C38761;
}

/* line 806, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-client-global-score-suffix {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.7;
}

/* line 812, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-client-global-score-label {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.8;
}

/* line 818, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-organizations-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* line 824, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-organization-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.2s ease;
}

/* line 834, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-organization-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(2px);
}

/* line 839, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-organization-item {
  background: rgba(20, 13, 35, 0.04);
  border-color: rgba(20, 13, 35, 0.08);
}

/* line 843, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-organization-item:hover {
  background: rgba(20, 13, 35, 0.08);
}

/* line 849, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-organization-item-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

/* line 856, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-organization-item-name {
  font-weight: 600;
  font-size: 0.95rem;
}

/* line 861, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-organization-item-weight {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* line 866, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-organization-item-score {
  flex-shrink: 0;
}

/* line 870, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-client-score-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* line 881, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-client-score-details {
  background: rgba(254, 254, 254, 0.95);
  border-color: rgba(20, 13, 35, 0.1);
  box-shadow: 0 12px 32px rgba(20, 13, 35, 0.08);
}

/* line 888, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-details-section-title {
  margin-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 893, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-score-details-section-title {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 897, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-details-section-title h3, .adv-score-details-section-title .h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
}

/* line 904, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-config-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* line 910, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-config-field {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* line 916, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-config-table {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 923, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-score-config-table {
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 928, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-config-table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* line 937, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-score-config-table-header {
  background: rgba(20, 13, 35, 0.08);
}

/* line 942, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-config-table-body {
  display: flex;
  flex-direction: column;
}

/* line 947, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-config-table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  transition: background-color 0.15s ease;
}

/* line 953, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-config-table-row:hover {
  background: rgba(255, 255, 255, 0.03);
}

/* line 957, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-score-config-table-row {
  border-top-color: rgba(20, 13, 35, 0.05);
}

/* line 960, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-score-config-table-row:hover {
  background: rgba(20, 13, 35, 0.03);
}

/* line 966, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-config-table-cell {
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
}

/* line 972, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* line 982, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-score-card {
  background: rgba(254, 254, 254, 0.95);
  border-color: rgba(20, 13, 35, 0.1);
  box-shadow: 0 12px 32px rgba(20, 13, 35, 0.08);
}

/* line 988, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* line 994, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-card header h2, .adv-score-card header .h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

/* line 1002, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-card--primary {
  grid-row: span 2;
}

/* line 1006, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-tag {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.2rem 0.75rem;
  font-size: 0.75rem;
  opacity: 0.8;
}

/* line 1013, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-score-tag {
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 1018, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-placeholder {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

/* line 1030, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-score-placeholder {
  background: rgba(20, 13, 35, 0.05);
  color: rgba(20, 13, 35, 0.6);
}

/* line 1036, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* line 1042, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-client-score-sections {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* line 1048, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-client-score-details .adv-client-score-sections {
  margin-top: 0;
}

/* line 1052, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-panel {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* line 1062, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-score-panel {
  background: rgba(254, 254, 254, 0.95);
  border-color: rgba(20, 13, 35, 0.1);
  box-shadow: 0 12px 32px rgba(20, 13, 35, 0.08);
}

/* line 1068, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-panel header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* line 1074, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-panel header h3, .adv-score-panel header .h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

/* line 1083, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-indicators-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

@media (max-width: 900px) {
  /* line 1083, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
  .adv-score-indicators-grid {
    grid-template-columns: 1fr;
  }
}

/* line 1095, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 1104, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-score-details {
  background: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.08);
}

/* line 1110, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-details-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #C38761;
  margin: 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 1121, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-score-details-title {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 1125, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-details-title i {
  font-size: 1rem;
}

/* line 1130, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-metrics {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* line 1136, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0;
  font-size: 0.85rem;
}

/* line 1145, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-metric-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* line 1152, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-metric-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 1156, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-metric-label i {
  font-size: 0.9rem;
  color: #C38761;
  opacity: 0.8;
}

/* line 1163, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-metric-value {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-align: right;
}

/* line 1171, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-metric-value {
  color: #140D23;
}

/* line 1175, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-metric-value strong {
  font-weight: 700;
}

/* line 1180, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-highlight {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* line 1189, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-score-highlight {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.08), rgba(20, 13, 35, 0.02));
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 1195, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-highlight-value {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

/* line 1204, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-highlight-suffix {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.7;
}

/* line 1210, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-highlight-label {
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.8;
}

/* line 1216, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

@media (max-width: 900px) {
  /* line 1216, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
  .adv-score-metrics-grid {
    grid-template-columns: 1fr;
  }
}

/* line 1227, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-metric-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}

/* line 1237, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-metric-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* line 1244, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-score-metric-card {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 1248, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-score-metric-card:hover {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 1255, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-metric-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 1262, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-score-metric-card-header {
  border-bottom-color: rgba(20, 13, 35, 0.08);
}

/* line 1267, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-metric-icon {
  font-size: 1rem;
  color: #C38761;
  opacity: 0.8;
}

/* line 1272, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-score-metric-icon {
  color: #C38761;
}

/* line 1277, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-metric-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* line 1285, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-metric-card-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: #C38761;
  line-height: 1;
}

/* line 1291, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.lightmode .adv-score-metric-card-value {
  color: #C38761;
}

/* line 1296, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-metric-unit {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.7;
}

/* line 1302, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-metric-card-details {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

/* line 1309, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-metric-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  padding: 0.3rem 0;
}

/* line 1317, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-metric-detail-label {
  opacity: 0.7;
  font-weight: 500;
}

/* line 1322, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_show_client_score.scss */
.adv-score-metric-detail-value {
  font-weight: 600;
  opacity: 0.9;
}

/* line 6, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-scoring-panel-content {
  padding: 0;
}

/* line 11, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-score-main {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 17, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.lightmode .adv-score-main {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 22, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-score-value {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: #C38761;
}

/* line 29, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-score-value.score-success {
  color: #C38761;
}

/* line 33, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-score-value.score-warning {
  color: #f59e0b;
}

/* line 37, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.lightmode .adv-score-value {
  color: #C38761;
}

/* line 42, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-score-unit {
  font-size: 1.2rem;
  font-weight: 500;
  opacity: 0.7;
}

/* line 48, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-score-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.6;
}

/* line 55, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-score-label.score-label-warning {
  color: #f59e0b;
}

/* line 61, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-score-details-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.9;
}

/* line 70, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-score-details-title i {
  opacity: 0.7;
}

/* line 75, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-score-metrics {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

/* line 82, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.2s ease;
}

/* line 92, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-metric-row:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(2px);
}

/* line 97, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.lightmode .adv-metric-row {
  background: rgba(20, 13, 35, 0.04);
  border-color: rgba(20, 13, 35, 0.08);
}

/* line 101, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.lightmode .adv-metric-row:hover {
  background: rgba(20, 13, 35, 0.08);
}

/* line 107, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-metric-label {
  font-size: 0.85rem;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 114, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-metric-label i {
  opacity: 0.6;
}

/* line 119, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-metric-value {
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 126, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-metric-value .text-success {
  color: #10b981;
}

/* line 129, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.lightmode .adv-metric-value .text-success {
  color: #059669;
}

/* line 134, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-metric-value .text-warning {
  color: #f59e0b;
}

/* line 137, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.lightmode .adv-metric-value .text-warning {
  color: #d97706;
}

/* line 144, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* line 154, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-badge.adv-badge-success {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* line 159, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.lightmode .adv-badge.adv-badge-success {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
}

/* line 165, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-badge.adv-badge-warning {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

/* line 170, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.lightmode .adv-badge.adv-badge-warning {
  background: rgba(245, 158, 11, 0.12);
  color: #d97706;
}

/* line 176, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-badge.adv-badge-info {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

/* line 181, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.lightmode .adv-badge.adv-badge-info {
  background: rgba(59, 130, 246, 0.12);
  color: #2563eb;
}

/* line 187, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-badge.adv-badge-primary {
  background: rgba(99, 102, 241, 0.15);
  color: #6366f1;
  border: 1px solid rgba(99, 102, 241, 0.3);
}

/* line 192, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.lightmode .adv-badge.adv-badge-primary {
  background: rgba(99, 102, 241, 0.12);
  color: #4f46e5;
}

/* line 198, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-badge.adv-badge-gold {
  background: rgba(255, 215, 0, 0.15);
  color: #C38761;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

/* line 203, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.lightmode .adv-badge.adv-badge-gold {
  background: rgba(255, 215, 0, 0.12);
  color: #C38761;
}

/* line 209, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-badge.adv-badge-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  opacity: 0.7;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* line 215, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.lightmode .adv-badge.adv-badge-secondary {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 223, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-score-breakdown {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

/* line 229, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-score-breakdown-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* line 238, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-score-breakdown-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* line 244, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-breakdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
}

/* line 252, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-breakdown-item i {
  font-size: 1rem;
}

/* line 256, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-breakdown-item span {
  flex: 1;
}

/* line 260, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-breakdown-item strong {
  font-weight: 600;
}

/* line 264, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-breakdown-item.item-success {
  background: #ecfdf5;
  color: #065f46;
}

/* line 269, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-breakdown-item.item-failure {
  background: #f3f4f6;
  color: #6b7280;
}

/* line 276, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-score-footer-info {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

/* line 282, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.lightmode .adv-score-footer-info {
  border-top-color: rgba(20, 13, 35, 0.1);
}

/* line 286, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-score-footer-info small, .adv-score-footer-info .small {
  opacity: 0.6;
  font-size: 0.75rem;
}

/* line 290, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-score-footer-info small i, .adv-score-footer-info .small i {
  opacity: 0.7;
  margin-right: 0.25rem;
}

/* line 295, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-score-footer-info small strong, .adv-score-footer-info .small strong {
  font-weight: 600;
  opacity: 0.9;
}

/* line 303, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-score-unavailable {
  text-align: center;
  padding: 2rem;
}

/* line 308, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-unavailable-icon {
  font-size: 3rem;
  opacity: 0.3;
  margin-bottom: 1rem;
}

/* line 315, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-unavailable-content h4, .adv-unavailable-content .h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* line 322, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-unavailable-message {
  font-size: 0.875rem;
  opacity: 0.7;
  margin-bottom: 1rem;
}

/* line 329, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-info-box {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  font-size: 0.85rem;
  margin-top: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 340, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.lightmode .adv-info-box {
  background: rgba(20, 13, 35, 0.06);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 345, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-info-box i {
  opacity: 0.7;
}

/* line 349, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-info-box.adv-info-warning {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.3);
  color: #f59e0b;
}

/* line 354, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.lightmode .adv-info-box.adv-info-warning {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
}

/* line 359, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-info-box.adv-info-warning i {
  color: #f59e0b;
}

/* line 362, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.lightmode .adv-info-box.adv-info-warning i {
  color: #d97706;
}

/* line 368, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-info-box.adv-info-future {
  background: rgba(59, 130, 246, 0.12);
  border: 1px dashed rgba(59, 130, 246, 0.4);
  color: #3b82f6;
}

/* line 373, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.lightmode .adv-info-box.adv-info-future {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
}

/* line 378, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-info-box.adv-info-future i {
  color: #3b82f6;
}

/* line 381, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.lightmode .adv-info-box.adv-info-future i {
  color: #2563eb;
}

/* line 389, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-score-separator {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  margin: 1.5rem 0;
}

/* line 394, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.lightmode .adv-score-separator {
  background: linear-gradient(90deg, transparent, rgba(20, 13, 35, 0.2), transparent);
}

/* line 400, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-score-component {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 1rem;
  margin-top: 0.75rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(59, 130, 246, 0.04));
  border-left: 3px solid rgba(59, 130, 246, 0.6);
  border-radius: 12px;
  font-size: 0.875rem;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

/* line 412, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.lightmode .adv-score-component {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(59, 130, 246, 0.02));
  border-color: rgba(59, 130, 246, 0.15);
  border-left-color: rgba(59, 130, 246, 0.5);
}

/* line 418, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-score-component .component-label {
  font-weight: 600;
  opacity: 0.9;
}

/* line 423, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-score-component .component-score {
  font-weight: 700;
  font-size: 1.1rem;
  color: #C38761;
}

/* line 428, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.lightmode .adv-score-component .component-score {
  color: #C38761;
}

/* line 432, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-score-component .component-score.component-score-zero {
  opacity: 0.5;
}

/* line 436, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-score-component .component-score.component-score-pending {
  opacity: 0.6;
  font-style: italic;
}

/* line 444, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-score-total-recap {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* line 452, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.lightmode .adv-score-total-recap {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.06), rgba(20, 13, 35, 0.02));
  border-color: rgba(20, 13, 35, 0.12);
  box-shadow: 0 4px 12px rgba(20, 13, 35, 0.06);
}

/* line 459, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-score-total-title {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* line 470, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-score-total-title i {
  opacity: 0.7;
}

/* line 475, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-score-total-items {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

/* line 481, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-total-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}

/* line 488, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-total-item span {
  opacity: 0.8;
}

/* line 492, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-total-item strong {
  font-size: 1rem;
  font-weight: 600;
}

/* line 496, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-total-item strong.text-muted {
  opacity: 0.5;
  font-style: italic;
}

/* line 502, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-total-item.adv-total-final {
  padding-top: 0.875rem;
  margin-top: 0.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
}

/* line 508, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.lightmode .adv-total-item.adv-total-final {
  border-top-color: rgba(20, 13, 35, 0.2);
}

/* line 512, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-total-item.adv-total-final span {
  font-weight: 600;
  opacity: 1;
}

/* line 517, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-total-item.adv-total-final strong {
  color: #C38761;
  font-size: 1.25rem;
}

/* line 521, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.lightmode .adv-total-item.adv-total-final strong {
  color: #C38761;
}

/* line 528, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.adv-total-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0.25rem 0;
}

/* line 533, app/assets/stylesheets/pages/servicespace/back-office/adv/client_scoring/_financial_panel.scss */
.lightmode .adv-total-divider {
  background: rgba(20, 13, 35, 0.15);
}

/* ==========================================================================
   CUSTOMER LIST - MODULE ADV
   Structure principale et composants pour la gestion des clients
   ========================================================================== */
/* ==========================================================================
   LAYOUT PRINCIPAL - Structure générale du module
   ========================================================================== */
/* line 10, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-capsule {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 5px 20px;
  font-size: 0.8rem;
  gap: 10px;
  overflow: hidden;
}

/* line 22, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-capsule.lightmode {
  color: #140D23;
}

/* line 26, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-capsule.nightmode {
  color: #fefefe;
}

/* line 31, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 37, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-capsule span {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* Variations de thème clair/sombre */
/* line 44, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-capsule.lightmode span {
  color: #C38761;
}

/* line 48, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-capsule.nightmode span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 52, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-capsule.lightmode p {
  color: #140D23;
}

/* line 56, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-capsule.nightmode p {
  color: #fefefe;
}

/* line 60, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-capsule.lightmode i {
  color: #140D23;
}

/* line 64, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-capsule.nightmode i {
  color: #fefefe;
}

/* line 68, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-tabs {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
}

/* ==========================================================================
   BARRE SUPÉRIEURE - Recherche et bouton création
   ========================================================================== */
/* line 80, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-row1 {
  width: 80%;
  height: 50px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  flex-shrink: 0;
  margin-bottom: 20px;
}

/* line 91, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-row1 form {
  width: 100%;
  display: flex;
  padding: 0 !important;
}

/* ==========================================================================
   BARRE DE RECHERCHE - Composants et fonctionnalités
   ========================================================================== */
/* line 102, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-row1-searchbar {
  width: 100%;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(254, 254, 254, 0.5);
  display: flex;
  justify-content: space-between;
  align-content: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 115, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-capsule.lightmode .adv-customer-list-row1-searchbar {
  border-color: rgba(20, 13, 35, 0.5);
  color: #140D23;
}

/* line 120, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-row1-searchbar .search-form {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 127, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-row1-searchbar .adv-customer-list-search-input-wrapper {
  position: relative;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

/* line 134, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-row1-searchbar .search-input {
  width: 100%;
  background: transparent;
  border: none;
  color: #fefefe;
  outline: none;
  padding-right: 25px;
}

/* line 142, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-capsule.lightmode .adv-customer-list-row1-searchbar .search-input {
  color: #140D23;
}

/* line 145, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-capsule.lightmode .adv-customer-list-row1-searchbar .search-input::placeholder {
  color: rgba(20, 13, 35, 0.6);
}

/* line 151, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-row1-searchbar .adv-customer-list-clear-search-button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: #fefefe;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 0.6rem;
  text-decoration: none;
}

/* line 166, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-capsule.lightmode .adv-customer-list-row1-searchbar .adv-customer-list-clear-search-button {
  color: #140D23;
}

/* line 170, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-row1-searchbar .adv-customer-list-clear-search-button:hover {
  color: rgba(254, 254, 254, 0.7);
}

/* line 173, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-capsule.lightmode .adv-customer-list-row1-searchbar .adv-customer-list-clear-search-button:hover {
  color: rgba(20, 13, 35, 0.7);
}

/* line 179, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-row1-searchbar button {
  all: unset;
  cursor: pointer;
}

/* line 184, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-row1-searchbar .search-button {
  padding: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 192, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-row1-searchbar i {
  color: #fefefe !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 197, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-capsule.lightmode .adv-customer-list-row1-searchbar i {
  color: #140D23 !important;
}

/* line 202, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-row1-searchbar span {
  font-weight: normal !important;
  color: #fefefe !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 208, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-capsule.lightmode .adv-customer-list-row1-searchbar span {
  color: #140D23 !important;
}

/* Bannière d'information sur la recherche en cours */
/* line 215, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-search-info {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: #fefefe;
  margin-bottom: -10px;
  z-index: 5;
}

/* line 225, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-capsule.lightmode .adv-customer-list-search-info {
  color: #140D23;
}

/* line 229, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-search-info span {
  opacity: 0.8;
}

/* line 233, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-search-info .adv-customer-list-reset-search-link {
  color: #fefefe;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  border-radius: 4px;
  background-color: rgba(254, 254, 254, 0.1);
  transition: background-color 0.2s ease;
}

/* line 244, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-capsule.lightmode .adv-customer-list-search-info .adv-customer-list-reset-search-link {
  color: #140D23;
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 249, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-search-info .adv-customer-list-reset-search-link:hover {
  background-color: rgba(254, 254, 254, 0.2);
}

/* line 252, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-capsule.lightmode .adv-customer-list-search-info .adv-customer-list-reset-search-link:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* ==========================================================================
   CONTENEUR PRINCIPAL DES DONNÉES - Structure du tableau des clients
   ========================================================================== */
/* line 263, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-row2 {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  background-color: rgba(254, 254, 254, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 15px;
  overflow: hidden;
  margin-top: 5px;
}

/* line 277, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-capsule.lightmode .adv-customer-list-row2 {
  background-color: rgba(254, 254, 254, 0.1);
}

/* line 282, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-row2-list {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

/* ==========================================================================
   EN-TÊTE DU TABLEAU - Titres des colonnes et tri
   ========================================================================== */
/* line 295, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-row2-list-head {
  width: 97%;
  display: flex;
  padding-right: 8px;
  flex-direction: row;
  font-weight: bold;
  font-size: 0.75rem;
  margin-bottom: 5px;
  color: #fefefe;
}

/* line 305, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-capsule.lightmode .adv-customer-list-row2-list-head {
  color: #140D23;
}

/* line 310, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-row2-list-head .adv-customer-list-row2-list-column {
  flex: 1;
  text-align: center;
  justify-content: center;
}

/* line 315, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-row2-list-head .adv-customer-list-row2-list-column.sortable {
  cursor: pointer;
  transition: background-color 0.2s ease;
}

/* line 319, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-row2-list-head .adv-customer-list-row2-list-column.sortable:hover {
  background-color: rgba(254, 254, 254, 0.05);
}

/* line 322, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-capsule.lightmode .adv-customer-list-row2-list-head .adv-customer-list-row2-list-column.sortable:hover {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 327, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-row2-list-head .adv-customer-list-row2-list-column.sortable .sort-link {
  color: #fefefe;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 100%;
  height: 100%;
}

/* line 337, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-capsule.lightmode .adv-customer-list-row2-list-head .adv-customer-list-row2-list-column.sortable .sort-link {
  color: #140D23;
}

/* line 341, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-row2-list-head .adv-customer-list-row2-list-column.sortable .sort-link i {
  font-size: 0.6rem !important;
}

/* line 344, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-capsule.lightmode .adv-customer-list-row2-list-head .adv-customer-list-row2-list-column.sortable .sort-link i {
  color: #140D23 !important;
}

/* Styles communs pour les colonnes */
/* line 353, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-row2-list-column {
  display: flex;
  align-items: center;
  font-size: 0.7rem;
  padding: 5px 10px;
}

/* ==========================================================================
   CORPS DU TABLEAU - Liste des clients avec défilement
   ========================================================================== */
/* line 364, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-row2-list-entries {
  width: 100%;
  height: calc(100% - 30px);
  display: flex;
  gap: 5px;
  flex-direction: column;
  overflow-y: auto;
}

/* line 372, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-row2-list-entries::-webkit-scrollbar {
  width: 8px;
}

/* line 376, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-row2-list-entries::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 380, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-capsule.lightmode .adv-customer-list-row2-list-entries::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 385, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-row2-list-entries::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 390, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-row2-list-entries::-webkit-scrollbar-thumb:hover {
  background: #fefefe;
}

/* line 393, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-capsule.lightmode .adv-customer-list-row2-list-entries::-webkit-scrollbar-thumb:hover {
  background: #140D23;
}

/* Lignes du tableau des clients */
/* line 400, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-row2-list-entry {
  width: 97%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  font-size: 0.7rem;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 2px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 40px;
  padding: 3px 0;
  margin-bottom: 2px;
  color: #fefefe;
}

/* line 418, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-capsule.lightmode .adv-customer-list-row2-list-entry {
  color: #140D23;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 2px;
}

/* line 423, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-row2-list-entry:hover {
  transform: scale(1.01);
  transition: transform 0.3s ease;
  background-color: rgba(254, 254, 254, 0.1);
}

/* line 428, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-capsule.lightmode .adv-customer-list-row2-list-entry:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 433, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-row2-list-entry .adv-customer-list-row2-list-column {
  flex: 1;
  text-align: center;
  justify-content: center;
}

/* ==========================================================================
   BADGES DE STATUT - Styles pour les différents types de statuts de clients
   ========================================================================== */
/* line 444, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.status-badge {
  padding: 4px 8px !important;
  border-radius: 8px !important;
  font-size: 0.65rem;
  font-weight: 500;
  display: inline-block;
  min-width: 70px;
  text-align: center;
  transition: all 0.2s ease-in-out;
}

/* line 454, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-capsule.lightmode .status-badge {
  padding: 4px 10px !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* line 458, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-capsule.lightmode .status-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* line 464, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.status-badge.actif {
  background-color: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
}

/* line 468, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-capsule.lightmode .status-badge.actif {
  background-color: rgba(46, 204, 113, 0.4);
  color: #1e8449;
  font-weight: 600;
  border: 1px solid rgba(46, 204, 113, 0.2);
}

/* line 476, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.status-badge.archiver {
  background-color: rgba(149, 165, 166, 0.2);
  color: #95a5a6;
}

/* line 480, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-capsule.lightmode .status-badge.archiver {
  background-color: rgba(149, 165, 166, 0.4);
  color: #7f8c8d;
  font-weight: 600;
  border: 1px solid rgba(149, 165, 166, 0.2);
}

/* ==========================================================================
   BADGES DE TYPE - Styles pour les types de clients (Particulier/Entreprise)
   ========================================================================== */
/* line 493, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.type-badge {
  padding: 4px 8px !important;
  border-radius: 8px !important;
  font-size: 0.65rem;
  font-weight: 500;
  display: inline-block;
  min-width: 80px;
  text-align: center;
  transition: all 0.2s ease-in-out;
}

/* line 503, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-capsule.lightmode .type-badge {
  padding: 4px 10px !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* line 507, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-capsule.lightmode .type-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* line 513, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.type-badge.particulier {
  background-color: rgba(155, 89, 182, 0.2);
  color: #bb8fce;
}

/* line 517, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-capsule.lightmode .type-badge.particulier {
  background-color: rgba(155, 89, 182, 0.25);
  color: #7d3c98;
  font-weight: 600;
  border: 1px solid rgba(155, 89, 182, 0.3);
}

/* line 525, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.type-badge.entreprise {
  background-color: rgba(52, 152, 219, 0.2);
  color: #5dade2;
}

/* line 529, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-capsule.lightmode .type-badge.entreprise {
  background-color: rgba(52, 152, 219, 0.25);
  color: #1a5276;
  font-weight: 600;
  border: 1px solid rgba(52, 152, 219, 0.3);
}

/* Message quand aucun client n'est trouvé */
/* line 539, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.no-results {
  width: 100%;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #fefefe;
  background-color: rgba(254, 254, 254, 0.05);
  border-radius: 8px;
  margin-top: 10px;
}

/* line 549, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.adv-customer-list-capsule.lightmode .no-results {
  color: #140D23;
  background-color: rgba(20, 13, 35, 0.05);
}

/* ==========================================================================
   BOUTON DE CRÉATION - Style du bouton pour créer un nouveau client
   ========================================================================== */
/* line 559, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.form-button, .crm-action-button, .users-management-container .users-header .add-user-btn {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  border: none;
  cursor: pointer;
  background-color: #C38761;
  color: #fefefe;
}

/* line 574, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.form-button:hover, .crm-action-button:hover, .users-management-container .users-header .add-user-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Classes utilitaires */
/* line 581, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_customer_list.scss */
.d-none {
  display: none !important;
}

/* ==========================================================================
   NEW CUSTOMER - MODULE ADV (Harmonisé avec CRM)
   ========================================================================== */
/* line 5, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-new-customer-capsule {
  width: 85%;
  max-width: 1200px;
  margin: 5px auto;
  background-color: rgba(254, 254, 254, 0.1);
  border: 1.5px solid rgba(232, 232, 232, 0.5);
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 rgba(232, 232, 232, 0.08);
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.8rem;
  gap: 0;
  min-height: auto;
  color: #C38761;
}

/* line 22, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-new-customer-capsule .adv-new-customer-capsule-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 32px 28px 24px 28px;
}

/* line 32, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-new-customer-capsule {
  background-color: transparent;
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 39, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.new-customer-form {
  width: 100%;
}

/* line 43, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-new-customer-header {
  width: 100%;
  text-align: center;
  margin-bottom: 18px;
}

/* line 47, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-new-customer-header h2, .adv-new-customer-header .h2 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: inherit;
}

/* line 53, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-new-customer-header .adv-new-customer-description {
  font-size: 0.8rem;
  color: #e8e8e8;
  margin-bottom: 0;
}

/* line 57, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-new-customer-header .adv-new-customer-description {
  color: #140D23;
}

/* line 60, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.nightmode .adv-new-customer-header .adv-new-customer-description {
  color: #fefefe;
}

/* line 66, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-new-customer-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 10px;
}

/* line 74, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-new-customer-section-group {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

/* line 78, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-new-customer-section-group:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  /* line 74, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
  .adv-new-customer-section-group {
    flex-direction: column;
  }
}

/* line 86, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-new-customer-card {
  flex: 1;
  background-color: rgba(254, 254, 254, 0.05);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(232, 232, 232, 0.2);
}

/* line 92, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-new-customer-card.adv-new-customer-card-full-width {
  width: 100%;
}

/* line 97, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-new-customer-card-header,
.adv-new-customer-card-header-with-action {
  padding: 12px 15px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fefefe;
  text-transform: uppercase;
  background-color: rgba(254, 254, 254, 0.05) !important;
  display: flex;
}

/* line 106, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-new-customer-card-header, .lightmode .adv-new-customer-card-header-with-action {
  color: #140D23;
}

/* line 111, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-new-customer-card-header-with-action {
  justify-content: space-between;
  align-items: center;
}

/* line 116, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-new-customer-card-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fefefe;
  text-transform: uppercase;
}

/* line 121, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-new-customer-card-title {
  color: #140D23;
}

/* line 126, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-new-customer-card-content {
  padding: 15px;
}

/* line 130, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-new-customer-input {
  width: 100%;
  border-radius: 14px;
  border: 1.5px solid rgba(232, 232, 232, 0.7);
  background: transparent;
  font-size: 0.8rem;
  color: inherit;
  padding: 14px 16px;
  margin: 0 auto;
  box-sizing: border-box;
  font-family: inherit;
  text-align: left;
  transition: border-color 0.2s, box-shadow 0.2s;
}

/* line 143, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-new-customer-input:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.15);
}

/* line 148, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-new-customer-input::placeholder {
  color: #e8e8e8;
  opacity: 1;
  font-size: 0.7rem;
  font-family: inherit;
}

/* line 154, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-new-customer-input.field-error {
  border-color: #ef4444;
  background-color: rgba(239, 68, 68, 0.05);
}

/* line 157, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-new-customer-input.field-error:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.15);
}

/* line 161, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-new-customer-input.field-error {
  border-color: #dc2626;
  background-color: rgba(220, 38, 38, 0.08);
}

/* line 166, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-new-customer-input {
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.3);
  background: rgba(254, 254, 254, 0.7);
}

/* line 170, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-new-customer-input::placeholder {
  color: rgba(20, 13, 35, 0.5);
}

/* line 174, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.nightmode .adv-new-customer-input {
  color: #fefefe;
  border-color: rgba(254, 254, 254, 0.3);
  background: rgba(20, 13, 35, 0.2);
}

/* line 178, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.nightmode .adv-new-customer-input::placeholder {
  color: rgba(254, 254, 254, 0.7);
}

/* line 184, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-new-customer-error-message {
  display: block;
  margin-top: 8px;
  padding: 8px 12px;
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-left: 3px solid #ef4444;
  border-radius: 6px;
  color: #ef4444;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
}

/* line 197, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-new-customer-error-message {
  background-color: rgba(220, 38, 38, 0.12);
  border-color: rgba(220, 38, 38, 0.4);
  border-left-color: #dc2626;
  color: #dc2626;
}

/* line 205, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-new-customer-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  cursor: pointer;
}

/* line 213, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-new-customer-circular-add-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #fefefe;
  color: #fefefe;
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

/* line 227, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-new-customer-circular-add-btn {
  border-color: #140D23;
  color: #140D23;
}

/* line 231, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-new-customer-circular-add-btn:hover {
  background-color: rgba(254, 254, 254, 0.1);
}

/* line 233, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-new-customer-circular-add-btn:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 239, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-new-customer-organizations-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-height: 300px;
  overflow-y: auto;
}

/* line 248, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-new-customer-empty-state {
  padding: 20px 0;
  text-align: center;
  color: rgba(254, 254, 254, 0.6);
  font-style: italic;
}

/* line 253, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-new-customer-empty-state {
  color: rgba(20, 13, 35, 0.6);
}

/* line 258, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
#organizations-table-container {
  max-height: 250px;
  overflow-y: auto;
  width: 100%;
}

/* line 264, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
#organizations-table-container::-webkit-scrollbar {
  width: 6px;
}

/* line 268, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
#organizations-table-container::-webkit-scrollbar-track {
  background: rgba(232, 232, 232, 0.1);
  border-radius: 10px;
}

/* line 271, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode #organizations-table-container::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 276, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
#organizations-table-container::-webkit-scrollbar-thumb {
  background: rgba(195, 135, 97, 0.5);
  border-radius: 10px;
}

/* line 279, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
#organizations-table-container::-webkit-scrollbar-thumb:hover {
  background: #C38761;
}

/* line 285, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-new-customer-actions {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(232, 232, 232, 0.1);
  flex-shrink: 0;
}

/* line 295, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-new-customer-actions {
  border-top-color: rgba(20, 13, 35, 0.1);
}

/* line 300, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.form-button, .crm-action-button, .users-management-container .users-header .add-user-btn {
  border-radius: 8px;
  border: none;
  background: #C38761;
  color: #fefefe;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 22px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 6px rgba(195, 135, 97, 0.08);
}

/* line 311, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.form-button:hover, .crm-action-button:hover, .users-management-container .users-header .add-user-btn:hover {
  background: #C38761;
  color: #fefefe;
  box-shadow: 0 4px 12px rgba(195, 135, 97, 0.12);
}

/* line 318, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.form-button-cancel {
  background: #fefefe;
  color: #e8e8e8;
  border: 1.5px solid #e8e8e8;
}

/* line 322, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.form-button-cancel:hover {
  background: #e8e8e8;
  color: #fefefe;
}

/* line 328, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.hidden {
  display: none;
}

/* line 333, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.instance-index {
  width: 100%;
}

/* line 335, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.instance-index .instance-header {
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid rgba(232, 232, 232, 0.2);
  align-items: center;
}

/* line 340, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.instance-index .instance-header .instance-column {
  flex: 1;
  font-weight: 500;
  text-align: center;
  font-size: 0.85rem;
  color: #fefefe;
  text-transform: capitalize;
  padding: 0 10px;
  display: flex;
  align-items: center;
  min-height: 24px;
}

/* line 351, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .instance-index .instance-header .instance-column {
  color: #140D23;
}

/* line 356, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.instance-index .instance-row {
  display: flex;
  padding: 8px 0;
  border-bottom: 1px solid rgba(232, 232, 232, 0.1);
  align-items: center;
  min-height: 40px;
}

/* line 362, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.instance-index .instance-row .instance-column {
  flex: 1;
  padding: 4px 10px;
  font-size: 0.75rem;
  color: #fefefe;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.4;
}

/* line 375, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .instance-index .instance-row .instance-column {
  color: #140D23;
}

/* line 379, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.instance-index .instance-row .instance-column:last-child {
  justify-content: center;
  flex-shrink: 0;
  min-width: 60px;
}

/* line 388, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.delete-btn {
  background-color: transparent;
  border: none;
  color: rgba(254, 254, 254, 0.7);
  cursor: pointer;
  transition: all 0.2s;
  padding: 4px 8px;
  font-size: 0.8rem;
  border-radius: 4px;
}

/* line 397, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.delete-btn:hover {
  color: #C38761;
  background-color: rgba(254, 254, 254, 0.1);
}

/* line 401, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .delete-btn {
  color: rgba(20, 13, 35, 0.7);
}

/* line 403, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .delete-btn:hover {
  color: #C38761;
  background-color: rgba(20, 13, 35, 0.1);
}

/* ==========================================================================
   MODAL WIZARD ORGANIZATION - MODULE ADV (Inspiré du CRM)
   ========================================================================== */
/* line 415, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto;
  padding: 50px 0;
}

/* line 430, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-modal[style*="display: flex"] {
  display: flex !important;
}

/* line 436, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-modal-content {
  background-color: rgba(20, 13, 35, 0.65);
  height: auto;
  width: 700px;
  max-width: 90%;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(232, 232, 232, 0.31);
}

/* line 450, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-modal-content {
  background-color: rgba(254, 254, 254, 0.85);
  border-color: rgba(20, 13, 35, 0.31);
}

/* line 456, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-modal-content::-webkit-scrollbar {
  width: 8px;
}

/* line 460, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-modal-content::-webkit-scrollbar-track {
  background: rgba(254, 254, 254, 0.1);
  border-radius: 10px;
}

/* line 463, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-modal-content::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 468, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-modal-content::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 471, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-modal-content::-webkit-scrollbar-thumb:hover {
  background: #fefefe;
}

/* line 473, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-modal-content::-webkit-scrollbar-thumb:hover {
  background: #140D23;
}

/* line 481, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fefefe;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(254, 254, 254, 0.1);
}

/* line 490, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-modal-header {
  color: #140D23;
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 495, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-modal-header h2, .adv-organization-modal-header .h2 {
  color: #fefefe !important;
  font-size: 1.2rem;
  margin: 0;
  font-weight: 600;
}

/* line 500, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-modal-header h2, .lightmode .adv-organization-modal-header .h2 {
  color: #140D23 !important;
}

/* line 506, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-modal-close {
  color: #fefefe !important;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease, color 0.2s;
}

/* line 513, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-modal-close {
  color: #140D23 !important;
}

/* line 517, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-modal-close:hover {
  opacity: 1;
  color: #C38761 !important;
}

/* line 524, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-progress-container {
  flex-shrink: 0;
  margin-bottom: 20px;
}

/* line 528, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-progress-container .adv-organization-progress-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

/* line 533, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-progress-container .adv-organization-progress-steps .adv-organization-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

/* line 539, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-progress-container .adv-organization-progress-steps .adv-organization-progress-step .adv-organization-step-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(254, 254, 254, 0.2);
  color: #fefefe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

/* line 553, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-progress-container .adv-organization-progress-steps .adv-organization-progress-step .adv-organization-step-circle {
  background-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 558, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-progress-container .adv-organization-progress-steps .adv-organization-progress-step .adv-organization-step-circle.active {
  background-color: #C38761;
  color: #140D23;
}

/* line 563, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-progress-container .adv-organization-progress-steps .adv-organization-progress-step .adv-organization-step-circle.completed {
  background-color: #4CAF50;
  color: white;
}

/* line 569, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-progress-container .adv-organization-progress-steps .adv-organization-progress-step .adv-organization-step-label {
  font-size: 0.7rem;
  text-align: center;
  color: rgba(254, 254, 254, 0.7);
}

/* line 574, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-progress-container .adv-organization-progress-steps .adv-organization-progress-step .adv-organization-step-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 581, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-progress-container .adv-organization-progress-bar {
  height: 4px;
  background-color: rgba(254, 254, 254, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

/* line 587, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-progress-container .adv-organization-progress-bar {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 591, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-progress-container .adv-organization-progress-bar .adv-organization-progress-fill {
  height: 100%;
  background-color: #C38761;
  transition: width 0.3s ease;
  border-radius: 2px;
}

/* line 601, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-form-container {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 10px;
}

/* line 608, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-form-container::-webkit-scrollbar {
  width: 4px;
}

/* line 612, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-form-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 616, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-form-container::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 621, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-form-container::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 625, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-form-container::-webkit-scrollbar-thumb:hover {
  background: #fefefe;
}

/* line 628, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-form-container::-webkit-scrollbar-thumb:hover {
  background: #140D23;
}

/* line 634, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-form-container .adv-organization-form-step {
  display: none;
}

/* line 637, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-form-container .adv-organization-form-step.active {
  display: block;
}

/* line 641, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-form-container .adv-organization-form-step .adv-organization-step-title {
  color: #fefefe;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

/* line 647, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-form-container .adv-organization-form-step .adv-organization-step-title {
  color: #140D23;
}

/* line 655, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-form-columns {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

/* line 660, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-form-columns .adv-organization-form-column {
  flex: 1;
}

/* line 663, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group {
  margin-bottom: 15px;
}

/* line 666, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group label {
  display: block;
  margin-bottom: 5px;
  color: rgba(254, 254, 254, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 1;
}

/* line 674, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group label {
  color: rgba(20, 13, 35, 0.9);
}

/* line 679, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group .adv-organization-form-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(254, 254, 254, 0.2);
  border-radius: 6px;
  background-color: rgba(254, 254, 254, 0.1);
  color: #fefefe;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

/* line 689, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group .adv-organization-form-input {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 695, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group .adv-organization-form-input:focus {
  outline: none;
  border-color: #C38761;
  background-color: rgba(254, 254, 254, 0.15);
}

/* line 700, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group .adv-organization-form-input:focus {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 705, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group .adv-organization-form-input::placeholder {
  color: rgba(254, 254, 254, 0.5);
}

/* line 707, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group .adv-organization-form-input::placeholder {
  color: rgba(20, 13, 35, 0.5);
}

/* line 713, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group .adv-organization-form-input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: rgba(254, 254, 254, 0.05);
  border-color: rgba(254, 254, 254, 0.15);
  color: rgba(254, 254, 254, 0.5);
}

/* line 720, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group .adv-organization-form-input:disabled {
  background-color: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.15);
  color: rgba(20, 13, 35, 0.5);
}

/* line 726, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group .adv-organization-form-input:disabled::placeholder {
  color: rgba(254, 254, 254, 0.3);
}

/* line 728, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group .adv-organization-form-input:disabled::placeholder {
  color: rgba(20, 13, 35, 0.3);
}

/* line 737, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group:has(.adv-organization-form-input:disabled) label {
  opacity: 0.7;
  color: rgba(254, 254, 254, 0.6);
}

/* line 741, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group:has(.adv-organization-form-input:disabled) label {
  color: rgba(20, 13, 35, 0.6);
}

/* line 746, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group:has(.adv-organization-form-input:disabled) .adv-organization-form-hint {
  opacity: 0.7;
  font-style: italic;
  color: rgba(254, 254, 254, 0.5);
}

/* line 751, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group:has(.adv-organization-form-input:disabled) .adv-organization-form-hint {
  color: rgba(20, 13, 35, 0.5);
}

/* line 757, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group .adv-organization-siret-input-group {
  display: flex;
  gap: 10px;
}

/* line 761, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group .adv-organization-siret-input-group .adv-organization-form-input {
  flex: 1;
}

/* line 765, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group .adv-organization-siret-input-group .adv-organization-verify-btn {
  padding: 10px 15px;
  background-color: #C38761;
  color: #140D23;
  border: none;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

/* line 777, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group .adv-organization-siret-input-group .adv-organization-verify-btn:hover {
  background-color: #af6c42;
}

/* line 783, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group .adv-organization-form-hint {
  font-size: 0.75rem;
  color: rgba(254, 254, 254, 0.6);
  margin-top: 5px;
}

/* line 788, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group .adv-organization-form-hint {
  color: rgba(20, 13, 35, 0.6);
}

/* line 794, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group #siret-verification-result {
  margin-top: 8px;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* line 801, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group #siret-verification-result.siret-result-loading {
  background-color: rgba(195, 135, 97, 0.2);
  color: #C38761;
  border: 1px solid rgba(195, 135, 97, 0.3);
}

/* line 806, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group #siret-verification-result.siret-result-loading {
  background-color: rgba(195, 135, 97, 0.1);
  color: #8a5534;
  border-color: rgba(195, 135, 97, 0.4);
}

/* line 813, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group #siret-verification-result.siret-result-success {
  background-color: rgba(76, 175, 80, 0.2);
  color: #4CAF50;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

/* line 818, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group #siret-verification-result.siret-result-success {
  background-color: rgba(76, 175, 80, 0.1);
  color: #2d682f;
  border-color: rgba(76, 175, 80, 0.4);
}

/* line 825, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group #siret-verification-result.siret-result-error {
  background-color: rgba(244, 67, 54, 0.2);
  color: #f44336;
  border: 1px solid rgba(244, 67, 54, 0.3);
}

/* line 830, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group #siret-verification-result.siret-result-error {
  background-color: rgba(244, 67, 54, 0.1);
  color: #ba160a;
  border-color: rgba(244, 67, 54, 0.4);
}

/* line 838, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group .adv-organization-spacer-hint {
  height: 20px;
}

/* line 846, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-wizard-step {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* line 851, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-wizard-step.active {
  display: grid;
}

/* line 856, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-wizard-step .full-width {
  grid-column: 1 / span 2;
}

/* line 862, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-form-group {
  margin-bottom: 5px;
  gap: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* line 870, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-form-group label {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  opacity: 1;
  color: #fefefe;
  margin-bottom: 5px;
}

/* line 878, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-form-group label {
  color: #140D23;
}

/* line 885, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-form-group:has(.adv-organization-input:disabled) label {
  opacity: 0.7;
  color: rgba(254, 254, 254, 0.6);
}

/* line 889, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-form-group:has(.adv-organization-input:disabled) label {
  color: rgba(20, 13, 35, 0.6);
}

/* line 896, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-input {
  width: 100%;
  padding: 8px 12px;
  background-color: rgba(254, 254, 254, 0.01);
  border-radius: 8px;
  border: 1px solid rgba(254, 254, 254, 0.2);
  color: #fefefe;
  font-size: 0.8rem;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  box-sizing: border-box;
  max-width: 100%;
}

/* line 908, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-input:focus {
  outline: none;
  border-color: rgba(254, 254, 254, 0.4);
  background-color: rgba(254, 254, 254, 0.1);
}

/* line 912, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-input:focus {
  border-color: rgba(20, 13, 35, 0.4);
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 918, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-input::placeholder {
  color: rgba(254, 254, 254, 0.5);
}

/* line 920, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-input::placeholder {
  color: rgba(20, 13, 35, 0.5);
}

/* line 926, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: rgba(254, 254, 254, 0.03);
  border-color: rgba(254, 254, 254, 0.15);
  color: rgba(254, 254, 254, 0.5);
}

/* line 933, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-input:disabled {
  background-color: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.15);
  color: rgba(20, 13, 35, 0.5);
}

/* line 939, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-input:disabled::placeholder {
  color: rgba(254, 254, 254, 0.3);
}

/* line 941, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-input:disabled::placeholder {
  color: rgba(20, 13, 35, 0.3);
}

/* line 947, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-input {
  color: #140D23;
  background-color: rgba(20, 13, 35, 0.01);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 955, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-address-copy-container {
  grid-column: 1 / span 2;
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

/* line 962, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-btn-copy-address {
  padding: 8px 16px;
  font-size: 0.8rem;
  background-color: rgba(195, 135, 97, 0.2);
  color: #C38761;
  border: 1px solid rgba(195, 135, 97, 0.4);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

/* line 976, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-btn-copy-address:hover {
  background-color: rgba(195, 135, 97, 0.3);
  border-color: rgba(195, 135, 97, 0.6);
  transform: translateY(-1px);
}

/* line 982, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-btn-copy-address i {
  font-size: 0.75rem;
}

/* line 988, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-address-search-container {
  margin-bottom: 20px;
}

/* line 991, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-address-search-container .adv-organization-form-group {
  margin-bottom: 10px;
}

/* line 994, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-address-search-container .adv-organization-form-group .adv-organization-form-hint {
  font-size: 0.8rem;
  color: rgba(254, 254, 254, 0.7);
  font-style: italic;
  margin-top: 5px;
}

/* line 1000, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-address-search-container .adv-organization-form-group .adv-organization-form-hint {
  color: rgba(20, 13, 35, 0.7);
}

/* line 1006, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-address-search-container .adv-organization-form-group .address-autocomplete {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(254, 254, 254, 0.2);
  border-radius: 6px;
  background-color: rgba(254, 254, 254, 0.1);
  color: #fefefe;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

/* line 1016, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-address-search-container .adv-organization-form-group .address-autocomplete {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 1022, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-address-search-container .adv-organization-form-group .address-autocomplete:focus {
  outline: none;
  border-color: #C38761;
  background-color: rgba(254, 254, 254, 0.15);
}

/* line 1027, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-address-search-container .adv-organization-form-group .address-autocomplete:focus {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 1032, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-address-search-container .adv-organization-form-group .address-autocomplete::placeholder {
  color: rgba(254, 254, 254, 0.5);
}

/* line 1034, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-address-search-container .adv-organization-form-group .address-autocomplete::placeholder {
  color: rgba(20, 13, 35, 0.5);
}

/* line 1043, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

/* line 1049, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-checkbox-wrapper .adv-organization-form-checkbox {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* line 1055, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-checkbox-wrapper .adv-organization-checkbox-label {
  color: rgba(254, 254, 254, 0.9);
  font-size: 0.9rem;
  cursor: pointer;
  opacity: 1;
}

/* line 1061, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-checkbox-wrapper .adv-organization-checkbox-label {
  color: rgba(20, 13, 35, 0.9);
}

/* line 1067, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-checkbox-group-inline {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

/* line 1072, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-checkbox-group-inline .adv-organization-checkbox-wrapper {
  margin-bottom: 0;
}

/* line 1078, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-form-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(254, 254, 254, 0.1);
  margin-top: 20px;
  flex-shrink: 0;
}

/* line 1088, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-form-navigation {
  border-top-color: rgba(20, 13, 35, 0.1);
}

/* line 1092, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-form-navigation .adv-organization-nav-left {
  display: flex;
  gap: 10px;
}

/* line 1097, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-form-navigation .adv-organization-nav-right {
  display: flex;
  gap: 10px;
}

/* line 1102, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-form-navigation .adv-organization-form-button {
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

/* line 1111, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-form-navigation .adv-organization-form-button.secondary {
  background-color: rgba(254, 254, 254, 0.1);
  color: #fefefe;
  border: 1px solid rgba(254, 254, 254, 0.2);
}

/* line 1116, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-form-navigation .adv-organization-form-button.secondary {
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 1122, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-form-navigation .adv-organization-form-button.secondary:hover {
  background-color: rgba(254, 254, 254, 0.2);
}

/* line 1125, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-form-navigation .adv-organization-form-button.secondary:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* line 1131, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-form-navigation .adv-organization-form-button.primary {
  background-color: #C38761;
  color: #140D23;
}

/* line 1135, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-form-navigation .adv-organization-form-button.primary:hover {
  background-color: #af6c42;
}

/* line 1140, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-form-navigation .adv-organization-form-button.cancel-btn {
  background-color: rgba(254, 254, 254, 0.1);
  color: #fefefe;
  border: 1px solid rgba(254, 254, 254, 0.2);
}

/* line 1145, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-form-navigation .adv-organization-form-button.cancel-btn {
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 1151, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-form-navigation .adv-organization-form-button.cancel-btn:hover {
  background-color: rgba(254, 254, 254, 0.2);
}

/* line 1154, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-form-navigation .adv-organization-form-button.cancel-btn:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* line 1163, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-modal-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 5px;
  gap: 10px;
  padding-top: 5px;
  border-top: 1px solid rgba(254, 254, 254, 0.1);
}

/* line 1171, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-modal-footer {
  border-top-color: rgba(20, 13, 35, 0.1);
}

/* line 1177, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-btn-prev,
.adv-organization-btn-next,
.adv-organization-btn-submit {
  padding: 8px 20px;
  font-size: 0.8rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  border: none;
}

/* line 1193, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-btn-prev:hover,
.adv-organization-btn-next:hover,
.adv-organization-btn-submit:hover {
  opacity: 0.9;
}

/* line 1198, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-btn-prev {
  background-color: transparent;
  color: #fefefe;
  border: 1px solid rgba(254, 254, 254, 0.3);
}

/* line 1203, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-btn-prev:hover {
  background-color: rgba(254, 254, 254, 0.1);
}

/* line 1207, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-btn-prev {
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 1210, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-btn-prev:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 1216, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-btn-next,
.adv-organization-btn-submit {
  background-color: #C38761;
  color: #fefefe;
}

/* line 1221, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-btn-next:hover,
.adv-organization-btn-submit:hover {
  background-color: #d1a386;
}

/* line 1225, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-organization-btn-next, .lightmode .adv-organization-btn-submit {
  color: #fefefe;
}

/* line 1231, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-wizard-step:first-child:not(:only-child) ~ .adv-organization-modal-footer .adv-organization-btn-prev {
  display: none;
}

/* line 1235, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-wizard-step:last-child:not(:only-child) ~ .adv-organization-modal-footer .adv-organization-btn-next {
  display: none;
}

/* line 1239, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-wizard-step:not(:last-child) ~ .adv-organization-modal-footer .adv-organization-btn-submit {
  display: none;
}

@media (max-width: 768px) {
  /* line 1245, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
  .adv-new-customer-capsule {
    width: 95%;
    padding: 20px 16px;
  }
  /* line 1250, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
  .adv-new-customer-actions {
    flex-direction: column;
    gap: 10px;
  }
  /* line 1255, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
  .form-button, .crm-action-button, .users-management-container .users-header .add-user-btn {
    width: 100%;
  }
  /* line 1259, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
  .adv-organization-modal-content {
    width: 95%;
    padding: 16px;
  }
  /* line 1264, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
  .adv-organization-wizard-step {
    grid-template-columns: 1fr;
  }
  /* line 1268, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
  .adv-organization-wizard-step .full-width {
    grid-column: 1;
  }
  /* line 1272, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
  .adv-organization-modal-footer {
    flex-direction: column;
  }
  /* line 1276, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
  .adv-organization-btn-prev,
.adv-organization-btn-next,
.adv-organization-btn-submit {
    width: 100%;
    margin-bottom: 5px;
  }
  /* line 1284, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
  .adv-organization-form-columns {
    flex-direction: column;
    gap: 10px;
  }
  /* line 1291, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
  .adv-organization-progress-steps .adv-organization-progress-step .adv-organization-step-label {
    font-size: 0.6rem;
  }
  /* line 1297, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
  .adv-organization-form-navigation {
    flex-direction: column;
    gap: 15px;
  }
  /* line 1301, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
  .adv-organization-form-navigation .adv-organization-nav-left,
.adv-organization-form-navigation .adv-organization-nav-right {
    width: 100%;
    justify-content: center;
  }
  /* line 1307, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
  .adv-organization-form-navigation .adv-organization-form-button {
    width: 100%;
  }
  /* line 1312, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
  .adv-organization-checkbox-group-inline {
    flex-direction: column;
    gap: 10px;
  }
}

/* ==========================================================================
   NOUVEAU FORMULAIRE ORGANISATION - NESTED FORM
   ========================================================================== */
/* line 1322, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-new-customer-organization-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 15px;
  background-color: rgba(254, 254, 254, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(232, 232, 232, 0.2);
  margin-bottom: 20px;
}

/* line 1333, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-new-customer-organization-form {
  background-color: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 1340, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.form-section {
  padding: 15px;
  background-color: rgba(254, 254, 254, 0.02);
  border-radius: 8px;
  border: 1px solid rgba(232, 232, 232, 0.15);
}

/* line 1346, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .form-section {
  background-color: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 1351, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.form-section .section-title {
  font-size: 1rem;
  font-weight: 600;
  color: #C38761;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(195, 135, 97, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 1362, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .form-section .section-title {
  color: #140D23;
  border-bottom-color: rgba(20, 13, 35, 0.2);
}

/* line 1367, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.form-section .section-title i {
  font-size: 0.9rem;
}

/* line 1374, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

/* line 1380, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.form-row:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  /* line 1374, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* line 1390, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* line 1395, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  color: #fefefe;
  margin-bottom: 4px;
  text-transform: capitalize;
}

/* line 1402, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .form-group label {
  color: #140D23;
}

/* line 1407, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.form-group .form-control {
  width: 100%;
  padding: 10px 14px;
  background-color: rgba(254, 254, 254, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(254, 254, 254, 0.2);
  color: #fefefe;
  font-size: 0.8rem;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  box-sizing: border-box;
  font-family: inherit;
}

/* line 1419, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.form-group .form-control:focus {
  outline: none;
  border-color: #C38761;
  background-color: rgba(254, 254, 254, 0.08);
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.15);
}

/* line 1426, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.form-group .form-control::placeholder {
  color: rgba(254, 254, 254, 0.5);
  font-size: 0.75rem;
}

/* line 1432, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.form-group .form-control:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: rgba(254, 254, 254, 0.03);
  border-color: rgba(254, 254, 254, 0.15);
  color: rgba(254, 254, 254, 0.5);
}

/* line 1439, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .form-group .form-control:disabled {
  background-color: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.15);
  color: rgba(20, 13, 35, 0.5);
}

/* line 1445, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.form-group .form-control:disabled::placeholder {
  color: rgba(254, 254, 254, 0.3);
}

/* line 1447, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .form-group .form-control:disabled::placeholder {
  color: rgba(20, 13, 35, 0.3);
}

/* line 1453, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .form-group .form-control {
  color: #140D23;
  background-color: rgba(254, 254, 254, 0.8);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 1458, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .form-group .form-control:focus {
  border-color: #C38761;
  background-color: rgba(254, 254, 254, 0.95);
}

/* line 1463, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .form-group .form-control::placeholder {
  color: rgba(20, 13, 35, 0.5);
}

/* line 1469, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.form-group select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 35px;
  cursor: pointer;
}

/* line 1479, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .form-group select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23001f3f' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}

/* line 1484, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.form-group .form-hint {
  font-size: 0.7rem;
  color: rgba(254, 254, 254, 0.6);
  font-style: italic;
  margin-top: 4px;
}

/* line 1490, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .form-group .form-hint {
  color: rgba(20, 13, 35, 0.6);
}

/* line 1497, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.form-group:has(.form-control:disabled) label {
  opacity: 0.7;
  color: rgba(254, 254, 254, 0.6);
}

/* line 1501, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .form-group:has(.form-control:disabled) label {
  color: rgba(20, 13, 35, 0.6);
}

/* line 1506, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.form-group:has(.form-control:disabled) .form-hint {
  opacity: 0.7;
  font-style: italic;
  color: rgba(254, 254, 254, 0.5);
}

/* line 1511, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .form-group:has(.form-control:disabled) .form-hint {
  color: rgba(20, 13, 35, 0.5);
}

/* line 1518, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.form-group .form-control:disabled + .form-hint,
.form-group .form-control:disabled ~ .form-hint {
  opacity: 0.7;
  font-style: italic;
}

/* line 1527, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.siret-group .siret-input-group {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

/* line 1532, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.siret-group .siret-input-group .form-control {
  flex: 1;
}

/* line 1536, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.siret-group .siret-input-group .verify-btn {
  padding: 10px 16px;
  background-color: #C38761;
  color: #fefefe;
  border: none;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* line 1551, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.siret-group .siret-input-group .verify-btn:hover {
  background-color: #d1a386;
  transform: translateY(-1px);
}

/* line 1556, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.siret-group .siret-input-group .verify-btn i {
  font-size: 0.8rem;
}

/* line 1562, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.siret-group .siret-verification-result {
  margin-top: 8px;
}

/* line 1565, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.siret-group .siret-verification-result .alert {
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 1573, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.siret-group .siret-verification-result .alert i {
  font-size: 0.9rem;
}

/* line 1577, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.siret-group .siret-verification-result .alert.alert-success {
  background-color: rgba(40, 167, 69, 0.15);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

/* line 1583, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.siret-group .siret-verification-result .alert.alert-danger {
  background-color: rgba(195, 135, 97, 0.15);
  color: #C38761;
  border: 1px solid rgba(195, 135, 97, 0.3);
}

/* line 1589, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.siret-group .siret-verification-result .alert.alert-info {
  background-color: rgba(195, 135, 97, 0.15);
  color: #C38761;
  border: 1px solid rgba(195, 135, 97, 0.3);
}

/* line 1600, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.topics-group .topics-preview {
  margin-top: 10px;
  padding: 10px;
  background-color: rgba(254, 254, 254, 0.03);
  border-radius: 6px;
  border: 1px solid rgba(232, 232, 232, 0.15);
}

/* line 1607, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .topics-group .topics-preview {
  background-color: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 1612, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.topics-group .topics-preview .preview-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

/* line 1618, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.topics-group .topics-preview .preview-badges .topic-badge {
  padding: 4px 12px;
  background-color: rgba(195, 135, 97, 0.2);
  color: #C38761;
  border: 1px solid rgba(195, 135, 97, 0.4);
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 500;
}

/* line 1627, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .topics-group .topics-preview .preview-badges .topic-badge {
  background-color: rgba(195, 135, 97, 0.15);
}

/* line 1633, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.topics-group .topics-preview .topics-counter {
  font-size: 0.7rem;
  color: rgba(254, 254, 254, 0.7);
}

/* line 1637, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .topics-group .topics-preview .topics-counter {
  color: rgba(20, 13, 35, 0.7);
}

/* line 1641, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.topics-group .topics-preview .topics-counter .text-warning {
  color: #C38761;
  font-weight: 600;
}

/* line 1646, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.topics-group .topics-preview .topics-counter .text-info {
  color: #C38761;
}

/* line 1654, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.address-fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 10px;
}

@media (max-width: 768px) {
  /* line 1654, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
  .address-fields-grid {
    grid-template-columns: 1fr;
  }
}

/* line 1666, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

/* line 1672, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.checkbox-wrapper .form-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #C38761;
}

/* line 1679, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.checkbox-wrapper .checkbox-label {
  font-size: 0.8rem;
  color: #fefefe;
  cursor: pointer;
  margin: 0;
}

/* line 1685, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .checkbox-wrapper .checkbox-label {
  color: #140D23;
}

/* line 1691, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.checkbox-group-inline {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* line 1698, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.billing-address-fields,
.shipping-address-fields {
  transition: opacity 0.3s ease;
}

/* line 1704, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.form-actions {
  display: flex;
  justify-content: flex-end;
  padding-top: 15px;
  border-top: 1px solid rgba(232, 232, 232, 0.15);
}

/* line 1710, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .form-actions {
  border-top-color: rgba(20, 13, 35, 0.15);
}

/* line 1716, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-cancel-button {
  padding: 8px 16px;
  background-color: transparent;
  color: #C38761;
  border: 1px solid rgba(195, 135, 97, 0.4);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* line 1730, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-cancel-button:hover {
  background-color: rgba(195, 135, 97, 0.1);
  border-color: rgba(195, 135, 97, 0.6);
}

/* line 1735, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-cancel-button i {
  font-size: 0.75rem;
}

/* line 1740, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-button-small {
  padding: 6px 12px;
  font-size: 0.75rem;
}

/* line 1746, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.address-autocomplete {
  position: relative;
}

/* line 1752, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-new-customer-organization-form::-webkit-scrollbar {
  width: 6px;
}

/* line 1756, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-new-customer-organization-form::-webkit-scrollbar-track {
  background: rgba(232, 232, 232, 0.1);
  border-radius: 10px;
}

/* line 1760, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .adv-new-customer-organization-form::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 1765, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-new-customer-organization-form::-webkit-scrollbar-thumb {
  background: rgba(195, 135, 97, 0.5);
  border-radius: 10px;
}

/* line 1769, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-new-customer-organization-form::-webkit-scrollbar-thumb:hover {
  background: #C38761;
}

@media (max-width: 768px) {
  /* line 1777, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
  .adv-new-customer-organization-form {
    padding: 10px;
  }
  /* line 1781, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
  .form-section {
    padding: 12px;
  }
  /* line 1785, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
  .form-row {
    grid-template-columns: 1fr;
  }
  /* line 1789, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
  .address-fields-grid {
    grid-template-columns: 1fr;
  }
  /* line 1793, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
  .siret-group .siret-input-group {
    flex-direction: column;
  }
  /* line 1796, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
  .siret-group .siret-input-group .verify-btn {
    width: 100%;
  }
  /* line 1801, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
  .checkbox-group-inline {
    flex-direction: column;
    gap: 10px;
  }
}

/* ==========================================================================
   VALIDATION DES INPUTS - PICTOGRAMMES ET MESSAGES D'ERREUR
   ========================================================================== */
/* line 1812, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.input-validation-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

/* line 1818, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.input-validation-wrapper .adv-organization-form-input,
.input-validation-wrapper .adv-new-customer-input {
  flex: 1;
  padding-right: 40px;
}

/* line 1825, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.input-validation-wrapper .validation-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* line 1835, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.input-validation-wrapper .validation-icon i {
  display: block;
}

/* line 1839, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.input-validation-wrapper .validation-icon.success-icon {
  opacity: 1;
  color: #10b981;
  animation: iconPop 0.3s ease;
}

/* line 1844, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .input-validation-wrapper .validation-icon.success-icon {
  color: #059669;
}

/* line 1849, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.input-validation-wrapper .validation-icon.error-icon {
  opacity: 1;
  color: #ef4444;
  animation: iconShake 0.5s ease;
}

/* line 1854, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .input-validation-wrapper .validation-icon.error-icon {
  color: #dc2626;
}

/* line 1862, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.input-validation-wrapper.validation-success .adv-organization-form-input,
.input-validation-wrapper.validation-success .adv-new-customer-input {
  border-color: #10b981;
  background-color: rgba(16, 185, 129, 0.05);
}

/* line 1867, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .input-validation-wrapper.validation-success .adv-organization-form-input, .lightmode .input-validation-wrapper.validation-success .adv-new-customer-input {
  border-color: #059669;
  background-color: rgba(5, 150, 105, 0.08);
}

/* line 1872, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.input-validation-wrapper.validation-success .adv-organization-form-input:focus,
.input-validation-wrapper.validation-success .adv-new-customer-input:focus {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* line 1876, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .input-validation-wrapper.validation-success .adv-organization-form-input:focus, .lightmode .input-validation-wrapper.validation-success .adv-new-customer-input:focus {
  border-color: #059669;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

/* line 1886, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.input-validation-wrapper.validation-error .adv-organization-form-input,
.input-validation-wrapper.validation-error .adv-new-customer-input {
  border-color: #ef4444;
  background-color: rgba(239, 68, 68, 0.05);
}

/* line 1891, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .input-validation-wrapper.validation-error .adv-organization-form-input, .lightmode .input-validation-wrapper.validation-error .adv-new-customer-input {
  border-color: #dc2626;
  background-color: rgba(220, 38, 38, 0.08);
}

/* line 1896, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.input-validation-wrapper.validation-error .adv-organization-form-input:focus,
.input-validation-wrapper.validation-error .adv-new-customer-input:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* line 1900, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .input-validation-wrapper.validation-error .adv-organization-form-input:focus, .lightmode .input-validation-wrapper.validation-error .adv-new-customer-input:focus {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

/* line 1910, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.validation-message {
  display: none;
  font-size: 0.75rem;
  margin-top: 6px;
  padding: 6px 10px;
  border-radius: 6px;
  transition: all 0.3s ease;
  animation: slideDown 0.3s ease;
}

/* line 1919, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.validation-message.show-error {
  display: block;
  color: #ef4444;
  background-color: rgba(239, 68, 68, 0.1);
  border-left: 3px solid #ef4444;
}

/* line 1925, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .validation-message.show-error {
  color: #dc2626;
  background-color: rgba(220, 38, 38, 0.12);
  border-left-color: #dc2626;
}

/* line 1932, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.validation-message.show-success {
  display: block;
  color: #10b981;
  background-color: rgba(16, 185, 129, 0.1);
  border-left: 3px solid #10b981;
}

/* line 1938, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .validation-message.show-success {
  color: #059669;
  background-color: rgba(5, 150, 105, 0.12);
  border-left-color: #059669;
}

/* line 1947, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.required-asterisk {
  color: #ef4444;
  font-weight: bold;
  margin-left: 3px;
}

/* line 1952, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .required-asterisk {
  color: #dc2626;
}

@keyframes iconPop {
  0% {
    transform: translateY(-50%) scale(0);
    opacity: 0;
  }
  50% {
    transform: translateY(-50%) scale(1.2);
  }
  100% {
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
}

@keyframes iconShake {
  0%, 100% {
    transform: translateY(-50%) translateX(0);
  }
  25% {
    transform: translateY(-50%) translateX(-5px);
  }
  75% {
    transform: translateY(-50%) translateX(5px);
  }
}

@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* line 1997, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.adv-organization-siret-input-group .input-validation-wrapper {
  flex: 1;
}

/* ==========================================================================
   CUSTOMER TYPE SELECTOR
   ========================================================================== */
/* line 2006, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.customer-type-selector {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
}

@media (max-width: 768px) {
  /* line 2006, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
  .customer-type-selector {
    flex-direction: column;
  }
}

/* line 2017, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.customer-type-option {
  flex: 1;
  position: relative;
  cursor: pointer;
  margin: 0;
}

/* line 2023, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.customer-type-option .customer-type-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* line 2029, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.customer-type-option .customer-type-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 20px;
  border: 2px solid rgba(232, 232, 232, 0.3);
  border-radius: 12px;
  background-color: rgba(254, 254, 254, 0.03);
  transition: all 0.3s ease;
  min-height: 120px;
}

/* line 2042, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .customer-type-option .customer-type-label {
  border-color: rgba(20, 13, 35, 0.2);
  background-color: rgba(254, 254, 254, 0.5);
}

/* line 2047, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.customer-type-option .customer-type-label i {
  font-size: 2rem;
  color: #e8e8e8;
  transition: all 0.3s ease;
}

/* line 2052, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .customer-type-option .customer-type-label i {
  color: #140D23;
}

/* line 2057, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.customer-type-option .customer-type-label span {
  font-size: 1rem;
  font-weight: 600;
  color: #e8e8e8;
  transition: all 0.3s ease;
}

/* line 2063, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .customer-type-option .customer-type-label span {
  color: #140D23;
}

/* line 2068, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.customer-type-option .customer-type-label:hover {
  border-color: rgba(195, 135, 97, 0.5);
  background-color: rgba(195, 135, 97, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(195, 135, 97, 0.15);
}

/* line 2074, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .customer-type-option .customer-type-label:hover {
  border-color: rgba(20, 13, 35, 0.5);
  background-color: rgba(20, 13, 35, 0.08);
  box-shadow: 0 4px 12px rgba(20, 13, 35, 0.15);
}

/* line 2080, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.customer-type-option .customer-type-label:hover i {
  color: #C38761;
  transform: scale(1.1);
}

/* line 2084, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .customer-type-option .customer-type-label:hover i {
  color: #140D23;
}

/* line 2089, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.customer-type-option .customer-type-label:hover span {
  color: #C38761;
}

/* line 2092, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .customer-type-option .customer-type-label:hover span {
  color: #140D23;
}

/* line 2099, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.customer-type-option .customer-type-radio:checked + .customer-type-label {
  border-color: #C38761;
  background-color: rgba(195, 135, 97, 0.15);
  box-shadow: 0 4px 16px rgba(195, 135, 97, 0.25);
}

/* line 2104, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .customer-type-option .customer-type-radio:checked + .customer-type-label {
  border-color: #140D23;
  background-color: rgba(20, 13, 35, 0.15);
  box-shadow: 0 4px 16px rgba(20, 13, 35, 0.25);
}

/* line 2110, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.customer-type-option .customer-type-radio:checked + .customer-type-label i {
  color: #C38761;
  transform: scale(1.15);
}

/* line 2114, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .customer-type-option .customer-type-radio:checked + .customer-type-label i {
  color: #140D23;
}

/* line 2119, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.customer-type-option .customer-type-radio:checked + .customer-type-label span {
  color: #C38761;
  font-weight: 700;
}

/* line 2123, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .customer-type-option .customer-type-radio:checked + .customer-type-label span {
  color: #140D23;
}

/* line 2131, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.required-star {
  color: #ef4444;
  font-weight: bold;
  margin-left: 4px;
}

/* line 2136, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_new_customer.scss */
.lightmode .required-star {
  color: #dc2626;
}

/* line 1, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_edit_customer.scss */
.adv-edit-customer-capsule {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 10px 30px 10px 30px;
  font-size: 0.8rem;
  gap: 10px;
}

/* line 12, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_edit_customer.scss */
.adv-edit-customer-capsule form {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 21, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_edit_customer.scss */
.adv-edit-customer-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 27, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_edit_customer.scss */
.adv-edit-customer-capsule span {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 33, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_edit_customer.scss */
.adv-edit-customer-capsule.lightmode span {
  color: #C38761;
}

/* line 37, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_edit_customer.scss */
.adv-edit-customer-capsule.nightmode span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 41, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_edit_customer.scss */
.adv-edit-customer-capsule.lightmode p {
  color: #140D23;
}

/* line 45, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_edit_customer.scss */
.adv-edit-customer-capsule.nightmode p {
  color: #fefefe;
}

/* line 49, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_edit_customer.scss */
.adv-edit-customer-capsule.lightmode i {
  color: #140D23;
}

/* line 53, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_edit_customer.scss */
.adv-edit-customer-capsule.nightmode i {
  color: #fefefe;
}

/* line 57, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_edit_customer.scss */
.adv-edit-customer-row1 {
  width: 80%;
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 17px;
  background-color: rgba(254, 254, 254, 0.1);
  border: 1px solid rgba(232, 232, 232, 0.5);
  border-radius: 20px;
  padding: 10px;
}

/* line 69, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_edit_customer.scss */
.adv-edit-customer-row1 form {
  width: 100%;
  display: flex;
}

/* line 74, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_edit_customer.scss */
.adv-edit-customer-row1 form input:focus {
  background-color: transparent;
}

/* line 80, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_edit_customer.scss */
.adv-edit-customer-row1 h2, .adv-edit-customer-row1 .h2 {
  all: unset;
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 20px;
}

/* line 88, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_edit_customer.scss */
.adv-edit-customer-row2 {
  width: 80%;
  height: 20%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
}

/* line 99, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_edit_customer.scss */
.adv-edit-customer-row1-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  overflow-y: auto;
  /* Personnalisation de la barre de défilement */
}

/* line 108, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_edit_customer.scss */
.adv-edit-customer-row1-form::-webkit-scrollbar {
  width: 8px;
  /* Largeur de la barre de défilement */
}

/* line 113, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_edit_customer.scss */
.adv-edit-customer-row1-form::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  /* Couleur de l'arrière-plan de la barre */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 118, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_edit_customer.scss */
.adv-edit-customer-row1-form::-webkit-scrollbar-thumb {
  background: #C38761;
  /* Couleur de la barre de défilement */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 124, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_edit_customer.scss */
.adv-edit-customer-row1-form::-webkit-scrollbar-thumb:hover {
  background: #fefefe;
  /* Couleur de la barre au survol */
}

/* line 130, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_edit_customer.scss */
.adv-edit-customer-row1-form .adv-edit-customer-row1-form-field {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* line 137, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_edit_customer.scss */
.adv-edit-customer-row1-form .adv-edit-customer-row1-form-field input {
  all: unset;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(254, 254, 254, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 149, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_edit_customer.scss */
.adv-edit-customer-row1-form .adv-edit-customer-row1-form-field input:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 155, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_edit_customer.scss */
.adv-edit-customer-row1-form .adv-edit-customer-row1-form-field select {
  all: unset;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(254, 254, 254, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 167, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_edit_customer.scss */
.adv-edit-customer-row1-form .adv-edit-customer-row1-form-field select:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 171, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_edit_customer.scss */
.adv-edit-customer-row1-form .adv-edit-customer-row1-form-field select:open {
  background-color: rgba(0, 0, 0, 0.8);
}

/* line 176, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_edit_customer.scss */
.adv-edit-customer-row1-form .adv-edit-customer-row1-form-field textarea {
  all: unset;
  background-color: transparent;
  border-radius: 10px;
  border: 1.5px solid rgba(254, 254, 254, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 188, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_edit_customer.scss */
.adv-edit-customer-row1-form .adv-edit-customer-row1-form-field textarea:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 194, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_edit_customer.scss */
.adv-edit-customer-row1-form .adv-edit-customer-row1-form-field label {
  all: unset;
  color: #fefefe !important;
  font-size: 0.8rem !important;
  text-align: center;
}

/* ==========================================================================
   SHOW CUSTOMER - MODULE ADV
   Structure principale et composants pour l'affichage détaillé d'un client
   ========================================================================== */
/* line 6, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 95%;
  max-width: 1200px;
  margin: 0px auto;
  height: 100%;
  padding: 20px;
}

/* line 16, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-container.lightmode {
  color: #140D23;
}

/* line 21, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-main-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
  transition: all 0.3s ease;
}

/* line 29, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-main-content.wide-margins {
  justify-content: center;
}

/* line 34, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule {
  position: relative;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 5px;
  overflow: hidden;
}

/* line 46, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-show-customer-capsule {
  background-color: rgba(20, 13, 35, 0.05);
  color: #140D23;
}

/* line 51, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-show-customer-header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10vh;
  background: none;
  border-radius: 8px;
  margin-bottom: 10px;
  width: 100%;
  position: relative;
}

/* line 62, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-show-customer-header .adv-header-section.adv-customer-name-section, .adv-show-customer-capsule .adv-show-customer-header .adv-customer-name-section.adv-contract-number-section,
.adv-show-customer-capsule .adv-show-customer-header .adv-customer-name-section.adv-market-type-section {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 10px;
}

/* line 69, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-show-customer-header .adv-header-section.adv-customer-name-section .adv-value, .adv-show-customer-capsule .adv-show-customer-header .adv-customer-name-section.adv-contract-number-section .adv-value,
.adv-show-customer-capsule .adv-show-customer-header .adv-customer-name-section.adv-market-type-section .adv-value {
  color: #C38761;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.1;
  padding: 0 10px 0 10px;
  text-align: center;
}

/* line 80, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-show-customer-header .adv-customer-type-badge {
  position: absolute;
  right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(195, 135, 97, 0.15);
  border: 1.5px solid rgba(195, 135, 97, 0.4);
  color: #C38761;
  transition: all 0.3s ease;
}

/* line 97, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-show-customer-capsule .adv-show-customer-header .adv-customer-type-badge {
  background: rgba(20, 13, 35, 0.12);
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 103, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-show-customer-header .adv-customer-type-badge i {
  font-size: 0.85rem;
}

/* line 108, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-show-customer-header #edit-customer-name-icon {
  margin-left: 5px;
}

/* line 113, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-ranking-badge-mini {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border-radius: 20px;
  border: 2px solid;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
  animation: badgeFloatMini 4s ease-in-out infinite, badgeGlowMini 3s ease-in-out infinite;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

/* line 132, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-ranking-badge-mini:hover {
  animation: badgePulseMini 0.6s ease-in-out;
  transform: scale(1.15) translateY(-4px);
}

/* line 137, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-ranking-badge-mini i {
  font-size: 1.2rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes badgeFloatMini {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-6px) rotate(1deg);
  }
  50% {
    transform: translateY(-10px) rotate(0deg);
  }
  75% {
    transform: translateY(-6px) rotate(-1deg);
  }
}

@keyframes badgeGlowMini {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.15), 0 0 0 0 rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow: 0 6px 24px rgba(255, 255, 255, 0.25), 0 0 16px 4px rgba(255, 255, 255, 0.15);
  }
}

@keyframes badgePulseMini {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* line 176, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-ranking-badge-mini-score {
  font-weight: 800;
  letter-spacing: 0.05em;
}

/* line 182, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-ranking-badge-mini--iron {
  border-color: #71797E;
  background: linear-gradient(135deg, rgba(113, 121, 126, 0.2), rgba(113, 121, 126, 0.05));
}

/* line 186, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-ranking-badge-mini--iron i, .adv-show-customer-capsule .adv-customer-ranking-badge-mini--iron .adv-customer-ranking-badge-mini-score {
  color: #A0A8AC;
}

/* line 190, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-show-customer-capsule .adv-customer-ranking-badge-mini--iron {
  border-color: #5A6268;
  background: linear-gradient(135deg, rgba(90, 98, 104, 0.15), rgba(90, 98, 104, 0.03));
}

/* line 194, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-show-customer-capsule .adv-customer-ranking-badge-mini--iron i, .lightmode .adv-show-customer-capsule .adv-customer-ranking-badge-mini--iron .adv-customer-ranking-badge-mini-score {
  color: #6C757D;
}

/* line 201, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-ranking-badge-mini--bronze {
  border-color: #CD7F32;
  background: linear-gradient(135deg, rgba(205, 127, 50, 0.25), rgba(205, 127, 50, 0.08));
}

/* line 205, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-ranking-badge-mini--bronze i, .adv-show-customer-capsule .adv-customer-ranking-badge-mini--bronze .adv-customer-ranking-badge-mini-score {
  color: #E59856;
}

/* line 209, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-ranking-badge-mini--bronze:hover {
  box-shadow: 0 8px 24px rgba(205, 127, 50, 0.4);
}

/* line 213, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-show-customer-capsule .adv-customer-ranking-badge-mini--bronze {
  border-color: #B8692D;
  background: linear-gradient(135deg, rgba(184, 105, 45, 0.2), rgba(184, 105, 45, 0.05));
}

/* line 217, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-show-customer-capsule .adv-customer-ranking-badge-mini--bronze i, .lightmode .adv-show-customer-capsule .adv-customer-ranking-badge-mini--bronze .adv-customer-ranking-badge-mini-score {
  color: #CD7F32;
}

/* line 224, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-ranking-badge-mini--silver {
  border-color: #C0C0C0;
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.3), rgba(192, 192, 192, 0.1));
}

/* line 228, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-ranking-badge-mini--silver i, .adv-show-customer-capsule .adv-customer-ranking-badge-mini--silver .adv-customer-ranking-badge-mini-score {
  color: #E8E8E8;
}

/* line 232, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-ranking-badge-mini--silver:hover {
  box-shadow: 0 8px 24px rgba(192, 192, 192, 0.5);
}

/* line 236, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-show-customer-capsule .adv-customer-ranking-badge-mini--silver {
  border-color: #A8A8A8;
  background: linear-gradient(135deg, rgba(168, 168, 168, 0.25), rgba(168, 168, 168, 0.08));
}

/* line 240, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-show-customer-capsule .adv-customer-ranking-badge-mini--silver i, .lightmode .adv-show-customer-capsule .adv-customer-ranking-badge-mini--silver .adv-customer-ranking-badge-mini-score {
  color: #909090;
}

/* line 247, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-ranking-badge-mini--gold {
  border-color: #FFD700;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.35), rgba(255, 215, 0, 0.12));
}

/* line 251, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-ranking-badge-mini--gold i, .adv-show-customer-capsule .adv-customer-ranking-badge-mini--gold .adv-customer-ranking-badge-mini-score {
  color: #FFE44D;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
}

/* line 256, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-ranking-badge-mini--gold:hover {
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.6);
}

/* line 260, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-show-customer-capsule .adv-customer-ranking-badge-mini--gold {
  border-color: #E6C200;
  background: linear-gradient(135deg, rgba(230, 194, 0, 0.3), rgba(230, 194, 0, 0.1));
}

/* line 264, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-show-customer-capsule .adv-customer-ranking-badge-mini--gold i, .lightmode .adv-show-customer-capsule .adv-customer-ranking-badge-mini--gold .adv-customer-ranking-badge-mini-score {
  color: #FFD700;
}

/* line 270, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-documents-section {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex: 1;
  padding: 10px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  min-height: 0;
}

/* line 283, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-show-customer-capsule .adv-customer-documents-section {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 287, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-documents-section .adv-customer-documents-list {
  height: 100%;
  width: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* line 296, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-documents-section .adv-customer-documents-list > div {
  min-height: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

/* line 303, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-documents-section .adv-customer-documents-list > div:last-child {
  margin-bottom: 0;
}

/* line 308, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-documents-section .adv-customer-documents-list .adv-order-form-list-row1 {
  width: 100%;
}

/* line 310, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-documents-section .adv-customer-documents-list .adv-order-form-list-row1 .new-document-from-customer {
  width: auto;
}

/* line 314, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-documents-section .adv-customer-documents-list .adv-quote-list-row1 {
  width: 100%;
}

/* line 316, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-documents-section .adv-customer-documents-list .adv-quote-list-row1 .new-document-from-customer {
  width: auto;
}

/* line 320, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-documents-section .adv-customer-documents-list .adv-client-acceptance-report-list-row1 {
  width: 100%;
}

/* line 322, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-documents-section .adv-customer-documents-list .adv-client-acceptance-report-list-row1 .new-document-from-customer {
  width: auto;
}

/* line 326, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-documents-section .adv-customer-documents-list .adv-invoice-list-row1 {
  width: 100%;
}

/* line 328, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-documents-section .adv-customer-documents-list .adv-invoice-list-row1 .new-document-from-customer {
  width: auto;
}

/* line 333, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-documents-section .adv-customer-documents-list .adv-order-form-list-capsule,
.adv-show-customer-capsule .adv-customer-documents-section .adv-customer-documents-list .adv-quote-list-capsule,
.adv-show-customer-capsule .adv-customer-documents-section .adv-customer-documents-list .adv-client-acceptance-report-list-capsule,
.adv-show-customer-capsule .adv-customer-documents-section .adv-customer-documents-list .adv-invoice-list-capsule,
.adv-show-customer-capsule .adv-customer-documents-section .adv-customer-documents-list .adv-contract-list-capsule,
.adv-show-customer-capsule .adv-customer-documents-section .adv-customer-documents-list .adv-history-list {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* line 345, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-documents-section .adv-customer-documents-list .adv-order-form-list-row2 {
  width: 100%;
  background-color: transparent;
  padding: 0;
  border: none;
  flex: 1;
  min-height: 200px;
}

/* line 353, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-documents-section .adv-customer-documents-list .adv-quote-list-row2 {
  width: 100%;
  background-color: transparent;
  padding: 0;
  border: none;
  flex: 1;
  min-height: 200px;
}

/* line 361, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-documents-section .adv-customer-documents-list .adv-client-acceptance-report-list-row2 {
  width: 100%;
  background-color: transparent;
  padding: 0;
  border: none;
  flex: 1;
  min-height: 200px;
}

/* line 369, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-documents-section .adv-customer-documents-list .adv-invoice-list-row2 {
  width: 100%;
  background-color: transparent;
  padding: 0;
  border: none;
  flex: 1;
  min-height: 200px;
}

/* line 377, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-documents-section .adv-customer-documents-list .adv-contract-list-row2 {
  width: 100%;
  background-color: transparent;
  padding: 0;
  border: none;
  flex: 1;
  min-height: 200px;
}

/* line 387, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-documents-section .adv-customer-documents-list .adv-contract-list-row1 {
  width: 100%;
}

/* line 389, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-documents-section .adv-customer-documents-list .adv-contract-list-row1 .new-document-from-customer {
  width: auto;
}

/* line 393, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-documents-section .adv-customer-documents-list .adv-history-list-row1 {
  width: 100%;
}

/* line 395, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-documents-section .adv-customer-documents-list .adv-history-list-row1 .adv-history-list-row1-header {
  width: 100%;
}

/* line 397, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-documents-section .adv-customer-documents-list .adv-history-list-row1 .adv-history-list-row1-header h3, .adv-show-customer-capsule .adv-customer-documents-section .adv-customer-documents-list .adv-history-list-row1 .adv-history-list-row1-header .h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #C38761;
  margin: 0;
  padding: 10px 0;
}

/* line 404, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-show-customer-capsule .adv-customer-documents-section .adv-customer-documents-list .adv-history-list-row1 .adv-history-list-row1-header h3, .lightmode .adv-show-customer-capsule .adv-customer-documents-section .adv-customer-documents-list .adv-history-list-row1 .adv-history-list-row1-header .h3 {
  color: #C38761;
}

/* line 410, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-documents-section .adv-customer-documents-list .adv-history-list-row2 {
  width: 100%;
  background-color: transparent;
  padding: 0;
  border: none;
  flex: 1;
  min-height: 200px;
}

/* line 420, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-documents-section .adv-order-form-list-row2-list,
.adv-show-customer-capsule .adv-customer-documents-section .adv-quote-list-row2-list,
.adv-show-customer-capsule .adv-customer-documents-section .adv-client-acceptance-report-list-row2-list,
.adv-show-customer-capsule .adv-customer-documents-section .adv-invoice-list-row2-list,
.adv-show-customer-capsule .adv-customer-documents-section .adv-contract-list-row2-list {
  min-height: 200px;
  display: flex;
  flex-direction: column;
}

/* line 429, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-documents-section .adv-order-form-list-row2-list .adv-order-form-list-row2-list-entries,
.adv-show-customer-capsule .adv-customer-documents-section .adv-order-form-list-row2-list .adv-quote-list-row2-list-entries,
.adv-show-customer-capsule .adv-customer-documents-section .adv-order-form-list-row2-list .adv-client-acceptance-report-list-row2-list-entries,
.adv-show-customer-capsule .adv-customer-documents-section .adv-order-form-list-row2-list .adv-invoice-list-row2-list-entries,
.adv-show-customer-capsule .adv-customer-documents-section .adv-order-form-list-row2-list .adv-contract-list-row2-list-entries,
.adv-show-customer-capsule .adv-customer-documents-section .adv-quote-list-row2-list .adv-order-form-list-row2-list-entries,
.adv-show-customer-capsule .adv-customer-documents-section .adv-quote-list-row2-list .adv-quote-list-row2-list-entries,
.adv-show-customer-capsule .adv-customer-documents-section .adv-quote-list-row2-list .adv-client-acceptance-report-list-row2-list-entries,
.adv-show-customer-capsule .adv-customer-documents-section .adv-quote-list-row2-list .adv-invoice-list-row2-list-entries,
.adv-show-customer-capsule .adv-customer-documents-section .adv-quote-list-row2-list .adv-contract-list-row2-list-entries,
.adv-show-customer-capsule .adv-customer-documents-section .adv-client-acceptance-report-list-row2-list .adv-order-form-list-row2-list-entries,
.adv-show-customer-capsule .adv-customer-documents-section .adv-client-acceptance-report-list-row2-list .adv-quote-list-row2-list-entries,
.adv-show-customer-capsule .adv-customer-documents-section .adv-client-acceptance-report-list-row2-list .adv-client-acceptance-report-list-row2-list-entries,
.adv-show-customer-capsule .adv-customer-documents-section .adv-client-acceptance-report-list-row2-list .adv-invoice-list-row2-list-entries,
.adv-show-customer-capsule .adv-customer-documents-section .adv-client-acceptance-report-list-row2-list .adv-contract-list-row2-list-entries,
.adv-show-customer-capsule .adv-customer-documents-section .adv-invoice-list-row2-list .adv-order-form-list-row2-list-entries,
.adv-show-customer-capsule .adv-customer-documents-section .adv-invoice-list-row2-list .adv-quote-list-row2-list-entries,
.adv-show-customer-capsule .adv-customer-documents-section .adv-invoice-list-row2-list .adv-client-acceptance-report-list-row2-list-entries,
.adv-show-customer-capsule .adv-customer-documents-section .adv-invoice-list-row2-list .adv-invoice-list-row2-list-entries,
.adv-show-customer-capsule .adv-customer-documents-section .adv-invoice-list-row2-list .adv-contract-list-row2-list-entries,
.adv-show-customer-capsule .adv-customer-documents-section .adv-contract-list-row2-list .adv-order-form-list-row2-list-entries,
.adv-show-customer-capsule .adv-customer-documents-section .adv-contract-list-row2-list .adv-quote-list-row2-list-entries,
.adv-show-customer-capsule .adv-customer-documents-section .adv-contract-list-row2-list .adv-client-acceptance-report-list-row2-list-entries,
.adv-show-customer-capsule .adv-customer-documents-section .adv-contract-list-row2-list .adv-invoice-list-row2-list-entries,
.adv-show-customer-capsule .adv-customer-documents-section .adv-contract-list-row2-list .adv-contract-list-row2-list-entries {
  flex: 1;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* line 441, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-documents-section .adv-order-form-list-row2-list .adv-order-form-list-row2-list-entries .no-results,
.adv-show-customer-capsule .adv-customer-documents-section .adv-order-form-list-row2-list .adv-quote-list-row2-list-entries .no-results,
.adv-show-customer-capsule .adv-customer-documents-section .adv-order-form-list-row2-list .adv-client-acceptance-report-list-row2-list-entries .no-results,
.adv-show-customer-capsule .adv-customer-documents-section .adv-order-form-list-row2-list .adv-invoice-list-row2-list-entries .no-results,
.adv-show-customer-capsule .adv-customer-documents-section .adv-order-form-list-row2-list .adv-contract-list-row2-list-entries .no-results,
.adv-show-customer-capsule .adv-customer-documents-section .adv-quote-list-row2-list .adv-order-form-list-row2-list-entries .no-results,
.adv-show-customer-capsule .adv-customer-documents-section .adv-quote-list-row2-list .adv-quote-list-row2-list-entries .no-results,
.adv-show-customer-capsule .adv-customer-documents-section .adv-quote-list-row2-list .adv-client-acceptance-report-list-row2-list-entries .no-results,
.adv-show-customer-capsule .adv-customer-documents-section .adv-quote-list-row2-list .adv-invoice-list-row2-list-entries .no-results,
.adv-show-customer-capsule .adv-customer-documents-section .adv-quote-list-row2-list .adv-contract-list-row2-list-entries .no-results,
.adv-show-customer-capsule .adv-customer-documents-section .adv-client-acceptance-report-list-row2-list .adv-order-form-list-row2-list-entries .no-results,
.adv-show-customer-capsule .adv-customer-documents-section .adv-client-acceptance-report-list-row2-list .adv-quote-list-row2-list-entries .no-results,
.adv-show-customer-capsule .adv-customer-documents-section .adv-client-acceptance-report-list-row2-list .adv-client-acceptance-report-list-row2-list-entries .no-results,
.adv-show-customer-capsule .adv-customer-documents-section .adv-client-acceptance-report-list-row2-list .adv-invoice-list-row2-list-entries .no-results,
.adv-show-customer-capsule .adv-customer-documents-section .adv-client-acceptance-report-list-row2-list .adv-contract-list-row2-list-entries .no-results,
.adv-show-customer-capsule .adv-customer-documents-section .adv-invoice-list-row2-list .adv-order-form-list-row2-list-entries .no-results,
.adv-show-customer-capsule .adv-customer-documents-section .adv-invoice-list-row2-list .adv-quote-list-row2-list-entries .no-results,
.adv-show-customer-capsule .adv-customer-documents-section .adv-invoice-list-row2-list .adv-client-acceptance-report-list-row2-list-entries .no-results,
.adv-show-customer-capsule .adv-customer-documents-section .adv-invoice-list-row2-list .adv-invoice-list-row2-list-entries .no-results,
.adv-show-customer-capsule .adv-customer-documents-section .adv-invoice-list-row2-list .adv-contract-list-row2-list-entries .no-results,
.adv-show-customer-capsule .adv-customer-documents-section .adv-contract-list-row2-list .adv-order-form-list-row2-list-entries .no-results,
.adv-show-customer-capsule .adv-customer-documents-section .adv-contract-list-row2-list .adv-quote-list-row2-list-entries .no-results,
.adv-show-customer-capsule .adv-customer-documents-section .adv-contract-list-row2-list .adv-client-acceptance-report-list-row2-list-entries .no-results,
.adv-show-customer-capsule .adv-customer-documents-section .adv-contract-list-row2-list .adv-invoice-list-row2-list-entries .no-results,
.adv-show-customer-capsule .adv-customer-documents-section .adv-contract-list-row2-list .adv-contract-list-row2-list-entries .no-results {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 150px;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  font-size: 0.9rem;
}

/* line 451, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-show-customer-capsule .adv-customer-documents-section .adv-order-form-list-row2-list .adv-order-form-list-row2-list-entries .no-results, .lightmode .adv-show-customer-capsule .adv-customer-documents-section .adv-order-form-list-row2-list .adv-quote-list-row2-list-entries .no-results, .lightmode .adv-show-customer-capsule .adv-customer-documents-section .adv-order-form-list-row2-list .adv-client-acceptance-report-list-row2-list-entries .no-results, .lightmode .adv-show-customer-capsule .adv-customer-documents-section .adv-order-form-list-row2-list .adv-invoice-list-row2-list-entries .no-results, .lightmode .adv-show-customer-capsule .adv-customer-documents-section .adv-order-form-list-row2-list .adv-contract-list-row2-list-entries .no-results, .lightmode .adv-show-customer-capsule .adv-customer-documents-section .adv-quote-list-row2-list .adv-order-form-list-row2-list-entries .no-results, .lightmode .adv-show-customer-capsule .adv-customer-documents-section .adv-quote-list-row2-list .adv-quote-list-row2-list-entries .no-results, .lightmode .adv-show-customer-capsule .adv-customer-documents-section .adv-quote-list-row2-list .adv-client-acceptance-report-list-row2-list-entries .no-results, .lightmode .adv-show-customer-capsule .adv-customer-documents-section .adv-quote-list-row2-list .adv-invoice-list-row2-list-entries .no-results, .lightmode .adv-show-customer-capsule .adv-customer-documents-section .adv-quote-list-row2-list .adv-contract-list-row2-list-entries .no-results, .lightmode .adv-show-customer-capsule .adv-customer-documents-section .adv-client-acceptance-report-list-row2-list .adv-order-form-list-row2-list-entries .no-results, .lightmode .adv-show-customer-capsule .adv-customer-documents-section .adv-client-acceptance-report-list-row2-list .adv-quote-list-row2-list-entries .no-results, .lightmode .adv-show-customer-capsule .adv-customer-documents-section .adv-client-acceptance-report-list-row2-list .adv-client-acceptance-report-list-row2-list-entries .no-results, .lightmode .adv-show-customer-capsule .adv-customer-documents-section .adv-client-acceptance-report-list-row2-list .adv-invoice-list-row2-list-entries .no-results, .lightmode .adv-show-customer-capsule .adv-customer-documents-section .adv-client-acceptance-report-list-row2-list .adv-contract-list-row2-list-entries .no-results, .lightmode .adv-show-customer-capsule .adv-customer-documents-section .adv-invoice-list-row2-list .adv-order-form-list-row2-list-entries .no-results, .lightmode .adv-show-customer-capsule .adv-customer-documents-section .adv-invoice-list-row2-list .adv-quote-list-row2-list-entries .no-results, .lightmode .adv-show-customer-capsule .adv-customer-documents-section .adv-invoice-list-row2-list .adv-client-acceptance-report-list-row2-list-entries .no-results, .lightmode .adv-show-customer-capsule .adv-customer-documents-section .adv-invoice-list-row2-list .adv-invoice-list-row2-list-entries .no-results, .lightmode .adv-show-customer-capsule .adv-customer-documents-section .adv-invoice-list-row2-list .adv-contract-list-row2-list-entries .no-results, .lightmode .adv-show-customer-capsule .adv-customer-documents-section .adv-contract-list-row2-list .adv-order-form-list-row2-list-entries .no-results, .lightmode .adv-show-customer-capsule .adv-customer-documents-section .adv-contract-list-row2-list .adv-quote-list-row2-list-entries .no-results, .lightmode .adv-show-customer-capsule .adv-customer-documents-section .adv-contract-list-row2-list .adv-client-acceptance-report-list-row2-list-entries .no-results, .lightmode .adv-show-customer-capsule .adv-customer-documents-section .adv-contract-list-row2-list .adv-invoice-list-row2-list-entries .no-results, .lightmode .adv-show-customer-capsule .adv-customer-documents-section .adv-contract-list-row2-list .adv-contract-list-row2-list-entries .no-results {
  color: rgba(20, 13, 35, 0.6);
}

/* line 459, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-documents-section .adv-contract-list-row2-list-head {
  display: flex;
  flex-direction: row;
  font-weight: bold;
  font-size: 0.75rem;
  margin-bottom: 5px;
  color: #fefefe;
}

/* line 467, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-show-customer-capsule .adv-customer-documents-section .adv-contract-list-row2-list-head {
  color: #140D23;
}

/* line 471, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-documents-section .adv-contract-list-row2-list-head .adv-contract-list-row2-list-column {
  flex: 1;
  text-align: center;
  justify-content: center;
  padding: 5px 10px;
}

/* line 479, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-documents-section .adv-contract-list-row2-list-entry {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  font-size: 0.7rem;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 2px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 40px;
  padding: 3px 0;
  margin-bottom: 2px;
  color: #fefefe;
}

/* line 497, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-show-customer-capsule .adv-customer-documents-section .adv-contract-list-row2-list-entry {
  color: #140D23;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 2px;
}

/* line 502, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-documents-section .adv-contract-list-row2-list-entry:hover {
  transform: scale(1.01);
  transition: transform 0.3s ease;
  background-color: rgba(254, 254, 254, 0.1);
}

/* line 507, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-show-customer-capsule .adv-customer-documents-section .adv-contract-list-row2-list-entry:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 512, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-documents-section .adv-contract-list-row2-list-entry .adv-contract-list-row2-list-column {
  flex: 1;
  text-align: center;
  justify-content: center;
  padding: 5px 10px;
}

/* line 519, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule .adv-customer-documents-section .adv-invoice-list-tabs {
  width: 100%;
}

/* line 525, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding: 0;
  transition: all 0.3s ease;
}

/* line 533, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-actions.wide-margins {
  margin-right: 0;
}

/* line 537, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-actions .adv-action-button {
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.8rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* line 551, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-actions .adv-action-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

/* line 556, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-actions .adv-action-button.adv-action-button-primary {
  background-color: #C38761;
  border-color: #C38761;
  color: #140D23;
}

/* line 560, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-actions .adv-action-button.adv-action-button-primary:hover {
  background-color: #af6c42;
}

/* line 564, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-actions .adv-action-button.adv-action-button-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

/* line 568, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-actions .adv-action-button.adv-action-button-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 572, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-customer-actions .adv-action-button.adv-action-button-secondary {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 577, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-customer-actions .adv-action-button.adv-action-button-secondary:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* line 585, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar {
  width: 400px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  height: 100vh;
  margin-top: 0;
  transition: all 0.3s ease;
  overflow-y: auto;
}

/* line 595, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-customer-sidebar {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 599, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar::-webkit-scrollbar {
  width: 6px;
}

/* line 602, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 606, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 610, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar::-webkit-scrollbar-thumb:hover {
  background: #fefefe;
}

/* line 613, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar.hidden {
  display: none;
}

/* line 616, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar .customer-contacts-section {
  max-height: 250px;
  overflow-y: auto;
  /* Personnalisation de la barre de défilement */
}

/* line 620, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar .customer-contacts-section::-webkit-scrollbar {
  width: 4px;
  /* Largeur de la barre de défilement */
}

/* line 624, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar .customer-contacts-section::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  /* Couleur de l'arrière-plan de la barre */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 629, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar .customer-contacts-section::-webkit-scrollbar-thumb {
  background: #C38761;
  /* Couleur de la barre de défilement */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 634, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar .customer-contacts-section::-webkit-scrollbar-thumb:hover {
  background: #fefefe;
  /* Couleur de la barre au survol */
}

/* line 639, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar .customer-infos-section, .adv-customer-sidebar .customer-contacts-section {
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  background: rgba(254, 254, 254, 0.04);
}

/* line 645, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-customer-sidebar .customer-infos-section, .lightmode .adv-customer-sidebar .customer-contacts-section {
  background: rgba(20, 13, 35, 0.04);
}

/* line 649, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar .customer-infos-section .section-label, .adv-customer-sidebar .customer-contacts-section .section-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #C38761;
  margin-bottom: 15px;
}

/* line 655, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-customer-sidebar .customer-infos-section .section-label, .lightmode .adv-customer-sidebar .customer-contacts-section .section-label {
  color: #C38761;
}

/* line 659, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar .customer-infos-section .infos-section-content, .adv-customer-sidebar .customer-contacts-section .infos-section-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 663, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar .customer-infos-section .infos-section-content .info-item, .adv-customer-sidebar .customer-contacts-section .infos-section-content .info-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* line 667, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar .customer-infos-section .infos-section-content .info-item:not(:last-child), .adv-customer-sidebar .customer-contacts-section .infos-section-content .info-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}

/* line 671, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-customer-sidebar .customer-infos-section .infos-section-content .info-item:not(:last-child), .lightmode .adv-customer-sidebar .customer-contacts-section .infos-section-content .info-item:not(:last-child) {
  border-bottom: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 675, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar .customer-infos-section .infos-section-content .info-item .info-label, .adv-customer-sidebar .customer-contacts-section .infos-section-content .info-item .info-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 679, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-customer-sidebar .customer-infos-section .infos-section-content .info-item .info-label, .lightmode .adv-customer-sidebar .customer-contacts-section .infos-section-content .info-item .info-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 683, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar .customer-infos-section .infos-section-content .info-item .info-value, .adv-customer-sidebar .customer-contacts-section .infos-section-content .info-item .info-value {
  font-size: 0.85rem;
  color: #fff;
}

/* line 687, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-customer-sidebar .customer-infos-section .infos-section-content .info-item .info-value, .lightmode .adv-customer-sidebar .customer-contacts-section .infos-section-content .info-item .info-value {
  color: #140D23;
}

/* line 694, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar .customer-infos-section .contacts-section-content, .adv-customer-sidebar .customer-contacts-section .contacts-section-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 699, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar .customer-infos-section .contacts-section-content .contacts-section-header, .adv-customer-sidebar .customer-contacts-section .contacts-section-content .contacts-section-header {
  margin-bottom: 15px;
}

/* line 702, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar .customer-infos-section .contacts-section-content .contacts-section-header .add-contact-link, .adv-customer-sidebar .customer-contacts-section .contacts-section-content .contacts-section-header .add-contact-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
  width: 100%;
  cursor: pointer;
}

/* line 719, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar .customer-infos-section .contacts-section-content .contacts-section-header .add-contact-link:hover, .adv-customer-sidebar .customer-contacts-section .contacts-section-content .contacts-section-header .add-contact-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.3);
}

/* line 725, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-customer-sidebar .customer-infos-section .contacts-section-content .contacts-section-header .add-contact-link, .lightmode .adv-customer-sidebar .customer-contacts-section .contacts-section-content .contacts-section-header .add-contact-link {
  border: 1px solid rgba(20, 13, 35, 0.2);
  background-color: rgba(20, 13, 35, 0.05);
  color: #140D23;
}

/* line 730, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-customer-sidebar .customer-infos-section .contacts-section-content .contacts-section-header .add-contact-link:hover, .lightmode .adv-customer-sidebar .customer-contacts-section .contacts-section-content .contacts-section-header .add-contact-link:hover {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 736, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar .customer-infos-section .contacts-section-content .contacts-section-header .add-contact-link i, .adv-customer-sidebar .customer-contacts-section .contacts-section-content .contacts-section-header .add-contact-link i {
  font-size: 0.7rem;
}

/* line 742, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar .customer-infos-section .contacts-section-content .contact-item, .adv-customer-sidebar .customer-contacts-section .contacts-section-content .contact-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* line 746, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar .customer-infos-section .contacts-section-content .contact-item:not(:last-child), .adv-customer-sidebar .customer-contacts-section .contacts-section-content .contact-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}

/* line 750, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-customer-sidebar .customer-infos-section .contacts-section-content .contact-item:not(:last-child), .lightmode .adv-customer-sidebar .customer-contacts-section .contacts-section-content .contact-item:not(:last-child) {
  border-bottom: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 754, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar .customer-infos-section .contacts-section-content .contact-item .contact-label, .adv-customer-sidebar .customer-contacts-section .contacts-section-content .contact-item .contact-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 758, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-customer-sidebar .customer-infos-section .contacts-section-content .contact-item .contact-label, .lightmode .adv-customer-sidebar .customer-contacts-section .contacts-section-content .contact-item .contact-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 762, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar .customer-infos-section .contacts-section-content .contact-item .contact-value, .adv-customer-sidebar .customer-contacts-section .contacts-section-content .contact-item .contact-value {
  font-size: 0.85rem;
  color: #fff;
}

/* line 766, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-customer-sidebar .customer-infos-section .contacts-section-content .contact-item .contact-value, .lightmode .adv-customer-sidebar .customer-contacts-section .contacts-section-content .contact-item .contact-value {
  color: #140D23;
}

/* line 770, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar .customer-infos-section .contacts-section-content .contact-item .adv-document-link, .adv-customer-sidebar .customer-contacts-section .contacts-section-content .contact-item .adv-document-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  text-decoration: none;
  font-weight: 500;
  word-break: break-all;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
}

/* line 784, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar .customer-infos-section .contacts-section-content .contact-item .adv-document-link:hover, .adv-customer-sidebar .customer-contacts-section .contacts-section-content .contact-item .adv-document-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.3);
}

/* line 790, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-customer-sidebar .customer-infos-section .contacts-section-content .contact-item .adv-document-link, .lightmode .adv-customer-sidebar .customer-contacts-section .contacts-section-content .contact-item .adv-document-link {
  border: 1px solid rgba(20, 13, 35, 0.2);
  background-color: rgba(20, 13, 35, 0.05);
  color: #140D23;
}

/* line 795, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-customer-sidebar .customer-infos-section .contacts-section-content .contact-item .adv-document-link:hover, .lightmode .adv-customer-sidebar .customer-contacts-section .contacts-section-content .contact-item .adv-document-link:hover {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 802, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar .customer-infos-section .contacts-section-content .no-contacts, .adv-customer-sidebar .customer-contacts-section .contacts-section-content .no-contacts {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  font-size: 0.85rem;
}

/* line 807, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-customer-sidebar .customer-infos-section .contacts-section-content .no-contacts, .lightmode .adv-customer-sidebar .customer-contacts-section .contacts-section-content .no-contacts {
  color: rgba(20, 13, 35, 0.6);
}

/* line 813, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar .customer-organizations-section {
  max-height: 200px;
  overflow-y: auto;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  background: rgba(254, 254, 254, 0.04);
  /* Personnalisation de la barre de défilement */
}

/* line 821, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-customer-sidebar .customer-organizations-section {
  background: rgba(20, 13, 35, 0.04);
}

/* line 826, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar .customer-organizations-section::-webkit-scrollbar {
  width: 4px;
  /* Largeur de la barre de défilement */
}

/* line 830, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar .customer-organizations-section::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  /* Couleur de l'arrière-plan de la barre */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 835, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar .customer-organizations-section::-webkit-scrollbar-thumb {
  background: #C38761;
  /* Couleur de la barre de défilement */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 840, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar .customer-organizations-section::-webkit-scrollbar-thumb:hover {
  background: #fefefe;
  /* Couleur de la barre au survol */
}

/* line 844, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar .customer-organizations-section .section-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #C38761;
  margin-bottom: 15px;
}

/* line 850, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-customer-sidebar .customer-organizations-section .section-label {
  color: #C38761;
}

/* line 854, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar .customer-organizations-section .organizations-section-header {
  margin-bottom: 15px;
}

/* line 857, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar .customer-organizations-section .organizations-section-header .add-organization-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
  width: 100%;
}

/* line 873, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar .customer-organizations-section .organizations-section-header .add-organization-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.3);
}

/* line 879, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-customer-sidebar .customer-organizations-section .organizations-section-header .add-organization-link {
  border: 1px solid rgba(20, 13, 35, 0.2);
  background-color: rgba(20, 13, 35, 0.05);
  color: #140D23;
}

/* line 884, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-customer-sidebar .customer-organizations-section .organizations-section-header .add-organization-link:hover {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 890, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar .customer-organizations-section .organizations-section-header .add-organization-link i {
  font-size: 0.7rem;
}

/* line 896, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar .customer-organizations-section .organizations-section-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 900, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar .customer-organizations-section .organizations-section-content .organization-item {
  display: flex;
  flex-direction: column;
}

/* line 903, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar .customer-organizations-section .organizations-section-content .organization-item .adv-document-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
}

/* line 916, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar .customer-organizations-section .organizations-section-content .organization-item .adv-document-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.3);
}

/* line 922, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-customer-sidebar .customer-organizations-section .organizations-section-content .organization-item .adv-document-link {
  border: 1px solid rgba(20, 13, 35, 0.2);
  background-color: rgba(20, 13, 35, 0.05);
  color: #140D23;
}

/* line 927, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-customer-sidebar .customer-organizations-section .organizations-section-content .organization-item .adv-document-link:hover {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 934, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-sidebar .customer-organizations-section .organizations-section-content .no-organizations {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  font-size: 0.85rem;
}

/* line 939, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-customer-sidebar .customer-organizations-section .organizations-section-content .no-organizations {
  color: rgba(20, 13, 35, 0.6);
}

/* line 947, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
}

/* line 954, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.status-badge.draft {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

/* line 958, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .status-badge.draft {
  background-color: rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.8);
}

/* line 963, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.status-badge.sent {
  background-color: #C38761;
  color: #140D23;
}

/* line 967, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.status-badge.validated {
  background-color: #4CAF50;
  color: white;
}

/* line 971, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.status-badge.non-defini {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* line 975, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .status-badge.non-defini {
  background-color: rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.6);
}

/* ==========================================================================
   HISTOIRE LIST - Styles pour la liste d'historique
   ========================================================================== */
/* line 986, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-history-list {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 993, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-history-list .adv-history-list-row2 {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 15px;
  overflow: hidden;
}

/* line 1003, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-history-list .adv-history-list-row2 {
  background-color: rgba(20, 13, 35, 0.05);
  border: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 1008, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-history-list .adv-history-list-row2 .adv-history-list-row2-list {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

/* line 1016, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-history-list .adv-history-list-row2 .adv-history-list-row2-list .adv-history-list-row2-list-head {
  width: 100%;
  display: flex;
  flex-direction: row;
  font-weight: bold;
  font-size: 0.75rem;
  margin-bottom: 5px;
  color: #fefefe;
}

/* line 1025, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-history-list .adv-history-list-row2 .adv-history-list-row2-list .adv-history-list-row2-list-head {
  color: #140D23;
}

/* line 1029, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-history-list .adv-history-list-row2 .adv-history-list-row2-list .adv-history-list-row2-list-head .adv-history-list-row2-list-column {
  flex: 1;
  text-align: center;
  justify-content: center;
  padding: 5px 10px;
}

/* line 1037, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-history-list .adv-history-list-row2 .adv-history-list-row2-list .adv-history-list-row2-list-entries {
  width: 100%;
  height: 80%;
  display: flex;
  gap: 5px;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
}

/* line 1046, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-history-list .adv-history-list-row2 .adv-history-list-row2-list .adv-history-list-row2-list-entries::-webkit-scrollbar {
  width: 8px;
}

/* line 1050, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-history-list .adv-history-list-row2 .adv-history-list-row2-list .adv-history-list-row2-list-entries::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 1054, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-history-list .adv-history-list-row2 .adv-history-list-row2-list .adv-history-list-row2-list-entries::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 1059, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-history-list .adv-history-list-row2 .adv-history-list-row2-list .adv-history-list-row2-list-entries::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 1064, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-history-list .adv-history-list-row2 .adv-history-list-row2-list .adv-history-list-row2-list-entries::-webkit-scrollbar-thumb:hover {
  background: #fefefe;
}

/* line 1067, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-history-list .adv-history-list-row2 .adv-history-list-row2-list .adv-history-list-row2-list-entries::-webkit-scrollbar-thumb:hover {
  background: #140D23;
}

/* line 1072, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-history-list .adv-history-list-row2 .adv-history-list-row2-list .adv-history-list-row2-list-entries .adv-history-list-row2-list-entry {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  font-size: 0.7rem;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 2px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 40px;
  padding: 3px 0;
  margin-bottom: 2px;
  color: #fefefe;
}

/* line 1090, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-history-list .adv-history-list-row2 .adv-history-list-row2-list .adv-history-list-row2-list-entries .adv-history-list-row2-list-entry {
  color: #140D23;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 2px;
}

/* line 1095, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-history-list .adv-history-list-row2 .adv-history-list-row2-list .adv-history-list-row2-list-entries .adv-history-list-row2-list-entry:hover {
  transform: scale(1.01);
  transition: transform 0.3s ease;
  background-color: rgba(254, 254, 254, 0.1);
}

/* line 1100, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-history-list .adv-history-list-row2 .adv-history-list-row2-list .adv-history-list-row2-list-entries .adv-history-list-row2-list-entry:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 1105, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-history-list .adv-history-list-row2 .adv-history-list-row2-list .adv-history-list-row2-list-entries .adv-history-list-row2-list-entry .adv-history-list-row2-list-column {
  flex: 1;
  text-align: center;
  justify-content: center;
  padding: 5px 10px;
}

/* line 1117, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.d-none {
  display: none !important;
}

/* line 1120, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.hidden {
  display: none !important;
}

/* line 1124, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 10px 30px 10px 30px;
  font-size: 0.8rem;
  gap: 10px;
}

/* line 1136, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 1142, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule span {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 1148, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule.lightmode span {
  color: #C38761;
}

/* line 1152, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule.nightmode span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 1156, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule.lightmode p {
  color: #140D23;
}

/* line 1160, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule.nightmode p {
  color: #fefefe;
}

/* line 1164, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule.lightmode i {
  color: #140D23;
}

/* line 1168, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-capsule.nightmode i {
  color: #fefefe;
}

/* line 1172, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-row1 {
  width: 80%;
  height: 92.5%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(254, 254, 254, 0.1);
  border: 1px solid rgba(232, 232, 232, 0.5);
  border-radius: 20px;
  padding-right: 20px;
}

/* line 1184, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-show-customer-row1 {
  background-color: rgba(20, 13, 35, 0.05);
  border: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 1189, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-row1 form {
  width: 100%;
  display: flex;
}

/* line 1194, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-row1 form input:focus {
  background-color: transparent;
}

/* line 1199, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-row1 h2, .adv-show-customer-row1 .h2 {
  all: unset;
  font-size: 0.7rem;
  text-align: start;
  font-weight: bold;
}

/* line 1208, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-row2 {
  width: 80%;
  height: 7.5%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
}

/* line 1221, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-row1-column1 {
  width: 30%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-right: 1px solid rgba(232, 232, 232, 0.5);
  padding-top: 10px;
  padding-bottom: 10px;
}

/* line 1233, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-show-customer-row1-column1 {
  border-right: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 1237, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-row1-column1 p {
  all: unset;
  font-size: 0.7rem;
  text-align: start;
}

/* line 1243, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-row1-column1-subrow1 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
  padding: 0px 10px;
  justify-content: start;
}

/* line 1252, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-row1-column1-subrow1 a {
  all: unset;
  font-size: 0.7rem;
  text-align: start;
  cursor: pointer;
  text-overflow: ellipsis;
  transition: 0.3s ease;
}

/* line 1259, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-row1-column1-subrow1 a:hover {
  color: #C38761;
}

/* line 1264, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-row1-column1-subrow1 i {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

/* line 1271, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-row1-column1-subrow1 .adv-show-customer-row1-column1-subrow1-title, .adv-show-customer-row1-column1-subrow1 .adv-show-customer-row1-column1-subrow2-title {
  display: flex;
  gap: 10px;
}

/* line 1275, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-row1-column1-subrow1 .adv-show-customer-row1-column1-subrow1-infos {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 1280, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-row1-column1-subrow1 .adv-show-customer-row1-column1-subrow1-infos p {
  all: unset;
  font-size: 0.7rem;
  text-align: start;
}

/* line 1289, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-row1-vertical-line {
  width: 90%;
  border-bottom: 1px solid rgba(232, 232, 232, 0.5);
}

/* line 1293, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-show-customer-row1-vertical-line {
  border-bottom: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 1298, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-row1-column2 {
  width: 70%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  padding: 10px;
  gap: 10px;
}

/* line 1309, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-row1-column2 .special-toggle {
  width: 400px !important;
  background-color: transparent;
  color: #140D23;
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: space-evenly;
  transition: transform 0.3s ease;
  border: 1px solid rgba(232, 232, 232, 0.5);
}

/* line 1321, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-show-customer-row1-column2 .special-toggle {
  border: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 1325, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-row1-column2 .special-toggle span {
  color: #fefefe;
  font-size: 0.7rem;
  font-weight: normal;
  padding: 5px;
  white-space: nowrap;
}

/* line 1332, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-show-customer-row1-column2 .special-toggle span {
  color: #140D23;
}

/* line 1338, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-row1-column2 .special-toggle:hover {
  transform: scale(1.04);
}

/* line 1342, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-row1-column2 .choosen-one {
  background-color: #e8e8e8;
}

/* line 1344, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-row1-column2 .choosen-one span {
  color: #140D23;
}

/* line 1350, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-row1-column2 .selected {
  background-color: #e8e8e8;
}

/* line 1353, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-row1-column2 .selected span {
  color: #140D23;
}

/* line 1358, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-row1-column2 .adv-show-customer-row1-column2-capsule-list {
  flex-grow: 1;
  width: 100%;
}

/* line 1371, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-row1-column2-list-entry {
  width: 100%;
  display: flex;
}

/* line 1377, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-row1-column2-total-amount {
  width: 100%;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 2px 5px;
}

/* line 1388, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-row1-column2-list {
  width: 100%;
  height: 80%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  flex-grow: 1;
}

/* line 1397, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-row1-column2-list-head {
  width: 100%;
  display: flex;
  flex-direction: row;
  font-weight: bold;
  font-size: 0.8rem;
}

/* line 1405, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-row1-column2-list-column {
  width: 15%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.7rem;
  padding: 2px 5px;
  white-space: nowrap;
}

/* line 1414, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-row1-column2-list-column-article {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.7rem;
  padding: 2px 5px;
}

/* line 1423, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-row1-column2-list-entries {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  overflow-y: auto;
  flex-shrink: 1;
  /* Personnalisation de la barre de défilement */
}

/* line 1431, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-row1-column2-list-entries::-webkit-scrollbar {
  width: 8px;
  /* Largeur de la barre de défilement */
}

/* line 1435, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-row1-column2-list-entries::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  /* Couleur de l'arrière-plan de la barre */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 1440, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-row1-column2-list-entries::-webkit-scrollbar-thumb {
  background: #C38761;
  /* Couleur de la barre de défilement */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 1445, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-row1-column2-list-entries::-webkit-scrollbar-thumb:hover {
  background: #fefefe;
  /* Couleur de la barre au survol */
}

/* line 1451, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.entry {
  width: 100%;
  display: flex;
}

/* line 1455, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.entry .quantity-input {
  width: 70%;
}

/* line 1460, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.totalPrice {
  font-size: 0.8rem;
  font-weight: bold;
  text-align: center;
  color: #140D23;
  border-radius: 20px;
  background-color: #e8e8e8;
}

/* line 1469, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.search-results-articles {
  display: flex;
  min-height: 30px;
  width: 97% !important;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  padding: 5px;
  width: 250px;
  border-radius: 0.375rem;
  flex-wrap: nowrap;
}

/* line 1480, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.search-results-articles label {
  opacity: 1;
}

/* line 1483, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.search-results-articles p {
  all: unset;
  font-size: 0.7rem !important;
  margin: 0;
  font-weight: normal !important;
  color: #140D23 !important;
}

/* line 1491, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.search-results-articles:hover {
  background-color: rgba(254, 254, 254, 0.5);
  transition: transform 0.3s ease;
}

/* line 1497, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.articles {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

/* line 1505, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.customer-arrow {
  rotate: -90deg;
  transform-origin: center center;
  transition: 0.3s ease;
}

/* line 1509, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.customer-arrow:hover {
  rotate: 0deg;
  transform-origin: center center;
}

/* line 1514, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.arrow-clicked {
  rotate: 0deg;
}

/* line 1519, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-row1-column1-subrow2-infos {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 1524, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-row1-column1-subrow2-infos .card-title {
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(254, 254, 254, 0.1);
  border-bottom: 1px solid rgba(254, 254, 254, 0.1);
  /* Bouton d'ajout */
}

/* line 1532, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.show-customer-contact-show-capsule.lightmode .adv-show-customer-row1-column1-subrow2-infos .card-title {
  background-color: rgba(20, 13, 35, 0.1);
  border-bottom: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 1537, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-row1-column1-subrow2-infos .card-title h3, .adv-show-customer-row1-column1-subrow2-infos .card-title .h3 {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
}

/* line 1543, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-row1-column1-subrow2-infos .card-title i {
  font-size: 1rem;
}

/* line 1548, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-row1-column1-subrow2-infos .card-title .add-btn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: rgba(254, 254, 254, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  margin: 0;
  margin-left: auto;
  outline: none;
}

/* line 1565, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.show-customer-contact-show-capsule.lightmode .adv-show-customer-row1-column1-subrow2-infos .card-title .add-btn {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 1571, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-show-customer-row1-column1-subrow2-infos .card-title .add-btn:hover {
  background-color: rgba(254, 254, 254, 0.2);
}

/* line 1574, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.show-customer-contact-show-capsule.lightmode .adv-show-customer-row1-column1-subrow2-infos .card-title .add-btn:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* line 1582, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-tabs {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 8px;
  white-space: nowrap;
  width: 100%;
  overflow-x: scroll;
  /* Personnalisation de la barre de défilement */
}

/* line 1594, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-tabs::-webkit-scrollbar {
  width: 4px;
  /* Largeur de la barre de défilement */
  height: 4px;
}

/* line 1599, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-tabs::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  /* Couleur de l'arrière-plan de la barre */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 1604, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-tabs::-webkit-scrollbar-thumb {
  background: #C38761;
  /* Couleur de la barre de défilement */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 1609, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-customer-tabs::-webkit-scrollbar-thumb:hover {
  background: #fefefe;
  /* Couleur de la barre au survol */
}

/* line 1613, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-customer-tabs {
  border-bottom: 1px solid rgba(20, 13, 35, 0.15);
}

/* line 1621, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
#edit-customer-name-icon {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s ease;
}

/* line 1625, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
#edit-customer-name-icon:hover {
  color: #C38761;
}

/* line 1629, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode #edit-customer-name-icon {
  color: rgba(20, 13, 35, 0.7);
}

/* line 1632, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode #edit-customer-name-icon:hover {
  color: #C38761;
}

/* ==========================================================================
   MODAL ORGANISATION - Styles spécifiques pour la modal d'ajout d'organisation
   ========================================================================== */
/* line 1642, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto;
  padding: 50px 0;
}

/* line 1656, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-modal.active {
  display: flex !important;
}

/* line 1661, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-modal-content {
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
  width: 900px;
  max-width: 95%;
  max-height: 90vh;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* line 1678, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-organization-modal-content {
  background: rgba(254, 254, 254, 0.98);
  border: 1px solid rgba(20, 13, 35, 0.15);
  box-shadow: 0 8px 32px rgba(20, 13, 35, 0.15);
  color: #140D23;
}

/* line 1686, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-modal-content::-webkit-scrollbar {
  width: 8px;
}

/* line 1690, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-modal-content::-webkit-scrollbar-track {
  background: rgba(254, 254, 254, 0.1);
  border-radius: 10px;
}

/* line 1693, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-organization-modal-content::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 1698, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-modal-content::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 1701, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-modal-content::-webkit-scrollbar-thumb:hover {
  background: #fefefe;
}

/* line 1703, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-organization-modal-content::-webkit-scrollbar-thumb:hover {
  background: #140D23;
}

/* line 1710, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fefefe;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(254, 254, 254, 0.1);
  flex-shrink: 0;
}

/* line 1720, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-organization-modal-header {
  color: #140D23;
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 1725, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-modal-header h2, .adv-organization-modal-header .h2 {
  color: #fefefe !important;
  font-size: 1.4rem;
  margin: 0;
  font-weight: 600;
}

/* line 1730, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-organization-modal-header h2, .lightmode .adv-organization-modal-header .h2 {
  color: #140D23 !important;
}

/* line 1736, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-modal-close {
  color: rgba(254, 254, 254, 0.8);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s ease;
  background: none;
  border: none;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* line 1750, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-organization-modal-close {
  color: #140D23;
}

/* line 1754, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-modal-close:hover {
  color: #C38761;
  background: rgba(254, 254, 254, 0.1);
}

/* line 1757, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-organization-modal-close:hover {
  background: rgba(20, 13, 35, 0.1);
}

/* line 1763, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-progress-container {
  flex-shrink: 0;
  margin-bottom: 20px;
}

/* line 1767, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-progress-container .adv-organization-progress-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

/* line 1772, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-progress-container .adv-organization-progress-steps .adv-organization-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

/* line 1778, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-progress-container .adv-organization-progress-steps .adv-organization-progress-step .adv-organization-step-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(254, 254, 254, 0.2);
  color: #fefefe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

/* line 1792, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-organization-progress-container .adv-organization-progress-steps .adv-organization-progress-step .adv-organization-step-circle {
  background-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 1797, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-progress-container .adv-organization-progress-steps .adv-organization-progress-step .adv-organization-step-circle.active {
  background-color: #C38761;
  color: #140D23;
}

/* line 1802, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-progress-container .adv-organization-progress-steps .adv-organization-progress-step .adv-organization-step-circle.completed {
  background-color: #4CAF50;
  color: white;
}

/* line 1808, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-progress-container .adv-organization-progress-steps .adv-organization-progress-step .adv-organization-step-label {
  font-size: 0.7rem;
  text-align: center;
  color: rgba(254, 254, 254, 0.7);
}

/* line 1813, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-organization-progress-container .adv-organization-progress-steps .adv-organization-progress-step .adv-organization-step-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 1820, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-progress-container .adv-organization-progress-bar {
  height: 4px;
  background-color: rgba(254, 254, 254, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

/* line 1826, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-organization-progress-container .adv-organization-progress-bar {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 1830, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-progress-container .adv-organization-progress-bar .adv-organization-progress-fill {
  height: 100%;
  background-color: #C38761;
  transition: width 0.3s ease;
  border-radius: 2px;
}

/* line 1839, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-form-container {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 10px;
  /* Personnalisation de la barre de défilement */
}

/* line 1846, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-form-container::-webkit-scrollbar {
  width: 4px;
  /* Largeur de la barre de défilement */
}

/* line 1850, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-form-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  /* Couleur de l'arrière-plan de la barre */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 1855, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-form-container::-webkit-scrollbar-thumb {
  background: #C38761;
  /* Couleur de la barre de défilement */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 1860, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-form-container::-webkit-scrollbar-thumb:hover {
  background: #fefefe;
  /* Couleur de la barre au survol */
}

/* line 1864, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-form-container .adv-organization-form-step {
  display: none;
}

/* line 1867, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-form-container .adv-organization-form-step.active {
  display: block;
}

/* line 1871, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-form-container .adv-organization-form-step .adv-organization-step-title {
  color: #fefefe;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

/* line 1877, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-organization-form-container .adv-organization-form-step .adv-organization-step-title {
  color: #140D23;
}

/* line 1884, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-form-columns {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

/* line 1889, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-form-columns .adv-organization-form-column {
  flex: 1;
}

/* line 1892, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group {
  margin-bottom: 15px;
}

/* line 1895, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group label {
  display: block;
  margin-bottom: 5px;
  color: rgba(254, 254, 254, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

/* line 1902, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group label {
  color: rgba(20, 13, 35, 0.9);
}

/* line 1907, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group .adv-organization-form-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(254, 254, 254, 0.2);
  border-radius: 6px;
  background-color: rgba(254, 254, 254, 0.1);
  color: #fefefe;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

/* line 1917, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group .adv-organization-form-input {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 1923, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group .adv-organization-form-input:focus {
  outline: none;
  border-color: #C38761;
  background-color: rgba(254, 254, 254, 0.15);
}

/* line 1928, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group .adv-organization-form-input:focus {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 1933, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group .adv-organization-form-input::placeholder {
  color: rgba(254, 254, 254, 0.5);
}

/* line 1935, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group .adv-organization-form-input::placeholder {
  color: rgba(20, 13, 35, 0.5);
}

/* line 1941, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group .adv-organization-siret-input-group {
  display: flex;
  gap: 10px;
}

/* line 1945, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group .adv-organization-siret-input-group .adv-organization-form-input {
  flex: 1;
}

/* line 1949, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group .adv-organization-siret-input-group .adv-organization-verify-btn {
  padding: 10px 15px;
  background-color: #C38761;
  color: #140D23;
  border: none;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

/* line 1961, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group .adv-organization-siret-input-group .adv-organization-verify-btn:hover {
  background-color: #af6c42;
}

/* line 1967, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group .adv-organization-form-hint {
  font-size: 0.75rem;
  color: rgba(254, 254, 254, 0.6);
  margin-top: 5px;
}

/* line 1972, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group .adv-organization-form-hint {
  color: rgba(20, 13, 35, 0.6);
}

/* line 1978, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group #siret-verification-result {
  margin-top: 8px;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* line 1985, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group #siret-verification-result.siret-result-loading {
  background-color: rgba(195, 135, 97, 0.2);
  color: #C38761;
  border: 1px solid rgba(195, 135, 97, 0.3);
}

/* line 1990, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group #siret-verification-result.siret-result-loading {
  background-color: rgba(195, 135, 97, 0.1);
  color: #8a5534;
  border-color: rgba(195, 135, 97, 0.4);
}

/* line 1997, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group #siret-verification-result.siret-result-success {
  background-color: rgba(76, 175, 80, 0.2);
  color: #4CAF50;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

/* line 2002, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group #siret-verification-result.siret-result-success {
  background-color: rgba(76, 175, 80, 0.1);
  color: #2d682f;
  border-color: rgba(76, 175, 80, 0.4);
}

/* line 2009, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group #siret-verification-result.siret-result-error {
  background-color: rgba(244, 67, 54, 0.2);
  color: #f44336;
  border: 1px solid rgba(244, 67, 54, 0.3);
}

/* line 2014, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group #siret-verification-result.siret-result-error {
  background-color: rgba(244, 67, 54, 0.1);
  color: #ba160a;
  border-color: rgba(244, 67, 54, 0.4);
}

/* line 2022, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-form-columns .adv-organization-form-column .adv-organization-form-group .adv-organization-spacer-hint {
  height: 20px;
}

/* line 2029, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-address-search-container {
  margin-bottom: 20px;
}

/* line 2032, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-address-search-container .adv-organization-form-group {
  margin-bottom: 10px;
}

/* line 2035, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-address-search-container .adv-organization-form-group .adv-organization-form-hint {
  font-size: 0.8rem;
  color: rgba(254, 254, 254, 0.7);
  font-style: italic;
  margin-top: 5px;
}

/* line 2041, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-organization-address-search-container .adv-organization-form-group .adv-organization-form-hint {
  color: rgba(20, 13, 35, 0.7);
}

/* line 2047, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-address-search-container .adv-organization-form-group .address-autocomplete {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(254, 254, 254, 0.2);
  border-radius: 6px;
  background-color: rgba(254, 254, 254, 0.1);
  color: #fefefe;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

/* line 2057, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-organization-address-search-container .adv-organization-form-group .address-autocomplete {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 2063, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-address-search-container .adv-organization-form-group .address-autocomplete:focus {
  outline: none;
  border-color: #C38761;
  background-color: rgba(254, 254, 254, 0.15);
}

/* line 2068, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-organization-address-search-container .adv-organization-form-group .address-autocomplete:focus {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 2073, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-address-search-container .adv-organization-form-group .address-autocomplete::placeholder {
  color: rgba(254, 254, 254, 0.5);
}

/* line 2075, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-organization-address-search-container .adv-organization-form-group .address-autocomplete::placeholder {
  color: rgba(20, 13, 35, 0.5);
}

/* line 2083, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

/* line 2089, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-checkbox-wrapper .adv-organization-form-checkbox {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* line 2095, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-checkbox-wrapper .adv-organization-checkbox-label {
  color: rgba(254, 254, 254, 0.9);
  font-size: 0.9rem;
  cursor: pointer;
  opacity: 1;
}

/* line 2100, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-organization-checkbox-wrapper .adv-organization-checkbox-label {
  color: rgba(20, 13, 35, 0.9);
}

/* line 2106, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-checkbox-group-inline {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

/* line 2111, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-checkbox-group-inline .adv-organization-checkbox-wrapper {
  margin-bottom: 0;
}

/* line 2116, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-form-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(254, 254, 254, 0.1);
  margin-top: 20px;
  flex-shrink: 0;
}

/* line 2126, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-organization-form-navigation {
  border-top-color: rgba(20, 13, 35, 0.1);
}

/* line 2130, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-form-navigation .adv-organization-nav-left {
  display: flex;
  gap: 10px;
}

/* line 2135, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-form-navigation .adv-organization-nav-right {
  display: flex;
  gap: 10px;
}

/* line 2140, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-form-navigation .adv-organization-form-button {
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

/* line 2149, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-form-navigation .adv-organization-form-button.secondary {
  background-color: rgba(254, 254, 254, 0.1);
  color: #fefefe;
  border: 1px solid rgba(254, 254, 254, 0.2);
}

/* line 2154, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-organization-form-navigation .adv-organization-form-button.secondary {
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 2160, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-form-navigation .adv-organization-form-button.secondary:hover {
  background-color: rgba(254, 254, 254, 0.2);
}

/* line 2163, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-organization-form-navigation .adv-organization-form-button.secondary:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* line 2169, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-form-navigation .adv-organization-form-button.primary {
  background-color: #C38761;
  color: #140D23;
}

/* line 2173, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-form-navigation .adv-organization-form-button.primary:hover {
  background-color: #af6c42;
}

/* line 2178, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-form-navigation .adv-organization-form-button.cancel-btn {
  background-color: rgba(254, 254, 254, 0.1);
  color: #fefefe;
  border: 1px solid rgba(254, 254, 254, 0.2);
}

/* line 2183, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-organization-form-navigation .adv-organization-form-button.cancel-btn {
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 2189, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.adv-organization-form-navigation .adv-organization-form-button.cancel-btn:hover {
  background-color: rgba(254, 254, 254, 0.2);
}

/* line 2192, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
.lightmode .adv-organization-form-navigation .adv-organization-form-button.cancel-btn:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

@media (max-width: 768px) {
  /* line 2202, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
  .adv-organization-modal-content {
    width: 95%;
    padding: 15px;
  }
  /* line 2207, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
  .adv-organization-form-columns {
    flex-direction: column;
    gap: 10px;
  }
  /* line 2214, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
  .adv-organization-progress-steps .adv-organization-progress-step .adv-organization-step-label {
    font-size: 0.6rem;
  }
  /* line 2220, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
  .adv-organization-form-navigation {
    flex-direction: column;
    gap: 15px;
  }
  /* line 2224, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
  .adv-organization-form-navigation .adv-organization-nav-left,
.adv-organization-form-navigation .adv-organization-nav-right {
    width: 100%;
    justify-content: center;
  }
  /* line 2230, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer.scss */
  .adv-organization-form-navigation .adv-organization-form-button {
    width: 100%;
  }
}

/* ==========================================================================
   CONTACT SHOW - MODULE CRM
   Structure pour l'affichage détaillé d'un show-customer-contact
   ========================================================================== */
/* line 6, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-show-capsule {
  width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 05px;
}

/* line 17, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-show-capsule.lightmode {
  color: #140D23;
}

/* line 19, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-show-capsule.lightmode h3, .show-customer-contact-show-capsule.lightmode .h3 {
  color: #140D23 !important;
}

/* line 22, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-show-capsule.lightmode i {
  color: #140D23 !important;
}

/* line 27, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-show-capsule.nightmode {
  color: #fefefe;
}

/* En-tête avec titre et bouton retour */
/* line 33, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-show-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

/* line 39, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-show-header h1, .show-customer-contact-show-header .h1 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

/* line 45, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-show-header .back-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.2s ease;
  background-color: rgba(254, 254, 254, 0.1);
  color: #fefefe;
}

/* line 57, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-show-capsule.lightmode .show-customer-contact-show-header .back-button {
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 62, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-show-header .back-button:hover {
  background-color: rgba(254, 254, 254, 0.2);
}

/* line 65, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-show-capsule.lightmode .show-customer-contact-show-header .back-button:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* line 70, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-show-header .back-button i {
  font-size: 0.8rem;
}

/* Conteneur principal */
/* line 77, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-card-container {
  height: 400px;
  background-color: rgba(254, 254, 254, 0.1);
  border-radius: 15px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* line 88, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-show-capsule.lightmode .show-customer-contact-card-container {
  background-color: rgba(20, 13, 35, 0.03);
}

/* Rangées */
/* line 94, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-info-row {
  display: flex;
  gap: 20px;
}

@media (max-width: 768px) {
  /* line 94, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
  .show-customer-contact-info-row {
    flex-direction: column;
  }
}

/* Sections */
/* line 105, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-info-section.full-width {
  width: 100%;
}

/* line 109, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-info-section.half-width {
  width: calc(50% - 10px);
}

@media (max-width: 768px) {
  /* line 109, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
  .show-customer-contact-info-section.half-width {
    width: 100%;
  }
}

/* Carte de nom principal */
/* line 119, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-name-card {
  border-radius: 12px;
  overflow: hidden;
  background-color: rgba(254, 254, 254, 0.07);
  border: 1px solid rgba(254, 254, 254, 0.3);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
}

/* line 128, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-show-capsule.lightmode .show-customer-contact-name-card {
  background-color: rgba(20, 13, 35, 0.07);
}

/* line 132, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-name-card h2, .show-customer-contact-name-card .h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-color-primary);
}

/* Cartes d'information */
/* line 140, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-info-card {
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(254, 254, 254, 0.07);
  border: 1px solid rgba(254, 254, 254, 0.3);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* line 150, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-show-capsule.lightmode .show-customer-contact-info-card {
  background-color: rgba(20, 13, 35, 0.07);
}

/* line 154, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-info-card.comments-card, .show-customer-contact-info-card.appointments-card {
  min-height: 145px;
}

/* line 159, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-info-card .card-title {
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(254, 254, 254, 0.1);
  border-bottom: 1px solid rgba(254, 254, 254, 0.1);
  /* Bouton d'ajout */
}

/* line 167, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-show-capsule.lightmode .show-customer-contact-info-card .card-title {
  background-color: rgba(20, 13, 35, 0.1);
  border-bottom: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 172, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-info-card .card-title h3, .show-customer-contact-info-card .card-title .h3 {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
}

/* line 178, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-info-card .card-title i {
  font-size: 1rem;
}

/* line 183, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-info-card .card-title .add-btn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: rgba(254, 254, 254, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  margin: 0;
  margin-left: auto;
  outline: none;
}

/* line 200, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-show-capsule.lightmode .show-customer-contact-info-card .card-title .add-btn {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 206, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-info-card .card-title .add-btn:hover {
  background-color: rgba(254, 254, 254, 0.2);
}

/* line 209, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-show-capsule.lightmode .show-customer-contact-info-card .card-title .add-btn:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* line 216, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-info-card .card-content {
  padding: 1rem;
  flex-grow: 1;
}

/* line 220, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-info-card .card-content.scrollable {
  max-height: 200px;
  overflow-y: auto;
}

/* line 224, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-info-card .card-content.scrollable::-webkit-scrollbar {
  width: 6px;
}

/* line 228, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-info-card .card-content.scrollable::-webkit-scrollbar-track {
  background: rgba(254, 254, 254, 0.05);
}

/* line 232, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-info-card .card-content.scrollable::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 3px;
}

/* line 238, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-show-capsule.lightmode .show-customer-contact-info-card .card-content.scrollable::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.05);
}

/* line 244, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-info-card .card-content .email-link,
.show-customer-contact-info-card .card-content .phone-link {
  font-size: 0.9rem;
  color: #C38761;
  text-decoration: none;
}

/* line 250, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-info-card .card-content .email-link:hover,
.show-customer-contact-info-card .card-content .phone-link:hover {
  text-decoration: underline;
}

/* line 255, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-info-card .card-content .no-data {
  font-size: 0.9rem;
  color: rgba(254, 254, 254, 0.5);
  font-style: italic;
}

/* line 260, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-show-capsule.lightmode .show-customer-contact-info-card .card-content .no-data {
  color: rgba(20, 13, 35, 0.5);
}

/* Styles pour les commentaires */
/* line 268, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.comment-item {
  padding: 12px;
  background-color: rgba(254, 254, 254, 0.05);
  border-radius: 8px;
  margin-bottom: 12px;
  border-left: 3px solid #C38761;
}

/* line 275, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-show-capsule.lightmode .comment-item {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 279, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.comment-item .comment-header {
  margin-bottom: 8px;
  font-size: 0.75rem;
  color: rgba(254, 254, 254, 0.7);
}

/* line 284, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-show-capsule.lightmode .comment-item .comment-header {
  color: rgba(20, 13, 35, 0.7);
}

/* line 289, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.comment-item .comment-content {
  margin-bottom: 5px;
  word-break: break-word;
}

/* line 290, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.comment-item .comment-content p {
  margin: 0;
  font-size: 0.85rem;
}

/* line 298, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.comment-item .comment-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(254, 254, 254, 0.7);
}

/* line 304, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-show-capsule.lightmode .comment-item .comment-meta {
  color: rgba(20, 13, 35, 0.7);
}

/* line 308, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.comment-item .comment-meta .comment-date {
  font-style: italic;
}

/* line 312, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.comment-item .comment-meta .comment-user {
  font-weight: 500;
}

/* Styles pour les rendez-vous */
/* line 319, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.appointment-item {
  padding: 12px;
  background-color: rgba(254, 254, 254, 0.05);
  border-radius: 8px;
  margin-bottom: 12px;
}

/* line 325, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-show-capsule.lightmode .appointment-item {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 329, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.appointment-item .appointment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

/* line 335, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.appointment-item .appointment-header .appointment-date {
  font-size: 0.75rem;
  color: rgba(254, 254, 254, 0.7);
}

/* line 339, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-show-capsule.lightmode .appointment-item .appointment-header .appointment-date {
  color: rgba(20, 13, 35, 0.7);
}

/* line 344, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.appointment-item .appointment-header .appointment-status {
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 4px;
}

/* line 349, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.appointment-item .appointment-header .appointment-status.a_venir {
  background-color: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
}

/* line 353, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-show-capsule.lightmode .appointment-item .appointment-header .appointment-status.a_venir {
  background-color: rgba(46, 204, 113, 0.4);
  color: #1e8449;
}

/* line 359, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.appointment-item .appointment-header .appointment-status.termine {
  background-color: rgba(52, 152, 219, 0.2);
  color: #3498db;
}

/* line 363, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-show-capsule.lightmode .appointment-item .appointment-header .appointment-status.termine {
  background-color: rgba(52, 152, 219, 0.4);
  color: #1a5276;
}

/* line 369, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.appointment-item .appointment-header .appointment-status.abandonne {
  background-color: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
}

/* line 373, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.show-customer-contact-show-capsule.lightmode .appointment-item .appointment-header .appointment-status.abandonne {
  background-color: rgba(231, 76, 60, 0.4);
  color: #a93226;
}

/* line 382, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.appointment-item .appointment-details p {
  margin: 0 0 4px 0;
  font-size: 0.85rem;
}

/* Styles pour les modals */
/* line 390, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.custom-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.783);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1050;
}

/* line 402, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.custom-modal-overlay.active {
  display: flex;
  animation: fadeIn 0.3s;
}

/* line 408, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.custom-modal {
  background-color: rgba(59, 57, 57, 0.4);
  color: black;
  border-radius: 5px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}

/* line 420, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.custom-modal-overlay.active .custom-modal {
  transform: translateY(0);
  opacity: 1;
}

/* line 426, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.custom-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #e9ecef;
}

/* line 434, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.custom-modal-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 500;
}

/* line 440, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.custom-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #6c757d;
}

/* line 447, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.custom-modal-close:hover {
  color: #343a40;
}

/* line 452, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.custom-modal-body {
  padding: 10px;
}

/* line 455, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.custom-modal-body .form-group {
  margin-bottom: 1.25rem !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

/* line 463, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.custom-modal-body .form-control,
.custom-modal-body input[type="text"],
.custom-modal-body input[type="email"],
.custom-modal-body textarea {
  width: 85% !important;
  height: 38px !important;
  padding: 8px 12px !important;
  border-radius: 4px !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: white !important;
  font-size: 0.9rem !important;
  box-sizing: border-box !important;
  margin: 0 auto !important;
}

/* line 479, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.custom-modal-body textarea.form-control {
  height: auto !important;
  min-height: 80px !important;
}

/* line 485, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.custom-modal-footer {
  padding: 10px 0 10px 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* line 492, app/assets/stylesheets/pages/servicespace/back-office/adv/customer_management/_show_customer_contact.scss */
.modal-label,
.custom-modal-body label,
.custom-modal-body .form-group label,
.custom-modal form label {
  display: block !important;
  text-transform: capitalize !important;
  font-weight: 500 !important;
  margin-bottom: 0.5rem !important;
  color: #fefefe !important;
  opacity: 1 !important;
  visibility: visible !important;
  font-size: 0.9rem !important;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.5) !important;
  width: 100% !important;
  text-align: center !important;
  padding-left: 1.5rem !important;
}

/* Animation pour l'apparition du modal */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* line 1, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-capsule {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 10px 20px 10px 20px;
  font-size: 1rem;
  gap: 10px;
}

/* line 12, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-capsule.lightmode {
  color: #140D23;
}

/* line 14, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-capsule.lightmode .discount-input {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 18, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-capsule.lightmode .price-input {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 22, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-capsule.lightmode .price-ttc-container {
  color: #140D23;
}

/* line 25, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-capsule.lightmode .edit-invoice-transaction-choice {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 29, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-capsule.lightmode .search-input {
  border-color: transparent !important;
}

/* line 31, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-capsule.lightmode .search-input:focus {
  border-color: transparent !important;
  box-shadow: none !important;
}

/* line 36, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-capsule.lightmode .recipient-choice {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 40, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-capsule.lightmode #publicMarket {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 44, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-capsule.lightmode #privateMarket {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 50, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-capsule .form-group {
  margin: 0;
}

/* line 54, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-capsule form {
  display: flex !important;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  align-items: center;
  height: 100%;
}

/* Card de Configuration */
/* line 65, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-configuration-card {
  width: 100%;
  max-width: 1400px;
  background: linear-gradient(135deg, rgba(254, 254, 254, 0.1) 0%, rgba(254, 254, 254, 0.05) 100%);
  border: 1px solid rgba(254, 254, 254, 0.2);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

/* line 77, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-configuration-card {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.08) 0%, rgba(20, 13, 35, 0.03) 100%);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 83, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-config-header {
  text-align: center;
  margin-bottom: 30px;
}

/* line 87, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-config-header h2, .adv-edit-invoice-config-header .h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fefefe;
  margin-bottom: 8px;
}

/* line 93, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-config-header h2, .lightmode .adv-edit-invoice-config-header .h2 {
  color: #140D23;
}

/* line 98, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-config-header p {
  font-size: 0.9rem;
  color: rgba(254, 254, 254, 0.7);
}

/* line 102, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-config-header p {
  color: rgba(20, 13, 35, 0.7);
}

/* line 108, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-config-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* line 114, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-config-section {
  width: 100%;
}

/* line 118, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-config-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 124, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-config-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 129, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-config-label:has(i) {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

/* line 134, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-config-label:has(i) > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 141, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-config-label i {
  font-size: 1.1rem;
  color: #C38761;
  flex-shrink: 0;
}

/* line 147, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-config-label h3, .adv-edit-invoice-config-label .h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fefefe;
  margin: 0;
}

/* line 153, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-config-label h3, .lightmode .adv-edit-invoice-config-label .h3 {
  color: #140D23;
}

/* line 158, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-config-label small, .adv-edit-invoice-config-label .small {
  font-size: 0.75rem;
  color: rgba(254, 254, 254, 0.6);
  font-style: italic;
  margin-top: 2px;
}

/* line 164, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-config-label small, .lightmode .adv-edit-invoice-config-label .small {
  color: rgba(20, 13, 35, 0.6);
}

/* line 170, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-config-select {
  width: auto;
  background: rgba(254, 254, 254, 0.08);
  border: 1px solid rgba(254, 254, 254, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  color: #fefefe;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

/* line 180, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-config-select {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 186, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-config-select:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 192, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-config-select option {
  background: #140D23;
  color: #fefefe;
}

/* Sélecteur de type de transaction */
/* line 199, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-transaction-selector {
  display: flex;
  gap: 12px;
}

/* line 203, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-transaction-selector .edit-invoice-transaction-choice {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(254, 254, 254, 0.08);
  border: 1px solid rgba(254, 254, 254, 0.2);
  border-radius: 12px;
  color: #fefefe;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 219, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-transaction-selector .edit-invoice-transaction-choice {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 225, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-transaction-selector .edit-invoice-transaction-choice i {
  font-size: 1rem;
  color: #C38761;
}

/* line 230, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-transaction-selector .edit-invoice-transaction-choice:hover {
  background: rgba(254, 254, 254, 0.12);
  border-color: rgba(254, 254, 254, 0.3);
  transform: translateY(-1px);
}

/* line 235, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-transaction-selector .edit-invoice-transaction-choice:hover {
  background: rgba(20, 13, 35, 0.12);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 241, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-transaction-selector .edit-invoice-transaction-choice.selected {
  background: #C38761;
  border-color: #C38761;
  color: #140D23;
}

/* line 246, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-transaction-selector .edit-invoice-transaction-choice.selected i {
  color: #140D23;
}

/* Contenu des transactions */
/* line 254, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-transaction-content {
  margin-top: 20px;
  padding: 20px;
  background: rgba(254, 254, 254, 0.05);
  border: 1px solid rgba(254, 254, 254, 0.15);
  border-radius: 12px;
}

/* line 261, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-transaction-content {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 267, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-transaction-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(254, 254, 254, 0.08);
  border-radius: 8px;
}

/* line 275, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-transaction-info {
  background: rgba(20, 13, 35, 0.08);
}

/* line 279, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-transaction-info i {
  color: #C38761;
  font-size: 1.1rem;
}

/* line 284, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-transaction-info span {
  color: #fefefe;
  font-size: 0.9rem;
  font-weight: 500;
}

/* line 289, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-transaction-info span {
  color: #140D23;
}

/* line 296, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-document-search h4, .adv-edit-invoice-document-search .h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fefefe;
  margin-bottom: 15px;
}

/* line 302, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-document-search h4, .lightmode .adv-edit-invoice-document-search .h4 {
  color: #140D23;
}

/* line 307, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-document-search .search-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* line 313, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-document-search .form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 319, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-document-search .filter {
  width: auto;
  background: rgba(254, 254, 254, 0.08);
  border: 1px solid rgba(254, 254, 254, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  color: #fefefe;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

/* line 329, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-document-search .filter {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 335, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-document-search .filter:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 341, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-document-search .filter option {
  background: #140D23;
  color: #fefefe;
}

/* Styles pour la recherche d'articles */
/* line 349, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-search-filters {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

/* line 356, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-filter-group {
  display: flex;
  gap: 12px;
  width: 100%;
}

@media (max-width: 768px) {
  /* line 356, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
  .adv-edit-invoice-filter-group {
    flex-direction: column;
  }
}

/* line 366, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-search-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* line 372, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-search-input {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 378, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-search-input .search-form {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

/* line 385, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-search-input i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(254, 254, 254, 0.6);
  font-size: 0.9rem;
  z-index: 2;
}

/* line 394, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-search-input i {
  color: rgba(20, 13, 35, 0.6);
}

/* line 399, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-search-input button {
  all: unset;
  padding: 8px 12px;
  background: #C38761;
  border-radius: 8px;
  color: #140D23;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 408, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-search-input button:hover {
  background: #864B28;
  transform: scale(1.05);
}

/* line 413, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-search-input button i {
  position: static;
  transform: none;
  color: #140D23;
}

/* Utilise maintenant la classe générique adv-searchbar */
/* Styles pour le tableau d'articles */
/* line 424, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-articles-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 431, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-articles-table {
  width: 100%;
  background: rgba(254, 254, 254, 0.05);
  border: 1px solid rgba(254, 254, 254, 0.15);
  border-radius: 12px;
  overflow: hidden;
}

/* line 438, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-articles-table {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 444, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-articles-table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 1px;
  justify-items: center;
  align-items: center;
  background: rgba(254, 254, 254, 0.1);
}

/* line 452, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-articles-table-header {
  background: rgba(20, 13, 35, 0.1);
}

/* line 455, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-articles-table-header .adv-edit-invoice-table-cell {
  padding: 12px 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  color: #fefefe;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 466, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-articles-table-header .adv-edit-invoice-table-cell {
  color: #140D23;
}

/* line 470, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-articles-table-header .adv-edit-invoice-table-cell.adv-header-article {
  text-align: left;
  padding-left: 16px;
}

/* line 479, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-articles-table-body .entry {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 1px;
  border-bottom: 1px solid rgba(254, 254, 254, 0.1);
  transition: all 0.3s ease;
}

/* line 486, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-articles-table-body .entry {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 490, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-articles-table-body .entry:hover {
  background: rgba(254, 254, 254, 0.05);
}

/* line 493, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-articles-table-body .entry:hover {
  background: rgba(20, 13, 35, 0.05);
}

/* line 498, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-articles-table-body .entry.new-entry {
  cursor: pointer;
  color: rgba(254, 254, 254, 0.6);
}

/* line 502, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-articles-table-body .entry.new-entry {
  color: rgba(20, 13, 35, 0.6);
}

/* line 506, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-articles-table-body .entry.new-entry:hover {
  background: rgba(195, 135, 97, 0.1);
  color: #C38761;
}

/* line 510, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-articles-table-body .entry.new-entry:hover {
  background: rgba(195, 135, 97, 0.1);
  color: #C38761;
}

/* line 517, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-articles-table-body .entry > div {
  padding: 12px 8px;
  font-size: 0.8rem;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 526, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-articles-table-body .entry > div.adv-edit-invoice-row1-subrow4-list-column-article {
  text-align: left;
  padding-left: 16px;
  justify-content: flex-start;
  white-space: nowrap;
}

/* line 536, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-total-section {
  display: flex;
  justify-content: center;
  padding: 16px;
  gap: 10px;
  background: rgba(254, 254, 254, 0.05);
  border-radius: 12px;
}

/* line 544, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-total-section {
  background: rgba(20, 13, 35, 0.05);
}

/* line 549, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-total-amount {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1rem;
  font-weight: 600;
}

/* line 556, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-total-amount .adv-label {
  color: rgba(254, 254, 254, 0.8);
}

/* line 559, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-total-amount .adv-label {
  color: rgba(20, 13, 35, 0.8);
}

/* line 564, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-total-amount .adv-value {
  color: #C38761;
  font-size: 1.1rem;
}

/* line 568, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-total-amount .adv-value {
  color: #C38761;
}

/* Styles pour les entrées du tableau (articles ajoutés) */
/* line 575, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.entry {
  width: 100%;
  padding: 10px;
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 581, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.entry:last-child {
  border-bottom: none;
}

/* line 585, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .entry {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 589, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.entry.new-entry {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
}

/* line 596, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .entry.new-entry {
  background-color: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 601, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.entry.new-entry:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.5);
}

/* line 605, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .entry.new-entry:hover {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 611, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.entry.new-entry .adv-edit-invoice-row1-subrow4-list-column-article {
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
}

/* line 615, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .entry.new-entry .adv-edit-invoice-row1-subrow4-list-column-article {
  color: rgba(20, 13, 35, 0.7);
}

/* line 620, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.entry.new-entry .actions-container {
  color: #C38761;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 627, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.entry.new-entry .actions-container i {
  color: #C38761;
  font-size: 1.2rem;
  transition: all 0.2s ease;
}

/* line 632, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.entry.new-entry .actions-container i:hover {
  color: #864B28;
  transform: scale(1.1);
}

/* line 638, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.entry.new-entry .actions-container:hover {
  transform: scale(1.05);
}

/* line 644, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.entry .quantity-input {
  all: unset;
  width: 70%;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(254, 254, 254, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 658, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .entry .quantity-input {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 663, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.entry .quantity-input:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 667, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .entry .quantity-input:focus {
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 674, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.entry .discount-input {
  all: unset;
  width: 10%;
  display: flex;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(254, 254, 254, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 689, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .entry .discount-input {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 694, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.entry .discount-input:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 698, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .entry .discount-input:focus {
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 705, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.entry .article-input {
  all: unset;
  width: 50%;
  display: flex;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(254, 254, 254, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 720, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .entry .article-input {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 725, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.entry .article-input:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 729, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .entry .article-input:focus {
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 736, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.entry .price-input {
  all: unset;
  width: 15%;
  display: flex;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(254, 254, 254, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 751, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .entry .price-input {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 756, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.entry .price-input:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 760, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .entry .price-input:focus {
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 770, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.results {
  min-height: 50px;
  max-height: 200px;
  overflow-y: auto;
  width: 100%;
  /* Personnalisation de la barre de défilement */
}

/* line 777, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.results::-webkit-scrollbar {
  width: 5px;
}

/* line 781, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.results::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 786, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.results::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
  border: 4px solid #e8e8e8;
}

/* line 792, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.results::-webkit-scrollbar-thumb:hover {
  background: #fefefe;
}

/* line 797, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.search-results-articles {
  display: flex;
  min-height: 30px;
  width: 98% !important;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 5px;
  border-radius: 0.375rem;
  flex-wrap: nowrap;
}

/* line 808, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.search-results-articles label {
  opacity: 1;
}

/* line 812, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.search-results-articles .articles {
  font-size: 0.7rem !important;
  margin: 0;
  cursor: pointer;
  font-weight: normal !important;
}

/* line 817, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.search-results-articles .articles p {
  color: #fefefe !important;
}

/* line 820, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .search-results-articles .articles p {
  color: #140D23 !important;
}

/* line 826, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.search-results-articles:hover {
  background-color: rgba(254, 254, 254, 0.5);
  transition: transform 0.3s ease;
}

/* line 830, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .search-results-articles:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 836, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
select {
  all: unset;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(254, 254, 254, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: normal;
  padding: 5px 15px;
}

/* line 849, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode select {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 854, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
select:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 858, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode select:focus {
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 864, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
select option {
  all: unset;
  background-color: #E8E8E8;
  color: #000000;
}

/* line 871, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.trash {
  cursor: pointer;
  font-size: 0.8rem;
}

/* line 874, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.trash:hover {
  color: #A60240;
}

/* Boutons d'actions */
/* line 880, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-row2 {
  width: 80%;
  height: 7.5%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  /* Styles spécifiques pour les boutons d'actions avec pictogrammes */
}

/* line 890, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-row2 form {
  display: flex !important;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  align-items: center;
  height: 100%;
}

/* line 900, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-row2 .form-button, .adv-edit-invoice-row2 .crm-action-button, .adv-edit-invoice-row2 .users-management-container .users-header .add-user-btn, .users-management-container .users-header .adv-edit-invoice-row2 .add-user-btn {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: #C18859;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  /* Style pour le bouton d'abandon (danger) */
  /* Style pour le bouton retour (secondary) */
  /* Adaptation pour le mode clair */
}

/* line 915, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-row2 .form-button:hover, .adv-edit-invoice-row2 .crm-action-button:hover, .adv-edit-invoice-row2 .users-management-container .users-header .add-user-btn:hover, .users-management-container .users-header .adv-edit-invoice-row2 .add-user-btn:hover {
  background-color: #a67548;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* line 921, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-row2 .form-button i, .adv-edit-invoice-row2 .crm-action-button i, .adv-edit-invoice-row2 .users-management-container .users-header .add-user-btn i, .users-management-container .users-header .adv-edit-invoice-row2 .add-user-btn i {
  font-size: 0.9rem;
  color: white;
}

/* line 927, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-row2 .form-button[data-confirm], .adv-edit-invoice-row2 .crm-action-button[data-confirm], .adv-edit-invoice-row2 .users-management-container .users-header .add-user-btn[data-confirm], .users-management-container .users-header .adv-edit-invoice-row2 .add-user-btn[data-confirm] {
  background-color: rgba(231, 76, 60, 0.8);
  border-color: rgba(231, 76, 60, 0.5);
}

/* line 931, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-row2 .form-button[data-confirm]:hover, .adv-edit-invoice-row2 .crm-action-button[data-confirm]:hover, .adv-edit-invoice-row2 .users-management-container .users-header .add-user-btn[data-confirm]:hover, .users-management-container .users-header .adv-edit-invoice-row2 .add-user-btn[data-confirm]:hover {
  background-color: #e74c3c;
}

/* line 937, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-row2 .form-button[href*="show_invoice"], .adv-edit-invoice-row2 .crm-action-button[href*="show_invoice"], .adv-edit-invoice-row2 .users-management-container .users-header .add-user-btn[href*="show_invoice"], .users-management-container .users-header .adv-edit-invoice-row2 .add-user-btn[href*="show_invoice"] {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

/* line 941, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-row2 .form-button[href*="show_invoice"]:hover, .adv-edit-invoice-row2 .crm-action-button[href*="show_invoice"]:hover, .adv-edit-invoice-row2 .users-management-container .users-header .add-user-btn[href*="show_invoice"]:hover, .users-management-container .users-header .adv-edit-invoice-row2 .add-user-btn[href*="show_invoice"]:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 947, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-row2 .form-button, .lightmode .adv-edit-invoice-row2 .crm-action-button, .lightmode .adv-edit-invoice-row2 .users-management-container .users-header .add-user-btn, .users-management-container .users-header .lightmode .adv-edit-invoice-row2 .add-user-btn {
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 951, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-row2 .form-button:hover, .lightmode .adv-edit-invoice-row2 .crm-action-button:hover, .lightmode .adv-edit-invoice-row2 .users-management-container .users-header .add-user-btn:hover, .users-management-container .users-header .lightmode .adv-edit-invoice-row2 .add-user-btn:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 955, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-row2 .form-button[data-confirm], .lightmode .adv-edit-invoice-row2 .crm-action-button[data-confirm], .lightmode .adv-edit-invoice-row2 .users-management-container .users-header .add-user-btn[data-confirm], .users-management-container .users-header .lightmode .adv-edit-invoice-row2 .add-user-btn[data-confirm] {
  background-color: rgba(231, 76, 60, 0.1);
  border-color: rgba(231, 76, 60, 0.3);
  color: #a82315;
}

/* line 960, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-row2 .form-button[data-confirm]:hover, .lightmode .adv-edit-invoice-row2 .crm-action-button[data-confirm]:hover, .lightmode .adv-edit-invoice-row2 .users-management-container .users-header .add-user-btn[data-confirm]:hover, .users-management-container .users-header .lightmode .adv-edit-invoice-row2 .add-user-btn[data-confirm]:hover {
  background-color: rgba(231, 76, 60, 0.2);
}

/* line 965, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-row2 .form-button[href*="show_invoice"], .lightmode .adv-edit-invoice-row2 .crm-action-button[href*="show_invoice"], .lightmode .adv-edit-invoice-row2 .users-management-container .users-header .add-user-btn[href*="show_invoice"], .users-management-container .users-header .lightmode .adv-edit-invoice-row2 .add-user-btn[href*="show_invoice"] {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 969, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-row2 .form-button[href*="show_invoice"]:hover, .lightmode .adv-edit-invoice-row2 .crm-action-button[href*="show_invoice"]:hover, .lightmode .adv-edit-invoice-row2 .users-management-container .users-header .add-user-btn[href*="show_invoice"]:hover, .users-management-container .users-header .lightmode .adv-edit-invoice-row2 .add-user-btn[href*="show_invoice"]:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* line 977, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.userChoice {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 15px;
}

/* line 984, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.userChoice .item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(254, 254, 254, 0.1) 0%, rgba(254, 254, 254, 0.05) 100%);
  border: 1px solid rgba(254, 254, 254, 0.3);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* line 998, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .userChoice .item {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.1) 0%, rgba(20, 13, 35, 0.05) 100%);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 1003, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.userChoice .item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  border-color: rgba(232, 232, 232, 0.6);
  background: linear-gradient(135deg, rgba(254, 254, 254, 0.15) 0%, rgba(254, 254, 254, 0.08) 100%);
}

/* line 1009, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .userChoice .item:hover {
  border-color: rgba(20, 13, 35, 0.4);
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.15) 0%, rgba(20, 13, 35, 0.08) 100%);
}

/* line 1015, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.userChoice .item .item-header {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-grow: 1;
}

/* line 1021, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.userChoice .item .item-header i {
  color: green;
  font-size: 1rem;
  padding: 8px;
  background-color: rgba(195, 135, 97, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* line 1030, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.userChoice .item .item-header p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-color-primary);
  line-height: 1.4;
  transition: color 0.3s ease;
}

/* line 1038, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .userChoice .item .item-header p {
  color: #140D23;
}

/* line 1045, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.userChoice .item:hover .item-header i {
  color: #864B28;
  background-color: rgba(134, 75, 40, 0.15);
  transform: scale(1.1);
}

/* line 1051, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.userChoice .item:hover .item-header p {
  color: #fefefe;
}

/* line 1054, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .userChoice .item:hover .item-header p {
  color: #140D23;
}

/* line 1062, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.recipient-choice-container, .recipient-search {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px;
}

/* line 1071, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.type-of-order-search {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
}

/* line 1079, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-config-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  /* line 1079, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
  .adv-edit-invoice-config-row {
    grid-template-columns: 1fr;
  }
}

/* line 1089, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-config-input {
  width: 100%;
  background: rgba(254, 254, 254, 0.08);
  border: 1px solid rgba(254, 254, 254, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  color: #fefefe;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* line 1101, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-config-input {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 1107, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-config-input:hover {
  border-color: rgba(195, 135, 97, 0.5);
  background: rgba(254, 254, 254, 0.12);
  transform: translateY(-1px);
}

/* line 1112, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-config-input:hover {
  background: rgba(20, 13, 35, 0.12);
}

/* line 1117, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-config-input:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.15);
  background: rgba(254, 254, 254, 0.15);
}

/* line 1123, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-config-input:focus {
  background: rgba(20, 13, 35, 0.15);
}

/* line 1128, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-config-input[type="date"] {
  position: relative;
  font-family: inherit;
}

/* line 1132, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-config-input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  border-radius: 4px;
  padding: 4px;
  filter: invert(1);
  opacity: 0.7;
  transition: all 0.3s ease;
}

/* line 1140, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-config-input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0) brightness(0.3);
}

/* line 1144, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-config-input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
  background: rgba(195, 135, 97, 0.2);
}

/* line 1150, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-config-input[type="date"]:invalid, .adv-edit-invoice-config-input[type="date"]:not(:focus):not(:hover):placeholder-shown {
  color: rgba(254, 254, 254, 0.5);
}

/* line 1154, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-config-input[type="date"]:invalid, .lightmode .adv-edit-invoice-config-input[type="date"]:not(:focus):not(:hover):placeholder-shown {
  color: rgba(20, 13, 35, 0.5);
}

/* line 1159, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-config-input[type="date"]:valid {
  border-color: rgba(195, 135, 97, 0.4);
}

/* line 1165, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-market-type-selector {
  display: flex;
  gap: 12px;
}

/* line 1169, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-market-type-selector .adv-edit-invoice-market-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(254, 254, 254, 0.08);
  border: 1px solid rgba(254, 254, 254, 0.2);
  border-radius: 12px;
  color: #fefefe;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 1185, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-market-type-selector .adv-edit-invoice-market-option {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 1191, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-market-type-selector .adv-edit-invoice-market-option i {
  font-size: 1rem;
  color: #C38761;
}

/* line 1196, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-market-type-selector .adv-edit-invoice-market-option:hover {
  background: rgba(254, 254, 254, 0.12);
  border-color: rgba(254, 254, 254, 0.3);
  transform: translateY(-1px);
}

/* line 1201, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-market-type-selector .adv-edit-invoice-market-option:hover {
  background: rgba(20, 13, 35, 0.12);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 1207, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-market-type-selector .adv-edit-invoice-market-option.selected {
  background: #C38761;
  border-color: #C38761;
  color: #140D23;
}

/* line 1212, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-market-type-selector .adv-edit-invoice-market-option.selected i {
  color: #140D23;
}

/* Section Conditions de paiement */
/* line 1220, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-payment-terms-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

@media (max-width: 768px) {
  /* line 1220, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
  .adv-edit-invoice-payment-terms-selector {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* line 1232, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-payment-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 16px;
  background: rgba(254, 254, 254, 0.05);
  border: 2px solid rgba(254, 254, 254, 0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 120px;
}

/* line 1246, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-payment-option {
  background: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 1251, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-payment-option i {
  font-size: 28px;
  color: rgba(254, 254, 254, 0.6);
  transition: all 0.3s ease;
}

/* line 1256, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-payment-option i {
  color: rgba(20, 13, 35, 0.5);
}

/* line 1261, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-payment-option span {
  font-size: 16px;
  font-weight: 600;
  color: #fefefe;
  text-align: center;
}

/* line 1267, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-payment-option span {
  color: #140D23;
}

/* line 1272, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-payment-option small, .adv-edit-invoice-payment-option .small {
  font-size: 12px;
  color: rgba(254, 254, 254, 0.6);
  text-align: center;
}

/* line 1277, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-payment-option small, .lightmode .adv-edit-invoice-payment-option .small {
  color: rgba(20, 13, 35, 0.6);
}

/* line 1282, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-payment-option:hover {
  transform: translateY(-4px);
  background: rgba(195, 135, 97, 0.1);
  border-color: rgba(195, 135, 97, 0.3);
  box-shadow: 0 8px 20px rgba(195, 135, 97, 0.15);
}

/* line 1288, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-payment-option:hover {
  background: rgba(195, 135, 97, 0.15);
  border-color: rgba(195, 135, 97, 0.4);
}

/* line 1293, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-payment-option:hover i {
  color: #C38761;
  transform: scale(1.1);
}

/* line 1299, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-payment-option.selected {
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.2), rgba(195, 135, 97, 0.1));
  border-color: #C38761;
  box-shadow: 0 4px 16px rgba(195, 135, 97, 0.2);
}

/* line 1304, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-payment-option.selected {
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.25), rgba(195, 135, 97, 0.15));
  border-color: #C38761;
}

/* line 1309, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-payment-option.selected i {
  color: #C38761;
  transform: scale(1.15);
}

/* line 1314, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-payment-option.selected span {
  color: #C38761;
}

/* line 1317, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-payment-option.selected span {
  color: #af6c42;
}

/* line 1324, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-payment-info-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: rgba(254, 254, 254, 0.05);
  border-left: 4px solid #C38761;
  border-radius: 8px;
  margin-top: 16px;
}

/* line 1333, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-payment-info-card {
  background: rgba(20, 13, 35, 0.05);
}

/* line 1337, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-payment-info-card > i {
  font-size: 24px;
  color: #C38761;
  flex-shrink: 0;
  margin-top: 4px;
}

/* line 1344, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-payment-info-card div {
  flex: 1;
}

/* line 1347, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-payment-info-card div p {
  margin: 0 0 12px 0;
  color: #fefefe;
  font-size: 14px;
  line-height: 1.6;
}

/* line 1353, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-payment-info-card div p {
  color: #140D23;
}

/* line 1357, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-payment-info-card div p:last-child {
  margin-bottom: 0;
}

/* line 1361, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-payment-info-card div p strong {
  font-weight: 600;
  color: rgba(254, 254, 254, 0.9);
}

/* line 1365, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-payment-info-card div p strong {
  color: #140D23;
}

/* line 1370, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-payment-info-card div p span {
  color: #C38761;
  font-weight: 500;
}

/* line 1378, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-legal-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(195, 135, 97, 0.1);
  border-radius: 6px;
  margin-top: 8px;
}

/* line 1387, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-legal-note {
  background: rgba(195, 135, 97, 0.15);
}

/* line 1391, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-legal-note i {
  color: #C38761;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Section Récurrence */
/* line 1400, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-recurrence-selector {
  display: flex;
  gap: 12px;
}

/* line 1404, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-recurrence-selector .adv-edit-invoice-recurrence-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(254, 254, 254, 0.08);
  border: 1px solid rgba(254, 254, 254, 0.2);
  border-radius: 12px;
  color: #fefefe;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 1420, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-recurrence-selector .adv-edit-invoice-recurrence-option {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 1426, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-recurrence-selector .adv-edit-invoice-recurrence-option i {
  font-size: 1rem;
  color: #C38761;
}

/* line 1431, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-recurrence-selector .adv-edit-invoice-recurrence-option:hover {
  background: rgba(195, 135, 97, 0.1);
  border-color: #C38761;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* line 1438, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-recurrence-selector .adv-edit-invoice-recurrence-option.selected {
  background: #C38761;
  border-color: #C38761;
  color: #140D23;
}

/* line 1443, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-recurrence-selector .adv-edit-invoice-recurrence-option.selected i {
  color: #140D23;
}

/* line 1450, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-policy-selector {
  display: flex;
  gap: 12px;
}

/* line 1454, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-policy-selector .adv-edit-invoice-policy-choice {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(254, 254, 254, 0.08);
  border: 1px solid rgba(254, 254, 254, 0.2);
  border-radius: 12px;
  color: #fefefe;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 1470, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-policy-selector .adv-edit-invoice-policy-choice {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 1476, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-policy-selector .adv-edit-invoice-policy-choice i {
  font-size: 1rem;
  color: #C38761;
}

/* line 1481, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-policy-selector .adv-edit-invoice-policy-choice:hover {
  background: rgba(195, 135, 97, 0.1);
  border-color: #C38761;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* line 1488, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-policy-selector .adv-edit-invoice-policy-choice.selected {
  background: #C38761;
  border-color: #C38761;
  color: #140D23;
}

/* line 1493, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-policy-selector .adv-edit-invoice-policy-choice.selected i {
  color: #140D23;
}

/* line 1500, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-interval-container {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(254, 254, 254, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

/* line 1509, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-interval-container {
  background: rgba(20, 13, 35, 0.05);
}

/* line 1513, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-interval-container .adv-edit-invoice-interval-prefix,
.adv-edit-invoice-interval-container .adv-edit-invoice-interval-suffix {
  font-weight: 500;
  color: rgba(254, 254, 254, 0.8);
  font-size: 0.85rem;
}

/* line 1519, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-interval-container .adv-edit-invoice-interval-prefix, .lightmode .adv-edit-invoice-interval-container .adv-edit-invoice-interval-suffix {
  color: rgba(20, 13, 35, 0.8);
}

/* line 1524, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-interval-container .adv-edit-invoice-interval-prefix {
  color: rgba(254, 254, 254, 0.6);
}

/* line 1527, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-interval-container .adv-edit-invoice-interval-prefix {
  color: rgba(20, 13, 35, 0.6);
}

/* line 1533, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-config-input-small {
  width: 80px;
  background: rgba(254, 254, 254, 0.08);
  border: 1px solid rgba(254, 254, 254, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  color: #fefefe;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* line 1546, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-config-input-small {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 1552, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-config-input-small:hover {
  border-color: rgba(195, 135, 97, 0.5);
  background: rgba(254, 254, 254, 0.12);
  transform: translateY(-1px);
}

/* line 1557, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-config-input-small:hover {
  background: rgba(20, 13, 35, 0.12);
}

/* line 1562, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-config-input-small:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.15);
  background: rgba(254, 254, 254, 0.15);
}

/* line 1568, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-config-input-small:focus {
  background: rgba(20, 13, 35, 0.15);
}

/* line 1573, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-config-input-small[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

/* line 1577, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-config-input-small[type="number"]::-webkit-outer-spin-button, .adv-edit-invoice-config-input-small[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* line 1585, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-recurrence-summary {
  margin-top: 20px;
}

/* line 1589, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-summary-card {
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.15) 0%, rgba(195, 135, 97, 0.08) 100%);
  border: 1px solid rgba(195, 135, 97, 0.3);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
}

/* line 1596, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-summary-card {
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.2) 0%, rgba(195, 135, 97, 0.1) 100%);
  border-color: rgba(195, 135, 97, 0.4);
}

/* line 1601, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-summary-card h4, .adv-edit-invoice-summary-card .h4 {
  margin: 0 0 16px 0;
  color: #C38761;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 1610, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-summary-card h4, .lightmode .adv-edit-invoice-summary-card .h4 {
  color: #140D23;
}

/* line 1614, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-summary-card h4 i, .adv-edit-invoice-summary-card .h4 i {
  font-size: 1.2rem;
  color: #C38761;
}

/* line 1618, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-summary-card h4 i, .lightmode .adv-edit-invoice-summary-card .h4 i {
  color: #C38761;
}

/* line 1625, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-summary-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 1630, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-summary-content p {
  margin: 0;
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  background: rgba(254, 254, 254, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

/* line 1639, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-summary-content p {
  background: rgba(20, 13, 35, 0.05);
}

/* line 1643, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-summary-content p:hover {
  background: rgba(195, 135, 97, 0.1);
  transform: translateX(4px);
}

/* line 1647, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-summary-content p:hover {
  background: rgba(195, 135, 97, 0.15);
}

/* line 1652, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-summary-content p strong {
  color: #fefefe;
  font-weight: 600;
}

/* line 1656, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-summary-content p strong {
  color: #140D23;
}

/* line 1661, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-summary-content p span {
  color: rgba(254, 254, 254, 0.8);
  font-weight: 500;
}

/* line 1665, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-summary-content p span {
  color: rgba(20, 13, 35, 0.7);
}

/* Section Paiement Personnalisé */
/* line 1673, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-custom-payment-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  background: rgba(254, 254, 254, 0.05);
  border: 1px solid rgba(254, 254, 254, 0.1);
  border-radius: 12px;
  margin-top: 16px;
}

/* line 1684, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-custom-payment-container {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.1);
}

@media (max-width: 768px) {
  /* line 1673, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
  .adv-edit-invoice-custom-payment-container {
    flex-direction: column;
    gap: 16px;
  }
}

/* line 1693, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-custom-payment-container label {
  opacity: 1;
}

/* line 1698, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-custom-payment-input-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 1703, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-custom-payment-input-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(254, 254, 254, 0.8);
  white-space: nowrap;
}

/* line 1709, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-custom-payment-input-group label {
  color: rgba(20, 13, 35, 0.8);
}

/* line 1714, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-custom-payment-input-group input[type="number"] {
  width: 80px;
  background: rgba(254, 254, 254, 0.08);
  border: 1px solid rgba(254, 254, 254, 0.2);
  border-radius: 8px;
  padding: 8px 12px;
  color: #fefefe;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}

/* line 1726, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-custom-payment-input-group input[type="number"] {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 1732, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-custom-payment-input-group input[type="number"]:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.15);
}

/* line 1740, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-custom-payment-option-group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* line 1746, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-custom-checkbox-container {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 10px 16px;
  background: rgba(254, 254, 254, 0.05);
  border: 1px solid rgba(254, 254, 254, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

/* line 1757, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-custom-checkbox-container {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 1762, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-custom-checkbox-container input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(254, 254, 254, 0.3);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

/* line 1773, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-custom-checkbox-container input[type="checkbox"] {
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 1777, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-custom-checkbox-container input[type="checkbox"]:checked {
  background: #C38761;
  border-color: #C38761;
}

/* line 1781, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-custom-checkbox-container input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #140D23;
  font-size: 12px;
  font-weight: bold;
}

/* line 1794, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-custom-checkbox-container:hover {
  background: rgba(195, 135, 97, 0.1);
  border-color: rgba(195, 135, 97, 0.3);
  transform: translateX(2px);
}

/* line 1799, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-custom-checkbox-container:hover .adv-edit-invoice-custom-checkbox-label {
  color: #C38761;
}

/* line 1802, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-custom-checkbox-container:hover .adv-edit-invoice-custom-checkbox-label i {
  transform: scale(1.1);
}

/* line 1809, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-custom-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(254, 254, 254, 0.8);
  transition: all 0.3s ease;
}

/* line 1818, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.lightmode .adv-edit-invoice-custom-checkbox-label {
  color: rgba(20, 13, 35, 0.8);
}

/* line 1822, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_invoice.scss */
.adv-edit-invoice-custom-checkbox-label i {
  font-size: 16px;
  color: #C38761;
  transition: all 0.3s ease;
}

/* ==========================================================================
   INVOICE LIST - MODULE ADV
   Structure principale et composants pour la gestion des factures
   ========================================================================== */
/* line 4, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_validation_alerts.scss */
.quote-button-wrapper {
  position: relative;
  display: inline-block;
}

/* line 9, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_validation_alerts.scss */
.quote-validation-alert,
.adv-contract-validation-alert {
  position: absolute;
  top: -8px;
  right: -8px;
  z-index: 10;
}

/* line 17, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_validation_alerts.scss */
.quote-validation-icon,
.adv-contract-validation-icon {
  color: #f59e0b;
  cursor: pointer;
  font-size: 0.9rem;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 50%;
  padding: 5px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}

/* line 33, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_validation_alerts.scss */
.quote-validation-icon:hover,
.adv-contract-validation-icon:hover {
  background: rgba(245, 158, 11, 0.25);
  border-color: rgba(245, 158, 11, 0.5);
}

/* line 38, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_validation_alerts.scss */
.lightmode .quote-validation-icon, .lightmode .adv-contract-validation-icon {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.25);
}

/* line 42, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_validation_alerts.scss */
.lightmode .quote-validation-icon:hover, .lightmode .adv-contract-validation-icon:hover {
  background: rgba(245, 158, 11, 0.2);
  border-color: rgba(245, 158, 11, 0.4);
}

/* line 49, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_validation_alerts.scss */
.quote-validation-message,
.adv-contract-validation-message {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 300px;
  max-width: 400px;
  z-index: 1000;
  animation: slideDown 0.3s ease;
  display: none;
}

/* line 60, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_validation_alerts.scss */
.quote-validation-message.visible,
.adv-contract-validation-message.visible {
  display: block;
}

/* line 65, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_validation_alerts.scss */
.quote-validation-message.above-button,
.adv-contract-validation-message.above-button {
  top: auto;
  bottom: calc(100% + 10px);
  animation: slideUp 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* line 94, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_validation_alerts.scss */
.quote-validation-message-content,
.adv-contract-validation-message-content {
  background-color: rgba(245, 158, 11, 0.1);
  border: 2px solid #f59e0b;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.875rem;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

/* line 108, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_validation_alerts.scss */
.quote-validation-message-content span,
.adv-contract-validation-message-content span {
  font-size: 0.8rem;
  text-align: center;
  color: #fefefe;
}

/* line 114, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_validation_alerts.scss */
.quote-validation-message-content i,
.adv-contract-validation-message-content i {
  color: #f59e0b;
  margin-right: 6px;
}

/* line 120, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_validation_alerts.scss */
.lightmode .quote-validation-message-content, .lightmode .adv-contract-validation-message-content {
  background-color: rgba(245, 158, 11, 0.15);
  border-color: #f59e0b;
}

/* line 124, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_validation_alerts.scss */
.lightmode .quote-validation-message-content span, .lightmode .adv-contract-validation-message-content span {
  color: #140D23;
}

/* line 130, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_validation_alerts.scss */
.quote-validation-link,
.adv-contract-validation-link {
  color: #f59e0b;
  text-decoration: underline;
  font-weight: 500;
  margin-top: 4px;
  display: inline-block;
  transition: color 0.2s ease;
}

/* line 139, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_validation_alerts.scss */
.quote-validation-link:hover,
.adv-contract-validation-link:hover {
  color: #FF9800;
  text-decoration: none;
}

/* line 145, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_validation_alerts.scss */
.lightmode .quote-validation-link, .lightmode .adv-contract-validation-link {
  color: #c57f08;
}

/* line 148, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_validation_alerts.scss */
.lightmode .quote-validation-link:hover, .lightmode .adv-contract-validation-link:hover {
  color: #cc7a00;
}

/* line 157, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_validation_alerts.scss */
.quote-button-wrapper .crm-button-regular.adv-button-disabled, .quote-button-wrapper .adv-button-disabled.crm-back-button,
.adv-contract-button-wrapper .crm-button-regular.adv-button-disabled,
.adv-contract-button-wrapper .adv-button-disabled.crm-back-button {
  background-color: rgba(128, 128, 128, 0.3);
  border-color: rgba(128, 128, 128, 0.5);
  color: rgba(255, 255, 255, 0.6);
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: none;
}

/* line 165, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_validation_alerts.scss */
.lightmode .quote-button-wrapper .crm-button-regular.adv-button-disabled, .lightmode .quote-button-wrapper .adv-button-disabled.crm-back-button, .lightmode .adv-contract-button-wrapper .crm-button-regular.adv-button-disabled, .lightmode .adv-contract-button-wrapper .adv-button-disabled.crm-back-button {
  background-color: rgba(128, 128, 128, 0.2);
  border-color: rgba(128, 128, 128, 0.4);
  color: rgba(20, 13, 35, 0.5);
}

/* line 171, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_validation_alerts.scss */
.quote-button-wrapper .crm-button-regular.adv-button-disabled:hover, .quote-button-wrapper .adv-button-disabled.crm-back-button:hover,
.adv-contract-button-wrapper .crm-button-regular.adv-button-disabled:hover,
.adv-contract-button-wrapper .adv-button-disabled.crm-back-button:hover {
  background-color: rgba(128, 128, 128, 0.3);
  transform: none;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.6);
}

/* line 177, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_validation_alerts.scss */
.lightmode .quote-button-wrapper .crm-button-regular.adv-button-disabled:hover, .lightmode .quote-button-wrapper .adv-button-disabled.crm-back-button:hover, .lightmode .adv-contract-button-wrapper .crm-button-regular.adv-button-disabled:hover, .lightmode .adv-contract-button-wrapper .adv-button-disabled.crm-back-button:hover {
  background-color: rgba(128, 128, 128, 0.2);
  color: rgba(20, 13, 35, 0.5);
}

/* line 186, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_validation_alerts.scss */
.adv-contract-button-wrapper {
  margin-right: 10px;
  overflow: visible;
}

@media (max-width: 768px) {
  /* line 193, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_validation_alerts.scss */
  .quote-validation-message,
.adv-contract-validation-message {
    min-width: 250px;
    max-width: 300px;
    right: auto;
    left: 0;
  }
}

/* ==========================================================================
   LAYOUT PRINCIPAL - Structure générale du module
   ========================================================================== */
/* line 12, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-capsule {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 5px 20px;
  font-size: 0.8rem;
  gap: 10px;
  overflow: hidden;
}

/* line 24, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-capsule.lightmode {
  color: #140D23;
}

/* line 28, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-capsule.nightmode {
  color: #fefefe;
}

/* line 33, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 40, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-row2-list-column .adv-invoice-list-capsule span {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* Variations de thème clair/sombre */
/* line 48, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-capsule.lightmode span {
  color: #C38761;
}

/* line 52, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-capsule.nightmode span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 56, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-capsule.lightmode p {
  color: #140D23;
}

/* line 60, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-capsule.nightmode p {
  color: #fefefe;
}

/* line 64, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-capsule.lightmode i {
  color: #140D23;
}

/* line 68, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-capsule.nightmode i {
  color: #fefefe;
}

/* ==========================================================================
   BARRE SUPÉRIEURE - Recherche et bouton création
   ========================================================================== */
/* line 76, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-row1 {
  width: 80%;
  height: 50px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  flex-shrink: 0;
  margin-bottom: 20px;
}

/* line 87, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-row1 form {
  width: 100%;
  display: flex;
  padding: 0 !important;
}

/* ==========================================================================
   BARRE DE RECHERCHE - Composants et fonctionnalités
   ========================================================================== */
/* line 98, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-row1-searchbar {
  width: 100%;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(254, 254, 254, 0.5);
  display: flex;
  justify-content: space-between;
  align-content: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
  /* Utilise maintenant la classe générique adv-searchbar */
}

/* line 111, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-capsule.lightmode .adv-invoice-list-row1-searchbar {
  border-color: rgba(20, 13, 35, 0.5);
  color: #140D23;
}

/* line 116, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-row1-searchbar .adv-invoice-list-search-form {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 123, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-row1-searchbar .adv-invoice-list-search-input-wrapper {
  position: relative;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

/* line 132, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-row1-searchbar .adv-invoice-list-clear-search-button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: #fefefe;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 0.6rem;
  text-decoration: none;
}

/* line 147, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-capsule.lightmode .adv-invoice-list-row1-searchbar .adv-invoice-list-clear-search-button {
  color: #140D23;
}

/* line 151, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-row1-searchbar .adv-invoice-list-clear-search-button:hover {
  color: rgba(254, 254, 254, 0.7);
}

/* line 154, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-capsule.lightmode .adv-invoice-list-row1-searchbar .adv-invoice-list-clear-search-button:hover {
  color: rgba(20, 13, 35, 0.7);
}

/* line 160, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-row1-searchbar button {
  all: unset;
  cursor: pointer;
}

/* line 165, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-row1-searchbar .adv-invoice-list-search-button {
  padding: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 173, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-row1-searchbar i {
  color: #fefefe !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 178, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-capsule.lightmode .adv-invoice-list-row1-searchbar i {
  color: #140D23 !important;
}

/* line 183, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-row1-searchbar span {
  font-weight: normal !important;
  color: #fefefe !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 189, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-capsule.lightmode .adv-invoice-list-row1-searchbar span {
  color: #140D23 !important;
}

/* Bannière d'information sur la recherche en cours */
/* line 196, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-search-info {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: #fefefe;
  margin-bottom: -10px;
  z-index: 5;
}

/* line 206, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-capsule.lightmode .adv-invoice-list-search-info {
  color: #140D23;
}

/* line 210, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-search-info span {
  opacity: 0.8;
}

/* line 214, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-search-info .adv-invoice-list-reset-search-link {
  color: #fefefe;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  border-radius: 4px;
  background-color: rgba(254, 254, 254, 0.1);
  transition: background-color 0.2s ease;
}

/* line 225, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-capsule.lightmode .adv-invoice-list-search-info .adv-invoice-list-reset-search-link {
  color: #140D23;
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 230, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-search-info .adv-invoice-list-reset-search-link:hover {
  background-color: rgba(254, 254, 254, 0.2);
}

/* line 233, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-capsule.lightmode .adv-invoice-list-search-info .adv-invoice-list-reset-search-link:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* line 240, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-tabs {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* line 249, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-tabs .adv-tabs-scroller {
  width: 100%;
  min-width: 0;
}

/* ==========================================================================
   FILTRE DE PÉRIODE - Onglet "Toutes les factures"
   ========================================================================== */
/* line 259, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-period-filter {
  width: 100%;
  display: flex;
  align-items: center;
}

/* line 264, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-period-filter form {
  display: flex;
  align-items: center;
}

/* line 270, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-period-filter-select {
  all: unset;
  background-color: rgba(254, 254, 254, 0.08);
  border: 1px solid rgba(254, 254, 254, 0.2);
  border-radius: 10px;
  color: #fefefe;
  font-size: 0.8rem;
  padding: 6px 14px;
  cursor: pointer;
  min-width: 160px;
}

/* line 281, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.lightmode .adv-period-filter-select {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 287, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-period-filter-select:hover {
  background-color: rgba(254, 254, 254, 0.12);
}

/* line 290, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.lightmode .adv-period-filter-select:hover {
  background-color: rgba(20, 13, 35, 0.08);
}

/* line 295, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-period-filter-select option {
  background-color: #E8E8E8;
  color: #000000;
}

/* ==========================================================================
   CONTENEUR PRINCIPAL DES DONNÉES - Structure du tableau des factures
   ========================================================================== */
/* line 305, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-row2 {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  background-color: rgba(254, 254, 254, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 15px;
  overflow: hidden;
  margin-top: 5px;
}

/* line 319, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-capsule.lightmode .adv-invoice-list-row2 {
  background-color: rgba(254, 254, 254, 0.1);
}

/* line 324, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-row2-list {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

/* ==========================================================================
   EN-TÊTE DU TABLEAU - Titres des colonnes et tri
   ========================================================================== */
/* line 337, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-row2-list-head {
  width: 97%;
  display: flex;
  padding-right: 8px;
  flex-direction: row;
  font-weight: bold;
  font-size: 0.75rem;
  margin-bottom: 5px;
  color: #fefefe;
}

/* line 347, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-capsule.lightmode .adv-invoice-list-row2-list-head {
  color: #140D23;
}

/* line 352, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-row2-list-head .adv-invoice-list-row2-list-column {
  width: 20%;
  text-align: center;
  justify-content: center;
}

/* line 357, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-row2-list-head .adv-invoice-list-row2-list-column.sortable {
  cursor: pointer;
  transition: background-color 0.2s ease;
}

/* line 361, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-row2-list-head .adv-invoice-list-row2-list-column.sortable:hover {
  background-color: rgba(254, 254, 254, 0.05);
}

/* line 364, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-capsule.lightmode .adv-invoice-list-row2-list-head .adv-invoice-list-row2-list-column.sortable:hover {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 369, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-row2-list-head .adv-invoice-list-row2-list-column.sortable .sort-link {
  color: #fefefe;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 100%;
  height: 100%;
}

/* line 379, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-capsule.lightmode .adv-invoice-list-row2-list-head .adv-invoice-list-row2-list-column.sortable .sort-link {
  color: #140D23;
}

/* line 383, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-row2-list-head .adv-invoice-list-row2-list-column.sortable .sort-link i {
  font-size: 0.6rem !important;
}

/* line 386, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-capsule.lightmode .adv-invoice-list-row2-list-head .adv-invoice-list-row2-list-column.sortable .sort-link i {
  color: #140D23 !important;
}

/* Styles communs pour les colonnes */
/* line 395, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-row2-list-column {
  display: flex;
  align-items: center;
  font-size: 0.7rem;
  padding: 5px 10px;
}

/* ==========================================================================
   CORPS DU TABLEAU - Liste des factures avec défilement
   ========================================================================== */
/* line 406, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-row2-list-entries {
  width: 100%;
  height: calc(100% - 30px);
  display: flex;
  gap: 5px;
  flex-direction: column;
  overflow-y: auto;
}

/* line 414, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-row2-list-entries::-webkit-scrollbar {
  width: 8px;
}

/* line 418, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-row2-list-entries::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 422, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-capsule.lightmode .adv-invoice-list-row2-list-entries::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 427, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-row2-list-entries::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 432, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-row2-list-entries::-webkit-scrollbar-thumb:hover {
  background: #fefefe;
}

/* line 435, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-capsule.lightmode .adv-invoice-list-row2-list-entries::-webkit-scrollbar-thumb:hover {
  background: #140D23;
}

/* Lignes du tableau des factures */
/* line 442, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-row2-list-entry {
  width: 97%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  font-size: 0.7rem;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 2px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 40px;
  padding: 3px 0;
  margin-bottom: 2px;
  color: #fefefe;
}

/* line 460, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-capsule.lightmode .adv-invoice-list-row2-list-entry {
  color: #140D23;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 2px;
}

/* line 465, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-row2-list-entry:hover {
  transform: scale(1.01);
  transition: transform 0.3s ease;
  background-color: rgba(254, 254, 254, 0.1);
}

/* line 470, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-capsule.lightmode .adv-invoice-list-row2-list-entry:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 475, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-row2-list-entry .adv-invoice-list-row2-list-column {
  width: 20%;
  text-align: center;
  justify-content: center;
}

/* Message quand aucune facture n'est trouvée */
/* line 483, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.no-results {
  width: 100%;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #fefefe;
  background-color: rgba(254, 254, 254, 0.05);
  border-radius: 8px;
  margin-top: 10px;
}

/* line 493, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-capsule.lightmode .no-results {
  color: #140D23;
  background-color: rgba(20, 13, 35, 0.05);
}

/* ==========================================================================
   BOUTON DE CRÉATION - Style du bouton pour créer une nouvelle facture
   ========================================================================== */
/* line 503, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.form-button, .crm-action-button, .users-management-container .users-header .add-user-btn {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  border: none;
  cursor: pointer;
  background-color: #C38761;
  color: #fefefe;
}

/* line 518, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.form-button:hover, .crm-action-button:hover, .users-management-container .users-header .add-user-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Classes utilitaires */
/* line 525, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.d-none {
  display: none !important;
}

/* ==========================================================================
   BADGES DE STATUT - Styles pour les différents types de statuts de facture
   ========================================================================== */
/* line 533, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.status-badge {
  padding: 4px 8px !important;
  border-radius: 8px !important;
  font-size: 0.65rem;
  font-weight: 500;
  display: inline-block;
  min-width: 100px;
  text-align: center;
  transition: all 0.2s ease-in-out;
}

/* line 543, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-capsule.lightmode .status-badge {
  padding: 4px 10px !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* line 547, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-capsule.lightmode .status-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* line 553, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.status-badge.draft {
  background-color: rgba(241, 196, 15, 0.2);
  color: #f1c40f;
}

/* line 557, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-capsule.lightmode .status-badge.draft {
  background-color: rgba(241, 196, 15, 0.4);
  color: #b7950b;
  font-weight: 600;
  border: 1px solid rgba(241, 196, 15, 0.2);
}

/* line 565, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.status-badge.sent {
  background-color: rgba(52, 152, 219, 0.2);
  color: #3498db;
}

/* line 569, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-capsule.lightmode .status-badge.sent {
  background-color: rgba(52, 152, 219, 0.4);
  color: #1a5276;
  font-weight: 600;
  border: 1px solid rgba(52, 152, 219, 0.2);
}

/* line 577, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.status-badge.paid {
  background-color: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
}

/* line 581, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-capsule.lightmode .status-badge.paid {
  background-color: rgba(46, 204, 113, 0.4);
  color: #1e8449;
  font-weight: 600;
  border: 1px solid rgba(46, 204, 113, 0.2);
}

/* line 589, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.status-badge.overdue {
  background-color: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
}

/* line 593, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-capsule.lightmode .status-badge.overdue {
  background-color: rgba(231, 76, 60, 0.4);
  color: #a93226;
  font-weight: 600;
  border: 1px solid rgba(231, 76, 60, 0.2);
}

/* line 601, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.status-badge.cancelled {
  background-color: rgba(149, 165, 166, 0.2);
  color: #95a5a6;
}

/* line 605, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-capsule.lightmode .status-badge.cancelled {
  background-color: rgba(149, 165, 166, 0.4);
  color: #7f8c8d;
  font-weight: 600;
  border: 1px solid rgba(149, 165, 166, 0.2);
}

/* line 613, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.status-badge.schedule-active {
  background-color: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
}

/* line 618, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.status-badge.schedule-paused {
  background-color: rgba(149, 165, 166, 0.2);
  color: #95a5a6;
}

/* line 623, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.status-badge.schedule-cancelled {
  background-color: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
}

/* line 628, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.status-badge.schedule-completed {
  background-color: rgba(52, 152, 219, 0.2);
  color: #3498db;
}

/* line 634, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.schedule-recurring-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: 4px;
  background-color: rgba(155, 89, 182, 0.2);
  color: #9b59b6;
}

/* line 644, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.schedule-recurring-badge i {
  font-size: 0.6rem;
}

/* line 649, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.schedule-cycle-counter {
  font-size: 0.7rem;
  font-weight: 600;
  opacity: 0.8;
}

/* line 655, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-tabs-links {
  overflow-x: auto;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 2px;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
  min-height: 40px;
}

/* line 669, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-tabs-links::-webkit-scrollbar {
  display: none;
}

/* line 673, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_list.scss */
.adv-invoice-list-tabs-links .tab-link {
  flex-shrink: 0;
}

/* ==========================================================================
   VALIDATION ALERT - Styles pour l'alerte de validation des factures
   ========================================================================== */
/* line 4, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_schedule_list.scss */
.schedule-list-head .schedule-col-expand {
  max-width: 36px;
  min-width: 36px;
  flex: 0 0 36px;
}

/* line 11, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_schedule_list.scss */
.schedule-entry {
  cursor: pointer;
}

/* line 15, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_schedule_list.scss */
.schedule-col-expand {
  max-width: 36px;
  min-width: 36px;
  flex: 0 0 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* line 25, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_schedule_list.scss */
.schedule-expand-icon {
  font-size: 0.7rem;
  opacity: 0.6;
  transition: transform 0.2s ease;
}

/* line 30, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_schedule_list.scss */
.schedule-expand-icon.expanded {
  transform: rotate(90deg);
}

/* line 35, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_schedule_list.scss */
.schedule-contract-link {
  color: inherit;
  text-decoration: underline;
  opacity: 0.8;
}

/* line 40, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_schedule_list.scss */
.schedule-contract-link:hover {
  opacity: 1;
}

/* line 45, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_schedule_list.scss */
.schedule-countdown {
  font-size: 0.65rem;
  opacity: 0.6;
}

/* line 50, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_schedule_list.scss */
.schedule-auto-renew-badge {
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 500;
}

/* line 56, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_schedule_list.scss */
.schedule-auto-renew-badge.schedule-auto-renew-yes {
  background-color: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
}

/* line 60, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_schedule_list.scss */
.adv-invoice-list-capsule.lightmode .schedule-auto-renew-badge.schedule-auto-renew-yes {
  background-color: rgba(46, 204, 113, 0.1);
  color: #27ae60;
}

/* line 66, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_schedule_list.scss */
.schedule-auto-renew-badge.schedule-auto-renew-no {
  background-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
}

/* line 70, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_schedule_list.scss */
.adv-invoice-list-capsule.lightmode .schedule-auto-renew-badge.schedule-auto-renew-no {
  background-color: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.4);
}

/* line 79, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_schedule_list.scss */
.schedule-invoices-drawer {
  margin-left: 36px;
  border-left: 2px solid rgba(212, 165, 116, 0.3);
  padding: 6px 0 6px 0;
  margin-bottom: 4px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 0 8px 8px 0;
}

/* line 87, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_schedule_list.scss */
.adv-invoice-list-capsule.lightmode .schedule-invoices-drawer {
  background-color: rgba(0, 0, 0, 0.02);
}

/* line 92, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_schedule_list.scss */
.si-header {
  display: flex;
  width: 100%;
  padding: 4px 12px;
  margin-bottom: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 99, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_schedule_list.scss */
.adv-invoice-list-capsule.lightmode .si-header {
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

/* line 103, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_schedule_list.scss */
.si-header .si-cell {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  opacity: 0.5;
}

/* line 113, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_schedule_list.scss */
.schedule-invoice-row {
  display: flex;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.7rem;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

/* line 124, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_schedule_list.scss */
.schedule-invoice-row:hover:not(.schedule-invoice-empty):not(.schedule-invoice-pending) {
  background-color: rgba(255, 255, 255, 0.05);
}

/* line 127, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_schedule_list.scss */
.adv-invoice-list-capsule.lightmode .schedule-invoice-row:hover:not(.schedule-invoice-empty):not(.schedule-invoice-pending) {
  background-color: rgba(0, 0, 0, 0.03);
}

/* line 132, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_schedule_list.scss */
.schedule-invoice-row.schedule-invoice-pending {
  cursor: default;
  opacity: 0.6;
}

/* line 137, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_schedule_list.scss */
.schedule-invoice-row.schedule-invoice-empty {
  cursor: default;
  opacity: 0.5;
  font-style: italic;
  justify-content: center;
  padding: 12px;
}

/* line 146, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_schedule_list.scss */
.si-cell {
  padding: 0 6px;
}

/* line 149, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_schedule_list.scss */
.si-cell.si-cell-ref {
  flex: 0 0 17%;
  min-width: 0;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 158, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_schedule_list.scss */
.si-cell.si-cell-period {
  flex: 0 0 25%;
  min-width: 0;
}

/* line 163, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_schedule_list.scss */
.si-cell.si-cell-status {
  flex: 0 0 26%;
  min-width: 0;
}

/* line 168, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_schedule_list.scss */
.si-cell.si-cell-issue-date {
  flex: 0 0 17%;
  min-width: 0;
}

/* line 173, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_schedule_list.scss */
.si-cell.si-cell-amount {
  flex: 0 0 15%;
  min-width: 0;
  text-align: right;
}

/* line 180, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_schedule_list.scss */
.si-period-label {
  font-style: italic;
  opacity: 0.7;
}

/* line 1, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
select {
  all: unset;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(254, 254, 254, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: normal;
  padding: 5px 15px;
}

/* line 14, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode select {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 19, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
select:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 23, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode select:focus {
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 29, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
select option {
  all: unset;
  background-color: #E8E8E8;
  color: #000000;
}

/* line 36, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.trash {
  cursor: pointer;
  font-size: 0.8rem;
}

/* line 39, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.trash:hover {
  color: #A60240;
}

/* Classes utilitaires */
/* line 45, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.userChoice {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 15px;
}

/* line 52, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.userChoice .no-recipient, .userChoice .no-document {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(254, 254, 254, 0.1) 0%, rgba(254, 254, 254, 0.05) 100%);
  border: 1px solid rgba(254, 254, 254, 0.3);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-color-primary);
}

/* line 69, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .userChoice .no-recipient, .lightmode .userChoice .no-document {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.1) 0%, rgba(20, 13, 35, 0.05) 100%);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* Style pour le total de jours calculés (fin de mois) */
/* line 78, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.payment-term-total {
  display: inline-block;
  margin-left: 4px;
  padding: 2px 8px;
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.2), rgba(195, 135, 97, 0.1));
  border: 1px solid rgba(195, 135, 97, 0.3);
  border-radius: 6px;
  color: #C38761;
  font-weight: 600;
  font-size: 0.9em;
  transition: all 0.3s ease;
}

/* line 90, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .payment-term-total {
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.25), rgba(195, 135, 97, 0.15));
  border-color: rgba(195, 135, 97, 0.4);
  color: #af6c42;
}

@keyframes checkmark-pop {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

/* ========================================
   Classes spécifiques New Invoice - TOUTES
   ======================================== */
/* Container principal */
/* line 117, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-capsule {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 10px 20px 10px 20px;
  font-size: 0.8rem;
  gap: 10px;
}

/* line 128, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-capsule.lightmode {
  color: #140D23;
}

/* line 130, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-capsule.lightmode .adv-new-invoice-discount-input {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 134, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-capsule.lightmode .adv-new-invoice-price-input {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 138, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-capsule.lightmode .adv-new-invoice-price-ttc-container {
  color: #140D23;
}

/* line 141, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-capsule.lightmode .new-invoice-transaction-choice {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 145, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-capsule.lightmode .search-input {
  border-color: transparent !important;
}

/* line 147, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-capsule.lightmode .search-input:focus {
  border-color: transparent !important;
  box-shadow: none !important;
}

/* line 152, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-capsule.lightmode .recipient-choice {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 156, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-capsule.lightmode #publicMarket {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 160, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-capsule.lightmode #privateMarket {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 166, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-capsule .form-group {
  margin: 0;
}

/* line 170, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-capsule form {
  display: flex !important;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  align-items: center;
  height: 100%;
}

/* Card de Configuration */
/* line 181, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-configuration-card {
  width: 100%;
  max-width: 1400px;
  background: linear-gradient(135deg, rgba(254, 254, 254, 0.1) 0%, rgba(254, 254, 254, 0.05) 100%);
  border: 1px solid rgba(254, 254, 254, 0.2);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

/* line 193, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-configuration-card {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.08) 0%, rgba(20, 13, 35, 0.03) 100%);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 199, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-config-header {
  text-align: center;
  margin-bottom: 30px;
}

/* line 203, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-config-header h2, .adv-new-invoice-config-header .h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fefefe;
  margin-bottom: 8px;
}

/* line 209, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-config-header h2, .lightmode .adv-new-invoice-config-header .h2 {
  color: #140D23;
}

/* line 214, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-config-header p {
  font-size: 0.9rem;
  color: rgba(254, 254, 254, 0.7);
}

/* line 218, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-config-header p {
  color: rgba(20, 13, 35, 0.7);
}

/* line 224, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-config-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* line 228, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-config-content label {
  opacity: 1;
}

/* line 233, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-config-section {
  width: 100%;
}

/* line 237, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-config-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  /* line 237, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
  .adv-new-invoice-config-row {
    grid-template-columns: 1fr;
  }
}

/* line 247, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-config-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 15px;
}

/* line 254, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-config-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 259, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-config-label:has(i) {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

/* line 264, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-config-label:has(i) > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 271, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-config-label i {
  font-size: 1.1rem;
  color: #C38761;
  flex-shrink: 0;
}

/* line 277, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-config-label h3, .adv-new-invoice-config-label .h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fefefe;
  margin: 0;
}

/* line 283, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-config-label h3, .lightmode .adv-new-invoice-config-label .h3 {
  color: #140D23;
}

/* line 288, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-config-label small, .adv-new-invoice-config-label .small {
  font-size: 0.75rem;
  color: rgba(254, 254, 254, 0.6);
  font-style: italic;
  margin-top: 2px;
}

/* line 294, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-config-label small, .lightmode .adv-new-invoice-config-label .small {
  color: rgba(20, 13, 35, 0.6);
}

/* line 300, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-config-select {
  width: auto;
  background: rgba(254, 254, 254, 0.08);
  border: 1px solid rgba(254, 254, 254, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  color: #fefefe;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

/* line 310, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-config-select {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 316, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-config-select:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 322, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-config-select option {
  background: #140D23;
  color: #fefefe;
}

/* line 328, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-form-hint {
  display: block;
  margin-top: 8px;
  color: rgba(254, 254, 254, 0.6);
  font-size: 0.9em;
}

/* line 334, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-form-hint {
  color: rgba(20, 13, 35, 0.6);
}

/* line 338, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-form-hint i {
  margin-right: 4px;
}

/* line 343, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-config-input {
  width: 100%;
  background: rgba(254, 254, 254, 0.08);
  border: 1px solid rgba(254, 254, 254, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  color: #fefefe;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* line 355, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-config-input {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 361, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-config-input:hover {
  border-color: rgba(195, 135, 97, 0.5);
  background: rgba(254, 254, 254, 0.12);
  transform: translateY(-1px);
}

/* line 366, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-config-input:hover {
  background: rgba(20, 13, 35, 0.12);
}

/* line 371, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-config-input:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.15);
  background: rgba(254, 254, 254, 0.15);
}

/* line 377, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-config-input:focus {
  background: rgba(20, 13, 35, 0.15);
}

/* line 383, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-config-input[type="date"] {
  position: relative;
  font-family: inherit;
}

/* line 388, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-config-input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  border-radius: 4px;
  padding: 4px;
  filter: invert(1);
  opacity: 0.7;
  transition: all 0.3s ease;
}

/* line 396, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-config-input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0) brightness(0.3);
}

/* line 400, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-config-input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
  background: rgba(195, 135, 97, 0.2);
}

/* line 407, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-config-input[type="date"]:invalid, .adv-new-invoice-config-input[type="date"]:not(:focus):not(:hover):placeholder-shown {
  color: rgba(254, 254, 254, 0.5);
}

/* line 411, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-config-input[type="date"]:invalid, .lightmode .adv-new-invoice-config-input[type="date"]:not(:focus):not(:hover):placeholder-shown {
  color: rgba(20, 13, 35, 0.5);
}

/* line 417, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-config-input[type="date"]:valid {
  border-color: rgba(195, 135, 97, 0.4);
}

/* line 423, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-config-input-small {
  width: 80px;
  background: rgba(254, 254, 254, 0.08);
  border: 1px solid rgba(254, 254, 254, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  color: #fefefe;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* line 436, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-config-input-small {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 442, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-config-input-small:hover {
  border-color: rgba(195, 135, 97, 0.5);
  background: rgba(254, 254, 254, 0.12);
  transform: translateY(-1px);
}

/* line 447, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-config-input-small:hover {
  background: rgba(20, 13, 35, 0.12);
}

/* line 452, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-config-input-small:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.15);
  background: rgba(254, 254, 254, 0.15);
}

/* line 458, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-config-input-small:focus {
  background: rgba(20, 13, 35, 0.15);
}

/* line 464, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-config-input-small[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

/* line 470, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-config-input-small[type="number"]::-webkit-outer-spin-button, .adv-new-invoice-config-input-small[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Market Type Selector */
/* line 479, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-market-type-selector {
  display: flex;
  gap: 12px;
}

/* line 483, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-market-type-selector .adv-new-invoice-market-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(254, 254, 254, 0.08);
  border: 1px solid rgba(254, 254, 254, 0.2);
  border-radius: 12px;
  color: #fefefe;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 499, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-market-type-selector .adv-new-invoice-market-option {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 505, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-market-type-selector .adv-new-invoice-market-option i {
  font-size: 1rem;
  color: #C38761;
}

/* line 510, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-market-type-selector .adv-new-invoice-market-option:hover {
  background: rgba(254, 254, 254, 0.12);
  border-color: rgba(254, 254, 254, 0.3);
  transform: translateY(-1px);
}

/* line 515, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-market-type-selector .adv-new-invoice-market-option:hover {
  background: rgba(20, 13, 35, 0.12);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 521, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-market-type-selector .adv-new-invoice-market-option.selected {
  background: #C38761;
  border-color: #C38761;
  color: #140D23;
}

/* line 526, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-market-type-selector .adv-new-invoice-market-option.selected i {
  color: #140D23;
}

/* Onglets Prospect/Client */
/* line 534, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-tabs-container {
  width: 100%;
}

/* line 538, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-tabs-header {
  display: flex;
  background: rgba(254, 254, 254, 0.08);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 20px;
}

/* line 545, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-tabs-header {
  background: rgba(20, 13, 35, 0.08);
}

/* line 550, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 8px;
  color: rgba(254, 254, 254, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 564, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-tab {
  color: rgba(20, 13, 35, 0.7);
}

/* line 568, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-tab i {
  font-size: 0.9rem;
}

/* line 572, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-tab:hover {
  color: #fefefe;
}

/* line 575, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-tab:hover {
  color: #140D23;
}

/* line 580, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-tab.active {
  background: #C38761;
  color: #140D23;
}

/* line 584, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-tab.active i {
  color: #140D23;
}

/* line 590, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-tab-content {
  position: relative;
}

/* line 594, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-tab-pane {
  display: none;
}

/* line 597, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-tab-pane.active {
  display: block;
}

/* Search Components */
/* line 603, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-search-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}

/* line 610, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-search-input {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 616, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-search-input .search-form {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

/* line 623, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-search-input i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(254, 254, 254, 0.6);
  font-size: 0.9rem;
  z-index: 2;
}

/* line 632, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-search-input i {
  color: rgba(20, 13, 35, 0.6);
}

/* line 637, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-search-input button {
  all: unset;
  padding: 8px 12px;
  background: #C38761;
  border-radius: 8px;
  color: #140D23;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 646, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-search-input button:hover {
  background: #864B28;
  transform: scale(1.05);
}

/* line 651, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-search-input button i {
  position: static;
  transform: none;
  color: #140D23;
}

/* line 659, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-search-results {
  min-height: 120px;
  background: rgba(254, 254, 254, 0.05);
  border: 1px solid rgba(254, 254, 254, 0.15);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}

/* line 667, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-search-results {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 672, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-search-results .userChoice {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* line 679, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-search-results .userChoice .no-recipient, .adv-new-invoice-search-results .userChoice .no-document {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(254, 254, 254, 0.6);
}

/* line 686, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-search-results .userChoice .no-recipient, .lightmode .adv-new-invoice-search-results .userChoice .no-document {
  color: rgba(20, 13, 35, 0.6);
}

/* line 690, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-search-results .userChoice .no-recipient::before, .adv-new-invoice-search-results .userChoice .no-document::before {
  content: '\f007';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 1.5rem;
  color: rgba(254, 254, 254, 0.4);
}

/* line 697, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-search-results .userChoice .no-recipient::before, .lightmode .adv-new-invoice-search-results .userChoice .no-document::before {
  color: rgba(20, 13, 35, 0.4);
}

/* Transaction Components */
/* line 706, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-transaction-selector {
  display: flex;
  gap: 12px;
}

/* line 710, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-transaction-selector .new-invoice-transaction-choice {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(254, 254, 254, 0.08);
  border: 1px solid rgba(254, 254, 254, 0.2);
  border-radius: 12px;
  color: #fefefe;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 726, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-transaction-selector .new-invoice-transaction-choice {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 732, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-transaction-selector .new-invoice-transaction-choice i {
  font-size: 1rem;
  color: #C38761;
}

/* line 737, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-transaction-selector .new-invoice-transaction-choice:hover {
  background: rgba(254, 254, 254, 0.12);
  border-color: rgba(254, 254, 254, 0.3);
  transform: translateY(-1px);
}

/* line 742, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-transaction-selector .new-invoice-transaction-choice:hover {
  background: rgba(20, 13, 35, 0.12);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 748, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-transaction-selector .new-invoice-transaction-choice.selected {
  background: #C38761;
  border-color: #C38761;
  color: #140D23;
}

/* line 753, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-transaction-selector .new-invoice-transaction-choice.selected i {
  color: #140D23;
}

/* line 760, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-transaction-content {
  margin-top: 20px;
  padding: 20px;
  background: rgba(254, 254, 254, 0.05);
  border: 1px solid rgba(254, 254, 254, 0.15);
  border-radius: 12px;
}

/* line 767, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-transaction-content {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 773, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-transaction-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(254, 254, 254, 0.08);
  border-radius: 8px;
}

/* line 781, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-transaction-info {
  background: rgba(20, 13, 35, 0.08);
}

/* line 785, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-transaction-info i {
  color: #C38761;
  font-size: 1.1rem;
}

/* line 790, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-transaction-info span {
  color: #fefefe;
  font-size: 0.9rem;
  font-weight: 500;
}

/* line 795, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-transaction-info span {
  color: #140D23;
}

/* line 802, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-document-search h4, .adv-new-invoice-document-search .h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fefefe;
  margin-bottom: 15px;
}

/* line 808, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-document-search h4, .lightmode .adv-new-invoice-document-search .h4 {
  color: #140D23;
}

/* line 813, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-document-search .search-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* line 819, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-document-search .form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 825, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-document-search .filter {
  width: auto;
  background: rgba(254, 254, 254, 0.08);
  border: 1px solid rgba(254, 254, 254, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  color: #fefefe;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

/* line 835, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-document-search .filter {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 841, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-document-search .filter:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 847, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-document-search .filter option {
  background: #140D23;
  color: #fefefe;
}

/* Search Filters */
/* line 855, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-search-filters {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

/* line 862, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-filter-group {
  display: flex;
  gap: 12px;
  width: 100%;
}

@media (max-width: 768px) {
  /* line 862, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
  .adv-new-invoice-filter-group {
    flex-direction: column;
  }
}

/* Section Articles et main section */
/* line 873, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-articles-main-section {
  min-height: 600px;
}

/* line 877, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-basket-section {
  margin-top: 30px;
}

/* ========================================
   Classes spécifiques New Invoice Articles
   ======================================== */
/* Entrées d'articles spécifiques à new_invoice */
/* line 886, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-entry {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 1px;
  border-bottom: 1px solid rgba(254, 254, 254, 0.1);
  transition: all 0.3s ease;
  width: 100%;
  padding: 10px;
}

/* line 895, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-entry {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 899, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-entry:hover {
  background: rgba(254, 254, 254, 0.05);
}

/* line 902, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-entry:hover {
  background: rgba(20, 13, 35, 0.05);
}

/* line 907, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-entry:last-child {
  border-bottom: none;
}

/* line 911, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-entry > div {
  padding: 12px 8px;
  font-size: 0.8rem;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 922, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-new-entry {
  cursor: pointer;
  color: rgba(254, 254, 254, 0.6);
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
}

/* line 930, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-new-entry {
  color: rgba(20, 13, 35, 0.6);
  background-color: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 936, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-new-entry:hover {
  background: rgba(195, 135, 97, 0.1);
  color: #C38761;
  border-color: rgba(255, 255, 255, 0.5);
}

/* line 941, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-new-entry:hover {
  background: rgba(195, 135, 97, 0.1);
  color: #C38761;
  border-color: rgba(20, 13, 35, 0.5);
}

/* Containers spécifiques new_invoice */
/* line 950, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-article-column {
  text-align: left;
  padding-left: 16px;
  justify-content: flex-start;
  white-space: nowrap;
}

/* line 956, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-article-column.new-entry {
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
}

/* line 960, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-article-column.new-entry {
  color: rgba(20, 13, 35, 0.7);
}

/* line 966, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-discount-container {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 973, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-price-container {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 980, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-vat-container {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 987, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-price-ttc-container {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fefefe;
}

/* line 994, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-price-ttc-container {
  color: #140D23;
}

/* line 999, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-quantity-container {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 1006, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-actions-container {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C38761;
  font-size: 1.2rem;
  font-weight: bold;
}

/* Inputs spécifiques new_invoice */
/* line 1017, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-discount-input {
  all: unset;
  width: 50%;
  display: flex;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(254, 254, 254, 0.5);
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 1031, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-discount-input {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 1036, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-discount-input:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 1040, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-discount-input:focus {
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 1047, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-price-input {
  all: unset;
  width: 80%;
  display: flex;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(254, 254, 254, 0.5);
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 1061, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-price-input {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 1066, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-price-input:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 1070, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-price-input:focus {
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 1077, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-quantity-input {
  all: unset;
  width: 70%;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(254, 254, 254, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 1091, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-quantity-input {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 1096, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-quantity-input:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 1100, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-quantity-input:focus {
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 1107, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-article-input {
  all: unset;
  width: 80%;
  display: flex;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(254, 254, 254, 0.5);
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 1121, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-article-input {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 1126, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-article-input:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 1130, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-article-input:focus {
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.5);
}

/* Actions spécifiques new_invoice */
/* line 1138, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-trash {
  cursor: pointer;
  font-size: 0.8rem;
}

/* line 1142, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-trash:hover {
  color: #A60240;
}

/* Tableau d'articles */
/* line 1148, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-articles-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 1155, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-articles-table {
  width: 100%;
  background: rgba(254, 254, 254, 0.05);
  border: 1px solid rgba(254, 254, 254, 0.15);
  border-radius: 12px;
  overflow: hidden;
}

/* line 1162, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-articles-table {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 1168, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-articles-table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 1px;
  background: rgba(254, 254, 254, 0.1);
}

/* line 1174, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-articles-table-header {
  background: rgba(20, 13, 35, 0.1);
}

/* line 1179, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-table-cell {
  padding: 12px 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  color: #fefefe;
}

/* line 1186, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-table-cell {
  color: #140D23;
}

/* line 1190, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-table-cell.adv-header-article {
  text-align: left;
  width: 100%;
  padding-left: 16px;
}

/* line 1197, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-articles-table-body {
  min-height: 350px;
  max-height: 500px;
}

/* line 1202, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-total-section {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding: 16px;
  background: rgba(254, 254, 254, 0.05);
  border-radius: 12px;
}

/* line 1211, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-total-section {
  background: rgba(20, 13, 35, 0.05);
}

/* line 1216, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-total-amount {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(254, 254, 254, 0.3);
}

/* line 1228, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-total-amount {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 1233, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-total-amount .adv-label {
  color: rgba(254, 254, 254, 0.8);
}

/* line 1236, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-total-amount .adv-label {
  color: rgba(20, 13, 35, 0.8);
}

/* line 1241, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-total-amount .adv-value {
  color: #C38761;
  font-size: 1.1rem;
}

/* line 1245, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-total-amount .adv-value {
  color: #C38761;
}

/* Conditions de paiement */
/* line 1252, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-payment-terms-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

/* line 1259, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-payment-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 16px;
  background: rgba(254, 254, 254, 0.05);
  border: 2px solid rgba(254, 254, 254, 0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 120px;
}

/* line 1273, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-payment-option {
  background: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 1278, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-payment-option i {
  font-size: 28px;
  color: rgba(254, 254, 254, 0.6);
  transition: all 0.3s ease;
}

/* line 1283, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-payment-option i {
  color: rgba(20, 13, 35, 0.5);
}

/* line 1288, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-payment-option span {
  font-size: 16px;
  font-weight: 600;
  color: #fefefe;
  text-align: center;
}

/* line 1294, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-payment-option span {
  color: #140D23;
}

/* line 1299, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-payment-option small, .adv-new-invoice-payment-option .small {
  font-size: 12px;
  color: rgba(254, 254, 254, 0.6);
  text-align: center;
}

/* line 1304, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-payment-option small, .lightmode .adv-new-invoice-payment-option .small {
  color: rgba(20, 13, 35, 0.6);
}

/* line 1309, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-payment-option:hover {
  transform: translateY(-4px);
  background: rgba(195, 135, 97, 0.1);
  border-color: rgba(195, 135, 97, 0.3);
  box-shadow: 0 8px 20px rgba(195, 135, 97, 0.15);
}

/* line 1315, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-payment-option:hover {
  background: rgba(195, 135, 97, 0.15);
  border-color: rgba(195, 135, 97, 0.4);
}

/* line 1320, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-payment-option:hover i {
  color: #C38761;
  transform: scale(1.1);
}

/* line 1326, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-payment-option.selected {
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.2), rgba(195, 135, 97, 0.1));
  border-color: #C38761;
  box-shadow: 0 4px 16px rgba(195, 135, 97, 0.2);
}

/* line 1331, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-payment-option.selected {
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.25), rgba(195, 135, 97, 0.15));
  border-color: #C38761;
}

/* line 1336, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-payment-option.selected i {
  color: #C38761;
  transform: scale(1.15);
}

/* line 1341, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-payment-option.selected span {
  color: #C38761;
}

/* line 1344, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-payment-option.selected span {
  color: #af6c42;
}

/* line 1351, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-custom-payment-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.08) 0%, rgba(195, 135, 97, 0.04) 100%);
  border: 2px solid rgba(195, 135, 97, 0.2);
  border-radius: 16px;
  margin-top: 8px;
  transition: all 0.3s ease;
}

/* line 1363, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-custom-payment-container {
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.12) 0%, rgba(195, 135, 97, 0.06) 100%);
  border-color: rgba(195, 135, 97, 0.3);
}

/* line 1368, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-custom-payment-container:hover {
  border-color: rgba(195, 135, 97, 0.4);
  box-shadow: 0 4px 20px rgba(195, 135, 97, 0.15);
}

/* line 1372, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-custom-payment-container:hover {
  border-color: rgba(195, 135, 97, 0.5);
  box-shadow: 0 4px 20px rgba(195, 135, 97, 0.2);
}

@media (max-width: 768px) {
  /* line 1351, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
  .adv-new-invoice-custom-payment-container {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
}

/* line 1385, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-custom-payment-input-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 1390, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-custom-payment-input-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fefefe;
  white-space: nowrap;
}

/* line 1399, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-custom-payment-input-group label {
  color: #140D23;
}

/* line 1403, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-custom-payment-input-group label::before {
  content: '\f522';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #C38761;
  font-size: 0.95rem;
}

/* line 1413, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-custom-payment-option-group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* line 1419, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-custom-checkbox-container {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 10px 16px;
  background: rgba(254, 254, 254, 0.08);
  border: 2px solid rgba(254, 254, 254, 0.15);
  border-radius: 10px;
  transition: all 0.3s ease;
  user-select: none;
}

/* line 1431, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-custom-checkbox-container {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 1436, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-custom-checkbox-container:hover {
  background: rgba(195, 135, 97, 0.1);
  border-color: rgba(195, 135, 97, 0.3);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(195, 135, 97, 0.15);
}

/* line 1442, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-custom-checkbox-container:hover {
  background: rgba(195, 135, 97, 0.15);
  border-color: rgba(195, 135, 97, 0.4);
}

/* line 1447, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-custom-checkbox-container:hover .adv-new-invoice-custom-checkbox-label {
  color: #C38761;
}

/* line 1450, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-custom-checkbox-container:hover .adv-new-invoice-custom-checkbox-label i {
  transform: scale(1.1);
}

/* line 1456, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-custom-checkbox-container input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  position: relative;
  appearance: none;
  background: rgba(254, 254, 254, 0.1);
  border: 2px solid rgba(254, 254, 254, 0.3);
  border-radius: 5px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

/* line 1468, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-custom-checkbox-container input[type="checkbox"] {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 1473, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-custom-checkbox-container input[type="checkbox"]:hover {
  border-color: #C38761;
  background: rgba(195, 135, 97, 0.15);
  transform: scale(1.1);
}

/* line 1479, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-custom-checkbox-container input[type="checkbox"]:checked {
  background: linear-gradient(135deg, #C38761, #af6c42);
  border-color: #C38761;
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.2);
}

/* line 1484, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-custom-checkbox-container input[type="checkbox"]:checked::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #140D23;
  font-size: 10px;
  animation: checkmark-pop 0.3s ease;
}

/* line 1498, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-custom-checkbox-container input[type="checkbox"]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.25);
}

/* line 1505, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-custom-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fefefe;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* line 1515, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-custom-checkbox-label {
  color: #140D23;
}

/* line 1519, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-custom-checkbox-label i {
  font-size: 0.95rem;
  color: #C38761;
  transition: all 0.3s ease;
}

/* line 1526, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-payment-info-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: rgba(254, 254, 254, 0.05);
  border-left: 4px solid #C38761;
  border-radius: 8px;
  margin-top: 16px;
}

/* line 1535, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-payment-info-card {
  background: rgba(20, 13, 35, 0.05);
}

/* line 1539, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-payment-info-card > i {
  font-size: 24px;
  color: #C38761;
  flex-shrink: 0;
  margin-top: 4px;
}

/* line 1546, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-payment-info-card div {
  flex: 1;
}

/* line 1549, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-payment-info-card div p {
  margin: 0 0 12px 0;
  color: #fefefe;
  font-size: 14px;
  line-height: 1.6;
}

/* line 1555, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-payment-info-card div p {
  color: #140D23;
}

/* line 1559, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-payment-info-card div p:last-child {
  margin-bottom: 0;
}

/* line 1563, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-payment-info-card div p strong {
  font-weight: 600;
  color: rgba(254, 254, 254, 0.9);
}

/* line 1567, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-payment-info-card div p strong {
  color: #140D23;
}

/* line 1572, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-payment-info-card div p span {
  color: #C38761;
  font-weight: 500;
}

/* line 1580, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-legal-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(195, 135, 97, 0.1);
  border-radius: 6px;
  margin-top: 8px;
}

/* line 1589, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-legal-note {
  background: rgba(195, 135, 97, 0.15);
}

/* line 1593, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-legal-note i {
  color: #C38761;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Section Récurrence */
/* line 1602, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-recurrence-selector {
  display: flex;
  gap: 12px;
}

/* line 1606, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-recurrence-selector .adv-new-invoice-recurrence-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(254, 254, 254, 0.08);
  border: 1px solid rgba(254, 254, 254, 0.2);
  border-radius: 12px;
  color: #fefefe;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 1622, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-recurrence-selector .adv-new-invoice-recurrence-option {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 1628, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-recurrence-selector .adv-new-invoice-recurrence-option i {
  font-size: 1rem;
  color: #C38761;
}

/* line 1633, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-recurrence-selector .adv-new-invoice-recurrence-option:hover {
  background: rgba(195, 135, 97, 0.1);
  border-color: #C38761;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* line 1640, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-recurrence-selector .adv-new-invoice-recurrence-option.selected {
  background: #C38761;
  border-color: #C38761;
  color: #140D23;
}

/* line 1645, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-recurrence-selector .adv-new-invoice-recurrence-option.selected i {
  color: #140D23;
}

/* line 1652, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-policy-selector {
  display: flex;
  gap: 12px;
}

/* line 1656, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-policy-selector .adv-new-invoice-policy-choice {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(254, 254, 254, 0.08);
  border: 1px solid rgba(254, 254, 254, 0.2);
  border-radius: 12px;
  color: #fefefe;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 1672, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-policy-selector .adv-new-invoice-policy-choice {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 1678, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-policy-selector .adv-new-invoice-policy-choice i {
  font-size: 1rem;
  color: #C38761;
}

/* line 1683, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-policy-selector .adv-new-invoice-policy-choice:hover {
  background: rgba(195, 135, 97, 0.1);
  border-color: #C38761;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* line 1690, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-policy-selector .adv-new-invoice-policy-choice.selected {
  background: #C38761;
  border-color: #C38761;
  color: #140D23;
}

/* line 1695, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-policy-selector .adv-new-invoice-policy-choice.selected i {
  color: #140D23;
}

/* line 1702, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-recurrence-summary {
  margin-top: 20px;
}

/* line 1706, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-summary-card {
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.15) 0%, rgba(195, 135, 97, 0.08) 100%);
  border: 1px solid rgba(195, 135, 97, 0.3);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
}

/* line 1713, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-summary-card {
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.2) 0%, rgba(195, 135, 97, 0.1) 100%);
  border-color: rgba(195, 135, 97, 0.4);
}

/* line 1718, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-summary-card h4, .adv-new-invoice-summary-card .h4 {
  margin: 0 0 16px 0;
  color: #C38761;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 1727, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-summary-card h4, .lightmode .adv-new-invoice-summary-card .h4 {
  color: #140D23;
}

/* line 1731, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-summary-card h4 i, .adv-new-invoice-summary-card .h4 i {
  font-size: 1.2rem;
  color: #C38761;
}

/* line 1735, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-summary-card h4 i, .lightmode .adv-new-invoice-summary-card .h4 i {
  color: #C38761;
}

/* line 1742, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-summary-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 1747, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-summary-content p {
  margin: 0;
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  background: rgba(254, 254, 254, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

/* line 1756, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-summary-content p {
  background: rgba(20, 13, 35, 0.05);
}

/* line 1760, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-summary-content p:hover {
  background: rgba(195, 135, 97, 0.1);
  transform: translateX(4px);
}

/* line 1764, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-summary-content p:hover {
  background: rgba(195, 135, 97, 0.15);
}

/* line 1769, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-summary-content p strong {
  color: #fefefe;
  font-weight: 600;
}

/* line 1773, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-summary-content p strong {
  color: #140D23;
}

/* line 1778, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-summary-content p span {
  color: rgba(254, 254, 254, 0.8);
  font-weight: 500;
}

/* line 1782, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-summary-content p span {
  color: rgba(20, 13, 35, 0.7);
}

/* line 1789, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-interval-container {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(254, 254, 254, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

/* line 1798, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-interval-container {
  background: rgba(20, 13, 35, 0.05);
}

/* line 1803, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-interval-prefix,
.adv-new-invoice-interval-suffix {
  font-weight: 500;
  color: rgba(254, 254, 254, 0.8);
  font-size: 0.85rem;
}

/* line 1809, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-interval-prefix, .lightmode .adv-new-invoice-interval-suffix {
  color: rgba(20, 13, 35, 0.8);
}

/* line 1814, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-interval-prefix {
  color: rgba(254, 254, 254, 0.6);
}

/* line 1817, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-interval-prefix {
  color: rgba(20, 13, 35, 0.6);
}

/* Fréquence unifiée */
/* line 1823, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-frequency-unified-container {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(254, 254, 254, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

/* line 1832, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-frequency-unified-container {
  background: rgba(20, 13, 35, 0.05);
}

/* line 1837, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-frequency-prefix {
  font-weight: 500;
  color: rgba(254, 254, 254, 0.8);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* line 1843, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-frequency-prefix {
  color: rgba(20, 13, 35, 0.8);
}

/* Décalage d'émission */
/* line 1849, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-emission-offset-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(254, 254, 254, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

/* line 1858, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-emission-offset-container {
  background: rgba(20, 13, 35, 0.05);
}

/* line 1862, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-emission-offset-container > div:first-child {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 1869, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-emission-offset-label {
  font-weight: 500;
  color: rgba(254, 254, 254, 0.8);
  font-size: 0.85rem;
}

/* line 1874, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-emission-offset-label {
  color: rgba(20, 13, 35, 0.8);
}

/* line 1879, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-emission-visual {
  margin: 4px 0;
  padding: 14px;
  border-radius: 8px;
  background: rgba(254, 254, 254, 0.02);
  border: 1px solid rgba(254, 254, 254, 0.08);
}

/* line 1886, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-emission-visual {
  background: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.08);
}

/* line 1892, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-emission-timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* line 1899, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-emission-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

/* line 1906, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-emission-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

/* line 1911, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-emission-dot--emission {
  background: #C38761;
}

/* line 1912, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-emission-dot--reference {
  background: #4caf50;
}

/* line 1915, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-emission-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(254, 254, 254, 0.9);
}

/* line 1920, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-emission-label {
  color: rgba(20, 13, 35, 0.9);
}

/* line 1925, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-emission-sublabel {
  font-size: 0.7rem;
  color: rgba(254, 254, 254, 0.5);
}

/* line 1929, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-emission-sublabel {
  color: rgba(20, 13, 35, 0.5);
}

/* line 1934, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-emission-arrow {
  color: rgba(254, 254, 254, 0.3);
  font-size: 1.2rem;
}

/* line 1938, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-emission-arrow {
  color: rgba(20, 13, 35, 0.3);
}

/* Contact search pour émission différée */
/* line 1944, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-deferred-contact-search-row {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

/* line 1950, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-deferred-contact-create-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(254, 254, 254, 0.15);
  background: rgba(254, 254, 254, 0.08);
  color: #fefefe;
  cursor: pointer;
  transition: background 0.2s ease;
}

/* line 1964, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-deferred-contact-create-btn:hover {
  background: rgba(254, 254, 254, 0.15);
}

/* line 1968, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-deferred-contact-create-btn {
  border-color: rgba(20, 13, 35, 0.15);
  background: rgba(20, 13, 35, 0.05);
  color: #140D23;
}

/* line 1973, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-deferred-contact-create-btn:hover {
  background: rgba(20, 13, 35, 0.1);
}

/* line 1979, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-deferred-contact-results {
  max-height: 200px;
  overflow-y: auto;
  border-radius: 8px;
  border: 1px solid rgba(254, 254, 254, 0.12);
  background: rgba(254, 254, 254, 0.06);
  margin-bottom: 8px;
}

/* line 1987, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-deferred-contact-results {
  border-color: rgba(20, 13, 35, 0.1);
  background: rgba(20, 13, 35, 0.03);
}

/* line 1993, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-deferred-contact-result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  cursor: pointer;
  transition: background 0.15s ease;
}

/* line 2001, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-deferred-contact-result-item:hover {
  background: rgba(254, 254, 254, 0.08);
}

/* line 2004, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-deferred-contact-result-item:hover {
  background: rgba(20, 13, 35, 0.06);
}

/* line 2009, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-deferred-contact-result-item:not(:last-child) {
  border-bottom: 1px solid rgba(254, 254, 254, 0.06);
}

/* line 2012, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-deferred-contact-result-item:not(:last-child) {
  border-bottom-color: rgba(20, 13, 35, 0.06);
}

/* line 2018, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-deferred-contact-result-name {
  font-size: 0.85rem;
  font-weight: 500;
}

/* line 2023, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-deferred-contact-result-email {
  font-size: 0.75rem;
  opacity: 0.6;
}

/* line 2028, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-deferred-contact-selected {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

/* line 2035, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-deferred-contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  background: rgba(195, 135, 97, 0.2);
  color: #C38761;
}

/* line 2045, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-deferred-contact-chip {
  background: rgba(195, 135, 97, 0.15);
  color: #9c613b;
}

/* line 2050, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-deferred-contact-chip small, .adv-deferred-contact-chip .small {
  opacity: 0.7;
  font-size: 0.7rem;
}

/* line 2056, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-deferred-contact-chip-remove {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 0 2px;
  opacity: 0.7;
}

/* line 2066, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-deferred-contact-chip-remove:hover {
  opacity: 1;
}

/* Modal création contact à la volée */
/* line 2072, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-deferred-contact-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 2084, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-deferred-contact-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

/* line 2093, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-deferred-contact-modal-content {
  position: relative;
  z-index: 1;
  background: #140D23;
  border: 1px solid rgba(254, 254, 254, 0.15);
  border-radius: 12px;
  padding: 24px;
  width: 360px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 2105, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-deferred-contact-modal-content {
  background: #fefefe;
  border-color: rgba(20, 13, 35, 0.12);
}

/* line 2110, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-deferred-contact-modal-content h4, .adv-deferred-contact-modal-content .h4 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 600;
}

/* line 2117, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-deferred-contact-modal-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 8px;
}

/* Tableau des factures futures */
/* line 2125, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-future-invoices-table {
  width: 100%;
  margin-top: 16px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(254, 254, 254, 0.15);
}

/* line 2132, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-future-invoices-table {
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 2137, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-future-invoices-header {
  display: grid;
  grid-template-columns: 60px 140px 1fr 130px;
  background: rgba(254, 254, 254, 0.1);
  padding: 12px;
  font-weight: 600;
  font-size: 0.85rem;
  color: #fefefe;
  border-bottom: 1px solid rgba(254, 254, 254, 0.2);
}

/* line 2147, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-new-invoice-future-invoices-header {
  background: rgba(20, 13, 35, 0.1);
  color: #140D23;
  border-bottom-color: rgba(20, 13, 35, 0.2);
}

/* line 2154, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-future-invoices-body {
  max-height: 400px;
  overflow-y: auto;
}

/* line 2158, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-future-invoices-body::-webkit-scrollbar {
  width: 6px;
}

/* line 2162, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-future-invoices-body::-webkit-scrollbar-track {
  background: rgba(254, 254, 254, 0.1);
}

/* line 2166, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-future-invoices-body::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 2172, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-future-invoice-row {
  display: grid;
  grid-template-columns: 60px 140px 1fr 130px;
  padding: 12px;
  border-bottom: 1px solid rgba(254, 254, 254, 0.1);
  transition: all 0.2s ease;
}

/* line 2179, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-future-invoice-row {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 2183, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-future-invoice-row:last-child {
  border-bottom: none;
}

/* line 2187, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-future-invoice-row:hover {
  background: rgba(195, 135, 97, 0.1);
}

/* line 2192, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-future-invoice-cell {
  display: flex;
  align-items: center;
  padding: 4px 8px;
  font-size: 0.85rem;
  color: #fefefe;
}

/* line 2199, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-future-invoice-cell {
  color: #140D23;
}

/* line 2203, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-future-invoice-cell:first-child {
  justify-content: center;
  font-weight: 600;
  color: #C38761;
}

/* line 2209, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-future-invoice-cell:last-child {
  justify-content: flex-end;
  font-weight: 600;
}

/* line 2215, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-future-invoice-period {
  font-size: 0.75rem;
  color: rgba(254, 254, 254, 0.8);
  font-style: italic;
}

/* line 2220, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-future-invoice-period {
  color: rgba(20, 13, 35, 0.8);
}

/* line 2225, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-future-invoice-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  gap: 12px;
  color: rgba(254, 254, 254, 0.6);
}

/* line 2234, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.lightmode .adv-future-invoice-empty {
  color: rgba(20, 13, 35, 0.6);
}

/* line 2238, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-future-invoice-empty i {
  font-size: 2rem;
  color: #C38761;
}

/* line 2243, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-future-invoice-empty p {
  margin: 0;
  font-size: 0.9rem;
  font-style: italic;
}

/* Boutons d'actions */
/* line 2251, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-row2 {
  width: 80%;
  height: 7.5%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
}

/* line 2261, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-row2 #fakeSubmitButton {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  border: none;
  cursor: pointer;
  background-color: #C38761;
  color: #140D23;
}

/* line 2276, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-row2 #fakeSubmitButton:hover {
  background-color: #864B28;
  transform: scale(1.05);
}

/* line 2282, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
.adv-new-invoice-row2 form {
  display: flex !important;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  align-items: center;
  height: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  /* line 2294, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
  .adv-new-invoice-config-row {
    grid-template-columns: 1fr;
  }
  /* line 2298, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
  .adv-new-invoice-filter-group {
    flex-direction: column;
  }
  /* line 2302, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
  .adv-new-invoice-market-type-selector {
    flex-direction: column;
  }
  /* line 2306, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
  .adv-new-invoice-transaction-selector {
    flex-direction: column;
  }
  /* line 2310, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
  .adv-new-invoice-recurrence-selector {
    flex-direction: column;
  }
  /* line 2314, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
  .adv-new-invoice-payment-terms-selector {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  /* line 2319, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
  .adv-new-invoice-payment-option {
    padding: 16px 12px;
    min-height: 100px;
  }
  /* line 2323, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
  .adv-new-invoice-payment-option i {
    font-size: 24px;
  }
  /* line 2327, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
  .adv-new-invoice-payment-option span {
    font-size: 14px;
  }
  /* line 2331, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
  .adv-new-invoice-payment-option small, .adv-new-invoice-payment-option .small {
    font-size: 11px;
  }
  /* line 2337, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
  .adv-new-invoice-custom-payment-input-group input[type="number"] {
    width: 80px;
  }
  /* line 2342, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
  .adv-new-invoice-custom-checkbox-container {
    padding: 10px 14px;
  }
  /* line 2345, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_invoice.scss */
  .adv-new-invoice-custom-checkbox-container:hover {
    transform: translateX(2px);
  }
}

/* line 14, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-container {
  position: relative;
  margin-top: 12px;
}

/* line 20, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 26, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-search input {
  flex: 1;
  padding: 10px 40px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

/* line 36, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-search input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 40, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-search input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

/* line 47, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
.lightmode .document-link-search input {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.1);
  color: #1a1d29;
}

/* line 52, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
.lightmode .document-link-search input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

/* line 56, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
.lightmode .document-link-search input:focus {
  border-color: rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.04);
}

/* line 65, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-loader {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
}

/* line 72, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
.lightmode .document-link-loader {
  color: rgba(0, 0, 0, 0.4);
}

/* line 78, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-results {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 100;
  max-height: 320px;
  overflow-y: auto;
  background: rgba(26, 29, 41, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* line 91, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
.lightmode .document-link-results {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* line 99, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-result-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.15s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* line 108, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-result-item:last-child {
  border-bottom: none;
}

/* line 112, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-result-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* line 116, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
.lightmode .document-link-result-item {
  border-bottom-color: rgba(0, 0, 0, 0.05);
}

/* line 119, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
.lightmode .document-link-result-item:hover {
  background: rgba(0, 0, 0, 0.04);
}

/* line 124, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-result-item .document-chrono {
  font-weight: 500;
  color: #fff;
  font-size: 0.9rem;
}

/* line 129, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
.lightmode .document-link-result-item .document-chrono {
  color: #1a1d29;
}

/* line 134, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-result-item .document-client {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  flex: 1;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 143, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
.lightmode .document-link-result-item .document-client {
  color: rgba(0, 0, 0, 0.5);
}

/* line 150, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
.document-type-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* line 162, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
.document-type-badge.badge-quote {
  background: #17a2b8;
  color: white;
}

/* line 167, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
.document-type-badge.badge-invoice {
  background: #28a745;
  color: white;
}

/* line 172, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
.document-type-badge.badge-contract {
  background: #6f42c1;
  color: white;
}

/* line 177, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
.document-type-badge.badge-orderForm {
  background: #20c997;
  color: white;
}

/* line 182, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
.document-type-badge.badge-depositInvoice {
  background: #fd7e14;
  color: white;
}

/* line 187, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
.document-type-badge.badge-creditNote {
  background: #dc3545;
  color: white;
}

/* line 192, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
.document-type-badge.badge-clientAcceptanceReport {
  background: #6c757d;
  color: white;
}

/* line 199, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-no-results,
.document-link-error {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* line 209, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
.lightmode .document-link-no-results, .lightmode .document-link-error {
  color: rgba(0, 0, 0, 0.4);
}

/* line 213, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-no-results i,
.document-link-error i {
  font-size: 1.1rem;
}

/* line 218, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-error {
  color: #dc3545;
}

/* line 221, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
.lightmode .document-link-error {
  color: #dc3545;
}

/* line 227, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-selected {
  margin-top: 12px;
}

/* line 231, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-selected-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: rgba(40, 167, 69, 0.15);
  border: 1px solid rgba(40, 167, 69, 0.3);
  border-radius: 8px;
}

/* line 240, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
.lightmode .document-link-selected-item {
  background: rgba(40, 167, 69, 0.1);
  border-color: rgba(40, 167, 69, 0.2);
}

/* line 246, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-selected-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 251, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-selected-info .document-link {
  color: #28a745;
  font-weight: 500;
  text-decoration: none;
}

/* line 256, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-selected-info .document-link:hover {
  text-decoration: underline;
}

/* line 262, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(220, 53, 69, 0.2);
  color: #dc3545;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 276, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-remove:hover {
  background: rgba(220, 53, 69, 0.3);
  transform: scale(1.1);
}

/* line 283, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-no-selection {
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  font-style: italic;
}

/* line 289, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
.lightmode .document-link-no-selection {
  color: rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
  /* line 296, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
  .document-link-result-item {
    flex-wrap: wrap;
  }
  /* line 299, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_autocomplete.scss */
  .document-link-result-item .document-client {
    flex: 100%;
    text-align: left;
    margin-top: 4px;
  }
}

/* line 11, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(40, 167, 69, 0.15);
  border: 1px solid rgba(40, 167, 69, 0.3);
  border-radius: 8px;
  max-width: 100%;
}

/* line 21, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-chip {
  background: rgba(40, 167, 69, 0.1);
  border-color: rgba(40, 167, 69, 0.2);
}

/* line 26, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-chip-info {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1;
}

/* line 34, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-chip-link {
  color: #28a745;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 43, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-chip-link:hover {
  text-decoration: underline;
}

/* line 48, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-chip-client {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 55, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-chip-client {
  color: rgba(0, 0, 0, 0.5);
}

/* line 60, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-chip-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(220, 53, 69, 0.2);
  color: #dc3545;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

/* line 75, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-chip-remove:hover {
  background: rgba(220, 53, 69, 0.3);
  transform: scale(1.1);
}

/* line 82, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-no-selection-text {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  font-style: italic;
}

/* line 88, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-no-selection-text {
  color: rgba(0, 0, 0, 0.35);
}

/* line 93, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-open-drawer-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 107, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-open-drawer-btn:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

/* line 113, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-open-drawer-btn {
  border-color: rgba(0, 0, 0, 0.15);
  color: rgba(0, 0, 0, 0.6);
}

/* line 117, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-open-drawer-btn:hover {
  border-color: rgba(0, 0, 0, 0.3);
  color: rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.03);
}

/* line 124, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-open-drawer-btn i {
  font-size: 0.8rem;
}

/* line 133, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* line 147, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-overlay.active {
  opacity: 1;
}

/* line 152, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-panel {
  width: 700px;
  max-width: 90%;
  max-height: 85vh;
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
  color: white;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.95);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* line 170, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-overlay.active .document-link-drawer-panel {
  transform: scale(1);
  opacity: 1;
}

/* line 175, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-panel {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(20, 13, 35, 0.15);
  color: #140D23;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* line 184, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* line 192, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-header {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

/* line 196, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-header h3, .document-link-drawer-header .h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

/* line 202, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-header h3, .lightmode .document-link-drawer-header .h3 {
  color: #140D23;
}

/* line 208, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 221, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* line 226, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-close {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.5);
}

/* line 230, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-close:hover {
  background: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.8);
}

/* line 238, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

/* line 246, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-filters {
  border-bottom-color: rgba(0, 0, 0, 0.05);
}

/* line 251, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-filter-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 263, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-filter-pill:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
}

/* line 268, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-filter-pill.active {
  background: rgba(195, 135, 97, 0.25);
  border-color: rgba(195, 135, 97, 0.5);
  color: #C38761;
  font-weight: 500;
}

/* line 275, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-filter-pill {
  border-color: rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.5);
}

/* line 279, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-filter-pill:hover {
  border-color: rgba(0, 0, 0, 0.25);
  color: rgba(0, 0, 0, 0.8);
}

/* line 284, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-filter-pill.active {
  background: rgba(195, 135, 97, 0.12);
  border-color: rgba(195, 135, 97, 0.4);
  color: #af6c42;
}

/* line 293, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-search {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

/* line 298, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-search {
  border-bottom-color: rgba(0, 0, 0, 0.05);
}

/* line 302, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-search input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(195, 135, 97, 0.4);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

/* line 312, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-search input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* line 316, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-search input:focus {
  outline: none;
  border-color: rgba(195, 135, 97, 0.7);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.15);
}

/* line 323, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-search input {
  background: #e8e8e8;
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 328, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-search input::placeholder {
  color: rgba(0, 0, 0, 0.35);
}

/* line 332, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-search input:focus {
  border-color: rgba(20, 13, 35, 0.4);
  background: #e3e3e3;
  box-shadow: 0 0 0 2px rgba(20, 13, 35, 0.1);
}

/* line 342, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-results {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
}

/* line 348, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-results::-webkit-scrollbar {
  width: 6px;
}

/* line 352, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-results::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

/* line 357, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-results::-webkit-scrollbar-thumb {
  background: rgba(195, 135, 97, 0.5);
  border-radius: 3px;
}

/* line 361, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-results::-webkit-scrollbar-thumb:hover {
  background: rgba(195, 135, 97, 0.7);
}

/* line 368, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-result-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  cursor: pointer;
  transition: background 0.15s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* line 377, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-result-item:last-child {
  border-bottom: none;
}

/* line 381, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-result-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* line 385, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-result-item {
  border-bottom-color: rgba(0, 0, 0, 0.03);
}

/* line 388, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-result-item:hover {
  background: rgba(0, 0, 0, 0.03);
}

/* line 394, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-result-chrono {
  font-weight: 500;
  color: #fff;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* line 400, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-result-chrono {
  color: #140D23;
}

/* line 405, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-result-client {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  flex: 1;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 414, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-result-client {
  color: rgba(0, 0, 0, 0.45);
}

/* line 419, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-result-date {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
  white-space: nowrap;
}

/* line 424, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-result-date {
  color: rgba(0, 0, 0, 0.35);
}

/* line 430, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 40px 24px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  text-align: center;
}

/* line 441, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-empty {
  color: rgba(0, 0, 0, 0.35);
}

/* line 445, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-empty i {
  font-size: 1.5rem;
  opacity: 0.6;
}

/* line 452, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  color: rgba(255, 255, 255, 0.5);
}

/* line 459, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-loading {
  color: rgba(0, 0, 0, 0.4);
}

/* line 468, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-display {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

/* line 475, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-display-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* line 486, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-display-chip:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

/* line 491, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-display-chip {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.08);
}

/* line 495, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-display-chip:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.15);
}

/* line 501, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.document-link-display-chip .document-link-display-chrono {
  color: #fff;
  font-weight: 500;
  font-size: 0.85rem;
}

/* line 506, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-display-chip .document-link-display-chrono {
  color: #140D23;
}

/* line 516, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.adv-document-link--linked {
  border-left: 3px solid #C38761;
}

/* line 520, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.adv-document-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
}

/* line 527, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.adv-document-link-indicator {
  color: #C38761;
  font-size: 0.7rem;
  opacity: 0.8;
}

/* line 533, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.adv-document-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* line 539, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.adv-document-separator {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
}

/* line 543, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .adv-document-separator {
  color: rgba(20, 13, 35, 0.3);
}

/* line 548, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.adv-document-card-actions {
  display: flex;
  gap: 4px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 554, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .adv-document-card-actions {
  border-top-color: rgba(20, 13, 35, 0.08);
}

/* line 559, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.adv-card-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border: none;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

/* line 574, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.adv-card-action-btn i {
  font-size: 0.65rem;
}

/* line 578, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.adv-card-action-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* line 583, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .adv-card-action-btn {
  background: rgba(20, 13, 35, 0.05);
  color: rgba(20, 13, 35, 0.6);
}

/* line 587, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .adv-card-action-btn:hover {
  background: rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 593, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.adv-card-action-btn--link:hover {
  background: rgba(195, 135, 97, 0.15);
  color: #C38761;
}

/* line 598, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
.adv-card-action-btn--danger:hover {
  background: rgba(220, 53, 69, 0.15);
  color: #dc3545;
}

@media (max-width: 768px) {
  /* line 609, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
  .document-link-drawer-panel {
    width: 95%;
    max-height: 90vh;
  }
  /* line 614, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
  .document-link-chip {
    flex-wrap: wrap;
  }
  /* line 617, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
  .document-link-chip-client {
    flex: 100%;
  }
  /* line 622, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
  .document-link-drawer-result-item {
    flex-wrap: wrap;
  }
  /* line 625, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_document_link_drawer.scss */
  .document-link-drawer-result-item .document-link-drawer-result-client {
    flex: 100%;
    text-align: left;
    margin-top: 2px;
  }
}

/* ==========================================================================
   ADV SHOW TABS SCROLLER
   Chevrons de navigation horizontale pour les onglets des pages show ADV.
   Réutilise landing_scroller_controller.js (query .orizon-rail-arrow--left/--right).
   ========================================================================== */
/* line 7, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_adv_show_tabs_scroller.scss */
.adv-tabs-scroller {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* line 13, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_adv_show_tabs_scroller.scss */
.adv-tabs-scroller-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.65rem;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

/* line 29, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_adv_show_tabs_scroller.scss */
.lightmode .adv-tabs-scroller-arrow {
  background-color: rgba(20, 13, 35, 0.08);
  color: rgba(20, 13, 35, 0.6);
}

/* line 34, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_adv_show_tabs_scroller.scss */
.adv-tabs-scroller-arrow:hover:not([disabled]) {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* line 38, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_adv_show_tabs_scroller.scss */
.lightmode .adv-tabs-scroller-arrow:hover:not([disabled]) {
  background-color: rgba(20, 13, 35, 0.15);
  color: #140D23;
}

/* line 44, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/../../../../../shared/_adv_show_tabs_scroller.scss */
.adv-tabs-scroller-arrow[disabled] {
  opacity: 0;
  cursor: default;
  pointer-events: none;
}

/* ==========================================================================
   SHOW INVOICE - MODULE ADV
   Structure principale et composants pour l'affichage détaillé d'une facture
   ========================================================================== */
/* line 6, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 1200px;
  margin: 0px auto;
  height: 100%;
  flex: 1;
  padding: 20px;
  overflow-x: hidden;
  overflow-y: auto;
  /* Personnalisation de la barre de défilement */
}

/* line 18, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-container::-webkit-scrollbar {
  width: 8px;
}

/* line 22, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 27, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-container::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 32, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-container::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 35, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-container.lightmode {
  color: #140D23;
}

/* line 42, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.lightmode .adv-summary-total-ttc .adv-value {
  color: #C38761 !important;
}

/* line 47, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.lightmode .adv-document-list p {
  color: #140D23 !important;
}

/* line 53, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-main-content {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 10px;
  min-width: 0;
  transition: all 0.3s ease;
}

/* line 61, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-main-content.wide-margins {
  justify-content: center;
}

/* line 66, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  height: 100%;
  flex: 1;
  min-width: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 5px;
  overflow: hidden;
  /* ==========================================================================
     EN-TÊTE AVEC INFORMATIONS DE LA FACTURE ET ONGLETS
     ========================================================================== */
  /* ==========================================================================
     CONTENU DES ONGLETS
     ========================================================================== */
  /* ==========================================================================
     ONGLET DÉTAILS - CONTENU SPÉCIFIQUE
     ========================================================================== */
}

/* line 79, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.lightmode .adv-show-invoice-capsule {
  background-color: rgba(20, 13, 35, 0.05);
  color: #140D23;
}

/* line 87, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-header-tabs {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

/* line 93, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-header-tabs .adv-invoice-info-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 5px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

/* line 103, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.lightmode .adv-show-invoice-capsule .adv-invoice-header-tabs .adv-invoice-info-header {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 107, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-header-tabs .adv-invoice-info-header .adv-header-section, .adv-show-invoice-capsule .adv-invoice-header-tabs .adv-invoice-info-header .adv-contract-number-section,
.adv-show-invoice-capsule .adv-invoice-header-tabs .adv-invoice-info-header .adv-market-type-section {
  display: flex;
  flex-direction: row;
  gap: 5px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* line 115, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-header-tabs .adv-invoice-info-header .adv-header-section .adv-label, .adv-show-invoice-capsule .adv-invoice-header-tabs .adv-invoice-info-header .adv-contract-number-section .adv-label,
.adv-show-invoice-capsule .adv-invoice-header-tabs .adv-invoice-info-header .adv-market-type-section .adv-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  white-space: nowrap;
  display: block;
}

/* line 121, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.lightmode .adv-show-invoice-capsule .adv-invoice-header-tabs .adv-invoice-info-header .adv-header-section .adv-label, .lightmode .adv-show-invoice-capsule .adv-invoice-header-tabs .adv-invoice-info-header .adv-contract-number-section .adv-label,
.lightmode .adv-show-invoice-capsule .adv-invoice-header-tabs .adv-invoice-info-header .adv-market-type-section .adv-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 126, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-header-tabs .adv-invoice-info-header .adv-header-section .adv-value, .adv-show-invoice-capsule .adv-invoice-header-tabs .adv-invoice-info-header .adv-contract-number-section .adv-value,
.adv-show-invoice-capsule .adv-invoice-header-tabs .adv-invoice-info-header .adv-market-type-section .adv-value {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  display: block;
}

/* line 132, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.lightmode .adv-show-invoice-capsule .adv-invoice-header-tabs .adv-invoice-info-header .adv-header-section .adv-value, .lightmode .adv-show-invoice-capsule .adv-invoice-header-tabs .adv-invoice-info-header .adv-contract-number-section .adv-value,
.lightmode .adv-show-invoice-capsule .adv-invoice-header-tabs .adv-invoice-info-header .adv-market-type-section .adv-value {
  color: #140D23;
}

/* line 138, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-header-tabs .adv-invoice-info-header .adv-header-section.adv-recipient-name-section .adv-value, .adv-show-invoice-capsule .adv-invoice-header-tabs .adv-invoice-info-header .adv-recipient-name-section.adv-contract-number-section .adv-value,
.adv-show-invoice-capsule .adv-invoice-header-tabs .adv-invoice-info-header .adv-recipient-name-section.adv-market-type-section .adv-value {
  font-size: 1rem;
}

/* line 145, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-header-tabs .adv-invoice-tabs {
  display: flex;
  gap: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
  overflow-x: auto;
  flex: 1;
  min-width: 0;
  scrollbar-width: none;
}

/* line 154, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-header-tabs .adv-invoice-tabs::-webkit-scrollbar {
  display: none;
}

/* line 156, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.lightmode .adv-show-invoice-capsule .adv-invoice-header-tabs .adv-invoice-tabs {
  border-bottom: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 160, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-header-tabs .adv-invoice-tabs .adv-tab-button {
  padding: 5px 10px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  border-radius: 8px 8px 0 0;
}

/* line 172, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.lightmode .adv-show-invoice-capsule .adv-invoice-header-tabs .adv-invoice-tabs .adv-tab-button {
  color: rgba(20, 13, 35, 0.7);
}

/* line 176, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-header-tabs .adv-invoice-tabs .adv-tab-button:hover {
  color: rgba(255, 255, 255, 0.9);
  background-color: rgba(255, 255, 255, 0.05);
}

/* line 180, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.lightmode .adv-show-invoice-capsule .adv-invoice-header-tabs .adv-invoice-tabs .adv-tab-button:hover {
  color: rgba(20, 13, 35, 0.9);
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 186, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-header-tabs .adv-invoice-tabs .adv-tab-button.active {
  color: #C38761;
  border-bottom-color: #C38761;
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 191, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.lightmode .adv-show-invoice-capsule .adv-invoice-header-tabs .adv-invoice-tabs .adv-tab-button.active {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 202, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-tab-content {
  flex: 1;
  overflow: hidden;
}

/* line 206, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-tab-content .adv-tab-panel {
  display: none;
  height: 100%;
  flex-direction: column;
  gap: 15px;
  /* ==========================================================================
         EN-TÊTE DU CONTENU DES ONGLETS
         ========================================================================== */
  /* ==========================================================================
         CORPS DU CONTENU DES ONGLETS
         ========================================================================== */
}

/* line 212, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-tab-content .adv-tab-panel.active {
  display: flex;
}

/* line 219, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-tab-content .adv-tab-panel .adv-tab-content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

/* line 227, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.lightmode .adv-show-invoice-capsule .adv-invoice-tab-content .adv-tab-panel .adv-tab-content-header {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 231, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-tab-content .adv-tab-panel .adv-tab-content-header h3, .adv-show-invoice-capsule .adv-invoice-tab-content .adv-tab-panel .adv-tab-content-header .h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  color: #fff;
}

/* line 237, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.lightmode .adv-show-invoice-capsule .adv-invoice-tab-content .adv-tab-panel .adv-tab-content-header h3, .lightmode .adv-show-invoice-capsule .adv-invoice-tab-content .adv-tab-panel .adv-tab-content-header .h3 {
  color: #140D23;
}

/* line 242, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-tab-content .adv-tab-panel .adv-tab-content-header .adv-create-button {
  padding: 8px 16px;
  background-color: #C38761;
  color: #140D23;
  border: none;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* line 256, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-tab-content .adv-tab-panel .adv-tab-content-header .adv-create-button:hover {
  background-color: #af6c42;
  transform: translateY(-1px);
}

/* line 261, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-tab-content .adv-tab-panel .adv-tab-content-header .adv-create-button i {
  font-size: 0.7rem;
}

/* line 270, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-tab-content .adv-tab-panel .adv-tab-content-body {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  /* Personnalisation de la barre de défilement */
  /* ==========================================================================
           GRILLE DE DOCUMENTS
           ========================================================================== */
}

/* line 277, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.lightmode .adv-show-invoice-capsule .adv-invoice-tab-content .adv-tab-panel .adv-tab-content-body {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 282, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-tab-content .adv-tab-panel .adv-tab-content-body::-webkit-scrollbar {
  width: 4px;
}

/* line 286, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-tab-content .adv-tab-panel .adv-tab-content-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 291, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-tab-content .adv-tab-panel .adv-tab-content-body::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 296, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-tab-content .adv-tab-panel .adv-tab-content-body::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 300, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-tab-content .adv-tab-panel .adv-tab-content-body p {
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  text-align: center;
  margin: 2rem 0;
}

/* line 306, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.lightmode .adv-show-invoice-capsule .adv-invoice-tab-content .adv-tab-panel .adv-tab-content-body p {
  color: rgba(20, 13, 35, 0.7);
}

/* line 314, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  padding: 5px;
  max-height: 100%;
  overflow-y: auto;
  /* Personnalisation de la barre de défilement */
}

/* line 323, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid::-webkit-scrollbar {
  width: 4px;
}

/* line 327, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 332, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 337, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 341, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

/* line 354, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.lightmode .adv-show-invoice-capsule .adv-invoice-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-link {
  background-color: rgba(20, 13, 35, 0.05);
  border: 1px solid rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 360, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-link .adv-document-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* line 367, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-link .adv-document-title i {
  color: #C38761;
  font-size: 0.8rem;
}

/* line 373, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-link .adv-document-details {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 380, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.lightmode .adv-show-invoice-capsule .adv-invoice-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-link .adv-document-details {
  color: rgba(20, 13, 35, 0.7);
}

/* line 384, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-link .adv-document-details .adv-document-amount {
  font-weight: 600;
  color: #C38761;
}

/* line 389, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-link .adv-document-details .adv-document-date {
  font-style: italic;
}

/* line 394, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-link .adv-document-status {
  display: flex;
  justify-content: flex-end;
}

/* line 398, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-link .adv-document-status .status-badge {
  font-size: 0.65rem;
  padding: 2px 8px;
}

/* line 412, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-articles-section {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  height: 70%;
}

/* line 417, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.lightmode .adv-show-invoice-capsule .adv-invoice-articles-section {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 421, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-articles-section .adv-articles-table {
  height: 100%;
  overflow-y: auto;
  /* Personnalisation de la barre de défilement */
}

/* line 426, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-articles-section .adv-articles-table::-webkit-scrollbar {
  width: 4px;
}

/* line 430, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-articles-section .adv-articles-table::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 435, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-articles-section .adv-articles-table::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 440, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-articles-section .adv-articles-table::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 444, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-articles-section .adv-table-cell, .adv-show-invoice-capsule .adv-invoice-articles-section .adv-header-cgv, .adv-show-invoice-capsule .adv-invoice-articles-section .adv-header-quantity, .adv-show-invoice-capsule .adv-invoice-articles-section .adv-header-price-ttc, .adv-show-invoice-capsule .adv-invoice-articles-section .adv-header-price-ht, .adv-show-invoice-capsule .adv-invoice-articles-section .adv-header-discount-perc, .adv-show-invoice-capsule .adv-invoice-articles-section .adv-header-article {
  padding: 8px 12px;
  display: flex;
  align-items: center;
}

/* line 450, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-articles-section .adv-articles-table-header {
  display: flex;
  background-color: rgba(255, 255, 255, 0.08);
  white-space: nowrap;
  font-weight: 600;
  padding: 5px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* line 460, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.lightmode .adv-show-invoice-capsule .adv-invoice-articles-section .adv-articles-table-header {
  background-color: rgba(20, 13, 35, 0.08);
  color: rgba(20, 13, 35, 0.8);
  border-bottom: 1px solid rgba(20, 13, 35, 0.15);
}

/* line 467, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-articles-section .adv-articles-table-body {
  height: auto;
  min-height: 200px;
  overflow-y: hidden;
  /* Personnalisation de la barre de défilement */
}

/* line 473, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-articles-section .adv-articles-table-body::-webkit-scrollbar {
  width: 4px;
}

/* line 477, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-articles-section .adv-articles-table-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 482, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-articles-section .adv-articles-table-body::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 487, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-articles-section .adv-articles-table-body::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 491, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-articles-section .adv-articles-table-body .adv-articles-table-row {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  white-space: nowrap;
}

/* line 497, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-articles-section .adv-articles-table-body .adv-articles-table-row:last-child {
  border-bottom: none;
}

/* line 501, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-articles-section .adv-articles-table-body .adv-articles-table-row:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

/* line 505, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.lightmode .adv-show-invoice-capsule .adv-invoice-articles-section .adv-articles-table-body .adv-articles-table-row {
  border-bottom: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 508, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.lightmode .adv-show-invoice-capsule .adv-invoice-articles-section .adv-articles-table-body .adv-articles-table-row:hover {
  background-color: rgba(20, 13, 35, 0.03);
}

/* line 514, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-articles-section .adv-articles-table-body.adv-no-articles-container {
  text-align: center;
  padding: 2rem 15px;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  font-size: 0.85rem;
}

/* line 521, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.lightmode .adv-show-invoice-capsule .adv-invoice-articles-section .adv-articles-table-body.adv-no-articles-container {
  color: rgba(20, 13, 35, 0.6);
}

/* line 527, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-articles-section .adv-header-article {
  width: 30%;
  justify-content: flex-start;
  padding: 5px;
  white-space: normal;
}

/* line 534, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-articles-section .adv-header-discount-perc {
  width: 12%;
  justify-content: center;
  padding: 5px;
}

/* line 540, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-articles-section .adv-header-price-ht {
  width: 16%;
  justify-content: center;
  padding: 5px;
}

/* line 546, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-articles-section .adv-header-price-ttc {
  width: 16%;
  justify-content: center;
  padding: 5px;
}

/* line 552, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-articles-section .adv-header-quantity {
  width: 10%;
  justify-content: center;
  padding: 5px;
}

/* line 558, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-articles-section .adv-header-cgv {
  width: 16%;
  justify-content: center;
  padding: 5px;
}

/* line 565, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-articles-section .adv-table-cell {
  color: #fff;
  font-size: 0.8rem;
  padding: 5px;
}

/* line 570, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.lightmode .adv-show-invoice-capsule .adv-invoice-articles-section .adv-table-cell {
  color: #140D23;
}

/* line 575, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-articles-section .adv-cell-article {
  width: 30%;
  justify-content: flex-start;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
  min-width: 0;
}

/* line 583, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-articles-section .adv-cell-discount-perc {
  width: 12%;
  justify-content: center;
}

/* line 587, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-articles-section .adv-cell-price-ht {
  width: 16%;
  justify-content: center;
}

/* line 591, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-articles-section .adv-cell-price-ttc {
  width: 16%;
  justify-content: center;
}

/* line 595, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-articles-section .adv-cell-quantity {
  width: 10%;
  justify-content: center;
}

/* line 599, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-articles-section .adv-cell-cgv {
  width: 16%;
  justify-content: center;
}

/* line 605, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-summary-section {
  height: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 5px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

/* line 615, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.lightmode .adv-show-invoice-capsule .adv-invoice-summary-section {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 619, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-summary-section .adv-summary-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 5px;
  flex: 1 1 0;
}

/* line 628, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-summary-section .adv-summary-item .adv-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  margin-bottom: 0;
  display: block;
}

/* line 634, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.lightmode .adv-show-invoice-capsule .adv-invoice-summary-section .adv-summary-item .adv-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 639, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-summary-section .adv-summary-item .adv-value {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  display: block;
  text-align: center;
}

/* line 646, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.lightmode .adv-show-invoice-capsule .adv-invoice-summary-section .adv-summary-item .adv-value {
  color: #140D23;
}

/* line 652, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-show-invoice-capsule .adv-invoice-summary-section .adv-summary-item.adv-summary-total-ttc .adv-value {
  color: #d4a574;
  font-size: 1.1rem;
}

/* line 661, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-invoice-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding: 0;
  transition: all 0.3s ease;
}

/* line 669, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-invoice-actions.wide-margins {
  margin-right: 0;
}

/* line 674, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-invoice-actions .adv-button-success {
  position: relative;
  overflow: hidden;
}

/* line 679, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-invoice-actions .adv-button-success::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  z-index: 1;
  pointer-events: none;
}

/* line 693, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-invoice-actions .adv-button-success:hover::before {
  transform: translateX(100%);
}

/* line 698, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-invoice-actions .adv-button-success > * {
  position: relative;
  z-index: 2;
}

/* line 704, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-invoice-actions .adv-action-button {
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.8rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* line 718, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-invoice-actions .adv-action-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

/* line 723, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-invoice-actions .adv-action-button.adv-action-button-primary {
  background-color: #C38761;
  border-color: #C38761;
  color: #140D23;
}

/* line 728, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-invoice-actions .adv-action-button.adv-action-button-primary:hover {
  background-color: #af6c42;
}

/* line 733, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-invoice-actions .adv-action-button.adv-action-button-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

/* line 738, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-invoice-actions .adv-action-button.adv-action-button-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 742, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.lightmode .adv-invoice-actions .adv-action-button.adv-action-button-secondary {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 747, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.lightmode .adv-invoice-actions .adv-action-button.adv-action-button-secondary:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* line 755, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-invoice-sidebar {
  width: 300px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 10px;
  height: 100%;
  margin-top: 0;
  transition: all 0.3s ease;
  /* Personnalisation de la barre de défilement */
}

/* line 764, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.lightmode .adv-invoice-sidebar {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 769, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-invoice-sidebar::-webkit-scrollbar {
  width: 6px;
}

/* line 773, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-invoice-sidebar::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 778, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-invoice-sidebar::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 783, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-invoice-sidebar::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 787, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-invoice-sidebar.hidden {
  display: none;
}

/* line 791, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-invoice-sidebar .invoice-documents-section {
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 15px;
}

/* line 796, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-invoice-sidebar .invoice-documents-section .section-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

/* line 802, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.lightmode .adv-invoice-sidebar .invoice-documents-section .section-label {
  color: #140D23;
}

/* line 807, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-invoice-sidebar .invoice-documents-section .documents-section-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 812, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-invoice-sidebar .invoice-documents-section .documents-section-content .document-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* line 817, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-invoice-sidebar .invoice-documents-section .documents-section-content .document-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}

/* line 821, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.lightmode .adv-invoice-sidebar .invoice-documents-section .documents-section-content .document-item:not(:last-child) {
  border-bottom: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 826, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-invoice-sidebar .invoice-documents-section .documents-section-content .document-item .document-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 830, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.lightmode .adv-invoice-sidebar .invoice-documents-section .documents-section-content .document-item .document-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 835, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-invoice-sidebar .invoice-documents-section .documents-section-content .document-item .document-value {
  font-size: 0.85rem;
  color: #fff;
}

/* line 839, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.lightmode .adv-invoice-sidebar .invoice-documents-section .documents-section-content .document-item .document-value {
  color: #140D23;
}

/* line 844, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-invoice-sidebar .invoice-documents-section .documents-section-content .document-item .adv-document-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
}

/* line 857, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.lightmode .adv-invoice-sidebar .invoice-documents-section .documents-section-content .document-item .adv-document-link {
  border: 1px solid rgba(20, 13, 35, 0.1);
  background-color: rgba(20, 13, 35, 0.05);
  color: #140D23;
}

/* line 867, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-invoice-sidebar .schedule-view-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #C38761;
  text-decoration: underline;
  font-size: 0.8rem;
  transition: opacity 0.2s ease;
}

/* line 876, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.adv-invoice-sidebar .schedule-view-link:hover {
  opacity: 0.8;
}

/* line 880, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 300;
  text-align: center;
}

/* line 888, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.status-badge.draft {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

/* line 892, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.lightmode .status-badge.draft {
  background-color: rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.8);
}

/* line 898, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.status-badge.sent {
  background-color: #C38761;
  color: #140D23;
}

/* line 903, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.status-badge.scheduled {
  background-color: #0037f466;
  color: rgba(232, 232, 232, 0.7);
}

/* line 907, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.lightmode .status-badge.scheduled {
  background-color: #2196f366;
}

/* line 912, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.status-badge.validated {
  background-color: #4CAF50;
  color: white;
}

/* line 917, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.status-badge.non-defini {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* line 921, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.lightmode .status-badge.non-defini {
  background-color: rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.6);
}

/* line 928, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.status-badge.success {
  background-color: #4CAF50;
  color: white;
}

/* line 933, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.status-badge.warning {
  background-color: #FF9800;
  color: white;
}

/* line 938, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.status-badge.secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* line 942, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.lightmode .status-badge.secondary {
  background-color: rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.6);
}

/* line 949, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.status-badge.paid {
  background-color: #4CAF50;
  color: white;
}

/* line 954, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.status-badge.pending {
  background-color: #FF9800;
  color: white;
}

/* line 959, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.status-badge.overdue {
  background-color: #F44336;
  color: white;
}

/* line 964, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.status-badge.cancelled {
  background-color: #9E9E9E;
  color: white;
}

/* line 970, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.status-badge.completed {
  background-color: #4CAF50;
  color: white;
}

/* line 975, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.status-badge.in_progress {
  background-color: #2196F3;
  color: white;
}

/* line 980, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.status-badge.pending_validation {
  background-color: #FF9800;
  color: white;
}

/* line 985, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.status-badge.rejected {
  background-color: #F44336;
  color: white;
}

/* Badge pour les conditions de paiement */
/* line 992, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.payment-terms-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.15), rgba(195, 135, 97, 0.05));
  border: 1px solid rgba(195, 135, 97, 0.3);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #FFFFFF;
  transition: all 0.3s ease;
}

/* line 1005, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.lightmode .payment-terms-badge {
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.2), rgba(195, 135, 97, 0.1));
  border-color: rgba(195, 135, 97, 0.4);
  color: #140D23;
}

/* line 1011, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.payment-terms-badge i {
  color: #C38761;
  font-size: 1rem;
}

/* line 1015, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.lightmode .payment-terms-badge i {
  color: #af6c42;
}

/* line 1020, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.payment-terms-badge:hover {
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.25), rgba(195, 135, 97, 0.15));
  border-color: rgba(195, 135, 97, 0.5);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(195, 135, 97, 0.1);
}

/* line 1026, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.lightmode .payment-terms-badge:hover {
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.3), rgba(195, 135, 97, 0.2));
  border-color: rgba(195, 135, 97, 0.6);
}

/* Classes utilitaires */
/* line 1034, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.d-none {
  display: none !important;
}

/* line 1038, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_invoice.scss */
.hidden {
  display: none !important;
}

/* line 1, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-capsule {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 10px 30px 10px 30px;
  font-size: 0.8rem;
}

/* line 10, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-capsule.lightmode {
  color: #140D23;
}

/* line 15, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-invoice-contacts-capsule span {
  color: #140D23;
}

/* line 19, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.nightmode .adv-invoice-contacts-capsule span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 25, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-invoice-contacts-capsule p {
  color: #140D23;
}

/* line 29, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.nightmode .adv-invoice-contacts-capsule p {
  color: #FFFFFF;
}

/* line 35, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-invoice-contacts-capsule i {
  color: #140D23;
}

/* line 39, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.nightmode .adv-invoice-contacts-capsule i {
  color: #FFFFFF;
}

/* line 45, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 52, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-tabs {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(232, 232, 232, 0.3);
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}

/* line 63, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-invoice-contacts-tabs {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 69, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-tab-button {
  flex: 1;
  padding: 15px 20px;
  background-color: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* line 84, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-tab-button {
  color: rgba(20, 13, 35, 0.6);
}

/* line 88, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-tab-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

/* line 92, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-tab-button:hover {
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 98, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-tab-button.adv-tab-active {
  background-color: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  font-weight: 600;
}

/* line 103, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-tab-button.adv-tab-active {
  background-color: rgba(20, 13, 35, 0.15);
  color: #140D23;
}

/* line 109, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-tab-button i {
  font-size: 1rem;
}

/* line 114, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-content {
  width: 100%;
  height: 85%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(232, 232, 232, 0.5);
  border-top: none;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
}

/* line 123, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-invoice-contacts-content {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 129, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-tab-content {
  display: none;
  height: 100%;
  width: 100%;
}

/* line 134, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-tab-content.adv-tab-active {
  display: block;
}

/* line 140, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-row1 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-right: 20px;
}

/* line 149, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-row1 form {
  width: 35%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-right: 1px solid rgba(232, 232, 232, 0.5);
  padding: 10px;
}

/* line 160, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-invoice-contacts-row1 form {
  border-right-color: rgba(20, 13, 35, 0.2);
}

/* line 165, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-row1 form input:focus {
  background-color: transparent;
}

/* line 171, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-row1 .adv-invoice-contacts-row1-column2 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 10px;
  padding: 20px;
}

/* line 183, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-row1-column1 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
}

/* line 193, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-row1-column1-create-contact {
  width: 100%;
  margin-bottom: 10px;
}

/* line 198, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-create-contact-button {
  width: 100%;
  padding: 10px 15px;
  background-color: rgba(195, 135, 97, 0.2);
  border: 1px solid rgba(195, 135, 97, 0.4);
  border-radius: 8px;
  color: #C38761;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* line 214, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-create-contact-button {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 220, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-create-contact-button:hover {
  background-color: rgba(195, 135, 97, 0.3);
  border-color: rgba(195, 135, 97, 0.6);
  transform: translateY(-1px);
}

/* line 225, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-create-contact-button:hover {
  background-color: rgba(20, 13, 35, 0.2);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 231, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-create-contact-button i {
  font-size: 0.8rem;
  color: inherit;
}

/* line 237, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-row1-column1-searchbar {
  width: 100%;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 250, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-invoice-contacts-row1-column1-searchbar {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 255, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-row1-column1-searchbar button {
  all: unset;
}

/* line 259, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-row1-column1-searchbar i {
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 264, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-invoice-contacts-row1-column1-searchbar i {
  color: #140D23 !important;
}

/* line 269, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-row1-column1-searchbar span {
  font-weight: normal !important;
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 275, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-invoice-contacts-row1-column1-searchbar span {
  color: #140D23 !important;
}

/* line 281, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-row1-column1-results {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 10px;
  width: 100%;
}

/* line 289, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-row1-column1-results h3, .adv-invoice-contacts-row1-column1-results .h3 {
  all: unset;
  font-size: 0.8rem;
}

/* line 293, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-invoice-contacts-row1-column1-results h3, .lightmode .adv-invoice-contacts-row1-column1-results .h3 {
  color: #140D23;
}

/* line 298, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-row1-column1-results .results {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* line 305, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-row1-column1-results .results p {
  all: unset;
  font-size: 0.7rem;
  text-align: center;
  color: #FFFFFF;
}

/* line 311, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-invoice-contacts-row1-column1-results .results p {
  color: #140D23;
}

/* line 319, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-row1-column2-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  width: 100%;
  margin-bottom: 5px;
  height: 15%;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
}

/* line 332, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-invoice-contacts-row1-column2-header {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 336, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-row1-column2-header .adv-header-section, .adv-invoice-contacts-row1-column2-header .adv-contract-number-section,
.adv-invoice-contacts-row1-column2-header .adv-market-type-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  gap: 5px;
}

/* line 343, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-row1-column2-header .adv-header-section .adv-label, .adv-invoice-contacts-row1-column2-header .adv-contract-number-section .adv-label,
.adv-invoice-contacts-row1-column2-header .adv-market-type-section .adv-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  margin-bottom: 0;
  display: block;
  white-space: nowrap;
}

/* line 350, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-invoice-contacts-row1-column2-header .adv-header-section .adv-label, .lightmode .adv-invoice-contacts-row1-column2-header .adv-contract-number-section .adv-label,
.lightmode .adv-invoice-contacts-row1-column2-header .adv-market-type-section .adv-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 355, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-row1-column2-header .adv-header-section .adv-value, .adv-invoice-contacts-row1-column2-header .adv-contract-number-section .adv-value,
.adv-invoice-contacts-row1-column2-header .adv-market-type-section .adv-value {
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  display: block;
  white-space: nowrap;
}

/* line 362, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-invoice-contacts-row1-column2-header .adv-header-section .adv-value, .lightmode .adv-invoice-contacts-row1-column2-header .adv-contract-number-section .adv-value,
.lightmode .adv-invoice-contacts-row1-column2-header .adv-market-type-section .adv-value {
  color: #140D23;
}

/* line 368, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-row1-column2-header .adv-header-section.adv-recipient-name-section .adv-value, .adv-invoice-contacts-row1-column2-header .adv-recipient-name-section.adv-contract-number-section .adv-value,
.adv-invoice-contacts-row1-column2-header .adv-recipient-name-section.adv-market-type-section .adv-value {
  font-size: 0.7rem;
}

/* line 376, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-articles-table {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  width: 100%;
  overflow: hidden;
  margin-bottom: 10px;
}

/* line 384, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-articles-table {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 390, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-articles-table-header {
  display: flex;
  background-color: rgba(255, 255, 255, 0.08);
  font-weight: 600;
  white-space: nowrap;
  font-size: 0.75rem;
  padding: 5px;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* line 400, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-articles-table-header {
  background-color: rgba(20, 13, 35, 0.08);
  color: rgba(20, 13, 35, 0.8);
  border-bottom-color: rgba(20, 13, 35, 0.15);
}

/* line 407, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-articles-table-body {
  min-height: 120px;
  max-height: 300px;
  overflow-y: auto;
}

/* line 412, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-articles-table-body.adv-no-articles-container {
  text-align: center;
  padding: 2rem 15px;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  font-size: 0.85rem;
}

/* line 419, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-articles-table-body.adv-no-articles-container {
  color: rgba(20, 13, 35, 0.6);
}

/* line 424, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-articles-table-body::-webkit-scrollbar {
  width: 4px;
}

/* line 428, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-articles-table-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 433, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-articles-table-body::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 438, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-articles-table-body::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 443, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-articles-table-row {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  transition: all 0.2s ease;
}

/* line 449, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-articles-table-row {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 453, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-articles-table-row:last-child {
  border-bottom: none;
}

/* line 457, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-articles-table-row:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

/* line 460, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-articles-table-row:hover {
  background-color: rgba(20, 13, 35, 0.03);
}

/* line 466, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-table-cell {
  color: #fff;
  font-size: 0.8rem;
  padding: 8px 12px;
  display: flex;
  align-items: center;
}

/* line 473, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-table-cell {
  color: #140D23;
}

/* line 479, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-header-article,
.adv-cell-article {
  width: 40%;
  justify-content: flex-start;
}

/* line 485, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-header-discount-perc,
.adv-cell-discount-perc {
  width: 15%;
  justify-content: center;
}

/* line 491, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-header-price-ht,
.adv-cell-price-ht {
  width: 15%;
  justify-content: center;
}

/* line 497, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-header-price-ttc,
.adv-cell-price-ttc {
  width: 15%;
  justify-content: center;
}

/* line 503, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-header-quantity,
.adv-cell-quantity {
  width: 15%;
  justify-content: center;
}

/* line 510, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-summary-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

/* line 521, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-invoice-summary-section {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 527, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-summary-item {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1 1 0;
}

/* line 536, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-summary-item .adv-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  margin-bottom: 0;
  display: block;
  white-space: nowrap;
}

/* line 543, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-summary-item .adv-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 548, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-summary-item .adv-value {
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  display: block;
  text-align: center;
  white-space: nowrap;
}

/* line 556, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-summary-item .adv-value {
  color: #140D23;
}

/* line 562, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-summary-item.adv-summary-total-ttc .adv-value {
  color: #d4a574;
  font-size: 0.8rem;
}

/* line 570, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-cgv-tab-content {
  width: 100%;
  height: 100%;
  padding: 30px;
  overflow-y: auto;
}

/* line 576, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-cgv-tab-content::-webkit-scrollbar {
  width: 6px;
}

/* line 580, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-cgv-tab-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 585, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-cgv-tab-content::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 590, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-cgv-tab-content::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 595, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-cgv-header {
  text-align: center;
  margin-bottom: 30px;
}

/* line 599, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-cgv-header h2, .adv-cgv-header .h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #FFFFFF;
}

/* line 605, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-cgv-header h2, .lightmode .adv-cgv-header .h2 {
  color: #140D23;
}

/* line 610, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-cgv-header p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 614, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-cgv-header p {
  color: rgba(20, 13, 35, 0.7);
}

/* line 620, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-cgv-list-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 626, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-cgv-item {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(232, 232, 232, 0.3);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
}

/* line 633, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-cgv-item {
  background-color: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 638, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-cgv-item:hover {
  background-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* line 643, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-cgv-item:hover {
  background-color: rgba(20, 13, 35, 0.12);
}

/* line 649, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-cgv-item-header {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}

/* line 656, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-cgv-item-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(195, 135, 97, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* line 666, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-cgv-item-icon i {
  font-size: 1.5rem;
  color: #C38761;
}

/* line 672, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-cgv-item-info {
  flex: 1;
}

/* line 675, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-cgv-item-info h3, .adv-cgv-item-info .h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #FFFFFF;
}

/* line 681, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-cgv-item-info h3, .lightmode .adv-cgv-item-info .h3 {
  color: #140D23;
}

/* line 687, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-cgv-documents {
  margin-top: 15px;
}

/* line 690, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-cgv-documents h4, .adv-cgv-documents .h4 {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
}

/* line 696, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-cgv-documents h4, .lightmode .adv-cgv-documents .h4 {
  color: rgba(20, 13, 35, 0.8);
}

/* line 702, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-cgv-documents-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 708, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-cgv-document-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 12px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
}

/* line 717, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-cgv-document-item {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 722, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-cgv-document-info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

/* line 728, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-cgv-document-info i {
  color: #e74c3c;
  font-size: 0.9rem;
}

/* line 733, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-cgv-document-info .adv-cgv-document-name {
  font-size: 0.85rem;
  color: #FFFFFF;
}

/* line 737, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-cgv-document-info .adv-cgv-document-name {
  color: #140D23;
}

/* line 742, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-cgv-document-info .adv-cgv-document-pages {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

/* line 749, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-cgv-document-info .adv-cgv-document-pages {
  color: rgba(20, 13, 35, 0.6);
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 756, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-cgv-document-view-button {
  color: #C38761;
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 6px;
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background-color: transparent;
  border: 1px solid rgba(195, 135, 97, 0.3);
}

/* line 771, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-cgv-document-view-button:hover {
  background: #C38761;
  color: #FFFFFF;
  transform: scale(1.05);
  border-color: #C38761;
}

/* line 778, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-cgv-document-view-button i {
  font-size: 0.8rem;
  color: inherit;
}

/* line 783, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-cgv-document-view-button {
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 787, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-cgv-document-view-button:hover {
  background: #140D23;
  color: #FFFFFF;
  border-color: #140D23;
}

/* line 795, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-cgv-no-documents {
  margin-top: 15px;
  text-align: center;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
}

/* line 802, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-cgv-no-documents {
  background-color: rgba(20, 13, 35, 0.03);
}

/* line 806, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-cgv-no-documents p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

/* line 811, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-cgv-no-documents p {
  color: rgba(20, 13, 35, 0.5);
}

/* line 817, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-cgv-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 40px;
}

/* line 827, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-cgv-empty-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* line 837, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-cgv-empty-icon {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 841, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-cgv-empty-icon i {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.4);
}

/* line 845, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-cgv-empty-icon i {
  color: rgba(20, 13, 35, 0.4);
}

/* line 851, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-cgv-empty-state h3, .adv-cgv-empty-state .h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFFFFF;
}

/* line 857, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-cgv-empty-state h3, .lightmode .adv-cgv-empty-state .h3 {
  color: #140D23;
}

/* line 862, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-cgv-empty-state p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 400px;
  line-height: 1.5;
}

/* line 868, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-cgv-empty-state p {
  color: rgba(20, 13, 35, 0.6);
}

/* line 874, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-actions-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  align-items: center;
}

/* line 883, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-delivery-choice {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 100%;
}

/* line 894, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-invoice-delivery-choice {
  background: rgba(20, 13, 35, 0.06);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 900, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-delivery-choice-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 906, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-delivery-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(195, 135, 97, 0.2);
  color: #C38761;
}

/* line 916, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-delivery-icon {
  background: rgba(20, 13, 35, 0.12);
  color: #140D23;
}

/* line 921, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-delivery-icon i {
  font-size: 1.1rem;
}

/* line 926, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-delivery-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 931, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-delivery-text h3, .adv-delivery-text .h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* line 937, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-delivery-text h3, .lightmode .adv-delivery-text .h3 {
  color: #140D23;
}

/* line 942, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-delivery-text p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 947, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-delivery-text p {
  color: rgba(20, 13, 35, 0.65);
}

/* line 953, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-delivery-choice-options {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* line 960, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-delivery-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  flex: 1 1 45%;
  min-width: 0;
}

/* line 977, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-delivery-option {
  color: rgba(20, 13, 35, 0.7);
}

/* line 981, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-delivery-option:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* line 984, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-delivery-option:hover {
  background: rgba(20, 13, 35, 0.12);
}

/* line 989, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-delivery-option i {
  font-size: 0.9rem;
}

/* line 994, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-delivery-option--active {
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.25), rgba(195, 135, 97, 0.15));
  color: #FFFFFF;
  border-color: rgba(195, 135, 97, 0.5);
  box-shadow: 0 4px 10px rgba(195, 135, 97, 0.2);
}

/* line 1000, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-delivery-option--active {
  color: #140D23;
}

/* line 1005, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-signature-panel {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  transition: all 0.3s ease;
}

/* line 1013, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-invoice-signature-panel {
  border-color: rgba(20, 13, 35, 0.15);
  background: rgba(20, 13, 35, 0.05);
}

/* line 1018, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-signature-panel .signature-panel {
  box-shadow: none;
  background: transparent;
  border: none;
  color: #FFFFFF;
}

/* line 1024, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-invoice-signature-panel .signature-panel {
  color: #140D23;
}

/* line 1028, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-signature-panel .signature-panel__title h3, .adv-invoice-signature-panel .signature-panel__title .h3 {
  color: inherit;
}

/* line 1032, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-signature-panel .signature-panel__meta {
  color: rgba(255, 255, 255, 0.75);
}

/* line 1035, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-invoice-signature-panel .signature-panel__meta {
  color: rgba(20, 13, 35, 0.65);
}

/* line 1039, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-signature-panel .signature-panel__meta-item {
  background: rgba(255, 255, 255, 0.12);
}

/* line 1042, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-invoice-signature-panel .signature-panel__meta-item {
  background: rgba(20, 13, 35, 0.08);
}

/* line 1048, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-signature-panel .signature-panel__body--split {
  gap: 1.5rem;
}

/* line 1052, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-signature-panel .signature-panel__form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* line 1056, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-invoice-signature-panel .signature-panel__form {
  background: rgba(20, 13, 35, 0.04);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 1061, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-signature-panel .signature-panel__form h4, .adv-invoice-signature-panel .signature-panel__form .h4 {
  color: inherit;
}

/* line 1066, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-signature-panel .signature-panel__hint {
  color: rgba(255, 255, 255, 0.65);
}

/* line 1069, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-invoice-signature-panel .signature-panel__hint {
  color: rgba(20, 13, 35, 0.6);
}

/* line 1074, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-signature-panel .signature-panel__timeline h4, .adv-invoice-signature-panel .signature-panel__timeline .h4 {
  color: inherit;
}

/* line 1078, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-signature-panel .signature-panel__empty {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}

/* line 1082, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-invoice-signature-panel .signature-panel__empty {
  border-color: rgba(20, 13, 35, 0.2);
  color: rgba(20, 13, 35, 0.7);
}

/* line 1087, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-signature-panel .signature-panel__empty i {
  color: rgba(255, 255, 255, 0.6);
}

/* line 1090, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-invoice-signature-panel .signature-panel__empty i {
  color: rgba(20, 13, 35, 0.5);
}

/* line 1097, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-signature-panel .signature-form__label {
  color: inherit;
  opacity: 1;
}

/* line 1102, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-signature-panel .signature-form__input,
.adv-invoice-signature-panel .signature-form__textarea,
.adv-invoice-signature-panel .signature-form__select {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

/* line 1109, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-invoice-signature-panel .signature-form__input, .lightmode .adv-invoice-signature-panel .signature-form__textarea, .lightmode .adv-invoice-signature-panel .signature-form__select {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 1116, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-signature-panel .signature-form__help {
  color: rgba(255, 255, 255, 0.6);
}

/* line 1119, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-invoice-signature-panel .signature-form__help {
  color: rgba(20, 13, 35, 0.55);
}

/* line 1124, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-signature-panel .signature-form__disabled {
  color: rgba(255, 255, 255, 0.6);
}

/* line 1127, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-invoice-signature-panel .signature-form__disabled {
  color: rgba(20, 13, 35, 0.55);
}

/* line 1132, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-signature-panel .signature-timeline__item {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.04) 55%, rgba(255, 255, 255, 0.02) 100%);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 18px;
}

/* line 1143, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-invoice-signature-panel .signature-timeline__item {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.85) 100%);
  border-color: rgba(20, 13, 35, 0.12);
  box-shadow: 0 12px 24px rgba(20, 13, 35, 0.12);
}

/* line 1153, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-signature-panel .signature-timeline__header {
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* line 1158, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-invoice-signature-panel .signature-timeline__header {
  border-bottom-color: rgba(20, 13, 35, 0.12);
}

/* line 1162, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-signature-panel .signature-timeline__header strong {
  font-size: 0.95rem;
  color: #FFFFFF;
}

/* line 1166, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-invoice-signature-panel .signature-timeline__header strong {
  color: #140D23;
}

/* line 1171, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-signature-panel .signature-timeline__header .signature-timeline__meta span {
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* line 1180, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-invoice-signature-panel .signature-timeline__header .signature-timeline__meta span {
  color: rgba(20, 13, 35, 0.65);
  background: rgba(20, 13, 35, 0.08);
}

/* line 1187, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-signature-panel .signature-participant {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 10px 14px;
}

/* line 1193, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-invoice-signature-panel .signature-participant {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.12);
}

/* line 1199, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-signature-panel .signature-timeline__audit {
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 12px;
}

/* line 1205, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-invoice-signature-panel .signature-timeline__audit {
  background: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.18);
}

/* line 1210, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-signature-panel .signature-timeline__audit strong {
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.75);
}

/* line 1215, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-invoice-signature-panel .signature-timeline__audit strong {
  color: rgba(20, 13, 35, 0.7);
}

/* line 1220, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-signature-panel .signature-timeline__audit li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

/* line 1224, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-invoice-signature-panel .signature-timeline__audit li {
  color: rgba(20, 13, 35, 0.65);
}

/* line 1231, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-signature-panel--hidden {
  display: none;
}

/* line 1235, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-actions {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

/* line 1242, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-actions span {
  color: #140D23 !important;
}

/* line 1245, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.nightmode .adv-invoice-contacts-actions span {
  color: #FFFFFF !important;
}

/* line 1251, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-email-form {
  margin: 0;
}

/* line 1255, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-row2 {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

/* line 1263, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-row2 span {
  color: #140D23 !important;
}

/* line 1266, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.nightmode .adv-invoice-contacts-row2 span {
  color: #FFFFFF !important;
}

/* Styles pour la liste des contacts sélectionnés */
/* line 1273, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-row1-column1-results {
  height: 100%;
}

/* line 1276, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-row1-column1-results .results {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  min-height: 60px;
  max-height: 60%;
  overflow-y: auto;
  overflow-x: hidden;
  /* Personnalisation de la barre de défilement */
  /* Style pour le message "Aucun contact sélectionné" */
  /* Style pour chaque contact sélectionné */
}

/* line 1289, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-invoice-contacts-row1-column1-results .results {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 1295, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-row1-column1-results .results::-webkit-scrollbar {
  width: 6px;
}

/* line 1299, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-row1-column1-results .results::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 1304, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-row1-column1-results .results::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
  border: 2px solid transparent;
}

/* line 1310, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-row1-column1-results .results::-webkit-scrollbar-thumb:hover {
  background: #864B28;
}

/* line 1315, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-row1-column1-results .results p[data-contacts-of-document-target="noContacts"] {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  text-align: center;
  margin: 0;
  padding: 20px;
}

/* line 1322, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-invoice-contacts-row1-column1-results .results p[data-contacts-of-document-target="noContacts"] {
  color: rgba(20, 13, 35, 0.6);
}

/* line 1328, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-row1-column1-results .results .contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  gap: 5px;
  min-height: 80px;
  /* Contenu du contact */
  /* Bouton de suppression */
  /* Animation d'entrée */
  /* Animation de sortie */
}

/* line 1343, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-invoice-contacts-row1-column1-results .results .contact-item {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.1) 0%, rgba(20, 13, 35, 0.05) 100%);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 1348, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-row1-column1-results .results .contact-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: rgba(195, 135, 97, 0.4);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

/* line 1354, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-invoice-contacts-row1-column1-results .results .contact-item:hover {
  border-color: rgba(195, 135, 97, 0.4);
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.15) 0%, rgba(20, 13, 35, 0.08) 100%);
}

/* line 1361, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-row1-column1-results .results .contact-item .contact-info {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
  width: 100%;
}

/* line 1368, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-row1-column1-results .results .contact-item .contact-info .contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(195, 135, 97, 0.15);
  border-radius: 50%;
  color: #C38761;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

/* line 1381, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-row1-column1-results .results .contact-item .contact-info .contact-email {
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0;
  text-align: center;
}

/* line 1388, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-invoice-contacts-row1-column1-results .results .contact-item .contact-info .contact-email {
  color: #140D23;
}

/* line 1395, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-row1-column1-results .results .contact-item .contact-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(166, 2, 64, 0.1);
  border: 1px solid rgba(166, 2, 64, 0.3);
  border-radius: 50%;
  color: rgba(166, 2, 64, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
}

/* line 1409, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-row1-column1-results .results .contact-item .contact-remove:hover {
  background: rgba(166, 2, 64, 0.2);
  border-color: #A60240;
  color: #A60240;
  transform: scale(1.1);
}

/* line 1416, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-row1-column1-results .results .contact-item .contact-remove i {
  font-size: 0.8rem;
}

/* line 1422, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-row1-column1-results .results .contact-item.contact-item-enter {
  animation: slideInFromTop 0.3s ease-out;
}

/* line 1427, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-invoice-contacts-row1-column1-results .results .contact-item.contact-item-exit {
  animation: slideOutToRight 0.3s ease-in;
}

/* Animations pour les contacts */
@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideOutToRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

/* Styles responsives pour la liste des contacts */
@media (max-width: 768px) {
  /* line 1462, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
  .adv-invoice-contacts-row1-column1-results .results {
    padding: 8px;
    gap: 6px;
    max-height: 250px;
  }
  /* line 1467, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
  .adv-invoice-contacts-row1-column1-results .results .contact-item {
    padding: 5px;
  }
  /* line 1470, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
  .adv-invoice-contacts-row1-column1-results .results .contact-item .contact-info {
    gap: 8px;
  }
  /* line 1473, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
  .adv-invoice-contacts-row1-column1-results .results .contact-item .contact-info .contact-icon {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
  /* line 1479, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
  .adv-invoice-contacts-row1-column1-results .results .contact-item .contact-info .contact-email {
    font-size: 0.8rem;
  }
  /* line 1484, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
  .adv-invoice-contacts-row1-column1-results .results .contact-item .contact-remove {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  /* line 1496, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
  .adv-invoice-contacts-row1-column1-results .results {
    padding: 6px;
    gap: 4px;
    max-height: 200px;
  }
  /* line 1501, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
  .adv-invoice-contacts-row1-column1-results .results .contact-item {
    padding: 5px;
    gap: 5px;
  }
  /* line 1505, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
  .adv-invoice-contacts-row1-column1-results .results .contact-item .contact-info {
    gap: 6px;
  }
  /* line 1508, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
  .adv-invoice-contacts-row1-column1-results .results .contact-item .contact-info .contact-icon {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
  }
  /* line 1514, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
  .adv-invoice-contacts-row1-column1-results .results .contact-item .contact-info .contact-email {
    font-size: 0.75rem;
    word-break: break-all;
  }
  /* line 1520, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
  .adv-invoice-contacts-row1-column1-results .results .contact-item .contact-remove {
    width: 22px;
    height: 22px;
    font-size: 0.65rem;
  }
}

/* line 1531, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-create-contact-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(4px);
}

/* line 1544, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-create-contact-modal-overlay.d-none {
  display: none !important;
}

/* line 1549, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-create-contact-modal {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(232, 232, 232, 0.3);
}

/* line 1559, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-create-contact-modal {
  background-color: rgba(255, 255, 255, 0.98);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 1564, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.nightmode .adv-create-contact-modal {
  background-color: rgba(20, 13, 35, 0.95);
}

/* line 1569, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-create-contact-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid rgba(232, 232, 232, 0.3);
}

/* line 1576, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-create-contact-modal-header {
  border-bottom-color: rgba(20, 13, 35, 0.2);
}

/* line 1580, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-create-contact-modal-header h3, .adv-create-contact-modal-header .h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: #140D23;
}

/* line 1586, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.nightmode .adv-create-contact-modal-header h3, .nightmode .adv-create-contact-modal-header .h3 {
  color: #FFFFFF;
}

/* line 1592, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-create-contact-modal-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: rgba(20, 13, 35, 0.6);
  padding: 5px;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

/* line 1607, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.nightmode .adv-create-contact-modal-close {
  color: rgba(255, 255, 255, 0.6);
}

/* line 1611, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-create-contact-modal-close:hover {
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 1615, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.nightmode .adv-create-contact-modal-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

/* line 1622, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-create-contact-modal-body {
  padding: 25px;
}

/* line 1626, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-create-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 1632, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 1638, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-form-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #140D23;
}

/* line 1643, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.nightmode .adv-form-label {
  color: #FFFFFF;
}

/* line 1648, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-form-input {
  padding: 12px 15px;
  border: 1px solid rgba(20, 13, 35, 0.3);
  border-radius: 8px;
  font-size: 0.9rem;
  background-color: rgba(255, 255, 255, 0.8);
  color: #140D23;
  transition: all 0.3s ease;
}

/* line 1657, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.nightmode .adv-form-input {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
}

/* line 1662, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.nightmode .adv-form-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* line 1667, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-form-input:focus {
  outline: none;
  border-color: #C38761;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 1673, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.nightmode .adv-form-input:focus {
  background-color: rgba(255, 255, 255, 0.15);
}

/* line 1678, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-form-input.is-invalid {
  border-color: #e74c3c;
}

/* line 1681, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-form-input.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

/* line 1687, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-form-error {
  font-size: 0.8rem;
  color: #e74c3c;
  min-height: 18px;
}

/* line 1692, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-form-error.show {
  display: block;
}

/* line 1697, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-create-contact-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(232, 232, 232, 0.3);
}

/* line 1705, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.lightmode .adv-create-contact-modal-actions {
  border-top-color: rgba(20, 13, 35, 0.2);
}

/* line 1710, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-button-secondary {
  padding: 10px 20px;
  background-color: transparent;
  border: 1px solid rgba(20, 13, 35, 0.3);
  border-radius: 8px;
  color: #140D23;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 1721, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.nightmode .adv-button-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
}

/* line 1726, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-button-secondary:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 1729, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.nightmode .adv-button-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 1735, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-button-primary {
  padding: 10px 20px;
  background-color: #C38761;
  border: 1px solid #C38761;
  border-radius: 8px;
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 1746, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-button-primary:hover {
  background-color: #af6c42;
  border-color: #af6c42;
  transform: translateY(-1px);
}

/* line 1752, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_invoice_contacts.scss */
.adv-button-primary:disabled {
  background-color: rgba(195, 135, 97, 0.5);
  border-color: rgba(195, 135, 97, 0.5);
  cursor: not-allowed;
  transform: none;
}

/* ==========================================================================
   NEW CREDIT NOTE - MODULE ADV
   Structure principale et composants pour la création d'un avoir
   ========================================================================== */
/* line 6, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-new-credit-note-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  color: #fff;
  font-size: 0.8rem;
  /* Classes pour les modes light/night */
}

/* line 18, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-new-credit-note-container.lightmode p, .adv-new-credit-note-container.lightmode span, .adv-new-credit-note-container.lightmode i {
  color: #140D23;
}

/* line 19, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-new-credit-note-container.lightmode .adv-new-credit-note-title h2, .adv-new-credit-note-container.lightmode .adv-new-credit-note-title .h2 {
  color: #C38761;
}

/* line 23, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-new-credit-note-container.nightmode p, .adv-new-credit-note-container.nightmode span, .adv-new-credit-note-container.nightmode i {
  color: #FFFFFF;
}

/* line 24, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-new-credit-note-container.nightmode .adv-new-credit-note-title h2, .adv-new-credit-note-container.nightmode .adv-new-credit-note-title .h2 {
  color: #FFFFFF;
}

/* line 27, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-new-credit-note-container .adv-summary-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 37, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.lightmode .adv-new-credit-note-container .adv-summary-item {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 42, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-new-credit-note-container .adv-summary-item .adv-summary-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  display: block;
}

/* line 48, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.lightmode .adv-new-credit-note-container .adv-summary-item .adv-summary-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 53, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-new-credit-note-container .adv-summary-item .adv-summary-value {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
}

/* line 59, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.lightmode .adv-new-credit-note-container .adv-summary-item .adv-summary-value {
  color: #140D23;
}

/* line 65, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-new-credit-note-container .adv-summary-item.adv-summary-total .adv-summary-value {
  color: #C38761;
  font-size: 1.2rem;
  font-weight: 700;
}

/* Header avec titre et statistiques */
/* line 76, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-new-credit-note-header {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 85, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.lightmode .adv-new-credit-note-header {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 91, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-new-credit-note-title {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* line 96, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-new-credit-note-title h2, .adv-new-credit-note-title .h2 {
  all: unset;
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

/* line 103, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.lightmode .adv-new-credit-note-title h2, .lightmode .adv-new-credit-note-title .h2 {
  color: #140D23;
}

/* line 109, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-new-credit-note-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 10px;
}

/* line 116, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 126, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.lightmode .adv-stat-item {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 131, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-stat-item .adv-stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  display: block;
}

/* line 137, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.lightmode .adv-stat-item .adv-stat-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 142, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-stat-item .adv-stat-value {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
}

/* line 148, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.lightmode .adv-stat-item .adv-stat-value {
  color: #140D23;
}

/* Contenu principal */
/* line 155, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-new-credit-note-main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-height: 0;
}

/* line 165, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.lightmode .adv-new-credit-note-main-content {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 171, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-new-credit-note-content-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 100%;
}

/* line 178, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-content-section-title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

/* line 184, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-content-section-title h3, .adv-content-section-title .h3 {
  all: unset;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

/* line 190, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.lightmode .adv-content-section-title h3, .lightmode .adv-content-section-title .h3 {
  color: #140D23;
}

/* Section des articles */
/* line 196, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
#new-credit-note-articles-section {
  flex: 1;
  background: none;
  border-radius: 8px;
  padding: 15px;
  border: none;
  min-height: 0;
}

/* Section raison de l'avoir */
/* line 205, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-reason-section {
  background: none;
  border-radius: 8px;
  padding: 15px;
  border: none;
}

/* line 214, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-reason-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

/* line 221, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-reason-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 5px;
  opacity: 1;
}

/* line 227, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.lightmode .adv-reason-label {
  color: rgba(20, 13, 35, 0.9);
}

/* line 232, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-reason-input {
  all: unset;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 15px;
  color: white;
  font-size: 0.85rem;
  line-height: 1.4;
  min-height: 80px;
  resize: vertical;
  transition: all 0.2s ease;
}

/* line 245, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.lightmode .adv-reason-input {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 251, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-reason-input:focus {
  box-shadow: 0 0 8px rgba(195, 135, 97, 0.4);
  border-color: #C38761;
  background-color: rgba(255, 255, 255, 0.15);
}

/* line 256, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.lightmode .adv-reason-input:focus {
  background-color: rgba(20, 13, 35, 0.15);
}

/* line 261, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-reason-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

/* line 265, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.lightmode .adv-reason-input::placeholder {
  color: rgba(20, 13, 35, 0.5);
}

/* Section de recherche */
/* line 272, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-search-section {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 278, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.lightmode .adv-search-section {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 283, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-search-section .adv-searchbar-container {
  width: 100%;
}

/* line 286, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-search-section .adv-searchbar-container .results {
  transform: translateY(10px);
  margin-top: 10px;
}

/* line 295, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-articles-table {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 302, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-articles-table-header {
  display: flex;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 12px;
  font-weight: 600;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* line 312, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.lightmode .adv-articles-table-header {
  background-color: rgba(20, 13, 35, 0.08);
  color: rgba(20, 13, 35, 0.9);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 319, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-articles-table-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  padding: 5px;
  /* Personnalisation de la barre de défilement */
}

/* line 328, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-articles-table-body::-webkit-scrollbar {
  width: 6px;
}

/* line 332, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-articles-table-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 336, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.lightmode .adv-articles-table-body::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 341, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-articles-table-body::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 346, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-articles-table-body::-webkit-scrollbar-thumb:hover {
  background: #af6c42;
}

/* line 351, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-article-row {
  display: flex;
  padding: 10px 12px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}

/* line 359, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.lightmode .adv-article-row {
  background-color: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 364, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-article-row:hover {
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

/* line 368, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.lightmode .adv-article-row:hover {
  background-color: rgba(20, 13, 35, 0.08);
}

/* line 373, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-article-row.new-entry {
  cursor: pointer;
  border-style: dashed;
}

/* line 377, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-article-row.new-entry:hover {
  background-color: rgba(195, 135, 97, 0.1);
  border-color: #C38761;
}

/* Colonnes du tableau */
/* line 385, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-header-article, .adv-cell-article {
  width: 30%;
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  padding: 0 8px;
  color: #fff;
}

/* line 393, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.lightmode .adv-header-article, .lightmode .adv-cell-article {
  color: #140D23;
}

/* line 398, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-header-discount, .adv-cell-discount,
.adv-header-price-ht, .adv-cell-price-ht,
.adv-header-tva, .adv-cell-tva,
.adv-header-quantity, .adv-cell-quantity {
  width: 14%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  padding: 0 8px;
  color: #fff;
}

/* line 410, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.lightmode .adv-header-discount, .lightmode .adv-cell-discount, .lightmode .adv-header-price-ht, .lightmode .adv-cell-price-ht, .lightmode .adv-header-tva, .lightmode .adv-cell-tva, .lightmode .adv-header-quantity, .lightmode .adv-cell-quantity {
  color: #140D23;
}

/* line 414, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-header-discount input, .adv-cell-discount input,
.adv-header-price-ht input, .adv-cell-price-ht input,
.adv-header-tva input, .adv-cell-tva input,
.adv-header-quantity input, .adv-cell-quantity input {
  all: unset;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 12px;
  color: white;
  font-size: 0.8rem;
  text-align: center;
  width: 80%;
}

/* line 425, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.lightmode .adv-header-discount input, .lightmode .adv-cell-discount input, .lightmode .adv-header-price-ht input, .lightmode .adv-cell-price-ht input, .lightmode .adv-header-tva input, .lightmode .adv-cell-tva input, .lightmode .adv-header-quantity input, .lightmode .adv-cell-quantity input {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 431, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-header-discount input:focus, .adv-cell-discount input:focus,
.adv-header-price-ht input:focus, .adv-cell-price-ht input:focus,
.adv-header-tva input:focus, .adv-cell-tva input:focus,
.adv-header-quantity input:focus, .adv-cell-quantity input:focus {
  box-shadow: 0 0 5px rgba(195, 135, 97, 0.5);
  border-color: #C38761;
}

/* line 438, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-header-actions, .adv-cell-actions {
  width: 14%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  padding: 0 8px;
  color: #fff;
}

/* line 447, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.lightmode .adv-header-actions, .lightmode .adv-cell-actions {
  color: #140D23;
}

/* Section des totaux */
/* line 453, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-new-credit-note-summary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 463, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.lightmode .adv-new-credit-note-summary {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* Boutons d'actions */
/* line 471, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-new-credit-note-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 15px;
}

/* line 478, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-new-credit-note-actions .adv-new-credit-note-form {
  display: flex;
}

/* line 482, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-new-credit-note-actions .button_to {
  all: unset;
  display: flex;
}

/* line 488, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-action-button {
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

/* line 503, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.lightmode .adv-action-button {
  border-color: rgba(20, 13, 35, 0.3);
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 509, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-action-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* line 514, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.lightmode .adv-action-button:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* line 519, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-action-button.adv-action-button-primary {
  background-color: #C38761;
  border-color: #C38761;
  color: #140D23;
}

/* line 524, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-action-button.adv-action-button-primary:hover {
  background-color: #af6c42;
  border-color: #af6c42;
}

/* line 530, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-action-button.adv-action-button-secondary {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
}

/* line 535, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.lightmode .adv-action-button.adv-action-button-secondary {
  background-color: rgba(20, 13, 35, 0.15);
  border-color: rgba(20, 13, 35, 0.4);
  color: #140D23;
}

/* line 541, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-action-button.adv-action-button-secondary:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

/* line 544, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.lightmode .adv-action-button.adv-action-button-secondary:hover {
  background-color: rgba(20, 13, 35, 0.25);
}

/* line 550, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-action-button.adv-action-button-cancel {
  background-color: rgba(220, 53, 69, 0.8);
  border-color: rgba(220, 53, 69, 0.8);
  color: white;
}

/* line 555, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-action-button.adv-action-button-cancel:hover {
  background-color: rgba(220, 53, 69, 0.9);
  border-color: rgba(220, 53, 69, 0.9);
}

/* Classes utilitaires */
/* line 565, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.d-none {
  display: none !important;
}

/* line 569, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.relative {
  position: relative;
}

/* État d'erreur pour les totaux */
/* line 574, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-summary-error {
  border-color: #dc3545 !important;
  background-color: rgba(220, 53, 69, 0.15) !important;
  animation: pulse-error 1.5s ease-in-out infinite;
}

/* line 579, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-summary-error .adv-summary-value {
  color: #dc3545 !important;
}

/* line 583, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-summary-error .adv-summary-item {
  border-color: rgba(220, 53, 69, 0.3);
  background-color: rgba(220, 53, 69, 0.1);
}

@keyframes pulse-error {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.4);
  }
  50% {
    box-shadow: 0 0 15px 3px rgba(220, 53, 69, 0.3);
  }
}

/* Message d'erreur */
/* line 599, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-error-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  background-color: rgba(220, 53, 69, 0.15);
  border: 1px solid rgba(220, 53, 69, 0.5);
  border-radius: 8px;
  color: #dc3545;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 10px;
}

/* line 613, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.adv-error-message i {
  color: #dc3545;
  font-size: 1.1rem;
}

/* line 618, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
.lightmode .adv-error-message {
  background-color: rgba(220, 53, 69, 0.1);
  border-color: rgba(220, 53, 69, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  /* line 626, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
  .adv-new-credit-note-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  /* line 631, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
  .adv-new-credit-note-summary {
    flex-direction: column;
    gap: 1rem;
  }
  /* line 636, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
  .adv-new-credit-note-actions {
    flex-direction: column;
    gap: 10px;
  }
  /* line 641, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
  .adv-articles-table-header,
.adv-article-row {
    flex-direction: column;
    gap: 8px;
  }
  /* line 647, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_new_credit_note.scss */
  .adv-header-article, .adv-cell-article,
.adv-header-discount, .adv-cell-discount,
.adv-header-price-ht, .adv-cell-price-ht,
.adv-header-tva, .adv-cell-tva,
.adv-header-quantity, .adv-cell-quantity,
.adv-header-actions, .adv-cell-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

/* ==========================================================================
   SHOW CREDIT NOTE - MODULE ADV
   Page unifiée pour l'affichage d'un avoir
   ========================================================================== */
/* line 6, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-show-credit-note-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  flex: 1;
  margin: 0 auto;
  height: 100%;
  padding: 20px;
  overflow-x: hidden;
  overflow-y: auto;
  /* Personnalisation de la barre de défilement */
}

/* line 19, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-show-credit-note-container::-webkit-scrollbar {
  width: 8px;
}

/* line 23, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-show-credit-note-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 28, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-show-credit-note-container::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 33, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-show-credit-note-container::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 37, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-show-credit-note-container.lightmode {
  color: #140D23;
}

/* ==========================================================================
   CONTENU PRINCIPAL
   ========================================================================== */
/* line 45, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ==========================================================================
   SECTION INFORMATIONS GÉNÉRALES
   ========================================================================== */
/* line 54, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-info-section {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 60, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.lightmode .adv-credit-note-info-section {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 64, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-info-section .adv-credit-note-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  /* line 64, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
  .adv-credit-note-info-section .adv-credit-note-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  /* line 64, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
  .adv-credit-note-info-section .adv-credit-note-info-grid {
    grid-template-columns: 1fr;
  }
}

/* line 78, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-info-section .adv-credit-note-info-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* line 83, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-info-section .adv-credit-note-info-item .adv-info-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* line 89, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.lightmode .adv-credit-note-info-section .adv-credit-note-info-item .adv-info-label {
  color: rgba(20, 13, 35, 0.6);
}

/* line 94, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-info-section .adv-credit-note-info-item .adv-info-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
}

/* line 99, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.lightmode .adv-credit-note-info-section .adv-credit-note-info-item .adv-info-value {
  color: #140D23;
}

/* ==========================================================================
   RÉSUMÉ DE L'AVOIR
   ========================================================================== */
/* line 109, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-summary {
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 115, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.lightmode .adv-credit-note-summary {
  background-color: rgba(20, 13, 35, 0.05);
}

/* Section principale : icône | montants | facture liée */
/* line 121, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-main-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 1.5rem;
}

@media (max-width: 900px) {
  /* line 121, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
  .adv-credit-note-main-row {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
}

/* line 134, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.2) 0%, rgba(195, 135, 97, 0.1) 100%);
  border: 3px solid #C38761;
  flex-shrink: 0;
}

/* line 146, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-icon i {
  font-size: 2rem;
  color: #C38761;
}

/* line 151, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-icon .adv-icon-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* line 158, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.lightmode .adv-credit-note-icon .adv-icon-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 164, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-amounts {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  min-width: 220px;
  flex: 1;
  justify-content: center;
  border: 1px solid rgba(195, 135, 97, 0.2);
}

@media (max-width: 900px) {
  /* line 164, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
  .adv-credit-note-amounts {
    width: 100%;
    max-width: 350px;
  }
}

/* line 181, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.lightmode .adv-credit-note-amounts {
  background-color: rgba(20, 13, 35, 0.08);
  border-color: rgba(195, 135, 97, 0.3);
}

/* line 186, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-amounts .adv-credit-note-amount-title {
  font-size: 0.85rem;
  text-align: center;
  font-weight: 600;
  color: #C38761;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

/* line 196, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-amounts .adv-credit-note-amount-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
}

/* line 203, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-amounts .adv-credit-note-amount-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 0;
}

/* line 209, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-amounts .adv-credit-note-amount-row .adv-amount-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 213, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.lightmode .adv-credit-note-amounts .adv-credit-note-amount-row .adv-amount-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 218, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-amounts .adv-credit-note-amount-row .adv-amount-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
}

/* line 223, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.lightmode .adv-credit-note-amounts .adv-credit-note-amount-row .adv-amount-value {
  color: #140D23;
}

/* line 228, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-amounts .adv-credit-note-amount-row.adv-credit-note-amount-total {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 0.5rem;
  margin-top: 0.25rem;
}

/* line 233, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.lightmode .adv-credit-note-amounts .adv-credit-note-amount-row.adv-credit-note-amount-total {
  border-top-color: rgba(20, 13, 35, 0.15);
}

/* line 237, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-amounts .adv-credit-note-amount-row.adv-credit-note-amount-total .adv-amount-label {
  font-weight: 600;
  color: #fff;
}

/* line 241, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.lightmode .adv-credit-note-amounts .adv-credit-note-amount-row.adv-credit-note-amount-total .adv-amount-label {
  color: #140D23;
}

/* line 246, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-amounts .adv-credit-note-amount-row.adv-credit-note-amount-total .adv-amount-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #C38761;
}

/* line 255, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-invoice-reference {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 180px;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  justify-content: center;
}

@media (max-width: 900px) {
  /* line 255, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
  .adv-credit-note-invoice-reference {
    width: 100%;
    max-width: 300px;
  }
}

/* line 270, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.lightmode .adv-credit-note-invoice-reference {
  background-color: rgba(20, 13, 35, 0.03);
}

/* line 274, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-invoice-reference .adv-invoice-section-title {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.25rem;
}

/* line 282, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.lightmode .adv-credit-note-invoice-reference .adv-invoice-section-title {
  color: rgba(20, 13, 35, 0.5);
}

/* line 287, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-invoice-reference .adv-invoice-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* line 293, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-invoice-reference .adv-invoice-info .adv-invoice-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  background-color: rgba(195, 135, 97, 0.15);
  border: 1px solid rgba(195, 135, 97, 0.3);
  border-radius: 6px;
  color: #C38761;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* line 307, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-invoice-reference .adv-invoice-info .adv-invoice-link:hover {
  background-color: rgba(195, 135, 97, 0.25);
  border-color: rgba(195, 135, 97, 0.5);
}

/* line 312, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-invoice-reference .adv-invoice-info .adv-invoice-link i {
  font-size: 0.8rem;
}

/* line 318, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-invoice-reference .adv-invoice-total {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

/* line 325, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-invoice-reference .adv-invoice-total .adv-invoice-total-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* line 329, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.lightmode .adv-credit-note-invoice-reference .adv-invoice-total .adv-invoice-total-label {
  color: rgba(20, 13, 35, 0.6);
}

/* line 334, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-invoice-reference .adv-invoice-total .adv-invoice-total-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

/* line 339, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.lightmode .adv-credit-note-invoice-reference .adv-invoice-total .adv-invoice-total-value {
  color: #140D23;
}

/* ==========================================================================
   SECTION ARTICLES
   ========================================================================== */
/* line 349, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-articles-section {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 355, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.lightmode .adv-credit-note-articles-section {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 359, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-articles-section .adv-section-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

/* line 365, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.lightmode .adv-credit-note-articles-section .adv-section-title {
  color: #140D23;
}

/* line 370, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-articles-section .adv-articles-table {
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  /* Personnalisation de la barre de défilement */
}

/* line 376, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-articles-section .adv-articles-table::-webkit-scrollbar {
  width: 4px;
}

/* line 380, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-articles-section .adv-articles-table::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 385, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-articles-section .adv-articles-table::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 390, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-articles-section .adv-articles-table::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 394, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-articles-section .adv-articles-table .adv-edit-deposit-invoice-table-section .adv-header-cgv, .adv-edit-deposit-invoice-table-section .adv-credit-note-articles-section .adv-articles-table .adv-header-cgv, .adv-credit-note-articles-section .adv-articles-table .adv-global-discount-quote-table-section .adv-header-cgv, .adv-global-discount-quote-table-section .adv-credit-note-articles-section .adv-articles-table .adv-header-cgv, .adv-credit-note-articles-section .adv-articles-table .adv-new-deposit-invoice-table-section .adv-header-cgv, .adv-new-deposit-invoice-table-section .adv-credit-note-articles-section .adv-articles-table .adv-header-cgv, .adv-credit-note-articles-section .adv-articles-table .adv-table-cell, .adv-credit-note-articles-section .adv-articles-table .adv-header-quantity, .adv-credit-note-articles-section .adv-articles-table .adv-header-price-ttc, .adv-credit-note-articles-section .adv-articles-table .adv-header-price-ht, .adv-credit-note-articles-section .adv-articles-table .adv-header-discount-perc, .adv-credit-note-articles-section .adv-articles-table .adv-header-article, .adv-credit-note-articles-section .adv-articles-table .adv-show-invoice-capsule .adv-invoice-articles-section .adv-header-cgv, .adv-show-invoice-capsule .adv-invoice-articles-section .adv-credit-note-articles-section .adv-articles-table .adv-header-cgv {
  padding: 8px 12px;
  display: flex;
  align-items: center;
}

/* line 400, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-articles-section .adv-articles-table .adv-articles-table-header {
  display: flex;
  background-color: rgba(255, 255, 255, 0.08);
  white-space: nowrap;
  font-weight: 600;
  padding: 5px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px 8px 0 0;
}

/* line 411, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.lightmode .adv-credit-note-articles-section .adv-articles-table .adv-articles-table-header {
  background-color: rgba(20, 13, 35, 0.08);
  color: rgba(20, 13, 35, 0.8);
  border-bottom: 1px solid rgba(20, 13, 35, 0.15);
}

/* line 419, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-articles-section .adv-articles-table .adv-articles-table-body .adv-articles-table-row {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  white-space: nowrap;
}

/* line 425, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-articles-section .adv-articles-table .adv-articles-table-body .adv-articles-table-row:last-child {
  border-bottom: none;
}

/* line 429, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-articles-section .adv-articles-table .adv-articles-table-body .adv-articles-table-row:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

/* line 433, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.lightmode .adv-credit-note-articles-section .adv-articles-table .adv-articles-table-body .adv-articles-table-row {
  border-bottom: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 436, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.lightmode .adv-credit-note-articles-section .adv-articles-table .adv-articles-table-body .adv-articles-table-row:hover {
  background-color: rgba(20, 13, 35, 0.03);
}

/* line 443, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-articles-section .adv-articles-table .adv-header-article {
  width: 35%;
  justify-content: flex-start;
  padding: 5px;
}

/* line 449, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-articles-section .adv-articles-table .adv-header-discount-perc {
  width: 15%;
  justify-content: center;
  padding: 5px;
}

/* line 455, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-articles-section .adv-articles-table .adv-header-price-ht {
  width: 18%;
  justify-content: center;
  padding: 5px;
}

/* line 461, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-articles-section .adv-articles-table .adv-header-price-ttc {
  width: 18%;
  justify-content: center;
  padding: 5px;
}

/* line 467, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-articles-section .adv-articles-table .adv-header-quantity {
  width: 14%;
  justify-content: center;
  padding: 5px;
}

/* line 474, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-articles-section .adv-articles-table .adv-table-cell {
  color: #fff;
  font-size: 0.8rem;
  padding: 10px 5px;
}

/* line 480, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.lightmode .adv-credit-note-articles-section .adv-articles-table .adv-table-cell {
  color: #140D23;
}

/* line 485, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-articles-section .adv-articles-table .adv-cell-article {
  width: 35%;
  justify-content: flex-start;
}

/* line 489, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-articles-section .adv-articles-table .adv-cell-discount-perc {
  width: 15%;
  justify-content: center;
}

/* line 493, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-articles-section .adv-articles-table .adv-cell-price-ht {
  width: 18%;
  justify-content: center;
}

/* line 497, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-articles-section .adv-articles-table .adv-cell-price-ttc {
  width: 18%;
  justify-content: center;
}

/* line 501, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-articles-section .adv-articles-table .adv-cell-quantity {
  width: 14%;
  justify-content: center;
}

/* ==========================================================================
   SECTION RAISON
   ========================================================================== */
/* line 511, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-reason-section {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 517, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.lightmode .adv-credit-note-reason-section {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 521, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-reason-section .adv-section-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

/* line 527, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.lightmode .adv-credit-note-reason-section .adv-section-title {
  color: #140D23;
}

/* line 532, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-reason-section .adv-reason-content {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 3px solid #C38761;
  font-style: italic;
}

/* line 542, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.lightmode .adv-credit-note-reason-section .adv-reason-content {
  color: rgba(20, 13, 35, 0.85);
  background-color: rgba(20, 13, 35, 0.05);
}

/* ==========================================================================
   ACTIONS
   ========================================================================== */
/* line 552, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.adv-credit-note-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding: 0;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  /* line 552, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
  .adv-credit-note-actions {
    justify-content: center;
  }
}

/* ==========================================================================
   STATUS BADGES
   ========================================================================== */
/* line 568, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
}

/* line 576, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.status-badge.draft {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

/* line 580, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.lightmode .status-badge.draft {
  background-color: rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.8);
}

/* line 586, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.status-badge.sent {
  background-color: #C38761;
  color: #140D23;
}

/* line 591, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.status-badge.validated {
  background-color: #4CAF50;
  color: white;
}

/* line 596, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.status-badge.non-defini {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* line 600, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.lightmode .status-badge.non-defini {
  background-color: rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.6);
}

/* line 606, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.status-badge.success {
  background-color: #4CAF50;
  color: white;
}

/* line 611, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.status-badge.warning {
  background-color: #FF9800;
  color: white;
}

/* line 616, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.status-badge.secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* line 620, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.lightmode .status-badge.secondary {
  background-color: rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.6);
}

/* line 626, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.status-badge.paid {
  background-color: #4CAF50;
  color: white;
}

/* line 631, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.status-badge.pending {
  background-color: #FF9800;
  color: white;
}

/* line 636, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.status-badge.overdue {
  background-color: #F44336;
  color: white;
}

/* line 641, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.status-badge.cancelled {
  background-color: #9E9E9E;
  color: white;
}

/* line 647, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.status-badge.cloture {
  background-color: #4CAF50;
  color: white;
}

/* line 652, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.status-badge.archived {
  background-color: #9E9E9E;
  color: white;
}

/* line 658, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.status-badge.echue {
  background-color: #F44336;
  color: white;
}

/* line 663, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.status-badge.promesse_de_reglement {
  background-color: #FF9800;
  color: white;
}

/* line 668, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.status-badge.litige {
  background-color: #F44336;
  color: white;
}

/* line 673, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.status-badge.avoir_en_cours {
  background-color: #2196F3;
  color: white;
}

/* line 678, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.status-badge.lettrage_en_cours {
  background-color: #9C27B0;
  color: white;
}

/* ==========================================================================
   CLASSES UTILITAIRES
   ========================================================================== */
/* line 687, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.d-none {
  display: none !important;
}

/* line 691, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_credit_note.scss */
.hidden {
  display: none !important;
}

/* line 1, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-capsule {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 10px 30px 10px 30px;
  font-size: 0.8rem;
  gap: 10px;
}

/* line 13, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 21, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-capsule.lightmode span {
  color: #C38761;
}

/* line 25, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-capsule.nightmode span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 29, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-capsule.lightmode p {
  color: #140D23;
}

/* line 33, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-capsule.nightmode p {
  color: #FFFFFF;
}

/* line 37, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-capsule.lightmode i {
  color: #140D23;
}

/* line 41, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-capsule.nightmode i {
  color: #FFFFFF;
}

/* line 45, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1 {
  width: 100%;
  height: 92.5%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(232, 232, 232, 0.5);
  border-radius: 20px;
}

/* line 56, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1 form {
  width: 35%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-right: 1px solid rgba(232, 232, 232, 0.5);
  padding: 10px;
}

/* line 68, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1 form input:focus {
  background-color: transparent;
}

/* line 74, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1 .special-toggle {
  width: 200px !important;
  background-color: transparent;
  color: #140D23;
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: space-evenly;
  transition: transform 0.3s ease;
  border: 1px solid rgba(232, 232, 232, 0.5);
}

/* line 86, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1 .special-toggle span {
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: normal;
  padding: 5px;
  white-space: nowrap;
}

/* line 95, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1 .special-toggle:hover {
  transform: scale(1.04);
}

/* line 99, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1 .choosen-one {
  background-color: #e8e8e8;
}

/* line 102, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1 .choosen-one span {
  color: #140D23;
}

/* line 108, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1 .selected {
  background-color: #e8e8e8;
}

/* line 111, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1 .selected span {
  color: #140D23;
}

/* line 118, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row2 {
  width: 80%;
  height: 7.5%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
}

/* line 128, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row2 span {
  color: #140D23 !important;
}

/* line 135, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column1 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
}

/* line 145, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column1-create-contact {
  width: 100%;
  margin-bottom: 10px;
}

/* line 150, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-create-contact-button {
  width: 100%;
  padding: 10px 15px;
  background-color: rgba(195, 135, 97, 0.2);
  border: 1px solid rgba(195, 135, 97, 0.4);
  border-radius: 8px;
  color: #C38761;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* line 166, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.lightmode .adv-create-contact-button {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 172, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-create-contact-button:hover {
  background-color: rgba(195, 135, 97, 0.3);
  border-color: rgba(195, 135, 97, 0.6);
  transform: translateY(-1px);
}

/* line 177, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.lightmode .adv-create-contact-button:hover {
  background-color: rgba(20, 13, 35, 0.2);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 183, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-create-contact-button i {
  font-size: 0.8rem;
  color: inherit;
}

/* line 189, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column1-searchbar {
  width: 100%;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 202, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column1-searchbar button {
  all: unset;
}

/* line 206, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column1-searchbar i {
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 212, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column1-searchbar span {
  font-weight: normal !important;
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 220, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column1-results {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 100%;
}

/* line 229, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column1-results h3, .adv-credit-note-contacts-row1-column1-results .h3 {
  all: unset;
  font-size: 0.8rem;
  color: #FFFFFF;
}

/* line 234, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.lightmode .adv-credit-note-contacts-row1-column1-results h3, .lightmode .adv-credit-note-contacts-row1-column1-results .h3 {
  color: #140D23;
}

/* line 239, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column1-results .results {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  min-height: 60px;
  max-height: 60%;
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
  /* Personnalisation de la barre de défilement */
  /* Style pour le message "Aucun contact sélectionné" */
  /* Style pour chaque contact sélectionné */
}

/* line 253, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.lightmode .adv-credit-note-contacts-row1-column1-results .results {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 259, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column1-results .results::-webkit-scrollbar {
  width: 6px;
}

/* line 263, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column1-results .results::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 268, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column1-results .results::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
  border: 2px solid transparent;
}

/* line 274, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column1-results .results::-webkit-scrollbar-thumb:hover {
  background: #864B28;
}

/* line 279, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column1-results .results p[data-contacts-of-document-target="noContacts"] {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  text-align: center;
  margin: 0;
  padding: 20px;
}

/* line 286, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.lightmode .adv-credit-note-contacts-row1-column1-results .results p[data-contacts-of-document-target="noContacts"] {
  color: rgba(20, 13, 35, 0.6);
}

/* line 292, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column1-results .results .contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  gap: 12px;
  /* Contenu du contact */
  /* Bouton de suppression */
  /* Animation d'entrée */
  /* Animation de sortie */
}

/* line 306, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.lightmode .adv-credit-note-contacts-row1-column1-results .results .contact-item {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.1) 0%, rgba(20, 13, 35, 0.05) 100%);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 311, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column1-results .results .contact-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: rgba(195, 135, 97, 0.4);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

/* line 317, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.lightmode .adv-credit-note-contacts-row1-column1-results .results .contact-item:hover {
  border-color: rgba(195, 135, 97, 0.4);
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.15) 0%, rgba(20, 13, 35, 0.08) 100%);
}

/* line 324, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column1-results .results .contact-item .contact-info {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  width: 100%;
}

/* line 331, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column1-results .results .contact-item .contact-info .contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(195, 135, 97, 0.15);
  border-radius: 50%;
  color: #C38761;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

/* line 344, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column1-results .results .contact-item .contact-info .contact-email {
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0;
  text-align: center;
}

/* line 351, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.lightmode .adv-credit-note-contacts-row1-column1-results .results .contact-item .contact-info .contact-email {
  color: #140D23;
}

/* line 358, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column1-results .results .contact-item .contact-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(166, 2, 64, 0.1);
  border: 1px solid rgba(166, 2, 64, 0.3);
  border-radius: 50%;
  color: rgba(166, 2, 64, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
}

/* line 372, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column1-results .results .contact-item .contact-remove:hover {
  background: rgba(166, 2, 64, 0.2);
  border-color: #A60240;
  color: #A60240;
  transform: scale(1.1);
}

/* line 379, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column1-results .results .contact-item .contact-remove i {
  font-size: 0.8rem;
}

/* line 385, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column1-results .results .contact-item.contact-item-enter {
  animation: slideInFromTop 0.3s ease-out;
}

/* line 390, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column1-results .results .contact-item.contact-item-exit {
  animation: slideOutToRight 0.3s ease-in;
}

/* Animations pour les contacts */
@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideOutToRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

/* line 422, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.invoice-contact {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* line 430, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.invoice-contact .invoice-contact-header p {
  all: unset;
  font-size: 0.7rem;
}

/* line 438, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.invoice-contact span {
  all: unset;
  font-size: 0.7rem;
  text-align: center;
}

/* line 443, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.invoice-contact span:hover {
  cursor: pointer;
}

/* line 447, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.invoice-contact span i {
  transition: 0.3s ease;
}

/* line 450, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.invoice-contact span i:hover {
  color: #640127;
}

/* line 457, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column1-subrow2 {
  width: 100%;
  height: 50%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
  padding: 20px 10px 0px 10px;
}

/* line 467, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column1-subrow2 P {
  all: unset;
  font-size: 0.7rem;
  text-align: start;
}

/* line 474, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-vertical-line {
  width: 90%;
  border-bottom: 1px solid rgba(232, 232, 232, 0.5);
}

/* line 479, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column2 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  padding: 30px 10px 10px 10px;
  gap: 20px;
}

/* line 490, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column2 .adv-credit-note-contacts-row1-column2-list-entry {
  width: 100%;
  display: flex;
}

/* line 496, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column2 .adv-credit-note-contacts-row1-column2-total-amount {
  width: 100%;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 2px 5px;
}

/* line 508, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column2 .adv-articles-table {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  width: 100%;
  height: 80%;
  min-height: 150px;
  overflow-y: auto;
  margin-bottom: 10px;
}

/* line 517, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column2 .adv-articles-table::-webkit-scrollbar {
  width: 4px;
}

/* line 521, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column2 .adv-articles-table::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 526, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column2 .adv-articles-table::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 531, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column2 .adv-articles-table::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 536, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column2 .adv-articles-table-header {
  display: flex;
  background-color: rgba(255, 255, 255, 0.08);
  font-weight: 600;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* line 545, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column2 .adv-articles-table-body {
  min-height: 120px;
  overflow-y: hidden;
}

/* line 549, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column2 .adv-articles-table-body.adv-no-articles-container {
  text-align: center;
  padding: 2rem 15px;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  font-size: 0.85rem;
}

/* line 558, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column2 .adv-articles-table-row {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

/* line 563, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column2 .adv-articles-table-row:last-child {
  border-bottom: none;
}

/* line 567, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column2 .adv-articles-table-row:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

/* line 572, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column2 .adv-table-cell {
  color: #fff;
  font-size: 0.8rem;
  padding: 8px 12px;
  display: flex;
  align-items: center;
}

/* line 580, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column2 .adv-header-article,
.adv-credit-note-contacts-row1-column2 .adv-cell-article {
  width: 30%;
  justify-content: flex-start;
}

/* line 586, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column2 .adv-header-discount-perc,
.adv-credit-note-contacts-row1-column2 .adv-cell-discount-perc {
  width: 12%;
  justify-content: center;
}

/* line 592, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column2 .adv-header-price-ht,
.adv-credit-note-contacts-row1-column2 .adv-cell-price-ht {
  width: 16%;
  justify-content: center;
}

/* line 598, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column2 .adv-header-price-ttc,
.adv-credit-note-contacts-row1-column2 .adv-cell-price-ttc {
  width: 16%;
  justify-content: center;
}

/* line 604, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column2 .adv-header-quantity,
.adv-credit-note-contacts-row1-column2 .adv-cell-quantity {
  width: 10%;
  justify-content: center;
}

/* line 610, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column2 .adv-header-cgv,
.adv-credit-note-contacts-row1-column2 .adv-cell-cgv {
  width: 16%;
  justify-content: center;
}

/* line 616, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column2 .entry {
  width: 100%;
  display: flex;
}

/* line 620, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column2 .entry .quantity-input {
  width: 70%;
}

/* line 625, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-credit-note-contacts-row1-column2 .totalPrice {
  font-size: 0.8rem;
  font-weight: bold;
  text-align: center;
  color: #140D23;
  border-radius: 20px;
  background-color: #e8e8e8;
}

/* line 635, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.search-results-articles {
  display: flex;
  min-height: 30px;
  width: 97% !important;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  padding: 5px;
  width: 250px;
  border-radius: 0.375rem;
  flex-wrap: nowrap;
}

/* line 647, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.search-results-articles label {
  opacity: 1;
}

/* line 651, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.search-results-articles p {
  all: unset;
  font-size: 0.7rem !important;
  margin: 0;
  font-weight: normal !important;
  color: #140D23 !important;
}

/* line 660, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.search-results-articles:hover {
  background-color: rgba(255, 255, 255, 0.5);
  transition: transform 0.3s ease;
}

/* line 666, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.articles {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

/* line 675, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-show-invoice-header {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 1rem;
  margin-bottom: 5px;
  height: 25%;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
}

/* line 688, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-show-invoice-header .adv-header-section, .adv-show-invoice-header .adv-contract-number-section,
.adv-show-invoice-header .adv-market-type-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* line 694, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-show-invoice-header .adv-header-section .adv-label, .adv-show-invoice-header .adv-contract-number-section .adv-label,
.adv-show-invoice-header .adv-market-type-section .adv-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  margin-bottom: 0.3rem;
  display: block;
}

/* line 701, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-show-invoice-header .adv-header-section .adv-value, .adv-show-invoice-header .adv-contract-number-section .adv-value,
.adv-show-invoice-header .adv-market-type-section .adv-value {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  display: block;
}

/* line 709, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-show-invoice-header .adv-header-section.adv-recipient-name-section .adv-value, .adv-show-invoice-header .adv-recipient-name-section.adv-contract-number-section .adv-value,
.adv-show-invoice-header .adv-recipient-name-section.adv-market-type-section .adv-value {
  font-size: 1rem;
}

/* line 716, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-invoice-summary-section {
  width: 100%;
  height: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

/* line 727, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-invoice-summary-section .adv-summary-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1 1 0;
}

/* line 735, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-invoice-summary-section .adv-summary-item .adv-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  margin-bottom: 0.3rem;
  display: block;
}

/* line 742, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-invoice-summary-section .adv-summary-item .adv-value {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  display: block;
  text-align: center;
}

/* line 751, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-invoice-summary-section .adv-summary-item.adv-summary-total-ttc .adv-value {
  color: #d4a574;
  font-size: 1.1rem;
}

/* line 760, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-create-contact-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(4px);
}

/* line 773, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-create-contact-modal-overlay.d-none {
  display: none !important;
}

/* line 778, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-create-contact-modal {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(232, 232, 232, 0.3);
}

/* line 788, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.lightmode .adv-create-contact-modal {
  background-color: rgba(255, 255, 255, 0.98);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 793, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.nightmode .adv-create-contact-modal {
  background-color: rgba(20, 13, 35, 0.95);
}

/* line 798, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-create-contact-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid rgba(232, 232, 232, 0.3);
}

/* line 805, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.lightmode .adv-create-contact-modal-header {
  border-bottom-color: rgba(20, 13, 35, 0.2);
}

/* line 809, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-create-contact-modal-header h3, .adv-create-contact-modal-header .h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: #140D23;
}

/* line 815, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.nightmode .adv-create-contact-modal-header h3, .nightmode .adv-create-contact-modal-header .h3 {
  color: #FFFFFF;
}

/* line 821, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-create-contact-modal-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: rgba(20, 13, 35, 0.6);
  padding: 5px;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

/* line 836, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.nightmode .adv-create-contact-modal-close {
  color: rgba(255, 255, 255, 0.6);
}

/* line 840, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-create-contact-modal-close:hover {
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 844, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.nightmode .adv-create-contact-modal-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

/* line 851, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-create-contact-modal-body {
  padding: 25px;
}

/* line 855, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-create-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 861, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 867, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-form-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #140D23;
}

/* line 872, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.nightmode .adv-form-label {
  color: #FFFFFF;
}

/* line 877, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-form-input {
  padding: 12px 15px;
  border: 1px solid rgba(20, 13, 35, 0.3);
  border-radius: 8px;
  font-size: 0.9rem;
  background-color: rgba(255, 255, 255, 0.8);
  color: #140D23;
  transition: all 0.3s ease;
}

/* line 886, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.nightmode .adv-form-input {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
}

/* line 891, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.nightmode .adv-form-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* line 896, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-form-input:focus {
  outline: none;
  border-color: #C38761;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 902, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.nightmode .adv-form-input:focus {
  background-color: rgba(255, 255, 255, 0.15);
}

/* line 907, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-form-input.is-invalid {
  border-color: #e74c3c;
}

/* line 910, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-form-input.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

/* line 916, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-form-error {
  font-size: 0.8rem;
  color: #e74c3c;
  min-height: 18px;
}

/* line 921, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-form-error.show {
  display: block;
}

/* line 926, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-create-contact-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(232, 232, 232, 0.3);
}

/* line 934, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.lightmode .adv-create-contact-modal-actions {
  border-top-color: rgba(20, 13, 35, 0.2);
}

/* line 939, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-button-secondary {
  padding: 10px 20px;
  background-color: transparent;
  border: 1px solid rgba(20, 13, 35, 0.3);
  border-radius: 8px;
  color: #140D23;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 950, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.nightmode .adv-button-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
}

/* line 955, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-button-secondary:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 958, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.nightmode .adv-button-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 964, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-button-primary {
  padding: 10px 20px;
  background-color: #C38761;
  border: 1px solid #C38761;
  border-radius: 8px;
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 975, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-button-primary:hover {
  background-color: #af6c42;
  border-color: #af6c42;
  transform: translateY(-1px);
}

/* line 981, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_credit_note_contacts.scss */
.adv-button-primary:disabled {
  background-color: rgba(195, 135, 97, 0.5);
  border-color: rgba(195, 135, 97, 0.5);
  cursor: not-allowed;
  transform: none;
}

/* ==========================================================================
   EDIT CREDIT NOTE - MODULE ADV
   Structure principale et composants pour l'édition d'un avoir
   ========================================================================== */
/* line 6, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-edit-credit-note-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  color: #fff;
  font-size: 0.8rem;
  /* Classes pour les modes light/night */
}

/* line 18, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-edit-credit-note-container.lightmode p, .adv-edit-credit-note-container.lightmode span, .adv-edit-credit-note-container.lightmode i {
  color: #140D23;
}

/* line 19, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-edit-credit-note-container.lightmode .adv-edit-credit-note-title h2, .adv-edit-credit-note-container.lightmode .adv-edit-credit-note-title .h2 {
  color: #C38761;
}

/* line 23, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-edit-credit-note-container.nightmode p, .adv-edit-credit-note-container.nightmode span, .adv-edit-credit-note-container.nightmode i {
  color: #FFFFFF;
}

/* line 24, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-edit-credit-note-container.nightmode .adv-edit-credit-note-title h2, .adv-edit-credit-note-container.nightmode .adv-edit-credit-note-title .h2 {
  color: #FFFFFF;
}

/* line 27, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-edit-credit-note-container .adv-summary-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 37, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-edit-credit-note-container .adv-summary-item .adv-summary-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  display: block;
}

/* line 44, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-edit-credit-note-container .adv-summary-item .adv-summary-value {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
}

/* line 52, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-edit-credit-note-container .adv-summary-item.adv-summary-total .adv-summary-value {
  color: #C38761;
  font-size: 1.2rem;
  font-weight: 700;
}

/* Section des articles */
/* line 62, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
#edit-credit-note-articles-section {
  flex: 1;
  background: none;
  border-radius: 8px;
  padding: 15px;
  border: none;
  min-height: 0;
}

/* Header avec titre et informations */
/* line 72, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-edit-credit-note-header {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  /* Indication visuelle d'édition */
  border-left: 4px solid #C38761;
}

/* line 85, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-edit-credit-note-title {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* line 90, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-edit-credit-note-title h2, .adv-edit-credit-note-title .h2 {
  all: unset;
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

/* line 97, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-edit-credit-note-title h2::before, .adv-edit-credit-note-title .h2::before {
  content: "✏️ ";
  margin-right: 8px;
}

/* line 104, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-edit-credit-note-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 10px;
}

/* line 111, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 121, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-stat-item .adv-stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  display: block;
}

/* line 128, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-stat-item .adv-stat-value {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
}

/* Contenu principal */
/* line 137, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-edit-credit-note-main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-height: 0;
}

/* line 148, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-edit-credit-note-content-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 100%;
}

/* line 155, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-content-section-title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

/* line 161, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-content-section-title h3, .adv-content-section-title .h3 {
  all: unset;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

/* Section raison de l'avoir */
/* line 170, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-reason-section {
  background: none;
  border-radius: 8px;
  padding: 15px;
  border: none;
}

/* line 177, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-reason-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

/* line 184, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-reason-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 5px;
  opacity: 1;
}

/* line 191, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.lightmode .adv-reason-label {
  color: rgba(20, 13, 35, 0.9);
}

/* line 196, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-reason-input {
  all: unset;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 15px;
  color: white;
  font-size: 0.85rem;
  line-height: 1.4;
  min-height: 80px;
  resize: vertical;
  transition: all 0.2s ease;
}

/* line 209, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.lightmode .adv-reason-input {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 215, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-reason-input:focus {
  box-shadow: 0 0 8px rgba(195, 135, 97, 0.4);
  border-color: #C38761;
  background-color: rgba(255, 255, 255, 0.15);
}

/* line 220, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.lightmode .adv-reason-input:focus {
  background-color: rgba(20, 13, 35, 0.15);
}

/* line 225, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-reason-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

/* line 229, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.lightmode .adv-reason-input::placeholder {
  color: rgba(20, 13, 35, 0.5);
}

/* Section de recherche */
/* line 236, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-search-section {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 242, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.lightmode .adv-search-section {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 247, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-search-section .adv-searchbar-container {
  width: 100%;
}

/* line 250, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-search-section .adv-searchbar-container .results {
  transform: translateY(10px);
  margin-top: 10px;
}

/* Section des articles */
/* line 258, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-articles-section {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 0;
}

/* line 267, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-articles-table {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 274, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-articles-table-header {
  display: flex;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 12px;
  font-weight: 600;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* line 285, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-articles-table-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  padding: 5px;
  /* Personnalisation de la barre de défilement */
}

/* line 294, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-articles-table-body::-webkit-scrollbar {
  width: 6px;
}

/* line 298, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-articles-table-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 303, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-articles-table-body::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 308, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-articles-table-body::-webkit-scrollbar-thumb:hover {
  background: #af6c42;
}

/* line 313, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-article-row {
  display: flex;
  padding: 10px 12px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}

/* line 321, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-article-row:hover {
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

/* line 326, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-article-row.existing-entry {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
}

/* line 330, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-article-row.existing-entry:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 335, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-article-row.new-entry {
  cursor: pointer;
  border-style: dashed;
}

/* line 339, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-article-row.new-entry:hover {
  background-color: rgba(195, 135, 97, 0.1);
  border-color: #C38761;
}

/* Colonnes du tableau */
/* line 347, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-header-article, .adv-cell-article {
  width: 30%;
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  padding: 0 8px;
}

/* line 355, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-header-discount, .adv-cell-discount,
.adv-header-price-ht, .adv-cell-price-ht,
.adv-header-tva, .adv-cell-tva,
.adv-header-quantity, .adv-cell-quantity {
  width: 14%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  padding: 0 8px;
}

/* line 366, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-header-discount input, .adv-cell-discount input,
.adv-header-price-ht input, .adv-cell-price-ht input,
.adv-header-tva input, .adv-cell-tva input,
.adv-header-quantity input, .adv-cell-quantity input {
  all: unset;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 12px;
  color: white;
  font-size: 0.8rem;
  text-align: center;
  width: 80%;
}

/* line 377, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-header-discount input:focus, .adv-cell-discount input:focus,
.adv-header-price-ht input:focus, .adv-cell-price-ht input:focus,
.adv-header-tva input:focus, .adv-cell-tva input:focus,
.adv-header-quantity input:focus, .adv-cell-quantity input:focus {
  box-shadow: 0 0 5px rgba(195, 135, 97, 0.5);
  border-color: #C38761;
}

/* line 383, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-header-discount select, .adv-cell-discount select,
.adv-header-price-ht select, .adv-cell-price-ht select,
.adv-header-tva select, .adv-cell-tva select,
.adv-header-quantity select, .adv-cell-quantity select {
  all: unset;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 12px;
  color: white;
  font-size: 0.8rem;
  text-align: center;
  width: 80%;
  cursor: pointer;
}

/* line 395, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-header-discount select:focus, .adv-cell-discount select:focus,
.adv-header-price-ht select:focus, .adv-cell-price-ht select:focus,
.adv-header-tva select:focus, .adv-cell-tva select:focus,
.adv-header-quantity select:focus, .adv-cell-quantity select:focus {
  box-shadow: 0 0 5px rgba(195, 135, 97, 0.5);
  border-color: #C38761;
}

/* line 402, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-header-actions, .adv-cell-actions {
  width: 14%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  padding: 0 8px;
}

/* line 410, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-header-actions .trash, .adv-cell-actions .trash {
  color: rgba(220, 53, 69, 0.8);
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 415, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-header-actions .trash:hover, .adv-cell-actions .trash:hover {
  color: #dc3545;
  transform: scale(1.1);
}

/* Section des totaux */
/* line 423, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-edit-credit-note-summary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  /* Indication visuelle d'édition */
  border-left: 4px solid #C38761;
}

/* Boutons d'actions */
/* line 438, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-edit-credit-note-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 15px;
}

/* line 445, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-edit-credit-note-actions .adv-edit-credit-note-form {
  display: flex;
}

/* line 449, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-edit-credit-note-actions .button_to {
  all: unset;
  display: flex;
}

/* line 455, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-action-button {
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

/* line 470, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-action-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* line 476, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-action-button.adv-action-button-primary {
  background-color: #C38761;
  border-color: #C38761;
  color: #140D23;
}

/* line 481, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-action-button.adv-action-button-primary:hover {
  background-color: #af6c42;
  border-color: #af6c42;
}

/* line 487, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-action-button.adv-action-button-secondary {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
}

/* line 492, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-action-button.adv-action-button-secondary:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

/* line 497, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-action-button.adv-action-button-cancel {
  background-color: rgba(220, 53, 69, 0.8);
  border-color: rgba(220, 53, 69, 0.8);
  color: white;
}

/* line 502, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-action-button.adv-action-button-cancel:hover {
  background-color: rgba(220, 53, 69, 0.9);
  border-color: rgba(220, 53, 69, 0.9);
}

/* Classes utilitaires */
/* line 510, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.d-none {
  display: none !important;
}

/* line 514, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.relative {
  position: relative;
}

/* Animations spécifiques à l'édition */
@keyframes editPulse {
  0% {
    border-color: rgba(255, 255, 255, 0.2);
  }
  50% {
    border-color: #C38761;
  }
  100% {
    border-color: rgba(255, 255, 255, 0.2);
  }
}

/* line 525, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.existing-entry {
  animation: editPulse 2s ease-in-out;
}

/* État d'erreur pour les totaux */
/* line 530, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-summary-error {
  border-color: #dc3545 !important;
  background-color: rgba(220, 53, 69, 0.15) !important;
  animation: pulse-error 1.5s ease-in-out infinite;
  border-left-color: #dc3545 !important;
}

/* line 536, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-summary-error .adv-summary-value {
  color: #dc3545 !important;
}

/* line 540, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-summary-error .adv-summary-item {
  border-color: rgba(220, 53, 69, 0.3);
  background-color: rgba(220, 53, 69, 0.1);
}

@keyframes pulse-error {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.4);
  }
  50% {
    box-shadow: 0 0 15px 3px rgba(220, 53, 69, 0.3);
  }
}

/* Message d'erreur */
/* line 556, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-error-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  background-color: rgba(220, 53, 69, 0.15);
  border: 1px solid rgba(220, 53, 69, 0.5);
  border-radius: 8px;
  color: #dc3545;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 10px;
}

/* line 570, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.adv-error-message i {
  color: #dc3545;
  font-size: 1.1rem;
}

/* line 575, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
.lightmode .adv-error-message {
  background-color: rgba(220, 53, 69, 0.1);
  border-color: rgba(220, 53, 69, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  /* line 583, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
  .adv-edit-credit-note-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  /* line 588, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
  .adv-edit-credit-note-summary {
    flex-direction: column;
    gap: 1rem;
  }
  /* line 593, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
  .adv-edit-credit-note-actions {
    flex-direction: column;
    gap: 10px;
  }
  /* line 598, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
  .adv-articles-table-header,
.adv-article-row {
    flex-direction: column;
    gap: 8px;
  }
  /* line 604, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_edit_credit_note.scss */
  .adv-header-article, .adv-cell-article,
.adv-header-discount, .adv-cell-discount,
.adv-header-price-ht, .adv-cell-price-ht,
.adv-header-tva, .adv-cell-tva,
.adv-header-quantity, .adv-cell-quantity,
.adv-header-actions, .adv-cell-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

/* ==========================================================================
   SHOW SCHEDULE - MODULE ADV
   Page détail d'une planification récurrente
   ========================================================================== */
/* line 6, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.adv-show-schedule-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0px auto;
  height: 100%;
  flex: 1;
  padding: 20px;
  overflow-x: hidden;
  overflow-y: auto;
}

/* line 17, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.adv-show-schedule-container::-webkit-scrollbar {
  width: 8px;
}

/* line 18, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.adv-show-schedule-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 19, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.adv-show-schedule-container::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 20, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.adv-show-schedule-container::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 22, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.adv-show-schedule-container.lightmode {
  color: #140D23;
}

/* line 25, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.adv-show-schedule-main-content {
  display: flex;
  flex-direction: row;
  flex: 1;
  align-items: flex-end;
  gap: 10px;
  min-width: 0;
  transition: all 0.3s ease;
}

/* line 35, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.adv-show-schedule-capsule {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  height: 100%;
  flex: 1;
  min-width: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 5px;
  overflow: hidden;
  /* En-tête */
  /* Contenu des onglets */
}

/* line 48, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .adv-show-schedule-capsule {
  background-color: rgba(20, 13, 35, 0.05);
  color: #140D23;
}

/* line 54, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.adv-show-schedule-capsule .adv-schedule-header-tabs {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

/* line 60, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.adv-show-schedule-capsule .adv-schedule-header-tabs .adv-schedule-info-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 5px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

/* line 70, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .adv-show-schedule-capsule .adv-schedule-header-tabs .adv-schedule-info-header {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 72, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.adv-show-schedule-capsule .adv-schedule-header-tabs .adv-schedule-info-header .adv-header-section, .adv-show-schedule-capsule .adv-schedule-header-tabs .adv-schedule-info-header .adv-contract-number-section,
.adv-show-schedule-capsule .adv-schedule-header-tabs .adv-schedule-info-header .adv-market-type-section {
  display: flex;
  flex-direction: row;
  gap: 5px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* line 80, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.adv-show-schedule-capsule .adv-schedule-header-tabs .adv-schedule-info-header .adv-header-section .adv-label, .adv-show-schedule-capsule .adv-schedule-header-tabs .adv-schedule-info-header .adv-contract-number-section .adv-label,
.adv-show-schedule-capsule .adv-schedule-header-tabs .adv-schedule-info-header .adv-market-type-section .adv-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
}

/* line 83, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .adv-show-schedule-capsule .adv-schedule-header-tabs .adv-schedule-info-header .adv-header-section .adv-label, .lightmode .adv-show-schedule-capsule .adv-schedule-header-tabs .adv-schedule-info-header .adv-contract-number-section .adv-label,
.lightmode .adv-show-schedule-capsule .adv-schedule-header-tabs .adv-schedule-info-header .adv-market-type-section .adv-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 86, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.adv-show-schedule-capsule .adv-schedule-header-tabs .adv-schedule-info-header .adv-header-section .adv-value, .adv-show-schedule-capsule .adv-schedule-header-tabs .adv-schedule-info-header .adv-contract-number-section .adv-value,
.adv-show-schedule-capsule .adv-schedule-header-tabs .adv-schedule-info-header .adv-market-type-section .adv-value {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* line 93, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .adv-show-schedule-capsule .adv-schedule-header-tabs .adv-schedule-info-header .adv-header-section .adv-value, .lightmode .adv-show-schedule-capsule .adv-schedule-header-tabs .adv-schedule-info-header .adv-contract-number-section .adv-value,
.lightmode .adv-show-schedule-capsule .adv-schedule-header-tabs .adv-schedule-info-header .adv-market-type-section .adv-value {
  color: #140D23;
}

/* line 98, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.adv-show-schedule-capsule .adv-schedule-header-tabs .adv-schedule-tabs {
  display: flex;
  gap: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
  overflow-x: auto;
  flex: 1;
  min-width: 0;
  scrollbar-width: none;
}

/* line 107, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.adv-show-schedule-capsule .adv-schedule-header-tabs .adv-schedule-tabs::-webkit-scrollbar {
  display: none;
}

/* line 109, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .adv-show-schedule-capsule .adv-schedule-header-tabs .adv-schedule-tabs {
  border-bottom: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 111, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.adv-show-schedule-capsule .adv-schedule-header-tabs .adv-schedule-tabs .adv-tab-button {
  padding: 5px 10px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* line 126, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .adv-show-schedule-capsule .adv-schedule-header-tabs .adv-schedule-tabs .adv-tab-button {
  color: rgba(20, 13, 35, 0.7);
}

/* line 128, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.adv-show-schedule-capsule .adv-schedule-header-tabs .adv-schedule-tabs .adv-tab-button:hover {
  color: rgba(255, 255, 255, 0.9);
  background-color: rgba(255, 255, 255, 0.05);
}

/* line 131, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .adv-show-schedule-capsule .adv-schedule-header-tabs .adv-schedule-tabs .adv-tab-button:hover {
  color: rgba(20, 13, 35, 0.9);
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 137, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.adv-show-schedule-capsule .adv-schedule-header-tabs .adv-schedule-tabs .adv-tab-button.active {
  color: #C38761;
  border-bottom-color: #C38761;
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 141, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .adv-show-schedule-capsule .adv-schedule-header-tabs .adv-schedule-tabs .adv-tab-button.active {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 144, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.adv-show-schedule-capsule .adv-schedule-header-tabs .adv-schedule-tabs .adv-tab-button i {
  font-size: 0.75rem;
}

/* line 150, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.adv-show-schedule-capsule .adv-schedule-tab-content {
  flex: 1;
}

/* line 153, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.adv-show-schedule-capsule .adv-schedule-tab-content .adv-tab-panel {
  display: none;
  height: 100%;
  flex-direction: column;
  gap: 15px;
}

/* line 159, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.adv-show-schedule-capsule .adv-schedule-tab-content .adv-tab-panel.active {
  display: flex;
}

/* ==========================================================================
   ONGLET CONFIGURATION - Grille d'info cards
   ========================================================================== */
/* line 168, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-config-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 12px;
  padding: 10px;
}

/* line 175, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.config-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.2s ease;
}

/* line 186, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .config-card {
  background-color: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 191, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.config-card:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

/* line 193, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .config-card:hover {
  background-color: rgba(20, 13, 35, 0.06);
}

/* line 196, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.config-card .config-card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.2), rgba(195, 135, 97, 0.05));
  border-radius: 10px;
  flex-shrink: 0;
}

/* line 206, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.config-card .config-card-icon i {
  color: #C38761;
  font-size: 1rem;
}

/* line 212, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.config-card .config-card-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

/* line 218, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.config-card .config-card-content .config-card-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 223, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .config-card .config-card-content .config-card-label {
  color: rgba(20, 13, 35, 0.6);
}

/* line 226, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.config-card .config-card-content .config-card-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
}

/* line 230, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .config-card .config-card-content .config-card-value {
  color: #140D23;
}

/* ==========================================================================
   FORMULAIRE ÉDITION - Inputs dans config cards
   ========================================================================== */
/* line 239, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-edit-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
  overflow: visible;
}

/* line 246, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-edit-form .schedule-config-grid {
  overflow: visible;
}

/* line 252, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.adv-show-schedule-capsule:has(.schedule-edit-form) {
  overflow: visible;
}

/* line 256, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.config-card-input {
  width: 100%;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s ease;
}

/* line 267, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.config-card-input:focus {
  border-color: #C38761;
}

/* line 269, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .config-card-input {
  border-color: rgba(20, 13, 35, 0.2);
  background-color: rgba(20, 13, 35, 0.05);
  color: #140D23;
}

/* line 273, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .config-card-input:focus {
  border-color: #C38761;
}

/* line 277, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.config-tooltip {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: help;
  margin-left: 4px;
}

/* line 284, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.config-tooltip i {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s ease;
}

/* line 288, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .config-tooltip i {
  color: rgba(20, 13, 35, 0.35);
}

/* line 291, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.config-tooltip:hover i {
  color: #C38761;
}

/* line 295, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.config-tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.4;
  padding: 8px 12px;
  border-radius: 6px;
  white-space: normal;
  width: max-content;
  max-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* line 320, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .config-tooltip::after {
  background-color: #140D23;
}

/* line 325, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.config-tooltip:hover::after {
  opacity: 1;
  visibility: visible;
}

/* line 331, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.config-card-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 337, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.config-card-checkbox {
  width: 18px;
  height: 18px;
  accent-color: #C38761;
  cursor: pointer;
}

/* line 344, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.config-card-toggle-label {
  font-size: 0.85rem;
  font-weight: 500;
}

/* line 349, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.adv-alert-danger {
  padding: 10px 15px;
  border-radius: 8px;
  background-color: rgba(220, 53, 69, 0.15);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #dc3545;
  font-size: 0.85rem;
}

/* line 358, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.adv-alert-success {
  padding: 10px 15px;
  border-radius: 8px;
  background-color: rgba(40, 167, 69, 0.15);
  border: 1px solid rgba(40, 167, 69, 0.3);
  color: #28a745;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
   ONGLET CHRONOLOGIE - Timeline verticale
   ========================================================================== */
/* line 374, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-timeline-wrapper {
  padding: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* line 382, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-timeline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  overflow-y: auto;
  padding: 10px 20px;
  scrollbar-width: thin;
}

/* line 391, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-timeline::-webkit-scrollbar {
  width: 4px;
}

/* line 392, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-timeline::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 393, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-timeline::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 396, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-timeline .timeline-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  min-height: 60px;
  position: relative;
}

/* line 403, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-timeline .timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 16px;
  top: 32px;
  width: 2px;
  height: calc(100% - 32px);
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 411, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .schedule-timeline .timeline-item:not(:last-child)::after {
  background-color: rgba(20, 13, 35, 0.2);
}

/* line 415, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.timeline-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  z-index: 1;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

/* line 427, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.timeline-dot.completed {
  background-color: #4CAF50;
  color: white;
}

/* line 432, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.timeline-dot.next {
  background-color: #FF9800;
  color: white;
  box-shadow: 0 0 0 4px rgba(255, 152, 0, 0.3);
  animation: pulse-dot 2s ease-in-out infinite;
}

/* line 439, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.timeline-dot.future {
  background-color: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

/* line 442, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .timeline-dot.future {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
}

@keyframes pulse-dot {
  0%, 100% {
    box-shadow: 0 0 0 4px rgba(255, 152, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(255, 152, 0, 0.1);
  }
}

/* line 454, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.timeline-label {
  margin-left: 12px;
  padding-top: 4px;
}

/* line 458, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.timeline-label .timeline-date {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* line 462, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .timeline-label .timeline-date {
  color: rgba(20, 13, 35, 0.9);
}

/* line 465, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.timeline-label .timeline-ref {
  margin-top: 2px;
}

/* line 469, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.timeline-label .timeline-invoice-link {
  font-size: 0.75rem;
  color: #C38761;
  text-decoration: underline;
}

/* line 473, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.timeline-label .timeline-invoice-link:hover {
  opacity: 0.8;
}

/* line 476, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.timeline-label .timeline-countdown {
  font-size: 0.7rem;
  color: #FF9800;
  font-weight: 500;
  margin-top: 2px;
}

/* line 484, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.timeline-empty {
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  padding: 20px;
  text-align: center;
  width: 100%;
}

/* line 490, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .timeline-empty {
  color: rgba(20, 13, 35, 0.5);
}

/* ==========================================================================
   ONGLET OCCURRENCES - Tableau
   ========================================================================== */
/* line 497, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-occurrences-section {
  height: 100%;
  overflow: hidden;
}

/* line 502, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-occurrences-table {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* line 508, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.occurrences-table-header {
  display: flex;
  background-color: rgba(255, 255, 255, 0.08);
  font-weight: 600;
  padding: 5px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px 8px 0 0;
}

/* line 518, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .occurrences-table-header {
  background-color: rgba(20, 13, 35, 0.08);
  color: rgba(20, 13, 35, 0.8);
  border-bottom: 1px solid rgba(20, 13, 35, 0.15);
}

/* line 525, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.occurrences-table-body {
  flex: 1;
  overflow-y: auto;
}

/* line 529, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.occurrences-table-body::-webkit-scrollbar {
  width: 4px;
}

/* line 530, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.occurrences-table-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 531, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.occurrences-table-body::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 534, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.occurrences-table-row {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 0.2s ease;
}

/* line 539, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.occurrences-table-row:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

/* line 541, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .occurrences-table-row:hover {
  background-color: rgba(20, 13, 35, 0.03);
}

/* line 544, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .occurrences-table-row {
  border-bottom-color: rgba(20, 13, 35, 0.08);
}

/* line 547, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.occ-cell {
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.8rem;
  color: #fff;
}

/* line 555, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .occ-cell {
  color: #140D23;
}

/* line 558, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.occ-header-ref, .occ-cell-ref {
  width: 25%;
}

/* line 559, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.occ-header-period, .occ-cell-period {
  width: 30%;
}

/* line 560, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.occ-header-status, .occ-cell-status {
  width: 25%;
  justify-content: center;
}

/* line 561, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.occ-header-amount, .occ-cell-amount {
  width: 20%;
  justify-content: center;
}

/* line 563, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.occ-invoice-link {
  color: #C38761;
  text-decoration: underline;
  font-size: 0.8rem;
}

/* line 567, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.occ-invoice-link:hover {
  opacity: 0.8;
}

/* line 569, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.occ-invoice-link.occ-invoice-link-dash {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
}

/* line 572, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .occ-invoice-link.occ-invoice-link-dash {
  color: rgba(20, 13, 35, 0.5);
}

/* line 576, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.occ-pending-label {
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

/* line 579, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .occ-pending-label {
  color: rgba(20, 13, 35, 0.5);
}

/* Occurrence status badge - base + variants */
/* line 583, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* line 593, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.status-badge.occ-status-paid {
  background: rgba(76, 175, 80, 0.2);
  color: #4CAF50;
  min-width: 100px;
}

/* line 594, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.status-badge.occ-status-overdue {
  background: rgba(244, 67, 54, 0.2);
  color: #F44336;
  min-width: 100px;
}

/* line 595, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.status-badge.occ-status-sent {
  background: rgba(52, 152, 219, 0.2);
  color: #3498db;
  min-width: 100px;
}

/* line 596, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.status-badge.occ-status-awaiting {
  background: rgba(255, 193, 7, 0.2);
  color: #FFC107;
  min-width: 100px;
}

/* line 597, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.status-badge.occ-status-scheduled {
  background: rgba(156, 39, 176, 0.2);
  color: #AB47BC;
  min-width: 100px;
}

/* line 598, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.status-badge.occ-status-cancelled {
  background: rgba(158, 158, 158, 0.2);
  color: #9E9E9E;
  min-width: 100px;
}

/* line 601, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.occurrences-empty {
  text-align: center;
  padding: 2rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

/* line 606, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .occurrences-empty {
  color: rgba(20, 13, 35, 0.5);
}

/* ==========================================================================
   ONGLET ARTICLES - Cards modernes
   ========================================================================== */
/* line 613, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-articles-section {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 100%;
  overflow-y: auto;
}

/* line 621, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-articles-section::-webkit-scrollbar {
  width: 4px;
}

/* line 622, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-articles-section::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 623, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-articles-section::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 626, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-articles-table {
  display: flex;
  flex-direction: column;
}

/* line 631, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-articles-table-header {
  display: flex;
  background-color: rgba(255, 255, 255, 0.08);
  font-weight: 600;
  padding: 5px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px 8px 0 0;
}

/* line 641, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .schedule-articles-table-header {
  background-color: rgba(20, 13, 35, 0.08);
  color: rgba(20, 13, 35, 0.8);
  border-bottom: 1px solid rgba(20, 13, 35, 0.15);
}

/* line 648, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-articles-table-body {
  flex: 1;
  overflow-y: auto;
}

/* line 652, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-articles-table-body::-webkit-scrollbar {
  width: 4px;
}

/* line 653, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-articles-table-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 654, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-articles-table-body::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 657, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-articles-table-row {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 0.2s ease;
}

/* line 662, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-articles-table-row:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

/* line 664, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .schedule-articles-table-row:hover {
  background-color: rgba(20, 13, 35, 0.03);
}

/* line 667, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .schedule-articles-table-row {
  border-bottom-color: rgba(20, 13, 35, 0.08);
}

/* line 670, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.sa-cell {
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.8rem;
  color: #fff;
}

/* line 678, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .sa-cell {
  color: #140D23;
}

/* line 681, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.sa-cell-ref {
  flex: 1;
  min-width: 0;
  justify-content: flex-start;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 691, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.sa-cell-qty {
  width: 10%;
}

/* line 692, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.sa-cell-ht {
  width: 15%;
}

/* line 693, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.sa-cell-discount {
  width: 12%;
}

/* line 694, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.sa-cell-vat {
  width: 10%;
}

/* line 696, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.sa-cell-ttc {
  width: 15%;
  font-weight: 600;
  color: #C38761;
}

/* line 702, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.sa-discount-value {
  color: #10b981;
  font-weight: 600;
}

/* line 707, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-articles-summary {
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.1), rgba(195, 135, 97, 0.03));
  border: 1px solid rgba(195, 135, 97, 0.2);
  border-radius: 10px;
}

/* line 714, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-articles-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}

/* line 721, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .schedule-articles-summary-row {
  color: #140D23;
}

/* line 724, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-articles-summary-amount {
  font-size: 1rem;
  font-weight: 700;
  color: #C38761;
}

/* line 730, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-articles-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 40px 20px;
  color: rgba(255, 255, 255, 0.4);
}

/* line 738, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .schedule-articles-empty {
  color: rgba(20, 13, 35, 0.4);
}

/* line 740, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-articles-empty i {
  font-size: 2rem;
}

/* line 742, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-articles-empty p {
  font-size: 0.85rem;
  font-style: italic;
  margin: 0;
}

/* ==========================================================================
   SIDEBAR
   ========================================================================== */
/* line 753, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.adv-schedule-sidebar {
  width: 300px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 10px;
  height: 100%;
  margin-top: 0;
  transition: all 0.3s ease;
}

/* line 762, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .adv-schedule-sidebar {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 764, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.adv-schedule-sidebar .schedule-sidebar-section {
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 15px;
}

/* line 769, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.adv-schedule-sidebar .schedule-sidebar-section .section-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

/* line 774, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .adv-schedule-sidebar .schedule-sidebar-section .section-label {
  color: #140D23;
}

/* line 777, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.adv-schedule-sidebar .schedule-sidebar-section .documents-section-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 782, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.adv-schedule-sidebar .schedule-sidebar-section .documents-section-content .document-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* line 787, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.adv-schedule-sidebar .schedule-sidebar-section .documents-section-content .document-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}

/* line 790, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .adv-schedule-sidebar .schedule-sidebar-section .documents-section-content .document-item:not(:last-child) {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 793, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.adv-schedule-sidebar .schedule-sidebar-section .documents-section-content .document-item .document-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 796, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .adv-schedule-sidebar .schedule-sidebar-section .documents-section-content .document-item .document-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 799, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.adv-schedule-sidebar .schedule-sidebar-section .documents-section-content .document-item .document-value {
  font-size: 0.85rem;
  color: #fff;
}

/* line 802, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .adv-schedule-sidebar .schedule-sidebar-section .documents-section-content .document-item .document-value {
  color: #140D23;
}

/* line 808, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.adv-schedule-sidebar .schedule-cycle-progress {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

/* line 815, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.adv-schedule-sidebar .schedule-cycle-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #C38761;
}

/* line 821, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.adv-schedule-sidebar .schedule-cycle-bar {
  width: 100%;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

/* line 828, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .adv-schedule-sidebar .schedule-cycle-bar {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 831, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.adv-schedule-sidebar .schedule-cycle-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #C38761, #E5A82E);
  border-radius: 3px;
  transition: width 0.6s ease;
  min-width: 2px;
}

/* line 839, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.adv-schedule-sidebar .schedule-sidebar-countdown {
  font-size: 0.7rem;
  color: #FF9800;
  font-weight: 500;
  margin-top: 2px;
}

/* line 846, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.adv-schedule-sidebar .schedule-sidebar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #C38761;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

/* line 855, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.adv-schedule-sidebar .schedule-sidebar-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* line 857, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.adv-schedule-sidebar .schedule-sidebar-link i {
  font-size: 0.8rem;
}

/* ==========================================================================
   DETAILS TAB - Onglet Détails
   ========================================================================== */
/* line 865, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-details-section {
  padding: 10px 0;
}

/* line 869, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  /* line 869, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
  .schedule-details-grid {
    grid-template-columns: 1fr;
  }
}

/* line 879, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 890, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .schedule-detail-item {
  background: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.08);
}

/* line 896, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-detail-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

/* line 903, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .schedule-detail-label {
  color: rgba(20, 13, 35, 0.5);
}

/* line 906, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-detail-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
}

/* line 911, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .schedule-detail-value {
  color: #140D23;
}

/* ==========================================================================
   ACTIONS
   ========================================================================== */
/* ==========================================================================
   CONTACT SECTION - Destinataires émission différée
   ========================================================================== */
/* line 923, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-contact-section .schedule-contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

/* line 930, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-contact-section .schedule-contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.15), rgba(195, 135, 97, 0.05));
  border: 1px solid rgba(195, 135, 97, 0.3);
  border-radius: 20px;
  font-size: 0.75rem;
  color: #fff;
}

/* line 940, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .schedule-contact-section .schedule-contact-chip {
  color: #140D23;
}

/* line 942, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-contact-section .schedule-contact-chip i:first-child {
  font-size: 0.65rem;
  color: #C38761;
}

/* line 947, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-contact-section .schedule-contact-chip .schedule-contact-chip-remove {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0 2px;
  font-size: 0.65rem;
  transition: color 0.2s ease;
}

/* line 955, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .schedule-contact-section .schedule-contact-chip .schedule-contact-chip-remove {
  color: rgba(20, 13, 35, 0.5);
}

/* line 957, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-contact-section .schedule-contact-chip .schedule-contact-chip-remove:hover {
  color: #dc3545;
}

/* line 963, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-contact-section .schedule-contact-empty {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  margin-bottom: 8px;
}

/* line 968, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .schedule-contact-section .schedule-contact-empty {
  color: rgba(20, 13, 35, 0.5);
}

/* line 971, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-contact-section .schedule-contact-search-row {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
}

/* line 977, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-contact-section .schedule-contact-search-input {
  flex: 1;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.8rem;
  outline: none;
  transition: border-color 0.2s ease;
  min-width: 0;
}

/* line 989, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-contact-section .schedule-contact-search-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* line 991, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .schedule-contact-section .schedule-contact-search-input::placeholder {
  color: rgba(20, 13, 35, 0.4);
}

/* line 994, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-contact-section .schedule-contact-search-input:focus {
  border-color: #C38761;
}

/* line 996, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .schedule-contact-section .schedule-contact-search-input {
  border-color: rgba(20, 13, 35, 0.2);
  background-color: rgba(20, 13, 35, 0.05);
  color: #140D23;
}

/* line 1003, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-contact-section .schedule-contact-create-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.2), rgba(195, 135, 97, 0.05));
  border: 1px solid rgba(195, 135, 97, 0.3);
  border-radius: 6px;
  color: #C38761;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

/* line 1017, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-contact-section .schedule-contact-create-btn:hover {
  background: rgba(195, 135, 97, 0.3);
}

/* line 1021, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-contact-section .schedule-contact-create-btn i {
  font-size: 0.75rem;
}

/* line 1024, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-contact-section .schedule-contact-results {
  max-height: 180px;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 6px;
}

/* line 1032, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .schedule-contact-section .schedule-contact-results {
  border-color: rgba(20, 13, 35, 0.15);
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 1037, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-contact-section .schedule-contact-results::-webkit-scrollbar {
  width: 4px;
}

/* line 1038, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-contact-section .schedule-contact-results::-webkit-scrollbar-track {
  background: transparent;
}

/* line 1039, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-contact-section .schedule-contact-results::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 1042, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-contact-section .schedule-contact-result-item {
  padding: 8px 10px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* line 1047, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .schedule-contact-section .schedule-contact-result-item {
  border-bottom-color: rgba(20, 13, 35, 0.06);
}

/* line 1049, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-contact-section .schedule-contact-result-item:last-child {
  border-bottom: none;
}

/* line 1051, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-contact-section .schedule-contact-result-item:hover {
  background-color: rgba(195, 135, 97, 0.1);
}

/* line 1055, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-contact-section .schedule-contact-result-item .schedule-contact-result-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: #fff;
}

/* line 1059, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .schedule-contact-section .schedule-contact-result-item .schedule-contact-result-name {
  color: #140D23;
}

/* line 1062, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-contact-section .schedule-contact-result-item .schedule-contact-result-email {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
}

/* line 1065, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .schedule-contact-section .schedule-contact-result-item .schedule-contact-result-email {
  color: rgba(20, 13, 35, 0.6);
}

/* line 1069, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-contact-section .schedule-contact-result-empty {
  padding: 10px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  font-style: italic;
}

/* line 1075, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .schedule-contact-section .schedule-contact-result-empty {
  color: rgba(20, 13, 35, 0.5);
}

/* line 1078, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-contact-section .schedule-contact-create-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
}

/* line 1087, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .schedule-contact-section .schedule-contact-create-form {
  background-color: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 1093, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-contact-section .schedule-contact-create-input {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.8rem;
  outline: none;
  transition: border-color 0.2s ease;
}

/* line 1103, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-contact-section .schedule-contact-create-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* line 1105, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .schedule-contact-section .schedule-contact-create-input::placeholder {
  color: rgba(20, 13, 35, 0.4);
}

/* line 1108, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-contact-section .schedule-contact-create-input:focus {
  border-color: #C38761;
}

/* line 1110, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .schedule-contact-section .schedule-contact-create-input {
  border-color: rgba(20, 13, 35, 0.2);
  background-color: rgba(20, 13, 35, 0.05);
  color: #140D23;
}

/* line 1117, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-contact-section .schedule-contact-create-actions {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  margin-top: 4px;
}

/* line 1124, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-contact-section .schedule-contact-cancel-btn {
  padding: 4px 12px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 1133, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .schedule-contact-section .schedule-contact-cancel-btn {
  border-color: rgba(20, 13, 35, 0.2);
  color: rgba(20, 13, 35, 0.7);
}

/* line 1138, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-contact-section .schedule-contact-cancel-btn:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

/* line 1140, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.lightmode .schedule-contact-section .schedule-contact-cancel-btn:hover {
  border-color: rgba(20, 13, 35, 0.4);
}

/* line 1144, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-contact-section .schedule-contact-save-btn {
  padding: 4px 12px;
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.3), rgba(195, 135, 97, 0.1));
  border: 1px solid rgba(195, 135, 97, 0.4);
  border-radius: 6px;
  color: #C38761;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 1155, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.schedule-contact-section .schedule-contact-save-btn:hover {
  background: rgba(195, 135, 97, 0.4);
}

/* line 1161, app/assets/stylesheets/pages/servicespace/back-office/adv/invoice_management/_show_schedule.scss */
.adv-schedule-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding: 0;
  transition: all 0.3s ease;
}

/* line 1, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_edit_order_form.scss */
.adv-edit-order-form-capsule {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 10px 30px 10px 30px;
  font-size: 0.8rem;
  gap: 10px;
}

/* line 12, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_edit_order_form.scss */
.adv-edit-order-form-capsule form {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* line 22, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_edit_order_form.scss */
.adv-edit-order-form-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 28, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_edit_order_form.scss */
.adv-edit-order-form-capsule span {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 34, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_edit_order_form.scss */
.adv-edit-order-form-capsule.lightmode span {
  color: #C38761;
}

/* line 38, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_edit_order_form.scss */
.adv-edit-order-form-capsule.nightmode span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 42, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_edit_order_form.scss */
.adv-edit-order-form-capsule.lightmode p {
  color: #140D23;
}

/* line 46, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_edit_order_form.scss */
.adv-edit-order-form-capsule.nightmode p {
  color: #FFFFFF;
}

/* line 50, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_edit_order_form.scss */
.adv-edit-order-form-capsule.lightmode i {
  color: #140D23;
}

/* line 54, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_edit_order_form.scss */
.adv-edit-order-form-capsule.nightmode i {
  color: #FFFFFF;
}

/* line 58, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_edit_order_form.scss */
.adv-edit-order-form-row1 {
  width: 80%;
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 17px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(232, 232, 232, 0.5);
  border-radius: 20px;
  padding: 20px;
}

/* line 70, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_edit_order_form.scss */
.adv-edit-order-form-row1 form {
  width: 100%;
  display: flex;
}

/* line 75, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_edit_order_form.scss */
.adv-edit-order-form-row1 form input:focus {
  background-color: transparent;
}

/* line 81, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_edit_order_form.scss */
.adv-edit-order-form-row1 h2, .adv-edit-order-form-row1 .h2 {
  all: unset;
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 20px;
}

/* line 91, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_edit_order_form.scss */
.adv-edit-order-form-row2 {
  width: 80%;
  height: 20%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
}

/* line 102, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_edit_order_form.scss */
.adv-edit-order-form-row1-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

/* line 109, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_edit_order_form.scss */
.adv-edit-order-form-row1-form .adv-edit-order-form-row1-form-field {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* line 116, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_edit_order_form.scss */
.adv-edit-order-form-row1-form .adv-edit-order-form-row1-form-field input {
  all: unset;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 128, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_edit_order_form.scss */
.adv-edit-order-form-row1-form .adv-edit-order-form-row1-form-field input:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 134, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_edit_order_form.scss */
.adv-edit-order-form-row1-form .adv-edit-order-form-row1-form-field label {
  all: unset;
  color: #FFFFFF !important;
  font-size: 0.8rem !important;
  text-align: center;
}

/* ==========================================================================
   ORDER FORM LIST - MODULE ADV
   Structure principale et composants pour la gestion des bons de commande
   ========================================================================== */
/* line 6, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-capsule {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 5px 20px;
  font-size: 0.8rem;
  gap: 10px;
  overflow: hidden;
}

/* line 18, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-capsule.lightmode {
  color: #140D23;
}

/* line 22, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-capsule.nightmode {
  color: #FFFFFF;
}

/* line 27, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 33, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-capsule span {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 39, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-capsule.lightmode span {
  color: #C38761;
}

/* line 43, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-capsule.nightmode span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 47, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-capsule.lightmode p {
  color: #140D23;
}

/* line 51, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-capsule.nightmode p {
  color: #FFFFFF;
}

/* line 55, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-capsule.lightmode i {
  color: #140D23;
}

/* line 59, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-capsule.nightmode i {
  color: #FFFFFF;
}

/* line 63, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-row1 {
  width: 100%;
  height: 50px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  flex-shrink: 0;
  margin-bottom: 20px;
}

/* line 74, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-row1 form {
  width: 100%;
  display: flex;
  padding: 0 !important;
}

/* line 81, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-row1-searchbar {
  width: 100%;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-content: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
  /* Utilise maintenant la classe générique adv-searchbar */
}

/* line 94, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-capsule.lightmode .adv-order-form-list-row1-searchbar {
  border-color: rgba(20, 13, 35, 0.5);
  color: #140D23;
}

/* line 99, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-row1-searchbar .adv-order-form-list-search-form {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 106, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-row1-searchbar .adv-order-form-list-search-input-wrapper {
  position: relative;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

/* line 115, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-row1-searchbar .adv-order-form-list-clear-search-button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 0.6rem;
  text-decoration: none;
}

/* line 130, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-capsule.lightmode .adv-order-form-list-row1-searchbar .adv-order-form-list-clear-search-button {
  color: #140D23;
}

/* line 134, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-row1-searchbar .adv-order-form-list-clear-search-button:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* line 137, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-capsule.lightmode .adv-order-form-list-row1-searchbar .adv-order-form-list-clear-search-button:hover {
  color: rgba(20, 13, 35, 0.7);
}

/* line 143, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-row1-searchbar button {
  all: unset;
  cursor: pointer;
}

/* line 148, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-row1-searchbar .adv-order-form-list-search-button {
  padding: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 156, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-row1-searchbar i {
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 161, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-capsule.lightmode .adv-order-form-list-row1-searchbar i {
  color: #140D23 !important;
}

/* line 166, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-row1-searchbar span {
  font-weight: normal !important;
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 172, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-capsule.lightmode .adv-order-form-list-row1-searchbar span {
  color: #140D23 !important;
}

/* line 178, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-search-info {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: #FFFFFF;
  margin-bottom: -10px;
  z-index: 5;
}

/* line 188, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-capsule.lightmode .adv-order-form-list-search-info {
  color: #140D23;
}

/* line 192, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-search-info span {
  opacity: 0.8;
}

/* line 196, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-search-info .adv-order-form-list-reset-search-link {
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s ease;
}

/* line 207, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-capsule.lightmode .adv-order-form-list-search-info .adv-order-form-list-reset-search-link {
  color: #140D23;
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 212, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-search-info .adv-order-form-list-reset-search-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 215, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-capsule.lightmode .adv-order-form-list-search-info .adv-order-form-list-reset-search-link:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* line 222, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-tabs {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
}

/* line 230, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-row2 {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 15px;
  overflow: hidden;
  margin-top: 5px;
}

/* line 244, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-capsule.lightmode .adv-order-form-list-row2 {
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 249, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-row2-list {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

/* line 258, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-row2-list-head {
  width: 97%;
  display: flex;
  padding-right: 8px;
  flex-direction: row;
  font-weight: bold;
  font-size: 0.75rem;
  margin-bottom: 5px;
  color: #FFFFFF;
}

/* line 268, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-capsule.lightmode .adv-order-form-list-row2-list-head {
  color: #140D23;
}

/* line 273, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-row2-list-head .adv-order-form-list-row2-list-column {
  width: 20%;
  text-align: center;
  justify-content: center;
}

/* line 278, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-row2-list-head .adv-order-form-list-row2-list-column.sortable {
  cursor: pointer;
  transition: background-color 0.2s ease;
}

/* line 282, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-row2-list-head .adv-order-form-list-row2-list-column.sortable:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

/* line 285, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-capsule.lightmode .adv-order-form-list-row2-list-head .adv-order-form-list-row2-list-column.sortable:hover {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 290, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-row2-list-head .adv-order-form-list-row2-list-column.sortable .sort-link {
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 100%;
  height: 100%;
}

/* line 300, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-capsule.lightmode .adv-order-form-list-row2-list-head .adv-order-form-list-row2-list-column.sortable .sort-link {
  color: #140D23;
}

/* line 304, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-row2-list-head .adv-order-form-list-row2-list-column.sortable .sort-link i {
  font-size: 0.6rem !important;
}

/* line 307, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-capsule.lightmode .adv-order-form-list-row2-list-head .adv-order-form-list-row2-list-column.sortable .sort-link i {
  color: #140D23 !important;
}

/* line 315, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-row2-list-column {
  display: flex;
  align-items: center;
  font-size: 0.7rem;
  padding: 5px 10px;
}

/* line 322, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-row2-list-entries {
  width: 100%;
  height: calc(100% - 30px);
  display: flex;
  gap: 5px;
  flex-direction: column;
  overflow-y: auto;
}

/* line 330, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-row2-list-entries::-webkit-scrollbar {
  width: 8px;
}

/* line 334, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-row2-list-entries::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 338, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-capsule.lightmode .adv-order-form-list-row2-list-entries::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 343, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-row2-list-entries::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 348, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-row2-list-entries::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 351, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-capsule.lightmode .adv-order-form-list-row2-list-entries::-webkit-scrollbar-thumb:hover {
  background: #140D23;
}

/* line 357, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-row2-list-entry {
  width: 97%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  font-size: 0.7rem;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 2px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 40px;
  padding: 3px 0;
  margin-bottom: 2px;
  color: #FFFFFF;
}

/* line 375, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-capsule.lightmode .adv-order-form-list-row2-list-entry {
  color: #140D23;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 2px;
}

/* line 380, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-row2-list-entry:hover {
  transform: scale(1.01);
  transition: transform 0.3s ease;
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 385, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-capsule.lightmode .adv-order-form-list-row2-list-entry:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 390, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-row2-list-entry .adv-order-form-list-row2-list-column {
  width: 20%;
  text-align: center;
  justify-content: center;
}

/* line 397, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.no-results {
  width: 100%;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-top: 10px;
}

/* line 407, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.adv-order-form-list-capsule.lightmode .no-results {
  color: #140D23;
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 413, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.form-button, .crm-action-button, .users-management-container .users-header .add-user-btn {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  border: none;
  cursor: pointer;
  background-color: #C38761;
  color: #FFFFFF;
}

/* line 428, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.form-button:hover, .crm-action-button:hover, .users-management-container .users-header .add-user-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* line 434, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_list.scss */
.d-none {
  display: none !important;
}

/* ==========================================================================
   ORDER FORM HELP BANNER - MODULE ADV
   Encart d'aide contextuel repliable pour expliquer le bon de commande
   ========================================================================== */
/* line 6, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_help_banner.scss */
.adv-help-banner {
  width: 100%;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

/* line 14, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_help_banner.scss */
.adv-order-form-list-capsule.lightmode .adv-help-banner {
  background: rgba(59, 130, 246, 0.06);
  border-color: rgba(59, 130, 246, 0.15);
}

/* line 20, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_help_banner.scss */
.adv-help-banner-toggle {
  all: unset;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  transition: background-color 0.2s ease;
  box-sizing: border-box;
}

/* line 34, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_help_banner.scss */
.adv-order-form-list-capsule.lightmode .adv-help-banner-toggle {
  color: #140D23;
}

/* line 38, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_help_banner.scss */
.adv-help-banner-toggle:hover {
  background: rgba(59, 130, 246, 0.08);
}

/* line 41, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_help_banner.scss */
.adv-order-form-list-capsule.lightmode .adv-help-banner-toggle:hover {
  background: rgba(59, 130, 246, 0.06);
}

/* line 46, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_help_banner.scss */
.adv-help-banner-toggle > i:first-child {
  font-size: 0.55rem !important;
  opacity: 0.6;
  transition: transform 0.3s ease;
  color: rgba(96, 165, 250, 0.9) !important;
  flex-shrink: 0;
}

/* line 53, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_help_banner.scss */
.adv-order-form-list-capsule.lightmode .adv-help-banner-toggle > i:first-child {
  color: rgba(37, 99, 235, 0.7) !important;
}

/* line 58, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_help_banner.scss */
.adv-help-banner-toggle > i:nth-child(2) {
  font-size: 0.85rem !important;
  color: rgba(96, 165, 250, 0.9) !important;
  flex-shrink: 0;
}

/* line 63, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_help_banner.scss */
.adv-order-form-list-capsule.lightmode .adv-help-banner-toggle > i:nth-child(2) {
  color: rgba(37, 99, 235, 0.7) !important;
}

/* line 69, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_help_banner.scss */
.adv-help-banner-title {
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.85) !important;
  text-align: left !important;
}

/* line 75, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_help_banner.scss */
.adv-order-form-list-capsule.lightmode .adv-help-banner-title {
  color: #140D23 !important;
}

/* line 80, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_help_banner.scss */
.adv-help-banner-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease;
}

/* line 86, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_help_banner.scss */
.adv-help-banner-content.is-open {
  opacity: 1;
}

/* line 91, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_help_banner.scss */
.adv-help-banner-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
  padding: 0 1rem 1rem;
}

/* line 98, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_help_banner.scss */
.adv-help-banner-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background-color 0.2s ease;
}

/* line 108, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_help_banner.scss */
.adv-order-form-list-capsule.lightmode .adv-help-banner-item {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(59, 130, 246, 0.1);
}

/* line 113, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_help_banner.scss */
.adv-help-banner-item > i {
  font-size: 1rem !important;
  color: #C38761 !important;
  margin-top: 0.15rem;
  flex-shrink: 0;
  opacity: 0.85;
}

/* line 121, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_help_banner.scss */
.adv-help-banner-item strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.9);
}

/* line 128, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_help_banner.scss */
.adv-order-form-list-capsule.lightmode .adv-help-banner-item strong {
  color: #140D23;
}

/* line 133, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_help_banner.scss */
.adv-help-banner-item p {
  all: unset;
  display: block;
  font-size: 0.72rem !important;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.65) !important;
  text-align: left !important;
}

/* line 141, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_help_banner.scss */
.adv-order-form-list-capsule.lightmode .adv-help-banner-item p {
  color: rgba(20, 13, 35, 0.7) !important;
}

/* Responsive */
@media (max-width: 768px) {
  /* line 149, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_help_banner.scss */
  .adv-help-banner {
    width: 95%;
  }
  /* line 153, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_help_banner.scss */
  .adv-help-banner-items {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  /* line 159, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_help_banner.scss */
  .adv-help-banner {
    width: 100%;
  }
  /* line 163, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_help_banner.scss */
  .adv-help-banner-toggle {
    padding: 0.5rem 0.75rem;
    font-size: 0.72rem;
  }
  /* line 168, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_help_banner.scss */
  .adv-help-banner-item {
    padding: 0.6rem;
  }
}

/* line 1, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-capsule {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 10px 20px 10px 20px;
  font-size: 0.8rem;
  gap: 10px;
}

/* line 12, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-capsule.lightmode {
  color: #140D23;
}

/* line 14, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-capsule.lightmode .adv-new-order-form-config-select {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 18, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-capsule.lightmode .adv-new-order-form-config-input {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 22, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-capsule.lightmode .new-order-form-transaction-choice {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 26, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-capsule.lightmode .search-input {
  border-color: transparent !important;
}

/* line 28, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-capsule.lightmode .search-input:focus {
  border-color: transparent !important;
  box-shadow: none !important;
}

/* line 33, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-capsule.lightmode .recipient-choice {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 37, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-capsule.lightmode #publicMarket {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 41, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-capsule.lightmode #privateMarket {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 47, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-capsule .form-group {
  margin: 0;
}

/* line 51, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-capsule form {
  display: flex !important;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  align-items: center;
  height: 100%;
}

/* Card de Configuration */
/* line 62, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-configuration-card {
  width: 100%;
  max-width: 1400px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

/* line 74, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.lightmode .adv-new-order-form-configuration-card {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.08) 0%, rgba(20, 13, 35, 0.03) 100%);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 80, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-config-header {
  text-align: center;
  margin-bottom: 30px;
}

/* line 84, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-config-header h2, .adv-new-order-form-config-header .h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

/* line 90, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.lightmode .adv-new-order-form-config-header h2, .lightmode .adv-new-order-form-config-header .h2 {
  color: #140D23;
}

/* line 95, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-config-header p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 99, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.lightmode .adv-new-order-form-config-header p {
  color: rgba(20, 13, 35, 0.7);
}

/* line 105, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-config-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 25px;
}

/* line 112, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-config-section {
  width: 100%;
  margin-bottom: 25px;
}

/* line 117, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-config-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  /* line 117, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
  .adv-new-order-form-config-row {
    grid-template-columns: 1fr;
  }
}

/* line 127, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-config-item {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* line 133, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-config-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 138, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-config-label i {
  font-size: 1.1rem;
  color: #C38761;
}

/* line 143, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-config-label h3, .adv-new-order-form-config-label .h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
}

/* line 149, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.lightmode .adv-new-order-form-config-label h3, .lightmode .adv-new-order-form-config-label .h3 {
  color: #140D23;
}

/* line 154, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-config-label h4, .adv-new-order-form-config-label .h4 {
  font-size: 0.8rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
}

/* line 160, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.lightmode .adv-new-order-form-config-label h4, .lightmode .adv-new-order-form-config-label .h4 {
  color: #140D23;
}

/* line 166, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-config-select {
  width: auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  color: #FFFFFF;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

/* line 176, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.lightmode .adv-new-order-form-config-select {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 182, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-config-select:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 188, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-config-select option {
  background: #140D23;
  color: #FFFFFF;
}

/* line 194, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-config-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  color: #FFFFFF;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

/* line 204, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.lightmode .adv-new-order-form-config-input {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 210, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-config-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 213, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.lightmode .adv-new-order-form-config-input::placeholder {
  color: rgba(20, 13, 35, 0.5);
}

/* line 218, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-config-input:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 225, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-market-type-selector {
  display: flex;
  gap: 12px;
}

/* line 229, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-market-type-selector .adv-new-order-form-market-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 245, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.lightmode .adv-new-order-form-market-type-selector .adv-new-order-form-market-option {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 251, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-market-type-selector .adv-new-order-form-market-option i {
  font-size: 1rem;
  color: #C38761;
}

/* line 256, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-market-type-selector .adv-new-order-form-market-option:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

/* line 261, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.lightmode .adv-new-order-form-market-type-selector .adv-new-order-form-market-option:hover {
  background: rgba(20, 13, 35, 0.12);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 267, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-market-type-selector .adv-new-order-form-market-option.selected {
  background: #C38761;
  border-color: #C38761;
  color: #140D23;
}

/* line 272, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-market-type-selector .adv-new-order-form-market-option.selected i {
  color: #140D23;
}

/* line 279, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-search-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* line 285, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-search-input {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 291, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-search-input .search-form {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

/* line 298, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-search-input i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  z-index: 2;
}

/* line 307, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.lightmode .adv-new-order-form-search-input i {
  color: rgba(20, 13, 35, 0.6);
}

/* line 312, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-search-input button {
  all: unset;
  padding: 8px 12px;
  background: #C38761;
  border-radius: 8px;
  color: #140D23;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 321, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-search-input button:hover {
  background: #864B28;
  transform: scale(1.05);
}

/* line 326, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-search-input button i {
  position: static;
  transform: none;
  color: #140D23;
}

/* Utilise maintenant la classe générique adv-searchbar */
/* line 336, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-search-results {
  min-height: 120px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}

/* line 344, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.lightmode .adv-new-order-form-search-results {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 351, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-search-results .userChoice {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* line 358, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-search-results .userChoice .no-recipient, .adv-new-order-form-search-results .userChoice .no-document {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
}

/* line 365, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.lightmode .adv-new-order-form-search-results .userChoice .no-recipient, .lightmode .adv-new-order-form-search-results .userChoice .no-document {
  color: rgba(20, 13, 35, 0.6);
}

/* line 369, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-search-results .userChoice .no-recipient::before, .adv-new-order-form-search-results .userChoice .no-document::before {
  content: '\f007';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.4);
}

/* line 376, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.lightmode .adv-new-order-form-search-results .userChoice .no-recipient::before, .lightmode .adv-new-order-form-search-results .userChoice .no-document::before {
  color: rgba(20, 13, 35, 0.4);
}

/* line 384, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-transaction-selector {
  display: flex;
  gap: 12px;
}

/* line 388, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-transaction-selector .new-order-form-transaction-choice {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 404, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.lightmode .adv-new-order-form-transaction-selector .new-order-form-transaction-choice {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 410, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-transaction-selector .new-order-form-transaction-choice i {
  font-size: 1rem;
  color: #C38761;
}

/* line 415, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-transaction-selector .new-order-form-transaction-choice:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

/* line 420, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.lightmode .adv-new-order-form-transaction-selector .new-order-form-transaction-choice:hover {
  background: rgba(20, 13, 35, 0.12);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 426, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-transaction-selector .new-order-form-transaction-choice.selected {
  background: #C38761;
  border-color: #C38761;
  color: #140D23;
}

/* line 431, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-transaction-selector .new-order-form-transaction-choice.selected i {
  color: #140D23;
}

/* line 438, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-transaction-content {
  margin-top: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
}

/* line 445, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.lightmode .adv-new-order-form-transaction-content {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 451, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-transaction-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

/* line 459, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.lightmode .adv-new-order-form-transaction-info {
  background: rgba(20, 13, 35, 0.08);
}

/* line 463, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-transaction-info i {
  color: #C38761;
  font-size: 1.1rem;
}

/* line 468, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-transaction-info span {
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 500;
}

/* line 473, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.lightmode .adv-new-order-form-transaction-info span {
  color: #140D23;
}

/* line 480, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-document-search h4, .adv-new-order-form-document-search .h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 15px;
}

/* line 486, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.lightmode .adv-new-order-form-document-search h4, .lightmode .adv-new-order-form-document-search .h4 {
  color: #140D23;
}

/* line 491, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-document-search .search-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* line 497, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-document-search .form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 503, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-document-search .filter {
  width: auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  color: #FFFFFF;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

/* line 513, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.lightmode .adv-new-order-form-document-search .filter {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 519, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-document-search .filter:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 525, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-document-search .filter option {
  background: #140D23;
  color: #FFFFFF;
}

/* Styles pour les résultats de recherche */
/* line 535, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.results {
  min-height: 50px;
  max-height: 200px;
  overflow-y: auto;
  width: 100%;
  /* Personnalisation de la barre de défilement */
}

/* line 542, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.results::-webkit-scrollbar {
  width: 5px;
}

/* line 546, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.results::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 551, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.results::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
  border: 4px solid #e8e8e8;
}

/* line 557, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.results::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* Styles pour les éléments sélectionnés */
/* line 563, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.userChoice {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 15px;
}

/* line 570, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.userChoice .no-document {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-color-primary);
}

/* line 587, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.lightmode .userChoice .no-document {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.1) 0%, rgba(20, 13, 35, 0.05) 100%);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 594, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.userChoice .item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* line 608, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.lightmode .userChoice .item {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.1) 0%, rgba(20, 13, 35, 0.05) 100%);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 613, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.userChoice .item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  border-color: rgba(232, 232, 232, 0.6);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

/* line 619, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.lightmode .userChoice .item:hover {
  border-color: rgba(20, 13, 35, 0.4);
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.15) 0%, rgba(20, 13, 35, 0.08) 100%);
}

/* line 625, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.userChoice .item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #C38761, #864B28);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* line 637, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.userChoice .item:hover::before {
  opacity: 1;
}

/* line 641, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.userChoice .item .item-header {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-grow: 1;
}

/* line 647, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.userChoice .item .item-header i {
  color: green;
  font-size: 1rem;
  padding: 8px;
  background-color: rgba(195, 135, 97, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* line 656, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.userChoice .item .item-header p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-color-primary);
  line-height: 1.4;
  transition: color 0.3s ease;
}

/* line 664, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.lightmode .userChoice .item .item-header p {
  color: #140D23;
}

/* line 671, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.userChoice .item:hover .item-header i {
  color: #864B28;
  background-color: rgba(134, 75, 40, 0.15);
  transform: scale(1.1);
}

/* line 677, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.userChoice .item:hover .item-header p {
  color: #FFFFFF;
}

/* line 680, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.lightmode .userChoice .item:hover .item-header p {
  color: #140D23;
}

/* line 686, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.userChoice .item .item-actions {
  display: flex;
  gap: 10x;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* line 693, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.userChoice .item .item-actions button {
  all: unset;
  padding: 6px;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-size: 0.7rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 703, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.lightmode .userChoice .item .item-actions button {
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 708, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.userChoice .item .item-actions button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

/* line 712, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.lightmode .userChoice .item .item-actions button:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* line 719, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.userChoice .item:hover .item-actions {
  opacity: 1;
}

/* Styles pour les fichiers joints */
/* line 726, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-file-upload-area {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  transition: all 0.3s ease;
}

/* line 736, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.lightmode .adv-new-order-form-file-upload-area {
  border-color: rgba(20, 13, 35, 0.2);
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.05) 0%, rgba(20, 13, 35, 0.02) 100%);
}

/* line 741, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-file-upload-area:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

/* line 744, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.lightmode .adv-new-order-form-file-upload-area:hover {
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 750, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-file-input-hidden {
  display: none;
}

/* line 754, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-file-upload-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 769, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.lightmode .adv-new-order-form-file-upload-button {
  border-color: rgba(20, 13, 35, 0.3);
  color: rgba(20, 13, 35, 0.8);
}

/* line 774, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-file-upload-button:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
}

/* line 779, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.lightmode .adv-new-order-form-file-upload-button:hover {
  border-color: rgba(20, 13, 35, 0.5);
  background: rgba(20, 13, 35, 0.05);
  color: #140D23;
}

/* line 786, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-file-upload-button i {
  font-size: 1rem;
}

/* line 792, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-file-info p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  text-align: center;
}

/* line 798, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.lightmode .adv-new-order-form-file-info p {
  color: rgba(20, 13, 35, 0.6);
}

/* line 804, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-file-list {
  margin-top: 10px;
}

/* line 808, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-file-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 814, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

/* line 824, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.lightmode .adv-new-order-form-file-item {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 829, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-file-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

/* line 833, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.lightmode .adv-new-order-form-file-item:hover {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 840, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-file-item-info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

/* line 846, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-file-item-info i {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 850, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.lightmode .adv-new-order-form-file-item-info i {
  color: rgba(20, 13, 35, 0.7);
}

/* line 856, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-file-name {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* line 861, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.lightmode .adv-new-order-form-file-name {
  color: rgba(20, 13, 35, 0.9);
}

/* line 866, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-file-size {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

/* line 870, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.lightmode .adv-new-order-form-file-size {
  color: rgba(20, 13, 35, 0.6);
}

/* line 875, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-file-size.adv-new-order-form-file-size-warning {
  color: #f59e0b;
  font-weight: 600;
}

/* line 879, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-file-size.adv-new-order-form-file-size-warning i {
  color: #f59e0b;
  margin-right: 4px;
}

/* line 884, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.lightmode .adv-new-order-form-file-size.adv-new-order-form-file-size-warning {
  color: #FF9800;
}

/* line 887, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.lightmode .adv-new-order-form-file-size.adv-new-order-form-file-size-warning i {
  color: #FF9800;
}

/* line 894, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-file-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 907, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.lightmode .adv-new-order-form-file-remove {
  background: rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.6);
}

/* line 912, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-file-remove:hover {
  background: rgba(236, 0, 140, 0.8);
  color: #FFFFFF;
  transform: scale(1.1);
}

/* line 918, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-file-remove i {
  font-size: 0.75rem;
}

/* Boutons d'action */
/* line 924, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-row2 {
  width: 80%;
  height: 7.5%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
}

/* line 934, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-row2 #fakeSubmitButton {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  border: none;
  cursor: pointer;
  background-color: #C38761;
  color: #140D23;
}

/* line 949, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-row2 #fakeSubmitButton:hover {
  background-color: #864B28;
  transform: scale(1.05);
}

/* line 955, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-row2 form {
  display: flex !important;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  align-items: center;
  height: 100%;
}

/* Styles généraux pour les éléments de base */
/* line 966, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 972, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.adv-new-order-form-capsule span {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 980, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.lightmode .adv-new-order-form-capsule span {
  color: #140D23;
}

/* line 983, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.nightmode .adv-new-order-form-capsule span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 989, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.lightmode .adv-new-order-form-capsule p {
  color: #140D23;
}

/* line 992, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.nightmode .adv-new-order-form-capsule p {
  color: #FFFFFF;
}

/* line 998, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.lightmode .adv-new-order-form-capsule i {
  color: #140D23;
}

/* line 1001, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.nightmode .adv-new-order-form-capsule i {
  color: #FFFFFF;
}

/* line 1008, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.trash {
  cursor: pointer;
  font-size: 0.8rem;
}

/* line 1011, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_new_order_form.scss */
.trash:hover {
  color: #A60240;
}

/* ==========================================================================
   ADV SHOW TABS SCROLLER
   Chevrons de navigation horizontale pour les onglets des pages show ADV.
   Réutilise landing_scroller_controller.js (query .orizon-rail-arrow--left/--right).
   ========================================================================== */
/* line 7, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/../../../../../shared/_adv_show_tabs_scroller.scss */
.adv-tabs-scroller {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* line 13, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/../../../../../shared/_adv_show_tabs_scroller.scss */
.adv-tabs-scroller-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.65rem;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

/* line 29, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/../../../../../shared/_adv_show_tabs_scroller.scss */
.lightmode .adv-tabs-scroller-arrow {
  background-color: rgba(20, 13, 35, 0.08);
  color: rgba(20, 13, 35, 0.6);
}

/* line 34, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/../../../../../shared/_adv_show_tabs_scroller.scss */
.adv-tabs-scroller-arrow:hover:not([disabled]) {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* line 38, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/../../../../../shared/_adv_show_tabs_scroller.scss */
.lightmode .adv-tabs-scroller-arrow:hover:not([disabled]) {
  background-color: rgba(20, 13, 35, 0.15);
  color: #140D23;
}

/* line 44, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/../../../../../shared/_adv_show_tabs_scroller.scss */
.adv-tabs-scroller-arrow[disabled] {
  opacity: 0;
  cursor: default;
  pointer-events: none;
}

/* ==========================================================================
   SHOW ORDER FORM - MODULE ADV
   Structure principale et composants pour l'affichage détaillé d'un bon de commande
   ========================================================================== */
/* line 6, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  margin: 0;
  height: 100%;
  padding: 20px;
  overflow-x: hidden;
  overflow-y: auto;
  /* Personnalisation de la barre de défilement */
}

/* line 18, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-container::-webkit-scrollbar {
  width: 8px;
}

/* line 22, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 27, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-container::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 32, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-container::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 36, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-container.lightmode {
  color: #140D23;
}

/* line 43, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .adv-document-list p {
  color: #140D23 !important;
}

/* line 49, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-main-content {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 15px;
  min-width: 0;
  flex: 1;
  transition: all 0.3s ease;
}

@media (max-width: 1024px) {
  /* line 49, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
  .adv-show-order-form-main-content {
    flex-direction: column;
  }
}

/* line 62, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-main-content.wide-margins {
  justify-content: center;
}

/* line 67, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 5px;
  overflow: hidden;
  flex: 1;
  min-width: 0;
  /* ==========================================================================
     EN-TÊTE AVEC INFORMATIONS DU BON DE COMMANDE ET ONGLETS
     ========================================================================== */
  /* ==========================================================================
     CONTENU DES ONGLETS
     ========================================================================== */
  /* ==========================================================================
     ONGLET DÉTAILS - CONTENU SPÉCIFIQUE
     ========================================================================== */
}

@media (max-width: 768px) {
  /* line 67, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
  .adv-show-order-form-capsule {
    padding: 15px;
  }
}

/* line 84, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .adv-show-order-form-capsule {
  background-color: rgba(20, 13, 35, 0.05);
  color: #140D23;
}

/* line 92, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-header-tabs {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

/* line 98, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-header-tabs .adv-order-form-info-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 5px;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

@media (max-width: 768px) {
  /* line 98, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
  .adv-show-order-form-capsule .adv-order-form-header-tabs .adv-order-form-info-header {
    grid-template-columns: 1fr;
    gap: 5px;
    overflow-x: auto;
    /* Personnalisation de la barre de défilement */
  }
  /* line 114, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
  .adv-show-order-form-capsule .adv-order-form-header-tabs .adv-order-form-info-header::-webkit-scrollbar {
    height: 4px;
  }
  /* line 118, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
  .adv-show-order-form-capsule .adv-order-form-header-tabs .adv-order-form-info-header::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
  }
  /* line 123, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
  .adv-show-order-form-capsule .adv-order-form-header-tabs .adv-order-form-info-header::-webkit-scrollbar-thumb {
    background: #C38761;
    border-radius: 10px;
  }
  /* line 128, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
  .adv-show-order-form-capsule .adv-order-form-header-tabs .adv-order-form-info-header::-webkit-scrollbar-thumb:hover {
    background: #FFFFFF;
  }
}

/* line 133, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .adv-show-order-form-capsule .adv-order-form-header-tabs .adv-order-form-info-header {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 137, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-header-tabs .adv-order-form-info-header .adv-header-section, .adv-show-order-form-capsule .adv-order-form-header-tabs .adv-order-form-info-header .adv-contract-number-section,
.adv-show-order-form-capsule .adv-order-form-header-tabs .adv-order-form-info-header .adv-market-type-section {
  display: flex;
  flex-direction: row;
  gap: 5px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* line 145, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-header-tabs .adv-order-form-info-header .adv-header-section .adv-label, .adv-show-order-form-capsule .adv-order-form-header-tabs .adv-order-form-info-header .adv-contract-number-section .adv-label,
.adv-show-order-form-capsule .adv-order-form-header-tabs .adv-order-form-info-header .adv-market-type-section .adv-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  white-space: nowrap;
  display: block;
}

/* line 151, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .adv-show-order-form-capsule .adv-order-form-header-tabs .adv-order-form-info-header .adv-header-section .adv-label, .lightmode .adv-show-order-form-capsule .adv-order-form-header-tabs .adv-order-form-info-header .adv-contract-number-section .adv-label,
.lightmode .adv-show-order-form-capsule .adv-order-form-header-tabs .adv-order-form-info-header .adv-market-type-section .adv-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 156, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-header-tabs .adv-order-form-info-header .adv-header-section .adv-value, .adv-show-order-form-capsule .adv-order-form-header-tabs .adv-order-form-info-header .adv-contract-number-section .adv-value,
.adv-show-order-form-capsule .adv-order-form-header-tabs .adv-order-form-info-header .adv-market-type-section .adv-value {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  display: block;
}

/* line 163, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .adv-show-order-form-capsule .adv-order-form-header-tabs .adv-order-form-info-header .adv-header-section .adv-value, .lightmode .adv-show-order-form-capsule .adv-order-form-header-tabs .adv-order-form-info-header .adv-contract-number-section .adv-value,
.lightmode .adv-show-order-form-capsule .adv-order-form-header-tabs .adv-order-form-info-header .adv-market-type-section .adv-value {
  color: #140D23;
}

/* line 169, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-header-tabs .adv-order-form-info-header .adv-header-section.adv-client-section .adv-value, .adv-show-order-form-capsule .adv-order-form-header-tabs .adv-order-form-info-header .adv-client-section.adv-contract-number-section .adv-value,
.adv-show-order-form-capsule .adv-order-form-header-tabs .adv-order-form-info-header .adv-client-section.adv-market-type-section .adv-value {
  font-size: 0.9rem;
  white-space: nowrap;
}

/* line 177, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-header-tabs .adv-order-form-tabs {
  display: flex;
  gap: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
  overflow-x: auto;
  flex: 1;
  min-width: 0;
  scrollbar-width: none;
}

/* line 186, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-header-tabs .adv-order-form-tabs::-webkit-scrollbar {
  display: none;
}

@media (max-width: 768px) {
  /* line 177, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
  .adv-show-order-form-capsule .adv-order-form-header-tabs .adv-order-form-tabs {
    gap: 3px;
  }
}

/* line 192, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .adv-show-order-form-capsule .adv-order-form-header-tabs .adv-order-form-tabs {
  border-bottom: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 196, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-header-tabs .adv-order-form-tabs .adv-tab-button {
  padding: 5px 10px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  border-radius: 8px 8px 0 0;
  white-space: nowrap;
}

@media (max-width: 768px) {
  /* line 196, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
  .adv-show-order-form-capsule .adv-order-form-header-tabs .adv-order-form-tabs .adv-tab-button {
    font-size: 0.75rem;
    padding: 5px 8px;
  }
}

/* line 214, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .adv-show-order-form-capsule .adv-order-form-header-tabs .adv-order-form-tabs .adv-tab-button {
  color: rgba(20, 13, 35, 0.7);
}

/* line 218, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-header-tabs .adv-order-form-tabs .adv-tab-button:hover {
  color: rgba(255, 255, 255, 0.9);
  background-color: rgba(255, 255, 255, 0.05);
}

/* line 222, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .adv-show-order-form-capsule .adv-order-form-header-tabs .adv-order-form-tabs .adv-tab-button:hover {
  color: rgba(20, 13, 35, 0.9);
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 228, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-header-tabs .adv-order-form-tabs .adv-tab-button.active {
  color: #C38761;
  border-bottom-color: #C38761;
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 233, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .adv-show-order-form-capsule .adv-order-form-header-tabs .adv-order-form-tabs .adv-tab-button.active {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 244, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-tab-content {
  flex: 1;
  overflow-y: auto;
  /* Personnalisation de la barre de défilement */
}

/* line 248, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-tab-content::-webkit-scrollbar {
  width: 4px;
}

/* line 252, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-tab-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 257, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-tab-content::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 262, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-tab-content::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 265, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-tab-content .adv-tab-panel {
  display: none;
  height: 100%;
  flex-direction: column;
  gap: 15px;
  /* ==========================================================================
         EN-TÊTE DU CONTENU DES ONGLETS
         ========================================================================== */
  /* ==========================================================================
         CORPS DU CONTENU DES ONGLETS
         ========================================================================== */
}

/* line 271, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-tab-content .adv-tab-panel.active {
  display: flex;
}

/* line 278, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-tab-content .adv-tab-panel .adv-tab-content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

/* line 286, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .adv-show-order-form-capsule .adv-order-form-tab-content .adv-tab-panel .adv-tab-content-header {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 290, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-tab-content .adv-tab-panel .adv-tab-content-header h3, .adv-show-order-form-capsule .adv-order-form-tab-content .adv-tab-panel .adv-tab-content-header .h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  color: #fff;
}

/* line 296, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .adv-show-order-form-capsule .adv-order-form-tab-content .adv-tab-panel .adv-tab-content-header h3, .lightmode .adv-show-order-form-capsule .adv-order-form-tab-content .adv-tab-panel .adv-tab-content-header .h3 {
  color: #140D23;
}

/* line 301, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-tab-content .adv-tab-panel .adv-tab-content-header .adv-create-button {
  padding: 8px 16px;
  background-color: #C38761;
  color: #140D23;
  border: none;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* line 315, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-tab-content .adv-tab-panel .adv-tab-content-header .adv-create-button:hover {
  background-color: #af6c42;
  transform: translateY(-1px);
}

/* line 320, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-tab-content .adv-tab-panel .adv-tab-content-header .adv-create-button i {
  font-size: 0.7rem;
}

/* line 329, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-tab-content .adv-tab-panel .adv-tab-content-body {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  /* Personnalisation de la barre de défilement */
  /* ==========================================================================
           GRILLE DE DOCUMENTS
           ========================================================================== */
}

/* line 336, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .adv-show-order-form-capsule .adv-order-form-tab-content .adv-tab-panel .adv-tab-content-body {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 341, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-tab-content .adv-tab-panel .adv-tab-content-body::-webkit-scrollbar {
  width: 4px;
}

/* line 345, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-tab-content .adv-tab-panel .adv-tab-content-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 350, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-tab-content .adv-tab-panel .adv-tab-content-body::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 355, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-tab-content .adv-tab-panel .adv-tab-content-body::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 359, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-tab-content .adv-tab-panel .adv-tab-content-body p {
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  text-align: center;
  margin: 2rem 0;
}

/* line 365, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .adv-show-order-form-capsule .adv-order-form-tab-content .adv-tab-panel .adv-tab-content-body p {
  color: rgba(20, 13, 35, 0.7);
}

/* line 373, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  padding: 5px;
  max-height: 100%;
  overflow-y: auto;
  /* Personnalisation de la barre de défilement */
}

@media (max-width: 768px) {
  /* line 373, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
  .adv-show-order-form-capsule .adv-order-form-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* line 373, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
  .adv-show-order-form-capsule .adv-order-form-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

/* line 390, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid::-webkit-scrollbar {
  width: 4px;
}

/* line 394, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 399, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 404, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 408, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

/* line 421, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .adv-show-order-form-capsule .adv-order-form-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-link {
  background-color: rgba(20, 13, 35, 0.05);
  border: 1px solid rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 427, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-link .adv-document-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* line 434, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-link .adv-document-title i {
  color: #C38761;
  font-size: 0.8rem;
}

/* line 440, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-link .adv-document-details {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 447, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .adv-show-order-form-capsule .adv-order-form-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-link .adv-document-details {
  color: rgba(20, 13, 35, 0.7);
}

/* line 451, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-link .adv-document-details .adv-document-amount {
  font-weight: 600;
  color: #C38761;
}

/* line 456, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-link .adv-document-details .adv-document-date {
  font-style: italic;
}

/* line 461, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-link .adv-document-status {
  display: flex;
  justify-content: flex-end;
}

/* line 465, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-link .adv-document-status .status-badge {
  font-size: 0.65rem;
  padding: 2px 8px;
}

/* line 479, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-infos-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* line 485, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-infos-section #adv-order-form-card-title {
  height: 100%;
  display: flex;
  margin-bottom: 10px;
  align-items: center;
  justify-content: center;
}

/* line 493, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-infos-section .adv-order-form-info-cards-container {
  display: flex;
  gap: 1rem;
  max-height: 200px;
}

@media (max-width: 768px) {
  /* line 493, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
  .adv-show-order-form-capsule .adv-order-form-infos-section .adv-order-form-info-cards-container {
    flex-direction: column;
    max-height: none;
  }
}

/* line 504, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-infos-section .adv-order-form-file-card {
  padding: 5px;
  flex: 1;
  height: 0;
}

@media (max-width: 768px) {
  /* line 504, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
  .adv-show-order-form-capsule .adv-order-form-infos-section .adv-order-form-file-card {
    height: auto;
    min-height: 150px;
  }
}

/* line 515, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-infos-section .adv-order-form-market-type-card {
  flex: 1;
}

@media (max-width: 768px) {
  /* line 515, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
  .adv-show-order-form-capsule .adv-order-form-infos-section .adv-order-form-market-type-card {
    min-height: auto;
  }
}

/* line 523, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-infos-section .adv-order-form-amount-card {
  flex: 1;
}

@media (max-width: 768px) {
  /* line 523, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
  .adv-show-order-form-capsule .adv-order-form-infos-section .adv-order-form-amount-card {
    min-height: auto;
  }
}

/* line 532, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-info-card {
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 80px;
}

/* line 543, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .adv-show-order-form-capsule .adv-order-form-info-card {
  background-color: rgba(20, 13, 35, 0.07);
  border: 1px solid rgba(20, 13, 35, 0.3);
}

/* line 548, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-info-card .adv-order-form-card-title {
  padding: 0.8rem 1rem 0.2rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #C38761;
  letter-spacing: 0.01em;
  text-align: center;
  width: 100%;
}

/* line 558, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-info-card .adv-order-form-card-content {
  padding: 0 1rem 1rem 1rem;
  font-size: 0.9rem;
  color: #fff;
  font-weight: 500;
  word-break: break-word;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* line 570, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .adv-show-order-form-capsule .adv-order-form-info-card .adv-order-form-card-content {
  color: #140D23;
}

/* line 574, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-info-card .adv-order-form-card-content .no-data {
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

/* line 578, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .adv-show-order-form-capsule .adv-order-form-info-card .adv-order-form-card-content .no-data {
  color: rgba(20, 13, 35, 0.5);
}

/* line 584, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-info-card .adv-order-form-card-content-document {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 1rem 1rem 1rem;
  font-size: 0.9rem;
  color: #fff;
  font-weight: 500;
  word-break: break-word;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* line 599, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .adv-show-order-form-capsule .adv-order-form-info-card .adv-order-form-card-content-document {
  color: #140D23;
}

/* line 603, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-info-card .adv-order-form-card-content-document #imageButton {
  color: white;
}

/* line 606, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .adv-show-order-form-capsule .adv-order-form-info-card .adv-order-form-card-content-document #imageButton {
  color: #140D23;
}

/* line 611, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-info-card .adv-order-form-card-content-document .no-data {
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

/* line 615, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .adv-show-order-form-capsule .adv-order-form-info-card .adv-order-form-card-content-document .no-data {
  color: rgba(20, 13, 35, 0.5);
}

/* line 622, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-show-order-form-capsule .adv-order-form-market-type-card,
.adv-show-order-form-capsule .adv-order-form-amount-card {
  min-height: 100px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* line 633, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-order-form-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding: 0;
  transition: all 0.3s ease;
}

/* line 641, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-order-form-actions.wide-margins {
  margin-right: 0;
}

/* line 645, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-order-form-actions .adv-action-button {
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.8rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* line 659, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-order-form-actions .adv-action-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

/* line 664, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-order-form-actions .adv-action-button.adv-action-button-primary {
  background-color: #C38761;
  border-color: #C38761;
  color: #140D23;
}

/* line 669, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-order-form-actions .adv-action-button.adv-action-button-primary:hover {
  background-color: #af6c42;
}

/* line 674, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-order-form-actions .adv-action-button.adv-action-button-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

/* line 679, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-order-form-actions .adv-action-button.adv-action-button-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 683, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .adv-order-form-actions .adv-action-button.adv-action-button-secondary {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 688, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .adv-order-form-actions .adv-action-button.adv-action-button-secondary:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* line 696, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-order-form-sidebar {
  width: 300px;
  min-width: 280px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 10px;
  height: 100%;
  margin-top: 0;
  transition: all 0.3s ease;
  /* Personnalisation de la barre de défilement */
}

@media (max-width: 1024px) {
  /* line 696, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
  .adv-order-form-sidebar {
    width: 100%;
    min-width: 100%;
    height: auto;
  }
}

/* line 712, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .adv-order-form-sidebar {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 717, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-order-form-sidebar::-webkit-scrollbar {
  width: 6px;
}

/* line 721, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-order-form-sidebar::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 726, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-order-form-sidebar::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 731, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-order-form-sidebar::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 735, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-order-form-sidebar.hidden {
  display: none;
}

/* line 739, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-order-form-sidebar .order-form-documents-section {
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 15px;
}

/* line 744, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-order-form-sidebar .order-form-documents-section .section-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

/* line 750, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .adv-order-form-sidebar .order-form-documents-section .section-label {
  color: #140D23;
}

/* line 755, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-order-form-sidebar .order-form-documents-section .documents-section-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 760, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-order-form-sidebar .order-form-documents-section .documents-section-content .document-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* line 765, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-order-form-sidebar .order-form-documents-section .documents-section-content .document-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}

/* line 769, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .adv-order-form-sidebar .order-form-documents-section .documents-section-content .document-item:not(:last-child) {
  border-bottom: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 774, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-order-form-sidebar .order-form-documents-section .documents-section-content .document-item .document-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 778, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .adv-order-form-sidebar .order-form-documents-section .documents-section-content .document-item .document-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 783, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-order-form-sidebar .order-form-documents-section .documents-section-content .document-item .document-value {
  font-size: 0.85rem;
  color: #fff;
}

/* line 787, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .adv-order-form-sidebar .order-form-documents-section .documents-section-content .document-item .document-value {
  color: #140D23;
}

/* line 792, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-order-form-sidebar .order-form-documents-section .documents-section-content .document-item .adv-document-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
}

/* line 805, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .adv-order-form-sidebar .order-form-documents-section .documents-section-content .document-item .adv-document-link {
  border: 1px solid rgba(20, 13, 35, 0.1);
  background-color: rgba(20, 13, 35, 0.05);
  color: #140D23;
}

/* line 816, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
}

/* line 824, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.status-badge.draft {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

/* line 828, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .status-badge.draft {
  background-color: rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.8);
}

/* line 834, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.status-badge.sent {
  background-color: #C38761;
  color: #140D23;
}

/* line 839, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.status-badge.validated {
  background-color: #4CAF50;
  color: white;
}

/* line 844, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.status-badge.non-defini {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* line 848, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .status-badge.non-defini {
  background-color: rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.6);
}

/* line 855, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.status-badge.success {
  background-color: #4CAF50;
  color: white;
}

/* line 860, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.status-badge.warning {
  background-color: #FF9800;
  color: white;
}

/* line 865, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.status-badge.secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* line 869, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .status-badge.secondary {
  background-color: rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.6);
}

/* line 876, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.status-badge.paid {
  background-color: #4CAF50;
  color: white;
}

/* line 881, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.status-badge.pending {
  background-color: #FF9800;
  color: white;
}

/* line 886, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.status-badge.overdue {
  background-color: #F44336;
  color: white;
}

/* line 891, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.status-badge.cancelled {
  background-color: #9E9E9E;
  color: white;
}

/* line 897, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.status-badge.completed {
  background-color: #4CAF50;
  color: white;
}

/* line 902, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.status-badge.in_progress {
  background-color: #2196F3;
  color: white;
}

/* line 907, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.status-badge.pending_validation {
  background-color: #FF9800;
  color: white;
}

/* line 912, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.status-badge.rejected {
  background-color: #F44336;
  color: white;
}

/* Classes utilitaires */
/* line 919, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.d-none {
  display: none !important;
}

/* line 923, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.hidden {
  display: none !important;
}

/* ==========================================================================
   STYLES SPÉCIFIQUES POUR LES BOUTONS ET FORMULAIRES
   ========================================================================== */
/* line 931, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.form-button, .crm-action-button, .users-management-container .users-header .add-user-btn {
  padding: 8px 16px;
  background-color: #C38761;
  color: #140D23;
  border: none;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}

/* line 946, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.form-button:hover, .crm-action-button:hover, .users-management-container .users-header .add-user-btn:hover {
  background-color: #af6c42;
  transform: translateY(-1px);
}

/* line 951, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.form-button.btn-secondary, .btn-secondary.crm-action-button, .crm-action-button.crm-action-button-secondary, .users-management-container .users-header .btn-secondary.add-user-btn, .users-management-container .users-header .add-user-btn.crm-action-button.crm-action-button-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* line 956, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.form-button.btn-secondary:hover, .btn-secondary.crm-action-button:hover, .crm-action-button.crm-action-button-secondary:hover, .users-management-container .users-header .btn-secondary.add-user-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 960, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .form-button.btn-secondary, .lightmode .btn-secondary.crm-action-button, .lightmode .crm-action-button.crm-action-button-secondary, .lightmode .users-management-container .users-header .btn-secondary.add-user-btn, .users-management-container .users-header .lightmode .btn-secondary.add-user-btn {
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 965, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .form-button.btn-secondary:hover, .lightmode .btn-secondary.crm-action-button:hover, .lightmode .crm-action-button.crm-action-button-secondary:hover, .lightmode .users-management-container .users-header .btn-secondary.add-user-btn:hover, .users-management-container .users-header .lightmode .btn-secondary.add-user-btn:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* line 972, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.add-btn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  margin: 0;
  outline: none;
}

/* line 988, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .add-btn {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 994, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.add-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 997, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .add-btn:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* ==========================================================================
   MODAL STYLES
   ========================================================================== */
/* line 1007, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.custom-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

/* line 1022, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.custom-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* line 1028, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.custom-modal {
  background-color: #fff;
  border-radius: 15px;
  padding: 20px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(-20px);
  transition: all 0.3s ease;
}

/* line 1040, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.custom-modal-overlay.active .custom-modal {
  transform: translateY(0);
}

/* line 1044, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .custom-modal {
  background-color: #140D23;
  color: white;
}

/* line 1050, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.custom-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* line 1058, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .custom-modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 1062, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.custom-modal-header .custom-modal-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

/* line 1068, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.custom-modal-header .custom-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.5);
  transition: color 0.2s ease;
}

/* line 1076, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .custom-modal-header .custom-modal-close {
  color: rgba(255, 255, 255, 0.5);
}

/* line 1080, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.custom-modal-header .custom-modal-close:hover {
  color: rgba(0, 0, 0, 0.8);
}

/* line 1083, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .custom-modal-header .custom-modal-close:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* line 1091, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.custom-modal-body .form-group {
  margin-bottom: 20px;
}

/* line 1094, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.custom-modal-body .form-group .modal-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.9rem;
}

/* line 1101, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.custom-modal-body .form-group input[type="file"] {
  width: 100%;
  padding: 10px;
  border: 2px dashed rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.02);
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 1110, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .custom-modal-body .form-group input[type="file"] {
  border-color: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.02);
}

/* line 1115, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.custom-modal-body .form-group input[type="file"]:hover {
  border-color: #C38761;
  background-color: rgba(195, 135, 97, 0.05);
}

/* line 1123, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.custom-modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* line 1131, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .custom-modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 1135, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.custom-modal-footer #filename-preview {
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.6);
  font-style: italic;
}

/* line 1140, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .custom-modal-footer #filename-preview {
  color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   STYLES POUR LES FICHIERS MULTIPLES
   ========================================================================== */
/* line 1150, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-order-form-files-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

/* line 1157, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-order-form-file-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: background-color 0.2s ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.1);
  gap: 0.5rem;
}

@media (max-width: 768px) {
  /* line 1157, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
  .adv-order-form-file-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

/* line 1174, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-order-form-file-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* line 1178, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .adv-order-form-file-item {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 1182, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .adv-order-form-file-item:hover {
  background: rgba(20, 13, 35, 0.1);
}

/* line 1188, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-order-form-file-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

/* line 1194, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-order-form-file-info i {
  color: #C38761;
  font-size: 0.9rem;
}

/* line 1198, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .adv-order-form-file-info i {
  color: #140D23;
}

/* line 1203, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-order-form-file-info .adv-order-form-file-name {
  font-size: 0.85rem;
  color: #FFFFFF;
  font-weight: 500;
  word-break: break-word;
}

/* line 1209, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .adv-order-form-file-info .adv-order-form-file-name {
  color: #140D23;
}

/* line 1215, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-order-form-file-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  /* line 1215, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
  .adv-order-form-file-actions {
    flex-direction: column;
    gap: 0.3rem;
    width: 100%;
  }
}

/* line 1228, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.adv-order-form-no-files {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* line 1236, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .adv-order-form-no-files {
  color: rgba(20, 13, 35, 0.6);
}

/* line 1241, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.file-info {
  margin-top: 0.5rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  border-left: 3px solid #C38761;
}

/* line 1248, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.file-info p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

/* line 1255, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .file-info {
  background: rgba(20, 13, 35, 0.05);
  border-left-color: #140D23;
}

/* line 1259, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_show_order_form.scss */
.lightmode .file-info p {
  color: rgba(20, 13, 35, 0.8);
}

/* line 1, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.adv-order-form-contacts-capsule {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 10px 30px 10px 30px;
  font-size: 0.8rem;
  gap: 10px;
}

/* line 13, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.adv-order-form-contacts-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 20, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.adv-order-form-contacts-capsule.lightmode span {
  color: #C38761;
}

/* line 24, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.adv-order-form-contacts-capsule.nightmode span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 28, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.adv-order-form-contacts-capsule.lightmode p {
  color: #140D23;
}

/* line 32, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.adv-order-form-contacts-capsule.nightmode p {
  color: #FFFFFF;
}

/* line 36, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.adv-order-form-contacts-capsule.lightmode i {
  color: #140D23;
}

/* line 40, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.adv-order-form-contacts-capsule.nightmode i {
  color: #FFFFFF;
}

/* line 44, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.adv-order-form-contacts-row1 {
  width: 80%;
  height: 92.5%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(232, 232, 232, 0.5);
  border-radius: 20px;
  padding-right: 20px;
}

/* line 55, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.adv-order-form-contacts-row1 form {
  width: 35%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-right: 1px solid rgba(232, 232, 232, 0.5);
  padding: 10px;
}

/* line 67, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.adv-order-form-contacts-row1 form input:focus {
  background-color: transparent;
}

/* line 73, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.adv-order-form-contacts-row1 .special-toggle {
  width: 200px !important;
  background-color: transparent;
  color: #140D23;
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: space-evenly;
  transition: transform 0.3s ease;
  border: 1px solid rgba(232, 232, 232, 0.5);
}

/* line 84, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.adv-order-form-contacts-row1 .special-toggle span {
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: normal;
  padding: 5px;
  white-space: nowrap;
}

/* line 93, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.adv-order-form-contacts-row1 .special-toggle:hover {
  transform: scale(1.04);
}

/* line 97, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.adv-order-form-contacts-row1 .choosen-one {
  background-color: #e8e8e8;
}

/* line 99, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.adv-order-form-contacts-row1 .choosen-one span {
  color: #140D23;
}

/* line 105, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.adv-order-form-contacts-row1 .selected {
  background-color: #e8e8e8;
}

/* line 108, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.adv-order-form-contacts-row1 .selected span {
  color: #140D23;
}

/* line 115, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.adv-order-form-contacts-row2 {
  width: 80%;
  height: 7.5%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
}

/* line 124, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.adv-order-form-contacts-row2 span {
  color: #140D23 !important;
}

/* line 131, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.adv-order-form-contacts-row1-column1 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
}

/* line 140, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.adv-order-form-contacts-row1-column1-searchbar {
  width: 100%;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 153, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.adv-order-form-contacts-row1-column1-searchbar button {
  all: unset;
}

/* line 156, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.adv-order-form-contacts-row1-column1-searchbar i {
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 162, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.adv-order-form-contacts-row1-column1-searchbar span {
  font-weight: normal !important;
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 169, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.adv-order-form-contacts-row1-column1-results {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
}

/* line 176, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.adv-order-form-contacts-row1-column1-results h3, .adv-order-form-contacts-row1-column1-results .h3 {
  all: unset;
  font-size: 0.8rem;
}

/* line 180, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.adv-order-form-contacts-row1-column1-results .results {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* line 186, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.adv-order-form-contacts-row1-column1-results .results p {
  all: unset;
  font-size: 0.7rem;
  text-align: center;
  color: #FFFFFF;
}

/* line 195, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.order-form-contact {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* line 203, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.order-form-contact .order-form-contact-header p {
  all: unset;
  font-size: 0.7rem;
}

/* line 208, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.order-form-contact span {
  all: unset;
  font-size: 0.7rem;
  text-align: center;
}

/* line 212, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.order-form-contact span:hover {
  cursor: pointer;
}

/* line 215, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.order-form-contact span i {
  transition: 0.3s ease;
}

/* line 217, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.order-form-contact span i:hover {
  color: #640127;
}

/* line 223, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.adv-order-form-contacts-row1-column1-subrow2 {
  width: 100%;
  height: 50%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
  padding: 20px 10px 0px 10px;
}

/* line 232, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.adv-order-form-contacts-row1-column1-subrow2 P {
  all: unset;
  font-size: 0.7rem;
  text-align: start;
}

/* line 239, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.adv-order-form-contacts-row1-vertical-line {
  width: 90%;
  border-bottom: 1px solid rgba(232, 232, 232, 0.5);
}

/* line 244, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.adv-order-form-contacts-row1-column2 {
  width: 65%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  padding: 30px 10px 10px 10px;
  gap: 20px;
}

/* line 256, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.adv-order-form-contacts-row1-column2-list-entry {
  width: 100%;
  display: flex;
}

/* line 262, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.adv-order-form-contacts-row1-column2-total-amount {
  width: 100%;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 2px 5px;
}

/* line 273, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.adv-order-form-contacts-row1-column2-list {
  width: 100%;
  height: 80%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  flex-grow: 1;
}

/* line 282, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.adv-order-form-contacts-row1-column2-list-head {
  width: 100%;
  display: flex;
  flex-direction: row;
  font-weight: bold;
  font-size: 0.8rem;
}

/* line 290, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.adv-order-form-contacts-row1-column2-list-column {
  width: 15%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.7rem;
  padding: 2px 5px;
  white-space: nowrap;
}

/* line 299, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.adv-order-form-contacts-row1-column2-list-column-article {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.7rem;
  padding: 2px 5px;
}

/* line 308, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.adv-order-form-contacts-row1-column2-list-entries {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  overflow-y: auto;
  flex-shrink: 1;
  /* Personnalisation de la barre de défilement */
}

/* line 316, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.adv-order-form-contacts-row1-column2-list-entries::-webkit-scrollbar {
  width: 8px;
  /* Largeur de la barre de défilement */
}

/* line 320, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.adv-order-form-contacts-row1-column2-list-entries::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  /* Couleur de l'arrière-plan de la barre */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 325, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.adv-order-form-contacts-row1-column2-list-entries::-webkit-scrollbar-thumb {
  background: #C38761;
  /* Couleur de la barre de défilement */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 330, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.adv-order-form-contacts-row1-column2-list-entries::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
  /* Couleur de la barre au survol */
}

/* line 336, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.entry {
  width: 100%;
  display: flex;
}

/* line 340, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.entry .quantity-input {
  width: 70%;
}

/* line 345, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.totalPrice {
  font-size: 0.8rem;
  font-weight: bold;
  text-align: center;
  color: #140D23;
  border-radius: 20px;
  background-color: #e8e8e8;
}

/* line 354, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.search-results-articles {
  display: flex;
  min-height: 30px;
  width: 97% !important;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  padding: 5px;
  width: 250px;
  border-radius: 0.375rem;
  flex-wrap: nowrap;
}

/* line 365, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.search-results-articles label {
  opacity: 1;
}

/* line 368, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.search-results-articles p {
  all: unset;
  font-size: 0.7rem !important;
  margin: 0;
  font-weight: normal !important;
  color: #140D23 !important;
}

/* line 376, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.search-results-articles:hover {
  background-color: rgba(255, 255, 255, 0.5);
  transition: transform 0.3s ease;
}

/* line 382, app/assets/stylesheets/pages/servicespace/back-office/adv/order_form_management/_order_form_contacts.scss */
.articles {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

/* line 1, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-capsule {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 10px 20px 10px 20px;
  font-size: 0.8rem;
  gap: 10px;
}

/* line 12, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-capsule.lightmode {
  color: #140D23;
}

/* line 14, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-capsule.lightmode .discount-input {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 18, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-capsule.lightmode .price-input {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 22, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-capsule.lightmode .price-ttc-container {
  color: #140D23;
}

/* line 25, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-capsule.lightmode .new-quote-transaction-choice {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 29, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-capsule.lightmode .search-input {
  border-color: transparent !important;
}

/* line 31, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-capsule.lightmode .search-input:focus {
  border-color: transparent !important;
  box-shadow: none !important;
}

/* line 36, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-capsule.lightmode .recipient-choice {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 40, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-capsule.lightmode #publicMarket {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 44, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-capsule.lightmode #privateMarket {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 50, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-capsule .form-group {
  margin: 0;
}

/* line 54, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-capsule form {
  display: flex !important;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  align-items: center;
  height: 100%;
}

/* Nouvelle Card de Configuration */
/* line 65, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-configuration-card {
  width: 100%;
  max-width: 1400px;
  /* Augmentation de la largeur maximale */
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

/* line 77, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-configuration-card {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.08) 0%, rgba(20, 13, 35, 0.03) 100%);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 83, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-config-header {
  text-align: center;
  margin-bottom: 30px;
}

/* line 87, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-config-header h2, .adv-quote-config-header .h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

/* line 93, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-config-header h2, .lightmode .adv-quote-config-header .h2 {
  color: #140D23;
}

/* line 98, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-config-header p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 102, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-config-header p {
  color: rgba(20, 13, 35, 0.7);
}

/* line 108, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-config-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* line 114, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-config-section {
  width: 100%;
}

/* line 118, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-config-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  /* line 118, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
  .adv-quote-config-row {
    grid-template-columns: 1fr;
  }
}

/* line 128, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-config-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 134, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-config-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

/* line 140, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-config-label i {
  font-size: 1.1rem;
  color: #C38761;
}

/* line 145, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-config-label h3, .adv-quote-config-label .h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
}

/* line 151, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-config-label h3, .lightmode .adv-quote-config-label .h3 {
  color: #140D23;
}

/* line 157, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-config-select {
  width: auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  color: #FFFFFF;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

/* line 167, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-config-select {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 173, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-config-select:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 179, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-config-select option {
  background: #140D23;
  color: #FFFFFF;
}

/* line 185, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-form-hint {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9em;
}

/* line 191, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-form-hint {
  color: rgba(20, 13, 35, 0.6);
}

/* line 195, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-form-hint i {
  margin-right: 4px;
}

/* line 200, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-market-type-selector {
  display: flex;
  gap: 12px;
}

/* line 204, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-market-type-selector .adv-quote-market-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 220, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-market-type-selector .adv-quote-market-option {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 226, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-market-type-selector .adv-quote-market-option i {
  font-size: 1rem;
  color: #C38761;
}

/* line 231, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-market-type-selector .adv-quote-market-option:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

/* line 236, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-market-type-selector .adv-quote-market-option:hover {
  background: rgba(20, 13, 35, 0.12);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 242, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-market-type-selector .adv-quote-market-option.selected {
  background: #C38761;
  border-color: #C38761;
  color: #140D23;
}

/* line 247, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-market-type-selector .adv-quote-market-option.selected i {
  color: #140D23;
}

/* Onglets Prospect/Client */
/* line 255, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-tabs-container {
  width: 100%;
}

/* line 259, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-tabs-header {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 20px;
}

/* line 266, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-tabs-header {
  background: rgba(20, 13, 35, 0.08);
}

/* line 271, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 285, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-tab {
  color: rgba(20, 13, 35, 0.7);
}

/* line 289, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-tab i {
  font-size: 0.9rem;
}

/* line 293, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-tab:hover {
  color: #FFFFFF;
}

/* line 296, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-tab:hover {
  color: #140D23;
}

/* line 301, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-tab.active {
  background: #C38761;
  color: #140D23;
}

/* line 305, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-tab.active i {
  color: #140D23;
}

/* line 311, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-tab-content {
  position: relative;
}

/* line 315, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-tab-pane {
  display: none;
}

/* line 318, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-tab-pane.active {
  display: block;
}

/* line 323, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-search-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* line 329, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-search-input {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 335, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-search-input .search-form {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

/* line 342, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-search-input i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  z-index: 2;
}

/* line 351, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-search-input i {
  color: rgba(20, 13, 35, 0.6);
}

/* line 356, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-search-input button {
  all: unset;
  padding: 8px 12px;
  background: #C38761;
  border-radius: 8px;
  color: #140D23;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 365, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-search-input button:hover {
  background: #864B28;
  transform: scale(1.05);
}

/* line 370, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-search-input button i {
  position: static;
  transform: none;
  color: #140D23;
}

/* Utilise maintenant la classe générique adv-searchbar */
/* line 380, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-search-results {
  min-height: 120px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}

/* line 388, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-search-results {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 395, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-search-results .userChoice {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* line 402, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-search-results .userChoice .no-recipient, .adv-quote-search-results .userChoice .no-document {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
}

/* line 409, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-search-results .userChoice .no-recipient, .lightmode .adv-quote-search-results .userChoice .no-document {
  color: rgba(20, 13, 35, 0.6);
}

/* line 413, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-search-results .userChoice .no-recipient::before, .adv-quote-search-results .userChoice .no-document::before {
  content: '\f007';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.4);
}

/* line 420, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-search-results .userChoice .no-recipient::before, .lightmode .adv-quote-search-results .userChoice .no-document::before {
  color: rgba(20, 13, 35, 0.4);
}

/* Styles pour la section Articles de vente */
/* line 429, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-search-filters {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

/* line 436, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-filter-group {
  display: flex;
  gap: 12px;
  width: 100%;
}

@media (max-width: 768px) {
  /* line 436, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
  .adv-quote-filter-group {
    flex-direction: column;
  }
}

/* line 446, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-config-select {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  color: #FFFFFF;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 457, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-config-select {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 463, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-config-select:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 469, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-config-select option {
  background: #140D23;
  color: #FFFFFF;
}

/* line 473, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-config-select option {
  background: #FFFFFF;
  color: #140D23;
}

/* line 480, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-search-button {
  all: unset;
  padding: 12px 16px;
  background: #C38761;
  border-radius: 12px;
  color: #140D23;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 492, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-search-button:hover {
  background: #864B28;
  transform: scale(1.05);
}

/* line 497, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-search-button i {
  font-size: 0.9rem;
  color: #140D23;
}

/* line 503, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-no-selection {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
}

/* line 510, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-no-selection {
  color: rgba(20, 13, 35, 0.6);
}

/* line 514, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-no-selection i {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.4);
}

/* line 518, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-no-selection i {
  color: rgba(20, 13, 35, 0.4);
}

/* line 523, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-no-selection p {
  font-size: 0.85rem;
  margin: 0;
}

/* line 529, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-transaction-selector {
  display: flex;
  gap: 12px;
}

/* line 533, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-transaction-selector .new-quote-transaction-choice {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 549, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-transaction-selector .new-quote-transaction-choice {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 555, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-transaction-selector .new-quote-transaction-choice i {
  font-size: 1rem;
  color: #C38761;
}

/* line 560, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-transaction-selector .new-quote-transaction-choice:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

/* line 565, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-transaction-selector .new-quote-transaction-choice:hover {
  background: rgba(20, 13, 35, 0.12);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 571, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-transaction-selector .new-quote-transaction-choice.selected {
  background: #C38761;
  border-color: #C38761;
  color: #140D23;
}

/* line 576, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-transaction-selector .new-quote-transaction-choice.selected i {
  color: #140D23;
}

/* line 583, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 589, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-capsule span {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 597, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-capsule span {
  color: #140D23;
}

/* line 600, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.nightmode .adv-quote-capsule span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 606, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-capsule p {
  color: #140D23;
}

/* line 609, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.nightmode .adv-quote-capsule p {
  color: #FFFFFF;
}

/* line 615, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-capsule i {
  color: #140D23;
}

/* line 618, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.nightmode .adv-quote-capsule i {
  color: #FFFFFF;
}

/* line 624, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1 {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 20px;
}

/* line 633, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1 form {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 640, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1 form input:focus {
  background-color: transparent;
}

/* line 646, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1 h2, .adv-quote-row1 .h2 {
  all: unset;
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 20px;
}

/* line 653, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1 .selected {
  background-color: #e8e8e8 !important;
}

/* line 656, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1 .selected p {
  color: #140D23 !important;
}

/* line 660, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1 .selected span {
  color: #140D23 !important;
}

/* line 666, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow1 {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 672, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow1 .adv-quote-row1-subrow1-market {
  color: #FFFFFF;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  gap: 10px;
}

/* line 688, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-subrow1 .adv-quote-row1-subrow1-market {
  color: #140D23;
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 694, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow1 .adv-quote-row1-subrow1-market h3, .adv-quote-row1-subrow1 .adv-quote-row1-subrow1-market .h3 {
  all: unset;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-color-primary);
  white-space: nowrap;
}

/* line 701, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-subrow1 .adv-quote-row1-subrow1-market h3, .lightmode .adv-quote-row1-subrow1 .adv-quote-row1-subrow1-market .h3 {
  color: #140D23;
}

/* line 706, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow1 .adv-quote-row1-subrow1-market .adv-quote-row1-subrow1-market-choice {
  width: 200px !important;
  background-color: transparent;
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: space-evenly;
  transition: transform 0.3s ease;
  border: 1px solid rgba(232, 232, 232, 0.5);
  cursor: pointer;
}

/* line 722, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2-recipient-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* line 729, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2-recipient-container .special-toggle {
  width: 100%;
  background-color: transparent;
  color: #140D23;
  border-radius: 0px;
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: center;
  transition: transform 0.3s ease;
  border-bottom: 1px solid rgba(232, 232, 232, 0.5);
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
}

/* line 743, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2-recipient-container .special-toggle:hover {
  transform: scale(1);
}

/* line 748, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2-recipient-container .special-toggle .btn-special span {
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 5px;
  white-space: nowrap;
}

/* line 757, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2-recipient-container .selected {
  background-color: #e8e8e8 !important;
}

/* line 760, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2-recipient-container .selected p {
  color: #140D23 !important;
}

/* line 768, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-organization-choice {
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  gap: 10px;
}

/* line 784, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-organization-choice {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 789, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-organization-choice h3, .adv-quote-row1-organization-choice .h3 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-color-primary);
}

/* line 794, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-organization-choice h3, .lightmode .adv-quote-row1-organization-choice .h3 {
  color: #140D23;
}

/* line 800, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2-select-client {
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  gap: 10px;
}

/* line 815, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-subrow2-select-client {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 821, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2-select-client .adv-quote-row1-customer-search form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 10px;
}

/* line 832, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 10px;
}

/* line 841, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column1 {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  padding: 0px 0px 20px 0px;
  text-align: center;
  height: 100%;
  justify-content: center;
  align-items: center;
}

/* line 860, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column1 {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 865, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column1 .btn-special {
  border-radius: 0px;
}

/* line 868, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column1 h3, .adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column1 .h3 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-color-primary);
}

/* line 873, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column1 h3, .lightmode .adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column1 .h3 {
  color: #140D23;
}

/* line 878, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column1 .special-toggle-sales-cycle {
  width: 100%;
  background-color: transparent;
  color: #140D23;
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

/* line 888, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column1 .special-toggle-sales-cycle span {
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: normal;
  padding: 5px;
  white-space: nowrap;
}

/* line 897, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column1 .new-quote-transaction-choice {
  width: 200px !important;
  background-color: transparent;
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: space-evenly;
  transition: transform 0.3s ease;
  border: 1px solid rgba(232, 232, 232, 0.5);
  cursor: pointer;
}

/* line 910, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column1 .special-toggle:hover {
  transform: scale(1);
}

/* line 914, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column1 .selected {
  background-color: #e8e8e8 !important;
}

/* line 917, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column1 .selected span {
  color: #140D23;
}

/* line 923, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column2 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

/* line 938, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column2 {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 943, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column2 h3, .adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column2 .h3 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-color-primary);
}

/* line 948, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column2 h3, .lightmode .adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column2 .h3 {
  color: #140D23;
}

/* line 952, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column2 .new-quote-transaction-choice {
  width: 200px !important;
  background-color: transparent;
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: space-evenly;
  transition: transform 0.3s ease;
  border: 1px solid rgba(232, 232, 232, 0.5);
  cursor: pointer;
}

/* line 964, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column2 .search-input {
  all: unset;
  height: 100%;
  width: 100%;
  background-color: transparent;
  font-size: 0.7rem;
  color: #FFFFFF;
}

/* line 972, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column2 .search-input {
  color: #140D23;
}

/* line 976, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column2 .search-input:focus {
  all: unset;
  height: 100%;
  width: 100%;
  background-color: transparent;
  font-size: 0.7rem;
  color: #FFFFFF;
}

/* line 984, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column2 .search-input:focus {
  color: #140D23;
}

/* line 989, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column2 .special-toggle-sales-cycle {
  width: 100%;
  background-color: transparent;
  color: #140D23;
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

/* line 999, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column2 .special-toggle-sales-cycle span {
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: normal;
  padding: 5px;
  white-space: nowrap;
}

/* line 1008, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column2 .special-toggle:hover {
  transform: scale(1.04);
}

/* line 1012, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column2 .selected {
  background-color: #e8e8e8 !important;
}

/* line 1015, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column2 .selected span {
  color: #140D23;
}

/* line 1021, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column2 .services-adv-search-articles {
  all: unset;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  gap: 10px;
}

/* line 1035, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow4 {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  gap: 10px;
}

/* line 1049, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-subrow4 {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 1054, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow4 .results {
  width: 100%;
  position: absolute;
  border-radius: 5px;
  padding: 10px;
  bottom: 0px;
  left: 0;
  transform: translateY(10%);
  z-index: 1000;
  background-color: transparent;
  backdrop-filter: blur(8px);
}

/* line 1066, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-subrow4 .results {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 1070, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow4 .results .search-results {
  width: 100%;
}

/* line 1075, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow4 h3, .adv-quote-row1-subrow4 .h3 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-color-primary);
}

/* line 1080, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-subrow4 h3, .lightmode .adv-quote-row1-subrow4 .h3 {
  color: #140D23;
}

/* line 1084, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow4 .search-results-articles {
  display: flex;
  min-height: 30px;
  width: 98% !important;
  align-items: center;
  justify-content: space-between;
  gap: 10x;
  padding: 5px;
  border-radius: 0.375rem;
  flex-wrap: nowrap;
}

/* line 1095, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow4 .search-results-articles label {
  opacity: 1;
}

/* line 1098, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow4 .search-results-articles .articles {
  font-size: 0.7rem !important;
  margin: 0;
  cursor: pointer;
  font-weight: normal !important;
}

/* line 1103, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow4 .search-results-articles .articles p {
  color: #FFFFFF !important;
}

/* line 1106, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-subrow4 .search-results-articles .articles p {
  color: #140D23 !important;
}

/* line 1112, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow4 .search-results-articles:hover {
  background-color: rgba(255, 255, 255, 0.5);
  transition: transform 0.3s ease;
}

/* line 1116, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-subrow4 .search-results-articles:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 1121, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow4 .services-adv-search-articles {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 1127, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow4 .services-adv-search-articles .search-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 1134, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow4 .services-adv-search-articles .form-group {
  width: 100%;
  display: flex;
  gap: 10px;
}

/* line 1140, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow4 .services-adv-search-articles .search-input {
  all: unset;
  width: 100%;
  background-color: transparent;
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 1153, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-subrow4 .services-adv-search-articles .search-input {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 1158, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow4 .services-adv-search-articles .search-input:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 1162, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-subrow4 .services-adv-search-articles .search-input:focus {
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 1172, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row2 {
  width: 80%;
  height: 7.5%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
}

/* line 1182, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row2 #fakeSubmitButton {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  border: none;
  cursor: pointer;
  background-color: #C38761;
  color: #140D23;
}

/* line 1197, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row2 #fakeSubmitButton:hover {
  background-color: #864B28;
  transform: scale(1.05);
}

/* line 1203, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row2 form {
  display: flex !important;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  align-items: center;
  height: 100%;
}

/* line 1213, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-searchbar {
  width: 100%;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
  height: 30px;
}

/* line 1227, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-searchbar {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 1232, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-searchbar button {
  all: unset;
}

/* line 1235, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-searchbar i {
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 1240, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-searchbar i {
  color: #140D23 !important;
}

/* line 1245, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-searchbar span {
  font-weight: normal !important;
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 1251, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-searchbar span {
  color: #140D23 !important;
}

/* line 1257, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-form-field {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 1263, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-form-field input {
  all: unset;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 1276, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-form-field input {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 1281, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-form-field input:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 1285, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-form-field input:focus {
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 1292, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-form-field label {
  all: unset;
  color: #FFFFFF !important;
  font-size: 0.8rem !important;
  text-align: center;
  white-space: nowrap;
}

/* line 1299, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-form-field label {
  color: #140D23 !important;
}

/* line 1305, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-customer-search {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 10px;
}

/* line 1313, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-customer-search h3, .adv-quote-row1-customer-search .h3 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-color-primary);
}

/* line 1318, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-customer-search h3, .lightmode .adv-quote-row1-customer-search .h3 {
  color: #140D23;
}

/* line 1323, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-customer-search .search-form {
  display: flex;
  flex-direction: row;
}

/* line 1328, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-customer-search .form-group {
  align-items: center;
}

/* line 1332, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-customer-search label {
  all: unset;
  color: #FFFFFF !important;
  font-size: 0.8rem !important;
  text-align: center;
  white-space: nowrap;
}

/* line 1339, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-customer-search label {
  color: #140D23 !important;
}

/* line 1347, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.userChoice {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 15px;
}

/* line 1354, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.userChoice .no-document {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-color-primary);
}

/* line 1371, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .userChoice .no-document {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.1) 0%, rgba(20, 13, 35, 0.05) 100%);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 1378, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.userChoice .item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* line 1392, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .userChoice .item {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.1) 0%, rgba(20, 13, 35, 0.05) 100%);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 1397, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.userChoice .item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  border-color: rgba(232, 232, 232, 0.6);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

/* line 1403, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .userChoice .item:hover {
  border-color: rgba(20, 13, 35, 0.4);
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.15) 0%, rgba(20, 13, 35, 0.08) 100%);
}

/* line 1409, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.userChoice .item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #C38761, #864B28);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* line 1421, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.userChoice .item:hover::before {
  opacity: 1;
}

/* line 1425, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.userChoice .item .item-header {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-grow: 1;
}

/* line 1431, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.userChoice .item .item-header i {
  color: green;
  font-size: 1rem;
  padding: 8px;
  background-color: rgba(195, 135, 97, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* line 1440, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.userChoice .item .item-header p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-color-primary);
  line-height: 1.4;
  transition: color 0.3s ease;
}

/* line 1448, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .userChoice .item .item-header p {
  color: #140D23;
}

/* line 1455, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.userChoice .item:hover .item-header i {
  color: #864B28;
  background-color: rgba(134, 75, 40, 0.15);
  transform: scale(1.1);
}

/* line 1461, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.userChoice .item:hover .item-header p {
  color: #FFFFFF;
}

/* line 1464, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .userChoice .item:hover .item-header p {
  color: #140D23;
}

/* line 1470, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.userChoice .item .item-actions {
  display: flex;
  gap: 10x;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* line 1477, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.userChoice .item .item-actions button {
  all: unset;
  padding: 6px;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-size: 0.7rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 1487, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .userChoice .item .item-actions button {
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 1492, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.userChoice .item .item-actions button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

/* line 1496, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .userChoice .item .item-actions button:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* line 1503, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.userChoice .item:hover .item-actions {
  opacity: 1;
}

/* line 1508, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.userChoice .document-link {
  all: unset;
  cursor: pointer;
  color: var(--text-color-primary);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: all 0.3s ease;
}

/* line 1518, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .userChoice .document-link {
  color: #140D23;
}

/* line 1522, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.userChoice .document-link:hover {
  color: #C38761;
  text-decoration-color: #C38761;
}

/* line 1526, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .userChoice .document-link:hover {
  color: #C38761;
}

/* line 1533, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.recipient-choice-container, .recipient-search {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px;
}

/* line 1542, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.type-of-order-search {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
}

/* line 1552, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.articles {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

/* line 1559, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.recipient-title {
  font-size: 0.7rem;
  color: #FFFFFF;
}

/* line 1563, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .recipient-title {
  color: #140D23;
}

/* Section du tableau total des articles */
/* line 1569, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow5 {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  background-color: transparent;
  border-radius: 12px;
  padding: 0px;
  text-align: center;
  gap: 10px;
  min-height: 300px;
}

/* line 1583, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-total-section {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 10px;
}

/* line 1589, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-total-section h3, .adv-quote-total-section .h3 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-color-primary);
  margin-bottom: 15px;
  text-align: center;
}

/* line 1598, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  min-height: 200px;
  border: 1px solid rgba(254, 254, 254, 0.3);
}

/* line 1607, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-articles-table {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 1611, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .adv-quote-table-cell, .adv-quote-articles-table .adv-header-actions, .adv-quote-articles-table .adv-header-quantity, .adv-quote-articles-table .adv-header-price-ttc, .adv-quote-articles-table .adv-header-vat, .adv-quote-articles-table .adv-header-price-ht, .adv-quote-articles-table .adv-header-discount-perc, .adv-quote-articles-table .adv-header-article {
  padding: 8px 12px;
  display: flex;
  align-items: center;
}

/* line 1617, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .adv-quote-articles-table-header {
  display: flex;
  background-color: rgba(255, 255, 255, 0.08);
  font-weight: 600;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* line 1625, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-articles-table .adv-quote-articles-table-header {
  background-color: rgba(20, 13, 35, 0.08);
  color: rgba(20, 13, 35, 0.8);
  border-bottom-color: rgba(20, 13, 35, 0.15);
}

/* line 1632, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .adv-quote-articles-table-body {
  height: auto;
  min-height: 150px;
  overflow-y: auto;
  max-height: 200px;
  /* Personnalisation de la barre de défilement */
}

/* line 1639, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .adv-quote-articles-table-body::-webkit-scrollbar {
  width: 4px;
}

/* line 1643, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .adv-quote-articles-table-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 1648, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .adv-quote-articles-table-body::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 1653, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .adv-quote-articles-table-body::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 1657, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .adv-quote-articles-table-body .adv-quote-articles-table-row {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

/* line 1662, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .adv-quote-articles-table-body .adv-quote-articles-table-row:last-child {
  border-bottom: none;
}

/* line 1666, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .adv-quote-articles-table-body .adv-quote-articles-table-row:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

/* line 1669, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-articles-table .adv-quote-articles-table-body .adv-quote-articles-table-row:hover {
  background-color: rgba(20, 13, 35, 0.03);
}

/* line 1674, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-articles-table .adv-quote-articles-table-body .adv-quote-articles-table-row {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 1679, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .adv-quote-articles-table-body.adv-no-articles-container {
  text-align: center;
  padding: 2rem 15px;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  font-size: 0.85rem;
}

/* line 1688, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .adv-header-article {
  width: 25%;
  justify-content: flex-start;
}

/* line 1693, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .adv-header-discount-perc {
  width: 10%;
  justify-content: center;
}

/* line 1698, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .adv-header-price-ht {
  width: 15%;
  justify-content: center;
}

/* line 1703, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .adv-header-vat {
  width: 10%;
  justify-content: center;
}

/* line 1708, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .adv-header-price-ttc {
  width: 15%;
  justify-content: center;
}

/* line 1713, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .adv-header-quantity {
  width: 10%;
  justify-content: center;
}

/* line 1718, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .adv-header-actions {
  width: 15%;
  justify-content: center;
}

/* line 1724, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .adv-quote-table-cell {
  color: #fff;
  font-size: 0.8rem;
}

/* line 1729, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-articles-table .adv-quote-table-cell {
  color: #140D23;
}

/* line 1734, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .adv-quote-row1-subrow4-list-column-article {
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 0.7rem;
}

/* line 1741, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .discount-container {
  width: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* line 1748, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .price-container {
  width: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* line 1755, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .vat-container {
  width: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* line 1762, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .price-ttc-container {
  width: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* line 1769, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .quantity-container {
  width: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* line 1776, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .actions-container {
  width: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* line 1782, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .actions-container i {
  font-size: 0.7rem;
}

/* line 1788, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-total-amount {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(254, 254, 254, 0.3);
}

/* line 1798, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-total-amount {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 1803, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-total-amount .adv-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 500;
}

/* line 1808, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-total-amount .adv-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 1813, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-total-amount .adv-value {
  color: #C38761;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Styles pour les entrées du tableau (articles ajoutés) */
/* line 1821, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.entry {
  width: 100%;
  padding: 10px;
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 1827, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.entry:last-child {
  border-bottom: none;
}

/* line 1831, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .entry {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 1835, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.entry.new-entry {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
}

/* line 1842, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .entry.new-entry {
  background-color: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 1847, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.entry.new-entry:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.5);
}

/* line 1851, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .entry.new-entry:hover {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 1857, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.entry.new-entry .adv-quote-row1-subrow4-list-column-article {
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
}

/* line 1861, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .entry.new-entry .adv-quote-row1-subrow4-list-column-article {
  color: rgba(20, 13, 35, 0.7);
}

/* line 1866, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.entry.new-entry .actions-container {
  color: #C38761;
  font-size: 1.2rem;
  font-weight: bold;
}

/* line 1873, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.entry .quantity-input {
  all: unset;
  width: 70%;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 1887, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .entry .quantity-input {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 1892, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.entry .quantity-input:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 1896, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .entry .quantity-input:focus {
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 1903, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.entry .discount-input {
  all: unset;
  width: 50%;
  display: flex;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 1918, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .entry .discount-input {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 1923, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.entry .discount-input:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 1927, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .entry .discount-input:focus {
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 1934, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.entry .article-input {
  all: unset;
  width: 80%;
  display: flex;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 1949, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .entry .article-input {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 1954, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.entry .article-input:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 1958, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .entry .article-input:focus {
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 1965, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.entry .price-input {
  all: unset;
  width: 80%;
  display: flex;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 1980, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .entry .price-input {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 1985, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.entry .price-input:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 1989, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .entry .price-input:focus {
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.5);
}

/* Compatibilité avec l'ancien style pour totalPrice */
/* line 1998, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.totalPrice {
  font-size: 0.8rem;
  font-weight: bold;
  text-align: center;
  color: #140D23;
  border-radius: 20px;
  background-color: #e8e8e8;
}

/* line 2005, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.totalPrice p {
  color: #000000 !important;
}

/* line 2010, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.trash {
  cursor: pointer;
  font-size: 0.8rem;
}

/* line 2013, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.trash:hover {
  color: #A60240;
}

/* line 2018, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
select {
  all: unset;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: normal;
  padding: 5px 15px;
}

/* line 2031, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode select {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 2036, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
select:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 2040, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode select:focus {
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 2046, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
select option {
  all: unset;
  background-color: #E8E8E8;
  color: #000000;
}

/* Styles pour le contenu des transactions */
/* line 2054, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-transaction-content {
  margin-top: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
}

/* line 2061, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-transaction-content {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 2067, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-transaction-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

/* line 2075, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-transaction-info {
  background: rgba(20, 13, 35, 0.08);
}

/* line 2079, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-transaction-info i {
  color: #C38761;
  font-size: 1.1rem;
}

/* line 2084, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-transaction-info span {
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 500;
}

/* line 2089, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-transaction-info span {
  color: #140D23;
}

/* line 2096, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-document-search h4, .adv-quote-document-search .h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 15px;
}

/* line 2102, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-document-search h4, .lightmode .adv-quote-document-search .h4 {
  color: #140D23;
}

/* line 2107, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-document-search .search-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* line 2113, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-document-search .form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 2119, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-document-search .filter {
  width: auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  color: #FFFFFF;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

/* line 2129, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-document-search .filter {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 2135, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-document-search .filter:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 2141, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-document-search .filter option {
  background: #140D23;
  color: #FFFFFF;
}

/* Amélioration des styles pour les onglets */
/* line 2149, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-tabs-container {
  width: 100%;
}

/* line 2153, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-tabs-header {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 20px;
}

/* line 2160, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-tabs-header {
  background: rgba(20, 13, 35, 0.08);
}

/* line 2165, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 2179, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-tab {
  color: rgba(20, 13, 35, 0.7);
}

/* line 2183, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-tab i {
  font-size: 0.9rem;
}

/* line 2187, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-tab:hover {
  color: #FFFFFF;
}

/* line 2190, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-tab:hover {
  color: #140D23;
}

/* line 2195, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-tab.active {
  background: #C38761;
  color: #140D23;
}

/* line 2199, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-tab.active i {
  color: #140D23;
}

/* line 2205, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-tab-content {
  position: relative;
}

/* line 2209, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-tab-pane {
  display: none;
}

/* line 2212, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-tab-pane.active {
  display: block;
}

/* line 2217, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-search-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* line 2224, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-search-results {
  min-height: 120px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}

/* line 2232, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-search-results {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 2239, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-search-results .userChoice {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* line 2246, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-search-results .userChoice .no-recipient, .adv-quote-search-results .userChoice .no-document {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
}

/* line 2253, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-search-results .userChoice .no-recipient, .lightmode .adv-quote-search-results .userChoice .no-document {
  color: rgba(20, 13, 35, 0.6);
}

/* line 2257, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-search-results .userChoice .no-recipient::before, .adv-quote-search-results .userChoice .no-document::before {
  content: '\f007';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.4);
}

/* line 2264, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-search-results .userChoice .no-recipient::before, .lightmode .adv-quote-search-results .userChoice .no-document::before {
  color: rgba(20, 13, 35, 0.4);
}

/* Section fusionnée Articles - Agrandie pour meilleure lisibilité */
/* line 2273, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-main-section {
  min-height: 600px;
}

/* line 2276, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-main-section .adv-quote-basket-section {
  margin-top: 30px;
}

/* line 2279, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-main-section .adv-quote-basket-section .adv-quote-articles-table {
  min-height: 400px;
}

/* line 2283, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-main-section .adv-quote-basket-section .adv-quote-articles-table-body {
  max-height: 500px;
  min-height: 350px;
}

/* Styles pour le tableau d'articles */
/* line 2291, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 2298, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
}

/* line 2305, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-articles-table {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 2311, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}

/* line 2317, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-articles-table-header {
  background: rgba(20, 13, 35, 0.1);
}

/* line 2322, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-table-cell {
  padding: 12px 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  color: #FFFFFF;
}

/* line 2329, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-table-cell {
  color: #140D23;
}

/* line 2333, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-table-cell.adv-header-article {
  text-align: left;
  padding-left: 16px;
}

/* line 2340, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table-body .entry {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

/* line 2347, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-articles-table-body .entry {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 2351, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table-body .entry:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* line 2354, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-articles-table-body .entry:hover {
  background: rgba(20, 13, 35, 0.05);
}

/* line 2359, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table-body .entry.new-entry {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
}

/* line 2363, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-articles-table-body .entry.new-entry {
  color: rgba(20, 13, 35, 0.6);
}

/* line 2367, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table-body .entry.new-entry:hover {
  background: rgba(195, 135, 97, 0.1);
  color: #C38761;
}

/* line 2371, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-articles-table-body .entry.new-entry:hover {
  background: rgba(195, 135, 97, 0.1);
  color: #C38761;
}

/* line 2378, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table-body .entry > div {
  padding: 12px 8px;
  font-size: 0.8rem;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 2387, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table-body .entry > div.adv-quote-row1-subrow4-list-column-article {
  text-align: left;
  padding-left: 16px;
  justify-content: flex-start;
  white-space: nowrap;
}

/* line 2397, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-total-section {
  display: flex;
  justify-content: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

/* line 2404, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-total-section {
  background: rgba(20, 13, 35, 0.05);
}

/* line 2409, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-total-amount {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
}

/* line 2416, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-total-amount .adv-label {
  color: rgba(255, 255, 255, 0.8);
}

/* line 2419, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-total-amount .adv-label {
  color: rgba(20, 13, 35, 0.8);
}

/* line 2424, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-total-amount .adv-value {
  color: #C38761;
  font-size: 1.1rem;
}

/* line 2428, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-total-amount .adv-value {
  color: #C38761;
}

/* line 2434, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-submit-section {
  width: 100%;
  max-width: 1400px;
  padding: 20px 30px;
}

/* line 2439, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-submit-section .assign-recipient-form {
  width: 100%;
}

/* line 2444, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-submit-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  gap: 20px;
}

/* ==========================================================================
   QUOTE LIST - MODULE ADV
   Structure principale et composants pour la gestion des devis
   ========================================================================== */
/* line 4, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_validation_alerts.scss */
.quote-button-wrapper {
  position: relative;
  display: inline-block;
}

/* line 9, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_validation_alerts.scss */
.quote-validation-alert,
.adv-contract-validation-alert {
  position: absolute;
  top: -8px;
  right: -8px;
  z-index: 10;
}

/* line 17, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_validation_alerts.scss */
.quote-validation-icon,
.adv-contract-validation-icon {
  color: #f59e0b;
  cursor: pointer;
  font-size: 0.9rem;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 50%;
  padding: 5px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}

/* line 33, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_validation_alerts.scss */
.quote-validation-icon:hover,
.adv-contract-validation-icon:hover {
  background: rgba(245, 158, 11, 0.25);
  border-color: rgba(245, 158, 11, 0.5);
}

/* line 38, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_validation_alerts.scss */
.lightmode .quote-validation-icon, .lightmode .adv-contract-validation-icon {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.25);
}

/* line 42, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_validation_alerts.scss */
.lightmode .quote-validation-icon:hover, .lightmode .adv-contract-validation-icon:hover {
  background: rgba(245, 158, 11, 0.2);
  border-color: rgba(245, 158, 11, 0.4);
}

/* line 49, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_validation_alerts.scss */
.quote-validation-message,
.adv-contract-validation-message {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 300px;
  max-width: 400px;
  z-index: 1000;
  animation: slideDown 0.3s ease;
  display: none;
}

/* line 60, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_validation_alerts.scss */
.quote-validation-message.visible,
.adv-contract-validation-message.visible {
  display: block;
}

/* line 65, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_validation_alerts.scss */
.quote-validation-message.above-button,
.adv-contract-validation-message.above-button {
  top: auto;
  bottom: calc(100% + 10px);
  animation: slideUp 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* line 94, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_validation_alerts.scss */
.quote-validation-message-content,
.adv-contract-validation-message-content {
  background-color: rgba(245, 158, 11, 0.1);
  border: 2px solid #f59e0b;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.875rem;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

/* line 108, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_validation_alerts.scss */
.quote-validation-message-content span,
.adv-contract-validation-message-content span {
  font-size: 0.8rem;
  text-align: center;
  color: #FFFFFF;
}

/* line 114, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_validation_alerts.scss */
.quote-validation-message-content i,
.adv-contract-validation-message-content i {
  color: #f59e0b;
  margin-right: 6px;
}

/* line 120, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_validation_alerts.scss */
.lightmode .quote-validation-message-content, .lightmode .adv-contract-validation-message-content {
  background-color: rgba(245, 158, 11, 0.15);
  border-color: #f59e0b;
}

/* line 124, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_validation_alerts.scss */
.lightmode .quote-validation-message-content span, .lightmode .adv-contract-validation-message-content span {
  color: #140D23;
}

/* line 130, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_validation_alerts.scss */
.quote-validation-link,
.adv-contract-validation-link {
  color: #f59e0b;
  text-decoration: underline;
  font-weight: 500;
  margin-top: 4px;
  display: inline-block;
  transition: color 0.2s ease;
}

/* line 139, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_validation_alerts.scss */
.quote-validation-link:hover,
.adv-contract-validation-link:hover {
  color: #FF9800;
  text-decoration: none;
}

/* line 145, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_validation_alerts.scss */
.lightmode .quote-validation-link, .lightmode .adv-contract-validation-link {
  color: #c57f08;
}

/* line 148, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_validation_alerts.scss */
.lightmode .quote-validation-link:hover, .lightmode .adv-contract-validation-link:hover {
  color: #cc7a00;
}

/* line 157, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_validation_alerts.scss */
.quote-button-wrapper .crm-button-regular.adv-button-disabled, .quote-button-wrapper .adv-button-disabled.crm-back-button,
.adv-contract-button-wrapper .crm-button-regular.adv-button-disabled,
.adv-contract-button-wrapper .adv-button-disabled.crm-back-button {
  background-color: rgba(128, 128, 128, 0.3);
  border-color: rgba(128, 128, 128, 0.5);
  color: rgba(255, 255, 255, 0.6);
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: none;
}

/* line 165, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_validation_alerts.scss */
.lightmode .quote-button-wrapper .crm-button-regular.adv-button-disabled, .lightmode .quote-button-wrapper .adv-button-disabled.crm-back-button, .lightmode .adv-contract-button-wrapper .crm-button-regular.adv-button-disabled, .lightmode .adv-contract-button-wrapper .adv-button-disabled.crm-back-button {
  background-color: rgba(128, 128, 128, 0.2);
  border-color: rgba(128, 128, 128, 0.4);
  color: rgba(20, 13, 35, 0.5);
}

/* line 171, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_validation_alerts.scss */
.quote-button-wrapper .crm-button-regular.adv-button-disabled:hover, .quote-button-wrapper .adv-button-disabled.crm-back-button:hover,
.adv-contract-button-wrapper .crm-button-regular.adv-button-disabled:hover,
.adv-contract-button-wrapper .adv-button-disabled.crm-back-button:hover {
  background-color: rgba(128, 128, 128, 0.3);
  transform: none;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.6);
}

/* line 177, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_validation_alerts.scss */
.lightmode .quote-button-wrapper .crm-button-regular.adv-button-disabled:hover, .lightmode .quote-button-wrapper .adv-button-disabled.crm-back-button:hover, .lightmode .adv-contract-button-wrapper .crm-button-regular.adv-button-disabled:hover, .lightmode .adv-contract-button-wrapper .adv-button-disabled.crm-back-button:hover {
  background-color: rgba(128, 128, 128, 0.2);
  color: rgba(20, 13, 35, 0.5);
}

/* line 186, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_validation_alerts.scss */
.adv-contract-button-wrapper {
  margin-right: 10px;
  overflow: visible;
}

@media (max-width: 768px) {
  /* line 193, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_validation_alerts.scss */
  .quote-validation-message,
.adv-contract-validation-message {
    min-width: 250px;
    max-width: 300px;
    right: auto;
    left: 0;
  }
}

/* ==========================================================================
   LAYOUT PRINCIPAL - Structure générale du module
   ========================================================================== */
/* line 12, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-capsule {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-right: 10px;
  font-size: 0.8rem;
  gap: 10px;
  overflow: hidden;
}

/* line 24, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-capsule.lightmode {
  color: #140D23;
}

/* line 28, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-capsule.nightmode {
  color: #FFFFFF;
}

/* line 33, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 39, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-capsule span {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* Variations de thème clair/sombre */
/* line 46, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-capsule.lightmode span {
  color: #C38761;
}

/* line 50, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-capsule.nightmode span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 54, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-capsule.lightmode p {
  color: #140D23;
}

/* line 58, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-capsule.nightmode p {
  color: #FFFFFF;
}

/* line 62, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-capsule.lightmode i {
  color: #140D23;
}

/* line 66, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-capsule.nightmode i {
  color: #FFFFFF;
}

/* ==========================================================================
   BARRE SUPÉRIEURE - Recherche et bouton création
   ========================================================================== */
/* line 74, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-row1 {
  width: 80%;
  height: 50px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  flex-shrink: 0;
  margin-bottom: 10px;
}

/* line 85, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-row1 form {
  width: 100%;
  display: flex;
  padding: 0 !important;
}

/* ==========================================================================
   BARRE DE RECHERCHE - Composants et fonctionnalités
   ========================================================================== */
/* line 96, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-row1-searchbar {
  width: 100%;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-content: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
  /* Utilise maintenant la classe générique adv-searchbar */
}

/* line 109, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-capsule.lightmode .adv-quote-list-row1-searchbar {
  border-color: rgba(20, 13, 35, 0.5);
  color: #140D23;
}

/* line 114, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-row1-searchbar .adv-quote-list-search-form {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 121, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-row1-searchbar .adv-quote-list-search-input-wrapper {
  position: relative;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

/* line 130, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-row1-searchbar .adv-quote-list-clear-search-button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 0.6rem;
  text-decoration: none;
}

/* line 145, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-capsule.lightmode .adv-quote-list-row1-searchbar .adv-quote-list-clear-search-button {
  color: #140D23;
}

/* line 149, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-row1-searchbar .adv-quote-list-clear-search-button:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* line 152, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-capsule.lightmode .adv-quote-list-row1-searchbar .adv-quote-list-clear-search-button:hover {
  color: rgba(20, 13, 35, 0.7);
}

/* line 158, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-row1-searchbar button {
  all: unset;
  cursor: pointer;
}

/* line 163, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-row1-searchbar .adv-quote-list-search-button {
  padding: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 171, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-row1-searchbar i {
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 176, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-capsule.lightmode .adv-quote-list-row1-searchbar i {
  color: #140D23 !important;
}

/* line 181, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-row1-searchbar span {
  font-weight: normal !important;
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 187, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-capsule.lightmode .adv-quote-list-row1-searchbar span {
  color: #140D23 !important;
}

/* Bannière d'information sur la recherche en cours */
/* line 194, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-search-info {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: #FFFFFF;
  margin-bottom: -10px;
  z-index: 5;
}

/* line 204, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-capsule.lightmode .adv-quote-list-search-info {
  color: #140D23;
}

/* line 208, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-search-info span {
  opacity: 0.8;
}

/* line 212, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-search-info .adv-quote-list-reset-search-link {
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s ease;
}

/* line 223, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-capsule.lightmode .adv-quote-list-search-info .adv-quote-list-reset-search-link {
  color: #140D23;
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 228, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-search-info .adv-quote-list-reset-search-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 231, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-capsule.lightmode .adv-quote-list-search-info .adv-quote-list-reset-search-link:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* line 238, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-tabs {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  position: relative;
  overflow: visible;
}

/* ==========================================================================
   CONTENEUR PRINCIPAL DES DONNÉES - Structure du tableau des devis
   ========================================================================== */
/* line 252, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-row2 {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 15px;
  overflow: hidden;
  margin-top: 5px;
}

/* line 266, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-capsule.lightmode .adv-quote-list-row2 {
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 271, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-row2-list {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

/* ==========================================================================
   EN-TÊTE DU TABLEAU - Titres des colonnes et tri
   ========================================================================== */
/* line 284, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-row2-list-head {
  width: 97%;
  display: flex;
  padding-right: 8px;
  flex-direction: row;
  font-weight: bold;
  font-size: 0.75rem;
  margin-bottom: 5px;
  color: #FFFFFF;
}

/* line 294, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-capsule.lightmode .adv-quote-list-row2-list-head {
  color: #140D23;
}

/* line 299, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-row2-list-head .adv-quote-list-row2-list-column {
  width: 20%;
  text-align: center;
  justify-content: center;
}

/* line 304, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-row2-list-head .adv-quote-list-row2-list-column.sortable {
  cursor: pointer;
  transition: background-color 0.2s ease;
}

/* line 308, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-row2-list-head .adv-quote-list-row2-list-column.sortable:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

/* line 311, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-capsule.lightmode .adv-quote-list-row2-list-head .adv-quote-list-row2-list-column.sortable:hover {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 316, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-row2-list-head .adv-quote-list-row2-list-column.sortable .sort-link {
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 100%;
  height: 100%;
}

/* line 326, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-capsule.lightmode .adv-quote-list-row2-list-head .adv-quote-list-row2-list-column.sortable .sort-link {
  color: #140D23;
}

/* line 330, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-row2-list-head .adv-quote-list-row2-list-column.sortable .sort-link i {
  font-size: 0.6rem !important;
}

/* line 333, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-capsule.lightmode .adv-quote-list-row2-list-head .adv-quote-list-row2-list-column.sortable .sort-link i {
  color: #140D23 !important;
}

/* Styles communs pour les colonnes */
/* line 342, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-row2-list-column {
  display: flex;
  align-items: center;
  font-size: 0.7rem;
  padding: 5px 10px;
}

/* ==========================================================================
   CORPS DU TABLEAU - Liste des devis avec défilement
   ========================================================================== */
/* line 353, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-row2-list-entries {
  width: 100%;
  height: calc(100% - 30px);
  display: flex;
  gap: 5px;
  flex-direction: column;
  overflow-y: auto;
}

/* line 361, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-row2-list-entries::-webkit-scrollbar {
  width: 8px;
}

/* line 365, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-row2-list-entries::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 369, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-capsule.lightmode .adv-quote-list-row2-list-entries::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 374, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-row2-list-entries::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 379, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-row2-list-entries::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 382, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-capsule.lightmode .adv-quote-list-row2-list-entries::-webkit-scrollbar-thumb:hover {
  background: #140D23;
}

/* Lignes du tableau des devis */
/* line 389, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-row2-list-entry {
  width: 97%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  font-size: 0.7rem;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 2px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 40px;
  padding: 3px 0;
  margin-bottom: 2px;
  color: #FFFFFF;
}

/* line 407, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-capsule.lightmode .adv-quote-list-row2-list-entry {
  color: #140D23;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 2px;
}

/* line 412, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-row2-list-entry:hover {
  transform: scale(1.01);
  transition: transform 0.3s ease;
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 417, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-capsule.lightmode .adv-quote-list-row2-list-entry:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 422, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-row2-list-entry .adv-quote-list-row2-list-column {
  width: 20%;
  text-align: center;
  justify-content: center;
}

/* ==========================================================================
   BADGES DE STATUT - Styles pour les différents types de statuts de devis
   ========================================================================== */
/* line 433, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.status-badge {
  padding: 4px 8px !important;
  border-radius: 8px !important;
  font-size: 0.65rem;
  font-weight: 500;
  display: inline-block;
  min-width: 70px;
  text-align: center;
  transition: all 0.2s ease-in-out;
}

/* line 443, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-capsule.lightmode .status-badge {
  padding: 4px 10px !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* line 447, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-capsule.lightmode .status-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* line 453, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.status-badge.draft {
  background-color: rgba(241, 196, 15, 0.2);
  color: #f1c40f;
}

/* line 457, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-capsule.lightmode .status-badge.draft {
  background-color: rgba(241, 196, 15, 0.4);
  color: #b7950b;
  font-weight: 600;
  border: 1px solid rgba(241, 196, 15, 0.2);
}

/* line 465, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.status-badge.sent {
  background-color: rgba(52, 152, 219, 0.2);
  color: #3498db;
}

/* line 469, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-capsule.lightmode .status-badge.sent {
  background-color: rgba(52, 152, 219, 0.4);
  color: #1a5276;
  font-weight: 600;
  border: 1px solid rgba(52, 152, 219, 0.2);
}

/* line 477, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.status-badge.validated {
  background-color: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
}

/* line 481, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-capsule.lightmode .status-badge.validated {
  background-color: rgba(46, 204, 113, 0.4);
  color: #1e8449;
  font-weight: 600;
  border: 1px solid rgba(46, 204, 113, 0.2);
}

/* line 489, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.status-badge.rejected {
  background-color: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
}

/* line 493, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-capsule.lightmode .status-badge.rejected {
  background-color: rgba(231, 76, 60, 0.4);
  color: #a93226;
  font-weight: 600;
  border: 1px solid rgba(231, 76, 60, 0.2);
}

/* Message quand aucun devis n'est trouvé */
/* line 503, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.no-results {
  width: 100%;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-top: 10px;
}

/* line 513, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.adv-quote-list-capsule.lightmode .no-results {
  color: #140D23;
  background-color: rgba(20, 13, 35, 0.05);
}

/* ==========================================================================
   BOUTON DE CRÉATION - Style du bouton pour créer un nouveau devis
   ========================================================================== */
/* line 523, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.form-button, .crm-action-button, .users-management-container .users-header .add-user-btn {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  border: none;
  cursor: pointer;
  background-color: #C38761;
  color: #FFFFFF;
}

/* line 538, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.form-button:hover, .crm-action-button:hover, .users-management-container .users-header .add-user-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Classes utilitaires */
/* line 545, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_list.scss */
.d-none {
  display: none !important;
}

/* ==========================================================================
   ALERTE DE VALIDATION POUR CRÉATION DE DEVIS
   ========================================================================== */
/* ==========================================================================
   SHOW QUOTE - MODULE ADV
   Structure principale et composants pour l'affichage détaillé d'un devis
   ========================================================================== */
/* line 6, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0px auto;
  height: 100%;
  padding: 20px;
  overflow-x: hidden;
  overflow-y: auto;
  /* Personnalisation de la barre de défilement */
}

/* line 17, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-container::-webkit-scrollbar {
  width: 8px;
}

/* line 21, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 26, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-container::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 31, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-container::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 35, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-container.lightmode {
  color: #140D23;
}

/* line 42, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-summary-total-ttc .adv-value {
  color: #C38761 !important;
}

/* line 47, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-document-list p {
  color: #140D23 !important;
}

/* line 53, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-main-content {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 10px;
  min-width: 0;
  transition: all 0.3s ease;
}

/* line 61, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-main-content.wide-margins {
  justify-content: center;
}

/* line 66, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  height: 100%;
  flex: 1;
  min-width: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 5px;
  overflow: hidden;
  /* ==========================================================================
     EN-TÊTE AVEC INFORMATIONS DU DEVIS ET ONGLETS
     ========================================================================== */
  /* ==========================================================================
     CONTENU DES ONGLETS
     ========================================================================== */
  /* ==========================================================================
     ONGLET DÉTAILS - CONTENU SPÉCIFIQUE
     ========================================================================== */
  /* ==========================================================================
     SECTION CGV DANS L'ONGLET DÉTAILS
     ========================================================================== */
}

/* line 79, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule {
  background-color: rgba(20, 13, 35, 0.05);
  color: #140D23;
}

/* line 87, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-header-tabs {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

/* line 93, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-header-tabs .adv-quote-info-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 5px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

/* line 103, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-header-tabs .adv-quote-info-header {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 107, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-header-tabs .adv-quote-info-header .adv-header-section, .adv-show-quote-capsule .adv-quote-header-tabs .adv-quote-info-header .adv-contract-number-section,
.adv-show-quote-capsule .adv-quote-header-tabs .adv-quote-info-header .adv-market-type-section {
  display: flex;
  flex-direction: row;
  gap: 5px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* line 115, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-header-tabs .adv-quote-info-header .adv-header-section .adv-label, .adv-show-quote-capsule .adv-quote-header-tabs .adv-quote-info-header .adv-contract-number-section .adv-label,
.adv-show-quote-capsule .adv-quote-header-tabs .adv-quote-info-header .adv-market-type-section .adv-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  white-space: nowrap;
  display: block;
}

/* line 121, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-header-tabs .adv-quote-info-header .adv-header-section .adv-label, .lightmode .adv-show-quote-capsule .adv-quote-header-tabs .adv-quote-info-header .adv-contract-number-section .adv-label,
.lightmode .adv-show-quote-capsule .adv-quote-header-tabs .adv-quote-info-header .adv-market-type-section .adv-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 126, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-header-tabs .adv-quote-info-header .adv-header-section .adv-value, .adv-show-quote-capsule .adv-quote-header-tabs .adv-quote-info-header .adv-contract-number-section .adv-value,
.adv-show-quote-capsule .adv-quote-header-tabs .adv-quote-info-header .adv-market-type-section .adv-value {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  display: block;
}

/* line 132, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-header-tabs .adv-quote-info-header .adv-header-section .adv-value, .lightmode .adv-show-quote-capsule .adv-quote-header-tabs .adv-quote-info-header .adv-contract-number-section .adv-value,
.lightmode .adv-show-quote-capsule .adv-quote-header-tabs .adv-quote-info-header .adv-market-type-section .adv-value {
  color: #140D23;
}

/* line 138, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-header-tabs .adv-quote-info-header .adv-header-section.adv-recipient-name-section .adv-value, .adv-show-quote-capsule .adv-quote-header-tabs .adv-quote-info-header .adv-recipient-name-section.adv-contract-number-section .adv-value,
.adv-show-quote-capsule .adv-quote-header-tabs .adv-quote-info-header .adv-recipient-name-section.adv-market-type-section .adv-value {
  font-size: 1rem;
}

/* line 145, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-header-tabs .adv-quote-tabs {
  display: flex;
  gap: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
  overflow-x: auto;
  flex: 1;
  min-width: 0;
  scrollbar-width: none;
}

/* line 154, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-header-tabs .adv-quote-tabs::-webkit-scrollbar {
  display: none;
}

/* line 156, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-header-tabs .adv-quote-tabs {
  border-bottom: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 160, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-header-tabs .adv-quote-tabs .adv-tab-button {
  padding: 5px 10px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  border-radius: 8px 8px 0 0;
}

/* line 172, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-header-tabs .adv-quote-tabs .adv-tab-button {
  color: rgba(20, 13, 35, 0.7);
}

/* line 176, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-header-tabs .adv-quote-tabs .adv-tab-button:hover {
  color: rgba(255, 255, 255, 0.9);
  background-color: rgba(255, 255, 255, 0.05);
}

/* line 180, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-header-tabs .adv-quote-tabs .adv-tab-button:hover {
  color: rgba(20, 13, 35, 0.9);
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 186, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-header-tabs .adv-quote-tabs .adv-tab-button.active {
  color: #C38761;
  border-bottom-color: #C38761;
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 191, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-header-tabs .adv-quote-tabs .adv-tab-button.active {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 202, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content {
  flex: 1;
  overflow: hidden;
}

/* line 206, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel {
  display: none;
  height: 100%;
  flex-direction: column;
  gap: 15px;
  /* ==========================================================================
         EN-TÊTE DU CONTENU DES ONGLETS
         ========================================================================== */
  /* ==========================================================================
         CORPS DU CONTENU DES ONGLETS
         ========================================================================== */
}

/* line 212, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel.active {
  display: flex;
}

/* line 219, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

/* line 229, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-header {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 233, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-header > h3, .adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-header > .h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  color: #fff;
  flex: 1;
  min-width: 200px;
}

/* line 241, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-header > h3, .lightmode .adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-header > .h3 {
  color: #140D23;
}

/* line 246, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-header .adv-projects-description {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.5;
  width: 100%;
}

/* line 253, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-header .adv-projects-description {
  color: rgba(20, 13, 35, 0.7);
}

/* line 258, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-header .adv-button-regular {
  align-self: flex-start;
}

/* line 262, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-header .adv-project-icon {
  color: #0066cc;
}

/* line 266, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-header .adv-create-button {
  padding: 8px 16px;
  background-color: #C38761;
  color: #140D23;
  border: none;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* line 280, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-header .adv-create-button:hover {
  background-color: #af6c42;
  transform: translateY(-1px);
}

/* line 285, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-header .adv-create-button i {
  font-size: 0.7rem;
}

/* line 294, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  /* Personnalisation de la barre de défilement */
  /* ==========================================================================
           GRILLE DE DOCUMENTS
           ========================================================================== */
}

/* line 301, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 306, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body::-webkit-scrollbar {
  width: 4px;
}

/* line 310, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 315, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 320, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 324, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body p {
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  text-align: center;
  margin: 2rem 0;
}

/* line 330, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body p {
  color: rgba(20, 13, 35, 0.7);
}

/* line 338, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  padding: 5px;
  max-height: 100%;
  overflow-y: auto;
  /* Personnalisation de la barre de défilement */
  /* ==========================================================================
             STYLES POUR LES CARTES DE PROJETS
             ========================================================================== */
}

/* line 347, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid::-webkit-scrollbar {
  width: 4px;
}

/* line 351, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 356, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 361, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 365, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

/* line 378, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-link {
  background-color: rgba(20, 13, 35, 0.05);
  border: 1px solid rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 384, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-link .adv-document-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* line 391, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-link .adv-document-title i {
  color: #C38761;
  font-size: 0.8rem;
}

/* line 397, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-link .adv-document-details {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 404, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-link .adv-document-details {
  color: rgba(20, 13, 35, 0.7);
}

/* line 408, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-link .adv-document-details .adv-document-amount {
  font-weight: 600;
  color: #C38761;
}

/* line 413, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-link .adv-document-details .adv-document-date {
  font-style: italic;
}

/* line 418, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-link .adv-document-status {
  display: flex;
  justify-content: flex-end;
}

/* line 422, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-link .adv-document-status .status-badge {
  font-size: 0.65rem;
  padding: 2px 8px;
}

/* line 432, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-card {
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 15px;
  transition: all 0.2s ease;
  gap: 12px;
}

/* line 442, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-card:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* line 449, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-card {
  background-color: rgba(20, 13, 35, 0.05);
  border: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 453, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-card:hover {
  background-color: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 459, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-card .adv-document-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 466, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-card .adv-document-header {
  border-bottom: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 470, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-card .adv-document-header .adv-project-icon {
  color: #C38761;
  font-size: 1.2rem;
}

/* line 475, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-card .adv-document-header .adv-document-type {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 482, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-card .adv-document-header .adv-document-type {
  color: rgba(20, 13, 35, 0.7);
}

/* line 488, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-card .adv-document-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

/* line 494, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-card .adv-document-body .adv-document-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 4px;
}

/* line 501, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-card .adv-document-body .adv-document-title {
  color: #140D23;
}

/* line 506, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-card .adv-document-body .adv-document-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 513, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-card .adv-document-body .adv-document-meta {
  color: rgba(20, 13, 35, 0.7);
}

/* line 517, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-card .adv-document-body .adv-document-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* line 522, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-card .adv-document-body .adv-document-meta span:not(:last-child) {
  margin-bottom: 2px;
}

/* line 526, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-card .adv-document-body .adv-document-meta span .status-badge {
  margin-left: auto;
  font-size: 0.7rem;
  padding: 4px 10px;
}

/* line 535, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-card .adv-document-actions {
  display: flex;
  justify-content: flex-end;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 541, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-card .adv-document-actions {
  border-top: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 545, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-card .adv-document-actions .adv-button-regular {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* line 559, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-card .adv-document-actions .adv-button-regular:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

/* line 565, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-card .adv-document-actions .adv-button-regular {
  background-color: rgba(20, 13, 35, 0.1);
  border: 1px solid rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 570, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-card .adv-document-actions .adv-button-regular:hover {
  background-color: rgba(20, 13, 35, 0.15);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 576, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-tab-content .adv-tab-panel .adv-tab-content-body .adv-documents-grid .adv-document-card .adv-document-actions .adv-button-regular i {
  font-size: 0.75rem;
}

/* line 590, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-articles-section {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  height: 70%;
}

/* line 595, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-articles-section {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 599, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-articles-section .adv-articles-table {
  height: 100%;
  overflow-y: auto;
  gap: 0;
  /* Personnalisation de la barre de défilement */
}

/* line 604, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-articles-section .adv-articles-table::-webkit-scrollbar {
  width: 4px;
}

/* line 608, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-articles-section .adv-articles-table::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 613, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-articles-section .adv-articles-table::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 618, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-articles-section .adv-articles-table::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 622, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-articles-section .adv-edit-deposit-invoice-table-section .adv-header-cgv, .adv-edit-deposit-invoice-table-section .adv-show-quote-capsule .adv-quote-articles-section .adv-header-cgv, .adv-show-quote-capsule .adv-quote-articles-section .adv-global-discount-quote-table-section .adv-header-cgv, .adv-global-discount-quote-table-section .adv-show-quote-capsule .adv-quote-articles-section .adv-header-cgv, .adv-show-quote-capsule .adv-quote-articles-section .adv-new-deposit-invoice-table-section .adv-header-cgv, .adv-new-deposit-invoice-table-section .adv-show-quote-capsule .adv-quote-articles-section .adv-header-cgv, .adv-show-quote-capsule .adv-quote-articles-section .adv-table-cell, .adv-show-quote-capsule .adv-quote-articles-section .adv-header-quantity, .adv-show-quote-capsule .adv-quote-articles-section .adv-header-price-ttc, .adv-show-quote-capsule .adv-quote-articles-section .adv-header-price-ht, .adv-show-quote-capsule .adv-quote-articles-section .adv-header-discount-perc, .adv-show-quote-capsule .adv-quote-articles-section .adv-header-article, .adv-show-quote-capsule .adv-quote-articles-section .adv-show-invoice-capsule .adv-invoice-articles-section .adv-header-cgv, .adv-show-invoice-capsule .adv-invoice-articles-section .adv-show-quote-capsule .adv-quote-articles-section .adv-header-cgv {
  padding: 0 12px;
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 40px;
}

/* line 629, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-articles-section .adv-edit-deposit-invoice-table-section .adv-header-cgv, .adv-edit-deposit-invoice-table-section .lightmode .adv-show-quote-capsule .adv-quote-articles-section .adv-header-cgv, .lightmode .adv-show-quote-capsule .adv-quote-articles-section .adv-global-discount-quote-table-section .adv-header-cgv, .adv-global-discount-quote-table-section .lightmode .adv-show-quote-capsule .adv-quote-articles-section .adv-header-cgv, .lightmode .adv-show-quote-capsule .adv-quote-articles-section .adv-new-deposit-invoice-table-section .adv-header-cgv, .adv-new-deposit-invoice-table-section .lightmode .adv-show-quote-capsule .adv-quote-articles-section .adv-header-cgv, .lightmode .adv-show-quote-capsule .adv-quote-articles-section .adv-table-cell, .lightmode .adv-show-quote-capsule .adv-quote-articles-section .adv-header-quantity, .lightmode .adv-show-quote-capsule .adv-quote-articles-section .adv-header-price-ttc, .lightmode .adv-show-quote-capsule .adv-quote-articles-section .adv-header-price-ht, .lightmode .adv-show-quote-capsule .adv-quote-articles-section .adv-header-discount-perc, .lightmode .adv-show-quote-capsule .adv-quote-articles-section .adv-header-article, .lightmode .adv-show-quote-capsule .adv-quote-articles-section .adv-show-invoice-capsule .adv-invoice-articles-section .adv-header-cgv, .adv-show-invoice-capsule .adv-invoice-articles-section .lightmode .adv-show-quote-capsule .adv-quote-articles-section .adv-header-cgv {
  border-right: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 634, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-articles-section .adv-articles-table-header {
  display: flex;
  background-color: rgba(255, 255, 255, 0.08);
  white-space: nowrap;
  font-weight: 600;
  padding: 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px 8px 0 0;
}

/* line 644, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-articles-section .adv-articles-table-header {
  background-color: rgba(20, 13, 35, 0.08);
  color: rgba(20, 13, 35, 0.8);
  border-bottom: 1px solid rgba(20, 13, 35, 0.15);
}

/* line 651, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-articles-section .adv-articles-table-body {
  height: auto;
  min-height: 200px;
  overflow-y: hidden;
  padding: 0;
  gap: 0;
  /* Personnalisation de la barre de défilement */
}

/* line 658, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-articles-section .adv-articles-table-body::-webkit-scrollbar {
  width: 4px;
}

/* line 662, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-articles-section .adv-articles-table-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 667, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-articles-section .adv-articles-table-body::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 672, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-articles-section .adv-articles-table-body::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 676, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-articles-section .adv-articles-table-body .adv-articles-table-row {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  white-space: nowrap;
}

/* line 682, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-articles-section .adv-articles-table-body .adv-articles-table-row:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

/* line 686, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-articles-section .adv-articles-table-body .adv-articles-table-row {
  border-bottom: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 689, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-articles-section .adv-articles-table-body .adv-articles-table-row:hover {
  background-color: rgba(20, 13, 35, 0.03);
}

/* line 695, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-articles-section .adv-articles-table-body.adv-no-articles-container {
  text-align: center;
  padding: 2rem 15px;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  font-size: 0.85rem;
}

/* line 702, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-articles-section .adv-articles-table-body.adv-no-articles-container {
  color: rgba(20, 13, 35, 0.6);
}

/* line 708, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-articles-section .adv-header-article {
  width: 35%;
  justify-content: flex-start;
  white-space: normal;
}

/* line 714, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-articles-section .adv-header-discount-perc {
  width: 15%;
  justify-content: center;
}

/* line 719, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-articles-section .adv-header-price-ht {
  width: 20%;
  justify-content: center;
}

/* line 724, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-articles-section .adv-header-price-ttc {
  width: 20%;
  justify-content: center;
}

/* line 729, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-articles-section .adv-header-quantity {
  width: 10%;
  justify-content: center;
}

/* line 735, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-articles-section .adv-table-cell {
  color: #fff;
  font-size: 0.8rem;
}

/* line 739, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-articles-section .adv-table-cell {
  color: #140D23;
}

/* line 744, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-articles-section .adv-cell-article {
  width: 35%;
  justify-content: flex-start;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
  min-width: 0;
}

/* line 752, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-articles-section .adv-cell-discount-perc {
  width: 15%;
  justify-content: center;
}

/* line 756, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-articles-section .adv-cell-price-ht {
  width: 20%;
  justify-content: center;
}

/* line 760, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-articles-section .adv-cell-price-ttc {
  width: 20%;
  justify-content: center;
}

/* line 764, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-articles-section .adv-cell-quantity {
  width: 10%;
  justify-content: center;
}

/* line 770, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-summary-section {
  height: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

/* line 780, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-summary-section {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 784, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-summary-section .adv-summary-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 5px;
  flex: 1 1 0;
}

/* line 793, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-summary-section .adv-summary-item .adv-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  margin-bottom: 0;
  display: block;
}

/* line 799, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-summary-section .adv-summary-item .adv-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 804, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-summary-section .adv-summary-item .adv-value {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  display: block;
  text-align: center;
}

/* line 811, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-summary-section .adv-summary-item .adv-value {
  color: #140D23;
}

/* line 817, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-summary-section .adv-summary-item.adv-summary-total-ttc .adv-value {
  color: #d4a574;
  font-size: 1.1rem;
}

/* line 828, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-cgv-section {
  width: 100%;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin: 15px 0;
}

/* line 835, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-cgv-section {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 839, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-cgv-section .adv-cgv-header-inline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 847, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-cgv-section .adv-cgv-header-inline {
  border-bottom: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 851, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-cgv-section .adv-cgv-header-inline h3, .adv-show-quote-capsule .adv-quote-cgv-section .adv-cgv-header-inline .h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

/* line 857, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-cgv-section .adv-cgv-header-inline h3, .lightmode .adv-show-quote-capsule .adv-quote-cgv-section .adv-cgv-header-inline .h3 {
  color: #140D23;
}

/* line 862, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-cgv-section .adv-cgv-header-inline .adv-cgv-count {
  font-size: 0.75rem;
  padding: 4px 12px;
  background-color: rgba(195, 135, 97, 0.2);
  color: #C38761;
  border-radius: 12px;
  font-weight: 500;
}

/* line 872, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-cgv-section .adv-cgv-list-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* line 878, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-cgv-section .adv-cgv-item {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(232, 232, 232, 0.2);
  border-radius: 12px;
  padding: 15px;
  transition: all 0.3s ease;
}

/* line 885, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-cgv-section .adv-cgv-item {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 890, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-cgv-section .adv-cgv-item:hover {
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* line 895, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-cgv-section .adv-cgv-item:hover {
  background-color: rgba(20, 13, 35, 0.08);
}

/* line 901, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-cgv-section .adv-cgv-item-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

/* line 908, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-cgv-section .adv-cgv-item-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(195, 135, 97, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* line 918, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-cgv-section .adv-cgv-item-icon i {
  font-size: 1.2rem;
  color: #C38761;
}

/* line 924, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-cgv-section .adv-cgv-item-info {
  flex: 1;
}

/* line 927, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-cgv-section .adv-cgv-item-info h3, .adv-show-quote-capsule .adv-quote-cgv-section .adv-cgv-item-info .h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  color: #FFFFFF;
}

/* line 933, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-cgv-section .adv-cgv-item-info h3, .lightmode .adv-show-quote-capsule .adv-quote-cgv-section .adv-cgv-item-info .h3 {
  color: #140D23;
}

/* line 939, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-cgv-section .adv-cgv-documents {
  margin-top: 12px;
}

/* line 942, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-cgv-section .adv-cgv-documents h4, .adv-show-quote-capsule .adv-quote-cgv-section .adv-cgv-documents .h4 {
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.8);
}

/* line 948, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-cgv-section .adv-cgv-documents h4, .lightmode .adv-show-quote-capsule .adv-quote-cgv-section .adv-cgv-documents .h4 {
  color: rgba(20, 13, 35, 0.8);
}

/* line 954, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-cgv-section .adv-cgv-documents-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* line 960, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-cgv-section .adv-cgv-document-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

/* line 970, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-cgv-section .adv-cgv-document-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

/* line 974, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-cgv-section .adv-cgv-document-item {
  background-color: rgba(20, 13, 35, 0.03);
}

/* line 977, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-cgv-section .adv-cgv-document-item:hover {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 983, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-cgv-section .adv-cgv-document-info {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

/* line 989, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-cgv-section .adv-cgv-document-info i {
  color: #C38761;
  font-size: 0.9rem;
}

/* line 994, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-cgv-section .adv-cgv-document-info .adv-cgv-document-name {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  flex: 1;
}

/* line 999, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-cgv-section .adv-cgv-document-info .adv-cgv-document-name {
  color: rgba(20, 13, 35, 0.9);
}

/* line 1004, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-cgv-section .adv-cgv-document-info .adv-cgv-document-pages {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* line 1009, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-cgv-section .adv-cgv-document-info .adv-cgv-document-pages {
  color: rgba(20, 13, 35, 0.6);
}

/* line 1015, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-cgv-section .adv-cgv-document-view-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: rgba(195, 135, 97, 0.2);
  border-radius: 6px;
  color: #C38761;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* line 1027, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-cgv-section .adv-cgv-document-view-button:hover {
  background-color: rgba(195, 135, 97, 0.3);
  transform: scale(1.05);
}

/* line 1032, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-cgv-section .adv-cgv-document-view-button i {
  font-size: 0.8rem;
}

/* line 1037, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-cgv-section .adv-cgv-no-documents {
  padding: 12px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
}

/* line 1043, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-cgv-section .adv-cgv-no-documents {
  background-color: rgba(20, 13, 35, 0.03);
}

/* line 1047, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-show-quote-capsule .adv-quote-cgv-section .adv-cgv-no-documents p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  margin: 0;
}

/* line 1053, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-show-quote-capsule .adv-quote-cgv-section .adv-cgv-no-documents p {
  color: rgba(20, 13, 35, 0.6);
}

/* line 1061, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-quote-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding: 0;
  transition: all 0.3s ease;
}

/* line 1069, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-quote-actions.wide-margins {
  margin-right: 0;
}

/* line 1073, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-quote-actions .adv-action-button {
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.8rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* line 1087, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-quote-actions .adv-action-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

/* line 1092, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-quote-actions .adv-action-button.adv-action-button-primary {
  background-color: #C38761;
  border-color: #C38761;
  color: #140D23;
}

/* line 1097, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-quote-actions .adv-action-button.adv-action-button-primary:hover {
  background-color: #af6c42;
}

/* line 1102, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-quote-actions .adv-action-button.adv-action-button-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

/* line 1107, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-quote-actions .adv-action-button.adv-action-button-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 1111, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-quote-actions .adv-action-button.adv-action-button-secondary {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 1116, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-quote-actions .adv-action-button.adv-action-button-secondary:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* line 1124, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-quote-actions .adv-quote-locked-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  background-color: rgba(255, 193, 7, 0.15);
  border: 1px solid rgba(255, 193, 7, 0.4);
  color: #ffc107;
  cursor: help;
}

/* line 1137, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-quote-actions .adv-quote-locked-notice i {
  font-size: 0.9rem;
}

/* line 1141, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-quote-actions .adv-quote-locked-notice {
  background-color: rgba(255, 152, 0, 0.1);
  border-color: rgba(255, 152, 0, 0.3);
  color: #e65100;
}

/* line 1149, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-quote-sidebar {
  width: 300px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 10px;
  height: 100%;
  margin-top: 0;
  transition: all 0.3s ease;
  /* Personnalisation de la barre de défilement */
}

/* line 1158, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-quote-sidebar {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 1163, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-quote-sidebar::-webkit-scrollbar {
  width: 6px;
}

/* line 1167, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-quote-sidebar::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 1172, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-quote-sidebar::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 1177, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-quote-sidebar::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 1181, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-quote-sidebar.hidden {
  display: none;
}

/* line 1185, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-quote-sidebar .quote-documents-section {
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 15px;
}

/* line 1190, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-quote-sidebar .quote-documents-section .section-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

/* line 1196, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-quote-sidebar .quote-documents-section .section-label {
  color: #140D23;
}

/* line 1201, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-quote-sidebar .quote-documents-section .documents-section-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 1206, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-quote-sidebar .quote-documents-section .documents-section-content .document-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* line 1211, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-quote-sidebar .quote-documents-section .documents-section-content .document-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}

/* line 1215, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-quote-sidebar .quote-documents-section .documents-section-content .document-item:not(:last-child) {
  border-bottom: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 1220, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-quote-sidebar .quote-documents-section .documents-section-content .document-item .document-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 1224, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-quote-sidebar .quote-documents-section .documents-section-content .document-item .document-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 1229, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-quote-sidebar .quote-documents-section .documents-section-content .document-item .document-value {
  font-size: 0.85rem;
  color: #fff;
}

/* line 1233, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-quote-sidebar .quote-documents-section .documents-section-content .document-item .document-value {
  color: #140D23;
}

/* line 1238, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-quote-sidebar .quote-documents-section .documents-section-content .document-item .adv-document-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
}

/* line 1251, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-quote-sidebar .quote-documents-section .documents-section-content .document-item .adv-document-link {
  border: 1px solid rgba(20, 13, 35, 0.1);
  background-color: rgba(20, 13, 35, 0.05);
  color: #140D23;
}

/* line 1262, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.2s ease;
  white-space: nowrap;
}

/* line 1275, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.status-badge i {
  font-size: 0.7rem;
  opacity: 0.9;
}

/* line 1280, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.status-badge.draft {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

/* line 1284, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .status-badge.draft {
  background-color: rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.8);
}

/* line 1290, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.status-badge.sent {
  background-color: #C38761;
  color: #140D23;
}

/* line 1295, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.status-badge.validated {
  background-color: #4CAF50;
  color: white;
}

/* line 1300, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.status-badge.non-defini {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* line 1304, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .status-badge.non-defini {
  background-color: rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.6);
}

/* line 1311, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.status-badge.success {
  background-color: #4CAF50;
  color: white;
}

/* line 1316, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.status-badge.warning {
  background-color: #FF9800;
  color: white;
}

/* line 1321, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.status-badge.secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* line 1325, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .status-badge.secondary {
  background-color: rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.6);
}

/* line 1331, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.status-badge.info {
  background-color: #2196F3;
  color: white;
}

/* line 1336, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.status-badge.danger {
  background-color: #F44336;
  color: white;
}

/* line 1342, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.status-badge.paid {
  background-color: #4CAF50;
  color: white;
}

/* line 1347, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.status-badge.pending {
  background-color: #FF9800;
  color: white;
}

/* line 1352, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.status-badge.overdue {
  background-color: #F44336;
  color: white;
}

/* line 1357, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.status-badge.cancelled {
  background-color: #9E9E9E;
  color: white;
}

/* line 1363, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.status-badge.completed {
  background-color: #4CAF50;
  color: white;
}

/* line 1368, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.status-badge.in_progress {
  background-color: #2196F3;
  color: white;
}

/* line 1373, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.status-badge.pending_validation {
  background-color: #FF9800;
  color: white;
}

/* line 1378, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.status-badge.rejected {
  background-color: #F44336;
  color: white;
}

/* Classes utilitaires */
/* line 1385, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.d-none {
  display: none !important;
}

/* line 1389, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.hidden {
  display: none !important;
}

/* ==========================================================================
   ANIMATION DE PAILLETTES POUR DEVIS VALIDÉ
   ========================================================================== */
@keyframes confetti-fall {
  0% {
    transform: translateY(-100vh) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

/* line 1407, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

/* ==========================================================================
   CHRONO CODE PENDING - Message d'état pour numéro non attribué
   ========================================================================== */
/* line 1422, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.chrono-code-pending {
  font-style: italic;
  color: #e8e8e8;
  font-size: 0.9em;
  opacity: 0.8;
}

/* ==========================================================================
   BANNIÈRE D'AVERTISSEMENT - DEVIS SANS CLIENT
   ========================================================================== */
/* line 1433, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-quote-warning-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background-color: rgba(255, 193, 7, 0.15);
  border: 1px solid rgba(255, 193, 7, 0.4);
  border-radius: 8px;
  margin-bottom: 10px;
}

/* line 1443, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-quote-warning-banner i {
  color: #ffc107;
  font-size: 1.2rem;
}

/* line 1448, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-quote-warning-banner span {
  flex: 1;
  color: #fff;
  font-size: 0.9rem;
}

/* line 1453, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.lightmode .adv-quote-warning-banner span {
  color: #140D23;
}

/* line 1458, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-quote-warning-banner .adv-warning-action-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background-color: #C38761;
  color: #140D23;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* line 1471, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-quote-warning-banner .adv-warning-action-link:hover {
  background-color: #af6c42;
  transform: translateY(-1px);
}

/* line 1476, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_quote.scss */
.adv-quote-warning-banner .adv-warning-action-link i {
  color: #140D23;
  font-size: 0.85rem;
}

/* line 14, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-container {
  position: relative;
  margin-top: 12px;
}

/* line 20, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 26, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-search input {
  flex: 1;
  padding: 10px 40px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

/* line 36, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-search input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 40, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-search input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

/* line 47, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
.lightmode .document-link-search input {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.1);
  color: #1a1d29;
}

/* line 52, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
.lightmode .document-link-search input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

/* line 56, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
.lightmode .document-link-search input:focus {
  border-color: rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.04);
}

/* line 65, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-loader {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
}

/* line 72, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
.lightmode .document-link-loader {
  color: rgba(0, 0, 0, 0.4);
}

/* line 78, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-results {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 100;
  max-height: 320px;
  overflow-y: auto;
  background: rgba(26, 29, 41, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* line 91, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
.lightmode .document-link-results {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* line 99, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-result-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.15s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* line 108, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-result-item:last-child {
  border-bottom: none;
}

/* line 112, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-result-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* line 116, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
.lightmode .document-link-result-item {
  border-bottom-color: rgba(0, 0, 0, 0.05);
}

/* line 119, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
.lightmode .document-link-result-item:hover {
  background: rgba(0, 0, 0, 0.04);
}

/* line 124, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-result-item .document-chrono {
  font-weight: 500;
  color: #fff;
  font-size: 0.9rem;
}

/* line 129, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
.lightmode .document-link-result-item .document-chrono {
  color: #1a1d29;
}

/* line 134, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-result-item .document-client {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  flex: 1;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 143, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
.lightmode .document-link-result-item .document-client {
  color: rgba(0, 0, 0, 0.5);
}

/* line 150, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
.document-type-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* line 162, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
.document-type-badge.badge-quote {
  background: #17a2b8;
  color: white;
}

/* line 167, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
.document-type-badge.badge-invoice {
  background: #28a745;
  color: white;
}

/* line 172, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
.document-type-badge.badge-contract {
  background: #6f42c1;
  color: white;
}

/* line 177, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
.document-type-badge.badge-orderForm {
  background: #20c997;
  color: white;
}

/* line 182, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
.document-type-badge.badge-depositInvoice {
  background: #fd7e14;
  color: white;
}

/* line 187, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
.document-type-badge.badge-creditNote {
  background: #dc3545;
  color: white;
}

/* line 192, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
.document-type-badge.badge-clientAcceptanceReport {
  background: #6c757d;
  color: white;
}

/* line 199, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-no-results,
.document-link-error {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* line 209, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
.lightmode .document-link-no-results, .lightmode .document-link-error {
  color: rgba(0, 0, 0, 0.4);
}

/* line 213, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-no-results i,
.document-link-error i {
  font-size: 1.1rem;
}

/* line 218, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-error {
  color: #dc3545;
}

/* line 221, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
.lightmode .document-link-error {
  color: #dc3545;
}

/* line 227, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-selected {
  margin-top: 12px;
}

/* line 231, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-selected-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: rgba(40, 167, 69, 0.15);
  border: 1px solid rgba(40, 167, 69, 0.3);
  border-radius: 8px;
}

/* line 240, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
.lightmode .document-link-selected-item {
  background: rgba(40, 167, 69, 0.1);
  border-color: rgba(40, 167, 69, 0.2);
}

/* line 246, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-selected-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 251, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-selected-info .document-link {
  color: #28a745;
  font-weight: 500;
  text-decoration: none;
}

/* line 256, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-selected-info .document-link:hover {
  text-decoration: underline;
}

/* line 262, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(220, 53, 69, 0.2);
  color: #dc3545;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 276, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-remove:hover {
  background: rgba(220, 53, 69, 0.3);
  transform: scale(1.1);
}

/* line 283, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
.document-link-no-selection {
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  font-style: italic;
}

/* line 289, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
.lightmode .document-link-no-selection {
  color: rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
  /* line 296, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
  .document-link-result-item {
    flex-wrap: wrap;
  }
  /* line 299, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_autocomplete.scss */
  .document-link-result-item .document-client {
    flex: 100%;
    text-align: left;
    margin-top: 4px;
  }
}

/* line 11, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(40, 167, 69, 0.15);
  border: 1px solid rgba(40, 167, 69, 0.3);
  border-radius: 8px;
  max-width: 100%;
}

/* line 21, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-chip {
  background: rgba(40, 167, 69, 0.1);
  border-color: rgba(40, 167, 69, 0.2);
}

/* line 26, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-chip-info {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1;
}

/* line 34, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-chip-link {
  color: #28a745;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 43, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-chip-link:hover {
  text-decoration: underline;
}

/* line 48, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-chip-client {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 55, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-chip-client {
  color: rgba(0, 0, 0, 0.5);
}

/* line 60, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-chip-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(220, 53, 69, 0.2);
  color: #dc3545;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

/* line 75, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-chip-remove:hover {
  background: rgba(220, 53, 69, 0.3);
  transform: scale(1.1);
}

/* line 82, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-no-selection-text {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  font-style: italic;
}

/* line 88, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-no-selection-text {
  color: rgba(0, 0, 0, 0.35);
}

/* line 93, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-open-drawer-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 107, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-open-drawer-btn:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

/* line 113, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-open-drawer-btn {
  border-color: rgba(0, 0, 0, 0.15);
  color: rgba(0, 0, 0, 0.6);
}

/* line 117, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-open-drawer-btn:hover {
  border-color: rgba(0, 0, 0, 0.3);
  color: rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.03);
}

/* line 124, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-open-drawer-btn i {
  font-size: 0.8rem;
}

/* line 133, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* line 147, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-overlay.active {
  opacity: 1;
}

/* line 152, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-panel {
  width: 700px;
  max-width: 90%;
  max-height: 85vh;
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
  color: white;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.95);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* line 170, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-overlay.active .document-link-drawer-panel {
  transform: scale(1);
  opacity: 1;
}

/* line 175, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-panel {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(20, 13, 35, 0.15);
  color: #140D23;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* line 184, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* line 192, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-header {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

/* line 196, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-header h3, .document-link-drawer-header .h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

/* line 202, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-header h3, .lightmode .document-link-drawer-header .h3 {
  color: #140D23;
}

/* line 208, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 221, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* line 226, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-close {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.5);
}

/* line 230, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-close:hover {
  background: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.8);
}

/* line 238, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

/* line 246, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-filters {
  border-bottom-color: rgba(0, 0, 0, 0.05);
}

/* line 251, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-filter-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 263, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-filter-pill:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
}

/* line 268, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-filter-pill.active {
  background: rgba(195, 135, 97, 0.25);
  border-color: rgba(195, 135, 97, 0.5);
  color: #C38761;
  font-weight: 500;
}

/* line 275, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-filter-pill {
  border-color: rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.5);
}

/* line 279, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-filter-pill:hover {
  border-color: rgba(0, 0, 0, 0.25);
  color: rgba(0, 0, 0, 0.8);
}

/* line 284, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-filter-pill.active {
  background: rgba(195, 135, 97, 0.12);
  border-color: rgba(195, 135, 97, 0.4);
  color: #af6c42;
}

/* line 293, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-search {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

/* line 298, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-search {
  border-bottom-color: rgba(0, 0, 0, 0.05);
}

/* line 302, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-search input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(195, 135, 97, 0.4);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

/* line 312, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-search input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* line 316, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-search input:focus {
  outline: none;
  border-color: rgba(195, 135, 97, 0.7);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.15);
}

/* line 323, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-search input {
  background: #e8e8e8;
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 328, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-search input::placeholder {
  color: rgba(0, 0, 0, 0.35);
}

/* line 332, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-search input:focus {
  border-color: rgba(20, 13, 35, 0.4);
  background: #e3e3e3;
  box-shadow: 0 0 0 2px rgba(20, 13, 35, 0.1);
}

/* line 342, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-results {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
}

/* line 348, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-results::-webkit-scrollbar {
  width: 6px;
}

/* line 352, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-results::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

/* line 357, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-results::-webkit-scrollbar-thumb {
  background: rgba(195, 135, 97, 0.5);
  border-radius: 3px;
}

/* line 361, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-results::-webkit-scrollbar-thumb:hover {
  background: rgba(195, 135, 97, 0.7);
}

/* line 368, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-result-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  cursor: pointer;
  transition: background 0.15s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* line 377, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-result-item:last-child {
  border-bottom: none;
}

/* line 381, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-result-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* line 385, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-result-item {
  border-bottom-color: rgba(0, 0, 0, 0.03);
}

/* line 388, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-result-item:hover {
  background: rgba(0, 0, 0, 0.03);
}

/* line 394, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-result-chrono {
  font-weight: 500;
  color: #fff;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* line 400, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-result-chrono {
  color: #140D23;
}

/* line 405, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-result-client {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  flex: 1;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 414, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-result-client {
  color: rgba(0, 0, 0, 0.45);
}

/* line 419, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-result-date {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
  white-space: nowrap;
}

/* line 424, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-result-date {
  color: rgba(0, 0, 0, 0.35);
}

/* line 430, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 40px 24px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  text-align: center;
}

/* line 441, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-empty {
  color: rgba(0, 0, 0, 0.35);
}

/* line 445, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-empty i {
  font-size: 1.5rem;
  opacity: 0.6;
}

/* line 452, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-drawer-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  color: rgba(255, 255, 255, 0.5);
}

/* line 459, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-loading {
  color: rgba(0, 0, 0, 0.4);
}

/* line 468, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-display {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

/* line 475, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-display-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* line 486, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-display-chip:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

/* line 491, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-display-chip {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.08);
}

/* line 495, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-display-chip:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.15);
}

/* line 501, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.document-link-display-chip .document-link-display-chrono {
  color: #fff;
  font-weight: 500;
  font-size: 0.85rem;
}

/* line 506, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-display-chip .document-link-display-chrono {
  color: #140D23;
}

/* line 516, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.adv-document-link--linked {
  border-left: 3px solid #C38761;
}

/* line 520, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.adv-document-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
}

/* line 527, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.adv-document-link-indicator {
  color: #C38761;
  font-size: 0.7rem;
  opacity: 0.8;
}

/* line 533, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.adv-document-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* line 539, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.adv-document-separator {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
}

/* line 543, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .adv-document-separator {
  color: rgba(20, 13, 35, 0.3);
}

/* line 548, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.adv-document-card-actions {
  display: flex;
  gap: 4px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 554, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .adv-document-card-actions {
  border-top-color: rgba(20, 13, 35, 0.08);
}

/* line 559, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.adv-card-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border: none;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

/* line 574, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.adv-card-action-btn i {
  font-size: 0.65rem;
}

/* line 578, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.adv-card-action-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* line 583, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .adv-card-action-btn {
  background: rgba(20, 13, 35, 0.05);
  color: rgba(20, 13, 35, 0.6);
}

/* line 587, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.lightmode .adv-card-action-btn:hover {
  background: rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 593, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.adv-card-action-btn--link:hover {
  background: rgba(195, 135, 97, 0.15);
  color: #C38761;
}

/* line 598, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
.adv-card-action-btn--danger:hover {
  background: rgba(220, 53, 69, 0.15);
  color: #dc3545;
}

@media (max-width: 768px) {
  /* line 609, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
  .document-link-drawer-panel {
    width: 95%;
    max-height: 90vh;
  }
  /* line 614, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
  .document-link-chip {
    flex-wrap: wrap;
  }
  /* line 617, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
  .document-link-chip-client {
    flex: 100%;
  }
  /* line 622, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
  .document-link-drawer-result-item {
    flex-wrap: wrap;
  }
  /* line 625, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_document_link_drawer.scss */
  .document-link-drawer-result-item .document-link-drawer-result-client {
    flex: 100%;
    text-align: left;
    margin-top: 2px;
  }
}

/* ==========================================================================
   ADV SHOW TABS SCROLLER
   Chevrons de navigation horizontale pour les onglets des pages show ADV.
   Réutilise landing_scroller_controller.js (query .orizon-rail-arrow--left/--right).
   ========================================================================== */
/* line 7, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_adv_show_tabs_scroller.scss */
.adv-tabs-scroller {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* line 13, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_adv_show_tabs_scroller.scss */
.adv-tabs-scroller-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.65rem;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

/* line 29, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_adv_show_tabs_scroller.scss */
.lightmode .adv-tabs-scroller-arrow {
  background-color: rgba(20, 13, 35, 0.08);
  color: rgba(20, 13, 35, 0.6);
}

/* line 34, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_adv_show_tabs_scroller.scss */
.adv-tabs-scroller-arrow:hover:not([disabled]) {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* line 38, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_adv_show_tabs_scroller.scss */
.lightmode .adv-tabs-scroller-arrow:hover:not([disabled]) {
  background-color: rgba(20, 13, 35, 0.15);
  color: #140D23;
}

/* line 44, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/../../../../../shared/_adv_show_tabs_scroller.scss */
.adv-tabs-scroller-arrow[disabled] {
  opacity: 0;
  cursor: default;
  pointer-events: none;
}

/* line 1, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-capsule {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 10px 30px 10px 30px;
  font-size: 0.8rem;
  gap: 10px;
}

/* line 11, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-capsule.lightmode {
  color: #140D23;
}

/* line 16, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-contacts-capsule span {
  color: #140D23;
}

/* line 19, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.nightmode .adv-quote-contacts-capsule span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 25, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-contacts-capsule p {
  color: #140D23;
}

/* line 28, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.nightmode .adv-quote-contacts-capsule p {
  color: #FFFFFF;
}

/* line 34, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-contacts-capsule i {
  color: #140D23;
}

/* line 37, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.nightmode .adv-quote-contacts-capsule i {
  color: #FFFFFF;
}

/* line 43, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 50, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-tabs {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(232, 232, 232, 0.3);
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}

/* line 61, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-contacts-tabs {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 67, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-tab-button {
  flex: 1;
  padding: 15px 20px;
  background-color: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* line 82, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-tab-button {
  color: rgba(20, 13, 35, 0.6);
}

/* line 86, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-tab-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

/* line 90, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-tab-button:hover {
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 96, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-tab-button.adv-tab-active {
  background-color: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  font-weight: 600;
}

/* line 101, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-tab-button.adv-tab-active {
  background-color: rgba(20, 13, 35, 0.15);
  color: #140D23;
}

/* line 107, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-tab-button i {
  font-size: 1rem;
}

/* line 112, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-content {
  width: 100%;
  height: 85%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(232, 232, 232, 0.5);
  border-top: none;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
}

/* line 121, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-contacts-content {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 127, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-tab-content {
  display: none;
  height: 100%;
  width: 100%;
}

/* line 132, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-tab-content.adv-tab-active {
  display: block;
}

/* line 138, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
}

/* line 147, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1 .adv-quote-contacts-row1-column2 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 10px;
}

/* line 158, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column1 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
}

/* line 168, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column1-searchbar {
  width: 100%;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 181, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-contacts-row1-column1-searchbar {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 186, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column1-searchbar button {
  all: unset;
}

/* line 189, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column1-searchbar i {
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 194, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-contacts-row1-column1-searchbar i {
  color: #140D23 !important;
}

/* line 198, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column1-searchbar span {
  font-weight: normal !important;
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 204, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-contacts-row1-column1-searchbar span {
  color: #140D23 !important;
}

/* line 210, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column1-create-contact {
  width: 100%;
  margin-bottom: 10px;
}

/* line 215, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-create-contact-button {
  width: 100%;
  padding: 10px 15px;
  background-color: rgba(195, 135, 97, 0.2);
  border: 1px solid rgba(195, 135, 97, 0.4);
  border-radius: 8px;
  color: #C38761;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* line 231, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-create-contact-button {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 237, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-create-contact-button:hover {
  background-color: rgba(195, 135, 97, 0.3);
  border-color: rgba(195, 135, 97, 0.6);
  transform: translateY(-1px);
}

/* line 242, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-create-contact-button:hover {
  background-color: rgba(20, 13, 35, 0.2);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 248, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-create-contact-button i {
  font-size: 0.8rem;
  color: inherit;
}

/* line 254, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column1-results {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 100%;
}

/* line 263, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column1-results h3, .adv-quote-contacts-row1-column1-results .h3 {
  all: unset;
  font-size: 0.8rem;
}

/* line 267, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-contacts-row1-column1-results h3, .lightmode .adv-quote-contacts-row1-column1-results .h3 {
  color: #140D23;
}

/* line 272, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column1-results .results {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  min-height: 60px;
  max-height: 60%;
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
  /* Personnalisation de la barre de défilement */
  /* Style pour le message "Aucun contact sélectionné" */
  /* Style pour chaque contact sélectionné */
}

/* line 286, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-contacts-row1-column1-results .results {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 292, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column1-results .results::-webkit-scrollbar {
  width: 6px;
}

/* line 296, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column1-results .results::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 301, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column1-results .results::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
  border: 2px solid transparent;
}

/* line 307, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column1-results .results::-webkit-scrollbar-thumb:hover {
  background: #864B28;
}

/* line 312, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column1-results .results p[data-contacts-of-document-target="noContacts"] {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  text-align: center;
  margin: 0;
  padding: 20px;
}

/* line 319, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-contacts-row1-column1-results .results p[data-contacts-of-document-target="noContacts"] {
  color: rgba(20, 13, 35, 0.6);
}

/* line 325, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column1-results .results .contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 80px;
  gap: 5px;
  /* Contenu du contact */
  /* Bouton de suppression */
  /* Animation d'entrée */
  /* Animation de sortie */
}

/* line 340, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-contacts-row1-column1-results .results .contact-item {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.1) 0%, rgba(20, 13, 35, 0.05) 100%);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 345, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column1-results .results .contact-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: rgba(195, 135, 97, 0.4);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

/* line 351, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-contacts-row1-column1-results .results .contact-item:hover {
  border-color: rgba(195, 135, 97, 0.4);
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.15) 0%, rgba(20, 13, 35, 0.08) 100%);
}

/* line 358, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column1-results .results .contact-item .contact-info {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
  width: 100%;
}

/* line 365, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column1-results .results .contact-item .contact-info .contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(195, 135, 97, 0.15);
  border-radius: 50%;
  color: #C38761;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

/* line 378, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column1-results .results .contact-item .contact-info .contact-email {
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0;
  text-align: center;
}

/* line 385, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-contacts-row1-column1-results .results .contact-item .contact-info .contact-email {
  color: #140D23;
}

/* line 392, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column1-results .results .contact-item .contact-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(166, 2, 64, 0.1);
  border: 1px solid rgba(166, 2, 64, 0.3);
  border-radius: 50%;
  color: rgba(166, 2, 64, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
}

/* line 406, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column1-results .results .contact-item .contact-remove:hover {
  background: rgba(166, 2, 64, 0.2);
  border-color: #A60240;
  color: #A60240;
  transform: scale(1.1);
}

/* line 413, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column1-results .results .contact-item .contact-remove i {
  font-size: 0.8rem;
}

/* line 419, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column1-results .results .contact-item.contact-item-enter {
  animation: slideInFromTop 0.3s ease-out;
}

/* line 424, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column1-results .results .contact-item.contact-item-exit {
  animation: slideOutToRight 0.3s ease-in;
}

/* Animations pour les contacts */
@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideOutToRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

/* Styles responsives pour la liste des contacts */
@media (max-width: 768px) {
  /* line 457, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
  .adv-quote-contacts-row1-column1-results .results {
    padding: 8px;
    gap: 6px;
    max-height: 250px;
  }
  /* line 462, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
  .adv-quote-contacts-row1-column1-results .results .contact-item {
    padding: 5px;
    gap: 5px;
  }
  /* line 466, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
  .adv-quote-contacts-row1-column1-results .results .contact-item .contact-info {
    gap: 8px;
  }
  /* line 469, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
  .adv-quote-contacts-row1-column1-results .results .contact-item .contact-info .contact-icon {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
  /* line 475, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
  .adv-quote-contacts-row1-column1-results .results .contact-item .contact-info .contact-email {
    font-size: 0.8rem;
  }
  /* line 480, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
  .adv-quote-contacts-row1-column1-results .results .contact-item .contact-remove {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  /* line 492, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
  .adv-quote-contacts-row1-column1-results .results {
    padding: 6px;
    gap: 4px;
    max-height: 200px;
  }
  /* line 497, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
  .adv-quote-contacts-row1-column1-results .results .contact-item {
    padding: 5px;
    gap: 5px;
  }
  /* line 501, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
  .adv-quote-contacts-row1-column1-results .results .contact-item .contact-info {
    gap: 6px;
  }
  /* line 504, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
  .adv-quote-contacts-row1-column1-results .results .contact-item .contact-info .contact-icon {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
  }
  /* line 510, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
  .adv-quote-contacts-row1-column1-results .results .contact-item .contact-info .contact-email {
    font-size: 0.75rem;
    word-break: break-all;
  }
  /* line 516, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
  .adv-quote-contacts-row1-column1-results .results .contact-item .contact-remove {
    width: 22px;
    height: 22px;
    font-size: 0.65rem;
  }
}

/* line 527, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column2-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  width: 100%;
  margin-bottom: 5px;
  height: 15%;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
}

/* line 540, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-contacts-row1-column2-header {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 544, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column2-header .adv-header-section, .adv-quote-contacts-row1-column2-header .adv-contract-number-section,
.adv-quote-contacts-row1-column2-header .adv-market-type-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  gap: 5px;
}

/* line 551, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column2-header .adv-header-section .adv-label, .adv-quote-contacts-row1-column2-header .adv-contract-number-section .adv-label,
.adv-quote-contacts-row1-column2-header .adv-market-type-section .adv-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  margin-bottom: 0;
  display: block;
  white-space: nowrap;
}

/* line 558, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-contacts-row1-column2-header .adv-header-section .adv-label, .lightmode .adv-quote-contacts-row1-column2-header .adv-contract-number-section .adv-label,
.lightmode .adv-quote-contacts-row1-column2-header .adv-market-type-section .adv-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 562, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column2-header .adv-header-section .adv-value, .adv-quote-contacts-row1-column2-header .adv-contract-number-section .adv-value,
.adv-quote-contacts-row1-column2-header .adv-market-type-section .adv-value {
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  display: block;
  white-space: nowrap;
}

/* line 568, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-contacts-row1-column2-header .adv-header-section .adv-value, .lightmode .adv-quote-contacts-row1-column2-header .adv-contract-number-section .adv-value,
.lightmode .adv-quote-contacts-row1-column2-header .adv-market-type-section .adv-value {
  color: #140D23;
}

/* line 573, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column2-header .adv-header-section.adv-recipient-name-section .adv-value, .adv-quote-contacts-row1-column2-header .adv-recipient-name-section.adv-contract-number-section .adv-value,
.adv-quote-contacts-row1-column2-header .adv-recipient-name-section.adv-market-type-section .adv-value {
  font-size: 0.7rem;
}

/* line 579, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column2-header .adv-articles-table {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  width: 100%;
  height: 80%;
  overflow-y: hidden;
  margin-bottom: 10px;
}

/* line 587, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-contacts-row1-column2-header .adv-articles-table {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 593, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column2-header .adv-articles-table-header {
  display: flex;
  background-color: rgba(255, 255, 255, 0.08);
  font-weight: 600;
  white-space: nowrap;
  font-size: 0.75rem;
  padding: 5px;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* line 603, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-contacts-row1-column2-header .adv-articles-table-header {
  background-color: rgba(20, 13, 35, 0.08);
  color: rgba(20, 13, 35, 0.8);
  border-bottom-color: rgba(20, 13, 35, 0.15);
}

/* line 608, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column2-header .adv-articles-table-header .adv-table-cell {
  white-space: nowrap;
  padding: 5px;
}

/* line 614, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column2-header .adv-articles-table-body {
  min-height: 120px;
  overflow-y: auto;
}

/* line 617, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column2-header .adv-articles-table-body.adv-no-articles-container {
  text-align: center;
  padding: 2rem 15px;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  font-size: 0.85rem;
}

/* line 624, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-contacts-row1-column2-header .adv-articles-table-body.adv-no-articles-container {
  color: rgba(20, 13, 35, 0.6);
}

/* line 628, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column2-header .adv-articles-table-body::-webkit-scrollbar {
  width: 4px;
}

/* line 631, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column2-header .adv-articles-table-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 635, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column2-header .adv-articles-table-body::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 639, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column2-header .adv-articles-table-body::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 644, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column2-header .adv-articles-table-row {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

/* line 649, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-contacts-row1-column2-header .adv-articles-table-row {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 653, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column2-header .adv-articles-table-row:last-child {
  border-bottom: none;
}

/* line 656, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column2-header .adv-articles-table-row:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

/* line 659, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-contacts-row1-column2-header .adv-articles-table-row:hover {
  background-color: rgba(20, 13, 35, 0.03);
}

/* line 665, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column2-header .adv-table-cell {
  color: #fff;
  font-size: 0.8rem;
  padding: 8px 12px;
  display: flex;
  align-items: center;
}

/* line 672, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-contacts-row1-column2-header .adv-table-cell {
  color: #140D23;
}

/* line 677, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column2-header .adv-header-article, .adv-quote-contacts-row1-column2-header .adv-cell-article {
  width: 40%;
  justify-content: flex-start;
}

/* line 678, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column2-header .adv-header-discount-perc, .adv-quote-contacts-row1-column2-header .adv-cell-discount-perc {
  width: 15%;
  justify-content: center;
}

/* line 679, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column2-header .adv-header-price-ht, .adv-quote-contacts-row1-column2-header .adv-cell-price-ht {
  width: 15%;
  justify-content: center;
}

/* line 680, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column2-header .adv-header-price-ttc, .adv-quote-contacts-row1-column2-header .adv-cell-price-ttc {
  width: 15%;
  justify-content: center;
}

/* line 681, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column2-header .adv-header-quantity, .adv-quote-contacts-row1-column2-header .adv-cell-quantity {
  width: 15%;
  justify-content: center;
}

/* line 683, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column2-header .adv-invoice-summary-section {
  width: 100%;
  height: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

/* line 694, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-contacts-row1-column2-header .adv-invoice-summary-section {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 698, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column2-header .adv-invoice-summary-section .adv-summary-item {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1 1 0;
}

/* line 706, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column2-header .adv-invoice-summary-section .adv-summary-item .adv-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  margin-bottom: 0;
  display: block;
  white-space: nowrap;
}

/* line 713, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-contacts-row1-column2-header .adv-invoice-summary-section .adv-summary-item .adv-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 717, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column2-header .adv-invoice-summary-section .adv-summary-item .adv-value {
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  display: block;
  text-align: center;
  white-space: nowrap;
}

/* line 724, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-contacts-row1-column2-header .adv-invoice-summary-section .adv-summary-item .adv-value {
  color: #140D23;
}

/* line 729, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row1-column2-header .adv-invoice-summary-section .adv-summary-item.adv-summary-total-ttc .adv-value {
  color: #d4a574;
  font-size: 0.8rem;
}

/* line 739, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-cgv-tab-content {
  width: 100%;
  height: 100%;
  padding: 30px;
  overflow-y: auto;
}

/* line 745, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-cgv-tab-content::-webkit-scrollbar {
  width: 6px;
}

/* line 748, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-cgv-tab-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 752, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-cgv-tab-content::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 756, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-cgv-tab-content::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 761, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-cgv-header {
  text-align: center;
  margin-bottom: 30px;
}

/* line 765, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-cgv-header h2, .adv-cgv-header .h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #FFFFFF;
}

/* line 771, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-cgv-header h2, .lightmode .adv-cgv-header .h2 {
  color: #140D23;
}

/* line 776, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-cgv-header p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 780, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-cgv-header p {
  color: rgba(20, 13, 35, 0.7);
}

/* line 786, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-cgv-list-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 792, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-cgv-item {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(232, 232, 232, 0.3);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
}

/* line 799, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-cgv-item {
  background-color: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 804, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-cgv-item:hover {
  background-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* line 809, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-cgv-item:hover {
  background-color: rgba(20, 13, 35, 0.12);
}

/* line 815, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-cgv-item-header {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}

/* line 822, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-cgv-item-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(195, 135, 97, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* line 832, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-cgv-item-icon i {
  font-size: 1.5rem;
  color: #C38761;
}

/* line 838, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-cgv-item-info {
  flex: 1;
}

/* line 841, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-cgv-item-info h3, .adv-cgv-item-info .h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #FFFFFF;
}

/* line 847, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-cgv-item-info h3, .lightmode .adv-cgv-item-info .h3 {
  color: #140D23;
}

/* line 853, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-cgv-documents {
  margin-top: 15px;
}

/* line 856, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-cgv-documents h4, .adv-cgv-documents .h4 {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
}

/* line 862, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-cgv-documents h4, .lightmode .adv-cgv-documents .h4 {
  color: rgba(20, 13, 35, 0.8);
}

/* line 868, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-cgv-documents-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 874, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-cgv-document-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 12px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
}

/* line 883, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-cgv-document-item {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 888, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-cgv-document-info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

/* line 894, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-cgv-document-info i {
  color: #e74c3c;
  font-size: 0.9rem;
}

/* line 899, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-cgv-document-info .adv-cgv-document-name {
  font-size: 0.85rem;
  color: #FFFFFF;
}

/* line 903, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-cgv-document-info .adv-cgv-document-name {
  color: #140D23;
}

/* line 908, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-cgv-document-info .adv-cgv-document-pages {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

/* line 915, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-cgv-document-info .adv-cgv-document-pages {
  color: rgba(20, 13, 35, 0.6);
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 922, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-cgv-document-view-button {
  color: #C38761;
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 6px;
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background-color: transparent;
  border: 1px solid rgba(195, 135, 97, 0.3);
}

/* line 937, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-cgv-document-view-button:hover {
  background: #C38761;
  color: #FFFFFF;
  transform: scale(1.05);
  border-color: #C38761;
}

/* line 944, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-cgv-document-view-button i {
  font-size: 0.8rem;
  color: inherit;
}

/* line 949, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-cgv-document-view-button {
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 953, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-cgv-document-view-button:hover {
  background: #140D23;
  color: #FFFFFF;
  border-color: #140D23;
}

/* line 961, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-cgv-no-documents {
  margin-top: 15px;
  text-align: center;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
}

/* line 968, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-cgv-no-documents {
  background-color: rgba(20, 13, 35, 0.03);
}

/* line 972, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-cgv-no-documents p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

/* line 977, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-cgv-no-documents p {
  color: rgba(20, 13, 35, 0.5);
}

/* line 983, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-cgv-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 40px;
}

/* line 993, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-cgv-empty-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* line 1003, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-cgv-empty-icon {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 1007, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-cgv-empty-icon i {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.4);
}

/* line 1011, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-cgv-empty-icon i {
  color: rgba(20, 13, 35, 0.4);
}

/* line 1017, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-cgv-empty-state h3, .adv-cgv-empty-state .h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFFFFF;
}

/* line 1023, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-cgv-empty-state h3, .lightmode .adv-cgv-empty-state .h3 {
  color: #140D23;
}

/* line 1028, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-cgv-empty-state p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 400px;
  line-height: 1.5;
}

/* line 1034, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-cgv-empty-state p {
  color: rgba(20, 13, 35, 0.6);
}

/* line 1040, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-actions-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  align-items: center;
}

/* line 1049, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 100%;
}

/* line 1060, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-delivery-choice {
  background: rgba(20, 13, 35, 0.06);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 1066, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 1072, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-delivery-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(195, 135, 97, 0.2);
  color: #C38761;
}

/* line 1082, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-delivery-icon {
  background: rgba(20, 13, 35, 0.12);
  color: #140D23;
}

/* line 1087, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-delivery-icon i {
  font-size: 1.1rem;
}

/* line 1092, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-delivery-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 1097, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-delivery-text h3, .adv-delivery-text .h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* line 1103, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-delivery-text h3, .lightmode .adv-delivery-text .h3 {
  color: #140D23;
}

/* line 1108, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-delivery-text p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 1113, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-delivery-text p {
  color: rgba(20, 13, 35, 0.65);
}

/* line 1119, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice-options {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* line 1126, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-delivery-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  flex: 1 1 45%;
  min-width: 0;
}

/* line 1143, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-delivery-option {
  color: rgba(20, 13, 35, 0.7);
}

/* line 1147, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-delivery-option:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* line 1150, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-delivery-option:hover {
  background: rgba(20, 13, 35, 0.12);
}

/* line 1155, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-delivery-option i {
  font-size: 0.9rem;
}

/* line 1160, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-delivery-option--active {
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.25), rgba(195, 135, 97, 0.15));
  color: #FFFFFF;
  border-color: rgba(195, 135, 97, 0.5);
  box-shadow: 0 4px 10px rgba(195, 135, 97, 0.2);
}

/* line 1166, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-delivery-option--active {
  color: #140D23;
}

/* line 1173, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-contacts-search-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* line 1182, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-delivery-choice .adv-quote-contacts-search-section {
  border-top-color: rgba(20, 13, 35, 0.15);
}

/* line 1186, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-contacts-search-section .adv-quote-contacts-search-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 1192, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-contacts-search-section .adv-quote-contacts-search-actions {
  width: 100%;
}

/* line 1196, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-contacts-search-section .adv-create-contact-button {
  width: 100%;
}

/* line 1202, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-contacts-selected-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* line 1211, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-delivery-choice .adv-quote-contacts-selected-section {
  border-top-color: rgba(20, 13, 35, 0.15);
}

/* line 1215, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-contacts-selected-section h3, .adv-quote-delivery-choice .adv-quote-contacts-selected-section .h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* line 1221, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-delivery-choice .adv-quote-contacts-selected-section h3, .lightmode .adv-quote-delivery-choice .adv-quote-contacts-selected-section .h3 {
  color: #140D23;
}

/* line 1226, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-contacts-selected-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 8px;
}

/* line 1234, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-contacts-selected-list::-webkit-scrollbar {
  width: 4px;
}

/* line 1238, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-contacts-selected-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
}

/* line 1243, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-contacts-selected-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

/* line 1248, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-contacts-selected-list::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* line 1252, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-contacts-selected-list p {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  padding: 16px;
}

/* line 1258, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-delivery-choice .adv-quote-contacts-selected-list p {
  color: rgba(20, 13, 35, 0.6);
}

/* line 1264, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-contacts-selected-list .contact-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  min-height: 60px;
  gap: 12px;
}

/* line 1278, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-delivery-choice .adv-quote-contacts-selected-list .contact-item {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.1) 0%, rgba(20, 13, 35, 0.05) 100%);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 1283, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-contacts-selected-list .contact-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: rgba(195, 135, 97, 0.4);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

/* line 1289, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-delivery-choice .adv-quote-contacts-selected-list .contact-item:hover {
  border-color: rgba(195, 135, 97, 0.4);
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.15) 0%, rgba(20, 13, 35, 0.08) 100%);
}

/* line 1295, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-contacts-selected-list .contact-item .contact-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

/* line 1301, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-contacts-selected-list .contact-item .contact-info .contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(195, 135, 97, 0.15);
  border-radius: 50%;
  color: #C38761;
  font-size: 1rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

/* line 1315, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-contacts-selected-list .contact-item .contact-info .contact-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

/* line 1322, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-contacts-selected-list .contact-item .contact-info .contact-name {
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}

/* line 1328, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-delivery-choice .adv-quote-contacts-selected-list .contact-item .contact-info .contact-name {
  color: #140D23;
}

/* line 1333, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-contacts-selected-list .contact-item .contact-info .contact-email {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  font-weight: 400;
  margin: 0;
}

/* line 1339, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-delivery-choice .adv-quote-contacts-selected-list .contact-item .contact-info .contact-email {
  color: rgba(20, 13, 35, 0.7);
}

/* line 1345, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-contacts-selected-list .contact-item .contact-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(166, 2, 64, 0.1);
  border: 1px solid rgba(166, 2, 64, 0.3);
  border-radius: 50%;
  color: rgba(166, 2, 64, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* line 1360, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-contacts-selected-list .contact-item .contact-remove:hover {
  background: rgba(166, 2, 64, 0.2);
  border-color: #A60240;
  color: #A60240;
  transform: scale(1.1);
}

/* line 1368, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-contacts-selected-list .contact-item.contact-item-enter {
  animation: slideInFromTop 0.3s ease-out;
}

/* line 1372, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-contacts-selected-list .contact-item.contact-item-exit {
  animation: slideOutToRight 0.3s ease-in;
}

/* line 1379, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-signature-panel {
  width: 100%;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-bottom: none;
  background: transparent;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}

/* line 1393, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-delivery-choice .adv-quote-signature-panel {
  border-top-color: rgba(20, 13, 35, 0.15);
}

/* line 1398, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-signature-panel .signature-form__row {
  position: relative;
  margin-bottom: 0;
}

/* line 1403, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-signature-panel .signature-form__prestataire-search,
.adv-quote-delivery-choice .adv-quote-signature-panel .signature-form__client-search {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

/* line 1411, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-signature-panel .signature-representatives-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

/* line 1417, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-signature-panel .signature-representatives-list__title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px 0;
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
  position: relative;
}

/* line 1427, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-delivery-choice .adv-quote-signature-panel .signature-representatives-list__title {
  color: #140D23;
}

/* line 1431, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-signature-panel .signature-representatives-list__title i {
  color: #C38761;
  font-size: 0.95rem;
}

/* line 1439, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-signature-panel .signature-representatives-divider {
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  transform: translateX(-50%);
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.2) 10%, rgba(255, 255, 255, 0.2) 90%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* line 1456, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-delivery-choice .adv-quote-signature-panel .signature-representatives-divider {
  background: linear-gradient(to bottom, transparent 0%, rgba(20, 13, 35, 0.2) 10%, rgba(20, 13, 35, 0.2) 90%, transparent 100%);
}

/* line 1468, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-signature-panel .signature-prestataire-selected,
.adv-quote-delivery-choice .adv-quote-signature-panel .signature-clients-selected {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 250px;
  overflow-y: auto;
  padding-right: 8px;
}

/* line 1477, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-signature-panel .signature-prestataire-selected::-webkit-scrollbar,
.adv-quote-delivery-choice .adv-quote-signature-panel .signature-clients-selected::-webkit-scrollbar {
  width: 4px;
}

/* line 1481, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-signature-panel .signature-prestataire-selected::-webkit-scrollbar-track,
.adv-quote-delivery-choice .adv-quote-signature-panel .signature-clients-selected::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
}

/* line 1486, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-signature-panel .signature-prestataire-selected::-webkit-scrollbar-thumb,
.adv-quote-delivery-choice .adv-quote-signature-panel .signature-clients-selected::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

/* line 1491, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-signature-panel .signature-prestataire-selected::-webkit-scrollbar-thumb:hover,
.adv-quote-delivery-choice .adv-quote-signature-panel .signature-clients-selected::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* line 1495, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-signature-panel .signature-prestataire-selected p,
.adv-quote-delivery-choice .adv-quote-signature-panel .signature-clients-selected p {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  padding: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  margin: 0;
}

/* line 1504, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-delivery-choice .adv-quote-signature-panel .signature-prestataire-selected p, .lightmode .adv-quote-delivery-choice .adv-quote-signature-panel .signature-clients-selected p {
  color: rgba(20, 13, 35, 0.6);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 1511, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-signature-panel .signature-prestataire-selected .contact-item,
.adv-quote-delivery-choice .adv-quote-signature-panel .signature-clients-selected .contact-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  min-height: 60px;
  gap: 12px;
}

/* line 1525, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-delivery-choice .adv-quote-signature-panel .signature-prestataire-selected .contact-item, .lightmode .adv-quote-delivery-choice .adv-quote-signature-panel .signature-clients-selected .contact-item {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.1) 0%, rgba(20, 13, 35, 0.05) 100%);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 1530, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-signature-panel .signature-prestataire-selected .contact-item:hover,
.adv-quote-delivery-choice .adv-quote-signature-panel .signature-clients-selected .contact-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: rgba(195, 135, 97, 0.4);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

/* line 1536, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-delivery-choice .adv-quote-signature-panel .signature-prestataire-selected .contact-item:hover, .lightmode .adv-quote-delivery-choice .adv-quote-signature-panel .signature-clients-selected .contact-item:hover {
  border-color: rgba(195, 135, 97, 0.4);
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.15) 0%, rgba(20, 13, 35, 0.08) 100%);
}

/* line 1542, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-signature-panel .signature-prestataire-selected .contact-item .contact-info,
.adv-quote-delivery-choice .adv-quote-signature-panel .signature-clients-selected .contact-item .contact-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

/* line 1548, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-signature-panel .signature-prestataire-selected .contact-item .contact-info .contact-icon,
.adv-quote-delivery-choice .adv-quote-signature-panel .signature-clients-selected .contact-item .contact-info .contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(195, 135, 97, 0.15);
  border-radius: 50%;
  color: #C38761;
  font-size: 1rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

/* line 1562, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-signature-panel .signature-prestataire-selected .contact-item .contact-info .contact-details,
.adv-quote-delivery-choice .adv-quote-signature-panel .signature-clients-selected .contact-item .contact-info .contact-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

/* line 1569, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-signature-panel .signature-prestataire-selected .contact-item .contact-info .contact-name,
.adv-quote-delivery-choice .adv-quote-signature-panel .signature-clients-selected .contact-item .contact-info .contact-name {
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}

/* line 1575, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-delivery-choice .adv-quote-signature-panel .signature-prestataire-selected .contact-item .contact-info .contact-name, .lightmode .adv-quote-delivery-choice .adv-quote-signature-panel .signature-clients-selected .contact-item .contact-info .contact-name {
  color: #140D23;
}

/* line 1580, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-signature-panel .signature-prestataire-selected .contact-item .contact-info .contact-email,
.adv-quote-delivery-choice .adv-quote-signature-panel .signature-clients-selected .contact-item .contact-info .contact-email {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  font-weight: 400;
  margin: 0;
}

/* line 1586, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-delivery-choice .adv-quote-signature-panel .signature-prestataire-selected .contact-item .contact-info .contact-email, .lightmode .adv-quote-delivery-choice .adv-quote-signature-panel .signature-clients-selected .contact-item .contact-info .contact-email {
  color: rgba(20, 13, 35, 0.7);
}

/* line 1592, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-signature-panel .signature-prestataire-selected .contact-item .contact-remove,
.adv-quote-delivery-choice .adv-quote-signature-panel .signature-clients-selected .contact-item .contact-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(166, 2, 64, 0.1);
  border: 1px solid rgba(166, 2, 64, 0.3);
  border-radius: 50%;
  color: rgba(166, 2, 64, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* line 1607, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-signature-panel .signature-prestataire-selected .contact-item .contact-remove:hover,
.adv-quote-delivery-choice .adv-quote-signature-panel .signature-clients-selected .contact-item .contact-remove:hover {
  background: rgba(166, 2, 64, 0.2);
  border-color: #A60240;
  color: #A60240;
  transform: scale(1.1);
}

/* line 1615, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-signature-panel .signature-prestataire-selected .contact-item.contact-item-enter,
.adv-quote-delivery-choice .adv-quote-signature-panel .signature-clients-selected .contact-item.contact-item-enter {
  animation: slideInFromTop 0.3s ease-out;
}

/* line 1619, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .adv-quote-signature-panel .signature-prestataire-selected .contact-item.contact-item-exit,
.adv-quote-delivery-choice .adv-quote-signature-panel .signature-clients-selected .contact-item.contact-item-exit {
  animation: slideOutToRight 0.3s ease-in;
}

/* line 1626, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .signature-single-info {
  margin-bottom: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(195, 135, 97, 0.15);
  border: 1px solid rgba(195, 135, 97, 0.3);
  color: #FFFFFF;
}

/* line 1634, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-delivery-choice .signature-single-info {
  color: #140D23;
  background: rgba(195, 135, 97, 0.1);
  border-color: rgba(195, 135, 97, 0.4);
}

/* line 1640, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-delivery-choice .signature-single-info p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
}

/* line 1649, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-signature-panel {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  transition: all 0.3s ease;
}

/* line 1657, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-signature-panel {
  border-color: rgba(20, 13, 35, 0.15);
  background: rgba(20, 13, 35, 0.05);
}

/* line 1662, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-signature-panel .signature-panel {
  box-shadow: none;
  background: transparent;
  border: none;
  color: #FFFFFF;
}

/* line 1668, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-signature-panel .signature-panel {
  color: #140D23;
}

/* line 1672, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-signature-panel .signature-panel__title h3, .adv-quote-signature-panel .signature-panel__title .h3 {
  color: inherit;
}

/* line 1676, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-signature-panel .signature-panel__meta {
  color: rgba(255, 255, 255, 0.75);
}

/* line 1679, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-signature-panel .signature-panel__meta {
  color: rgba(20, 13, 35, 0.65);
}

/* line 1683, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-signature-panel .signature-panel__meta-item {
  background: rgba(255, 255, 255, 0.12);
}

/* line 1686, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-signature-panel .signature-panel__meta-item {
  background: rgba(20, 13, 35, 0.08);
}

/* line 1692, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-signature-panel .signature-panel__body--split {
  gap: 1.5rem;
}

/* line 1696, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-signature-panel .signature-panel__form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* line 1700, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-signature-panel .signature-panel__form {
  background: rgba(20, 13, 35, 0.04);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 1705, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-signature-panel .signature-panel__form h4, .adv-quote-signature-panel .signature-panel__form .h4 {
  color: inherit;
}

/* line 1710, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-signature-panel .signature-panel__hint {
  color: rgba(255, 255, 255, 0.65);
}

/* line 1713, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-signature-panel .signature-panel__hint {
  color: rgba(20, 13, 35, 0.6);
}

/* line 1718, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-signature-panel .signature-panel__timeline h4, .adv-quote-signature-panel .signature-panel__timeline .h4 {
  color: inherit;
}

/* line 1722, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-signature-panel .signature-panel__empty {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}

/* line 1726, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-signature-panel .signature-panel__empty {
  border-color: rgba(20, 13, 35, 0.2);
  color: rgba(20, 13, 35, 0.7);
}

/* line 1731, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-signature-panel .signature-panel__empty i {
  color: rgba(255, 255, 255, 0.6);
}

/* line 1734, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-signature-panel .signature-panel__empty i {
  color: rgba(20, 13, 35, 0.5);
}

/* line 1741, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-signature-panel .signature-form__label {
  color: inherit;
  opacity: 1;
}

/* line 1746, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-signature-panel .signature-form__input,
.adv-quote-signature-panel .signature-form__textarea,
.adv-quote-signature-panel .signature-form__select {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

/* line 1753, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-signature-panel .signature-form__input, .lightmode .adv-quote-signature-panel .signature-form__textarea, .lightmode .adv-quote-signature-panel .signature-form__select {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 1760, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-signature-panel .signature-form__help {
  color: rgba(255, 255, 255, 0.6);
}

/* line 1763, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-signature-panel .signature-form__help {
  color: rgba(20, 13, 35, 0.55);
}

/* line 1768, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-signature-panel .signature-form__disabled {
  color: rgba(255, 255, 255, 0.6);
}

/* line 1771, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-signature-panel .signature-form__disabled {
  color: rgba(20, 13, 35, 0.55);
}

/* line 1776, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-signature-panel .signature-timeline__item {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.04) 55%, rgba(255, 255, 255, 0.02) 100%);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 18px;
}

/* line 1789, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-signature-panel .signature-timeline__item {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.85) 100%);
  border-color: rgba(20, 13, 35, 0.12);
  box-shadow: 0 12px 24px rgba(20, 13, 35, 0.12);
}

/* line 1801, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-signature-panel .signature-timeline__header {
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* line 1806, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-signature-panel .signature-timeline__header {
  border-bottom-color: rgba(20, 13, 35, 0.12);
}

/* line 1810, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-signature-panel .signature-timeline__header strong {
  font-size: 0.95rem;
  color: #FFFFFF;
}

/* line 1814, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-signature-panel .signature-timeline__header strong {
  color: #140D23;
}

/* line 1819, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-signature-panel .signature-timeline__header .signature-timeline__meta span {
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* line 1828, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-signature-panel .signature-timeline__header .signature-timeline__meta span {
  color: rgba(20, 13, 35, 0.65);
  background: rgba(20, 13, 35, 0.08);
}

/* line 1835, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-signature-panel .signature-participant {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 10px 14px;
}

/* line 1841, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-signature-panel .signature-participant {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.12);
}

/* line 1847, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-signature-panel .signature-timeline__audit {
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 12px;
}

/* line 1853, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-signature-panel .signature-timeline__audit {
  background: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.18);
}

/* line 1858, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-signature-panel .signature-timeline__audit strong {
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.75);
}

/* line 1863, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-signature-panel .signature-timeline__audit strong {
  color: rgba(20, 13, 35, 0.7);
}

/* line 1868, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-signature-panel .signature-timeline__audit li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

/* line 1872, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-quote-signature-panel .signature-timeline__audit li {
  color: rgba(20, 13, 35, 0.65);
}

/* line 1879, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-signature-panel--hidden {
  display: none;
}

/* line 1883, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-actions {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

/* line 1890, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-actions span {
  color: #140D23 !important;
}

/* line 1893, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.nightmode .adv-quote-contacts-actions span {
  color: #FFFFFF !important;
}

/* line 1899, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-email-form {
  margin: 0;
}

/* line 1903, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row2 {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

/* line 1911, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-quote-contacts-row2 span {
  color: #140D23 !important;
}

/* line 1914, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.nightmode .adv-quote-contacts-row2 span {
  color: #FFFFFF !important;
}

/* line 1921, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-create-contact-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(4px);
}

/* line 1934, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-create-contact-modal-overlay.d-none {
  display: none !important;
}

/* line 1939, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-create-contact-modal {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(232, 232, 232, 0.3);
}

/* line 1949, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-create-contact-modal {
  background-color: rgba(255, 255, 255, 0.98);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 1954, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.nightmode .adv-create-contact-modal {
  background-color: rgba(20, 13, 35, 0.95);
}

/* line 1959, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-create-contact-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid rgba(232, 232, 232, 0.3);
}

/* line 1966, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-create-contact-modal-header {
  border-bottom-color: rgba(20, 13, 35, 0.2);
}

/* line 1970, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-create-contact-modal-header h3, .adv-create-contact-modal-header .h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: #140D23;
}

/* line 1976, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.nightmode .adv-create-contact-modal-header h3, .nightmode .adv-create-contact-modal-header .h3 {
  color: #FFFFFF;
}

/* line 1982, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-create-contact-modal-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: rgba(20, 13, 35, 0.6);
  padding: 5px;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

/* line 1997, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.nightmode .adv-create-contact-modal-close {
  color: rgba(255, 255, 255, 0.6);
}

/* line 2001, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-create-contact-modal-close:hover {
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 2005, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.nightmode .adv-create-contact-modal-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

/* line 2012, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-create-contact-modal-body {
  padding: 25px;
}

/* line 2016, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-create-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 2022, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 2028, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-form-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #140D23;
}

/* line 2033, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.nightmode .adv-form-label {
  color: #FFFFFF;
}

/* line 2038, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-form-input {
  padding: 12px 15px;
  border: 1px solid rgba(20, 13, 35, 0.3);
  border-radius: 8px;
  font-size: 0.9rem;
  background-color: rgba(255, 255, 255, 0.8);
  color: #140D23;
  transition: all 0.3s ease;
}

/* line 2047, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.nightmode .adv-form-input {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
}

/* line 2052, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.nightmode .adv-form-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* line 2057, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-form-input:focus {
  outline: none;
  border-color: #C38761;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 2063, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.nightmode .adv-form-input:focus {
  background-color: rgba(255, 255, 255, 0.15);
}

/* line 2068, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-form-input.is-invalid {
  border-color: #e74c3c;
}

/* line 2071, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-form-input.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

/* line 2077, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-form-error {
  font-size: 0.8rem;
  color: #e74c3c;
  min-height: 18px;
}

/* line 2082, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-form-error.show {
  display: block;
}

/* line 2087, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-create-contact-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(232, 232, 232, 0.3);
}

/* line 2095, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.lightmode .adv-create-contact-modal-actions {
  border-top-color: rgba(20, 13, 35, 0.2);
}

/* line 2100, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-button-secondary {
  padding: 10px 20px;
  background-color: transparent;
  border: 1px solid rgba(20, 13, 35, 0.3);
  border-radius: 8px;
  color: #140D23;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 2111, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.nightmode .adv-button-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
}

/* line 2116, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-button-secondary:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 2119, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.nightmode .adv-button-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 2125, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-button-primary {
  padding: 10px 20px;
  background-color: #C38761;
  border: 1px solid #C38761;
  border-radius: 8px;
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 2136, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-button-primary:hover {
  background-color: #af6c42;
  border-color: #af6c42;
  transform: translateY(-1px);
}

/* line 2142, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_quote_contacts.scss */
.adv-button-primary:disabled {
  background-color: rgba(195, 135, 97, 0.5);
  border-color: rgba(195, 135, 97, 0.5);
  cursor: not-allowed;
  transform: none;
}

/* ==========================================================================
   NEW DEPOSIT INVOICE FROM QUOTE - MODULE ADV
   Structure principale et composants pour la création d'une facture d'acompte
   ========================================================================== */
/* line 6, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 1200px;
  margin: 0px auto;
  padding: 20px;
  color: #fff;
  flex: 1;
  align-self: stretch;
  height: 100%;
}

/* line 18, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-container.lightmode {
  color: #140D23;
}

/* line 23, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-header {
  text-align: center;
  margin-bottom: 10px;
}

/* line 27, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-header h2, .adv-new-deposit-invoice-header .h2 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 37, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.lightmode .adv-new-deposit-invoice-header h2, .lightmode .adv-new-deposit-invoice-header .h2 {
  color: #140D23;
  background-color: rgba(20, 13, 35, 0.05);
  border: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 45, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-row1 {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

/* line 50, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-summary-section2 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 55, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-row1 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 61, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-main-content {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: stretch;
  flex: 1;
}

/* line 69, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

/* line 76, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-row2 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
  flex: 1;
}

/* line 84, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-summary-section1 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 94, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.lightmode .adv-new-deposit-invoice-summary-section1 {
  background-color: rgba(20, 13, 35, 0.05);
  border: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 99, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-summary-section1 .adv-summary-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1 1 0;
}

/* line 107, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-summary-section1 .adv-summary-item .adv-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  display: block;
}

/* line 113, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.lightmode .adv-new-deposit-invoice-summary-section1 .adv-summary-item .adv-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 118, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-summary-section1 .adv-summary-item .adv-value {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  text-align: center;
}

/* line 125, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.lightmode .adv-new-deposit-invoice-summary-section1 .adv-summary-item .adv-value {
  color: #140D23;
}

/* line 131, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-summary-section1 .adv-summary-item.adv-summary-total-ttc .adv-value {
  color: #C38761;
  font-size: 1.2rem;
}

/* line 139, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-table-section-header {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 148, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.lightmode .adv-new-deposit-invoice-table-section-header {
  background-color: rgba(20, 13, 35, 0.05);
  border: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 153, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-table-section-header h3, .adv-new-deposit-invoice-table-section-header .h3 {
  color: #fff;
  font-size: 1rem;
}

/* line 157, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.lightmode .adv-new-deposit-invoice-table-section-header h3, .lightmode .adv-new-deposit-invoice-table-section-header .h3 {
  color: #140D23;
}

/* line 163, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-table-section {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* line 173, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.lightmode .adv-new-deposit-invoice-table-section {
  background-color: rgba(20, 13, 35, 0.05);
  border: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 178, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-table-section .adv-articles-table {
  width: 100%;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  /* Personnalisation de la barre de défilement */
}

/* line 186, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-table-section .adv-articles-table::-webkit-scrollbar {
  width: 4px;
}

/* line 190, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-table-section .adv-articles-table::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 194, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.lightmode .adv-new-deposit-invoice-table-section .adv-articles-table::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 199, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-table-section .adv-articles-table::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 204, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-table-section .adv-articles-table::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 209, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-table-section .adv-table-cell, .adv-new-deposit-invoice-table-section .adv-header-cgv, .adv-new-deposit-invoice-table-section .adv-header-quantity, .adv-new-deposit-invoice-table-section .adv-header-price-ttc, .adv-new-deposit-invoice-table-section .adv-header-price-ht, .adv-new-deposit-invoice-table-section .adv-header-discount-perc, .adv-new-deposit-invoice-table-section .adv-header-article, .adv-new-deposit-invoice-table-section .adv-show-invoice-capsule .adv-invoice-articles-section .adv-header-article, .adv-show-invoice-capsule .adv-invoice-articles-section .adv-new-deposit-invoice-table-section .adv-header-article, .adv-new-deposit-invoice-table-section .adv-show-invoice-capsule .adv-invoice-articles-section .adv-header-discount-perc, .adv-show-invoice-capsule .adv-invoice-articles-section .adv-new-deposit-invoice-table-section .adv-header-discount-perc, .adv-new-deposit-invoice-table-section .adv-show-invoice-capsule .adv-invoice-articles-section .adv-header-price-ht, .adv-show-invoice-capsule .adv-invoice-articles-section .adv-new-deposit-invoice-table-section .adv-header-price-ht, .adv-new-deposit-invoice-table-section .adv-show-invoice-capsule .adv-invoice-articles-section .adv-header-price-ttc, .adv-show-invoice-capsule .adv-invoice-articles-section .adv-new-deposit-invoice-table-section .adv-header-price-ttc, .adv-new-deposit-invoice-table-section .adv-show-invoice-capsule .adv-invoice-articles-section .adv-header-quantity, .adv-show-invoice-capsule .adv-invoice-articles-section .adv-new-deposit-invoice-table-section .adv-header-quantity, .adv-new-deposit-invoice-table-section .adv-show-invoice-capsule .adv-invoice-articles-section .adv-header-cgv, .adv-show-invoice-capsule .adv-invoice-articles-section .adv-new-deposit-invoice-table-section .adv-header-cgv, .adv-new-deposit-invoice-table-section .adv-show-invoice-capsule .adv-invoice-articles-section .adv-table-cell, .adv-show-invoice-capsule .adv-invoice-articles-section .adv-new-deposit-invoice-table-section .adv-table-cell, .adv-new-deposit-invoice-table-section .adv-credit-note-articles-section .adv-articles-table .adv-header-article, .adv-credit-note-articles-section .adv-articles-table .adv-new-deposit-invoice-table-section .adv-header-article, .adv-new-deposit-invoice-table-section .adv-credit-note-articles-section .adv-articles-table .adv-header-discount-perc, .adv-credit-note-articles-section .adv-articles-table .adv-new-deposit-invoice-table-section .adv-header-discount-perc, .adv-new-deposit-invoice-table-section .adv-credit-note-articles-section .adv-articles-table .adv-header-price-ht, .adv-credit-note-articles-section .adv-articles-table .adv-new-deposit-invoice-table-section .adv-header-price-ht, .adv-new-deposit-invoice-table-section .adv-credit-note-articles-section .adv-articles-table .adv-header-price-ttc, .adv-credit-note-articles-section .adv-articles-table .adv-new-deposit-invoice-table-section .adv-header-price-ttc, .adv-new-deposit-invoice-table-section .adv-credit-note-articles-section .adv-articles-table .adv-header-quantity, .adv-credit-note-articles-section .adv-articles-table .adv-new-deposit-invoice-table-section .adv-header-quantity, .adv-new-deposit-invoice-table-section .adv-credit-note-articles-section .adv-articles-table .adv-table-cell, .adv-credit-note-articles-section .adv-articles-table .adv-new-deposit-invoice-table-section .adv-table-cell, .adv-new-deposit-invoice-table-section .adv-show-quote-capsule .adv-quote-articles-section .adv-header-article, .adv-show-quote-capsule .adv-quote-articles-section .adv-new-deposit-invoice-table-section .adv-header-article, .adv-new-deposit-invoice-table-section .adv-show-quote-capsule .adv-quote-articles-section .adv-header-discount-perc, .adv-show-quote-capsule .adv-quote-articles-section .adv-new-deposit-invoice-table-section .adv-header-discount-perc, .adv-new-deposit-invoice-table-section .adv-show-quote-capsule .adv-quote-articles-section .adv-header-price-ht, .adv-show-quote-capsule .adv-quote-articles-section .adv-new-deposit-invoice-table-section .adv-header-price-ht, .adv-new-deposit-invoice-table-section .adv-show-quote-capsule .adv-quote-articles-section .adv-header-price-ttc, .adv-show-quote-capsule .adv-quote-articles-section .adv-new-deposit-invoice-table-section .adv-header-price-ttc, .adv-new-deposit-invoice-table-section .adv-show-quote-capsule .adv-quote-articles-section .adv-header-quantity, .adv-show-quote-capsule .adv-quote-articles-section .adv-new-deposit-invoice-table-section .adv-header-quantity, .adv-new-deposit-invoice-table-section .adv-show-quote-capsule .adv-quote-articles-section .adv-table-cell, .adv-show-quote-capsule .adv-quote-articles-section .adv-new-deposit-invoice-table-section .adv-table-cell {
  padding: 8px 12px;
  display: flex;
  align-items: center;
}

/* line 215, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-table-section .adv-articles-table-header {
  display: flex;
  background-color: rgba(255, 255, 255, 0.08);
  font-weight: 600;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* line 223, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.lightmode .adv-new-deposit-invoice-table-section .adv-articles-table-header {
  background-color: rgba(20, 13, 35, 0.08);
  color: rgba(20, 13, 35, 0.8);
  border-bottom: 1px solid rgba(20, 13, 35, 0.15);
}

/* line 230, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-table-section .adv-articles-table-body {
  min-height: 200px;
  overflow-y: hidden;
  flex: 1;
}

/* line 235, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-table-section .adv-articles-table-body .adv-articles-table-row {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

/* line 240, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-table-section .adv-articles-table-body .adv-articles-table-row:last-child {
  border-bottom: none;
}

/* line 244, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-table-section .adv-articles-table-body .adv-articles-table-row:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

/* line 248, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.lightmode .adv-new-deposit-invoice-table-section .adv-articles-table-body .adv-articles-table-row {
  border-bottom: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 251, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.lightmode .adv-new-deposit-invoice-table-section .adv-articles-table-body .adv-articles-table-row:hover {
  background-color: rgba(20, 13, 35, 0.03);
}

/* line 257, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-table-section .adv-articles-table-body.adv-no-articles-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

/* line 264, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-table-section .adv-articles-table-body .adv-no-articles-message {
  text-align: center;
  padding: 2rem 15px;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  font-size: 0.85rem;
}

/* line 271, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.lightmode .adv-new-deposit-invoice-table-section .adv-articles-table-body .adv-no-articles-message {
  color: rgba(20, 13, 35, 0.6);
}

/* line 277, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-table-section .adv-header-article {
  width: 30%;
  justify-content: flex-start;
}

/* line 282, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-table-section .adv-header-discount-perc {
  width: 12%;
  justify-content: center;
}

/* line 287, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-table-section .adv-header-price-ht {
  width: 16%;
  justify-content: center;
}

/* line 292, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-table-section .adv-header-price-ttc {
  width: 16%;
  justify-content: center;
}

/* line 297, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-table-section .adv-header-quantity {
  width: 10%;
  justify-content: center;
}

/* line 302, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-table-section .adv-header-cgv {
  width: 16%;
  justify-content: center;
}

/* line 308, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-table-section .adv-table-cell {
  color: #fff;
  font-size: 0.8rem;
}

/* line 313, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.lightmode .adv-new-deposit-invoice-table-section .adv-table-cell {
  color: #140D23;
}

/* line 318, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-table-section .adv-cell-article {
  width: 30%;
  justify-content: flex-start;
}

/* line 322, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-table-section .adv-cell-discount-perc {
  width: 12%;
  justify-content: center;
}

/* line 326, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-table-section .adv-cell-price-ht {
  width: 16%;
  justify-content: center;
}

/* line 330, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-table-section .adv-cell-price-ttc {
  width: 16%;
  justify-content: center;
}

/* line 334, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-table-section .adv-cell-quantity {
  width: 10%;
  justify-content: center;
}

/* line 338, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-table-section .adv-cell-cgv {
  width: 16%;
  justify-content: center;
}

/* line 344, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-summary-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 354, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.lightmode .adv-new-deposit-invoice-summary-section {
  background-color: rgba(20, 13, 35, 0.05);
  border: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 359, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-summary-section .adv-summary-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1 1 0;
}

/* line 367, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-summary-section .adv-summary-item .adv-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  display: block;
}

/* line 373, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.lightmode .adv-new-deposit-invoice-summary-section .adv-summary-item .adv-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 378, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-summary-section .adv-summary-item .adv-value {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  text-align: center;
}

/* line 385, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.lightmode .adv-new-deposit-invoice-summary-section .adv-summary-item .adv-value {
  color: #140D23;
}

/* line 391, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-summary-section .adv-summary-item.adv-summary-total-ttc .adv-value {
  color: #C38761;
  font-size: 1.2rem;
}

/* line 399, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-info-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 409, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.lightmode .adv-new-deposit-invoice-info-section {
  background-color: rgba(20, 13, 35, 0.05);
  border: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 414, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-info-section .adv-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1 1 0;
}

/* line 422, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-info-section .adv-info-item .adv-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  display: block;
}

/* line 428, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.lightmode .adv-new-deposit-invoice-info-section .adv-info-item .adv-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 433, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-info-section .adv-info-item .adv-value {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  text-align: center;
}

/* line 440, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.lightmode .adv-new-deposit-invoice-info-section .adv-info-item .adv-value {
  color: #140D23;
}

/* line 447, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-form {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex: 1;
  justify-content: space-between;
}

/* line 458, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.lightmode .adv-new-deposit-invoice-form {
  background-color: rgba(20, 13, 35, 0.05);
  border: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 463, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-form .adv-new-deposit-invoice-form-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

/* line 469, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-form .adv-new-deposit-invoice-form-content .adv-deposit-input-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 400px;
}

/* line 477, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-form .adv-new-deposit-invoice-form-content .adv-deposit-input-section .adv-deposit-label {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  opacity: 1;
  text-transform: none;
}

/* line 485, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.lightmode .adv-new-deposit-invoice-form .adv-new-deposit-invoice-form-content .adv-deposit-input-section .adv-deposit-label {
  color: rgba(20, 13, 35, 0.8) !important;
}

/* line 490, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-form .adv-new-deposit-invoice-form-content .adv-deposit-input-section .adv-deposit-input {
  width: 100px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  text-align: center;
}

/* line 500, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-form .adv-new-deposit-invoice-form-content .adv-deposit-input-section .adv-deposit-input:focus {
  outline: none;
  border-color: #C38761;
  background-color: rgba(255, 255, 255, 0.15);
}

/* line 506, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-form .adv-new-deposit-invoice-form-content .adv-deposit-input-section .adv-deposit-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 510, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.lightmode .adv-new-deposit-invoice-form .adv-new-deposit-invoice-form-content .adv-deposit-input-section .adv-deposit-input {
  border: 1px solid rgba(20, 13, 35, 0.3);
  background-color: rgba(20, 13, 35, 0.05);
  color: #140D23;
}

/* line 515, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.lightmode .adv-new-deposit-invoice-form .adv-new-deposit-invoice-form-content .adv-deposit-input-section .adv-deposit-input:focus {
  border-color: #C38761;
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 520, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.lightmode .adv-new-deposit-invoice-form .adv-new-deposit-invoice-form-content .adv-deposit-input-section .adv-deposit-input::placeholder {
  color: rgba(20, 13, 35, 0.5);
}

/* line 526, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-form .adv-new-deposit-invoice-form-content .adv-deposit-input-section .adv-deposit-unit {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-left: 5px;
}

/* line 531, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.lightmode .adv-new-deposit-invoice-form .adv-new-deposit-invoice-form-content .adv-deposit-input-section .adv-deposit-unit {
  color: rgba(20, 13, 35, 0.7);
}

/* line 537, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-form .adv-new-deposit-invoice-form-content .adv-deposit-calculation-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 400px;
}

/* line 544, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-form .adv-new-deposit-invoice-form-content .adv-deposit-calculation-section .adv-discount-display {
  text-align: center;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

/* line 552, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.lightmode .adv-new-deposit-invoice-form .adv-new-deposit-invoice-form-content .adv-deposit-calculation-section .adv-discount-display {
  background-color: rgba(20, 13, 35, 0.05);
  border: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 557, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-form .adv-new-deposit-invoice-form-content .adv-deposit-calculation-section .adv-discount-display p {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

/* line 563, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.lightmode .adv-new-deposit-invoice-form .adv-new-deposit-invoice-form-content .adv-deposit-calculation-section .adv-discount-display p {
  color: #140D23;
}

/* line 568, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-form .adv-new-deposit-invoice-form-content .adv-deposit-calculation-section .adv-discount-display.adv-discount-display-ttc {
  border: 1px solid rgba(195, 135, 97, 0.3);
  background-color: rgba(195, 135, 97, 0.1);
}

/* line 572, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-form .adv-new-deposit-invoice-form-content .adv-deposit-calculation-section .adv-discount-display.adv-discount-display-ttc p {
  color: #C38761;
  font-size: 1.1rem;
  font-weight: 600;
}

/* line 578, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.lightmode .adv-new-deposit-invoice-form .adv-new-deposit-invoice-form-content .adv-deposit-calculation-section .adv-discount-display.adv-discount-display-ttc {
  border: 1px solid rgba(195, 135, 97, 0.4);
  background-color: rgba(195, 135, 97, 0.1);
}

/* line 582, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.lightmode .adv-new-deposit-invoice-form .adv-new-deposit-invoice-form-content .adv-deposit-calculation-section .adv-discount-display.adv-discount-display-ttc p {
  color: #af6c42;
}

/* line 591, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-form .adv-deposit-input-section-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

/* line 598, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-form .adv-new-deposit-invoice-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 0;
}

/* line 604, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-form .adv-new-deposit-invoice-actions .adv-action-button {
  padding: 12px 25px;
  border-radius: 20px;
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* line 619, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-form .adv-new-deposit-invoice-actions .adv-action-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

/* line 624, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-form .adv-new-deposit-invoice-actions .adv-action-button.adv-action-button-primary {
  background-color: #C38761;
  border-color: #C38761;
  color: #140D23;
}

/* line 629, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-form .adv-new-deposit-invoice-actions .adv-action-button.adv-action-button-primary:hover {
  background-color: #af6c42;
}

/* line 634, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-form .adv-new-deposit-invoice-actions .adv-action-button.adv-action-button-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

/* line 639, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-form .adv-new-deposit-invoice-actions .adv-action-button.adv-action-button-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 643, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.lightmode .adv-new-deposit-invoice-form .adv-new-deposit-invoice-actions .adv-action-button.adv-action-button-secondary {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 648, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.lightmode .adv-new-deposit-invoice-form .adv-new-deposit-invoice-actions .adv-action-button.adv-action-button-secondary:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* Responsive design */
@media (max-width: 768px) {
  /* line 659, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
  .adv-new-deposit-invoice-container {
    padding: 15px;
  }
  /* line 663, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
  .adv-new-deposit-invoice-summary-section1 {
    flex-direction: column;
    gap: 1rem;
  }
  /* line 668, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
  .adv-new-deposit-invoice-info-section {
    flex-direction: column;
    gap: 1rem;
  }
  /* line 673, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
  .adv-new-deposit-invoice-actions {
    flex-direction: column;
  }
  /* line 676, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
  .adv-new-deposit-invoice-actions .adv-action-button {
    width: 100%;
    justify-content: center;
  }
}

/* Modes de couleur hérités - Compatibilité avec l'ancien code */
/* line 685, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-container p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 691, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-container span {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 697, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-container.lightmode span {
  color: #140D23;
}

/* line 701, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-container.nightmode span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 705, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-container.lightmode p {
  color: #140D23;
}

/* line 709, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-container.nightmode p {
  color: #FFFFFF;
}

/* line 713, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-container.lightmode i {
  color: #140D23;
}

/* line 717, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_new_deposit_invoice_form_quote.scss */
.adv-new-deposit-invoice-container.nightmode i {
  color: #FFFFFF;
}

/* line 1, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-capsule {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 10px 20px 10px 20px;
  font-size: 0.8rem;
  gap: 10px;
}

/* line 12, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-capsule.lightmode {
  color: #140D23;
}

/* line 14, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-capsule.lightmode .discount-input {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 18, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-capsule.lightmode .price-input {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 22, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-capsule.lightmode .price-ttc-container {
  color: #140D23;
}

/* line 25, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-capsule.lightmode .edit-quote-transaction-choice {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 29, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-capsule.lightmode .search-input {
  border-color: transparent !important;
}

/* line 31, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-capsule.lightmode .search-input:focus {
  border-color: transparent !important;
  box-shadow: none !important;
}

/* line 36, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-capsule.lightmode .recipient-choice {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 40, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-capsule.lightmode #publicMarket {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 44, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-capsule.lightmode #privateMarket {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 50, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-capsule .form-group {
  margin: 0;
}

/* line 54, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-capsule form {
  display: flex !important;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  align-items: center;
  height: 100%;
}

/* Card de Configuration */
/* line 65, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-configuration-card {
  width: 100%;
  max-width: 1400px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

/* line 77, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-configuration-card {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.08) 0%, rgba(20, 13, 35, 0.03) 100%);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 83, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-config-header {
  text-align: center;
  margin-bottom: 30px;
}

/* line 87, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-config-header h2, .adv-edit-quote-config-header .h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

/* line 93, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-config-header h2, .lightmode .adv-edit-quote-config-header .h2 {
  color: #140D23;
}

/* line 98, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-config-header p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 102, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-config-header p {
  color: rgba(20, 13, 35, 0.7);
}

/* line 108, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-config-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* line 114, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-config-section {
  width: 100%;
}

/* line 118, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-config-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 124, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-config-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 129, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-config-label i {
  font-size: 1.1rem;
  color: #C38761;
}

/* line 134, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-config-label h3, .adv-edit-quote-config-label .h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
}

/* line 140, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-config-label h3, .lightmode .adv-edit-quote-config-label .h3 {
  color: #140D23;
}

/* line 146, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-config-select {
  width: auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  color: #FFFFFF;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

/* line 156, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-config-select {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 162, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-config-select:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 168, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-config-select option {
  background: #140D23;
  color: #FFFFFF;
}

/* Sélecteur de type de transaction */
/* line 175, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-transaction-selector {
  display: flex;
  gap: 12px;
}

/* line 179, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-transaction-selector .edit-quote-transaction-choice {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 195, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-transaction-selector .edit-quote-transaction-choice {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 201, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-transaction-selector .edit-quote-transaction-choice i {
  font-size: 1rem;
  color: #C38761;
}

/* line 206, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-transaction-selector .edit-quote-transaction-choice:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

/* line 211, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-transaction-selector .edit-quote-transaction-choice:hover {
  background: rgba(20, 13, 35, 0.12);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 217, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-transaction-selector .edit-quote-transaction-choice.selected {
  background: #C38761;
  border-color: #C38761;
  color: #140D23;
}

/* line 222, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-transaction-selector .edit-quote-transaction-choice.selected i {
  color: #140D23;
}

/* Contenu des transactions */
/* line 230, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-transaction-content {
  margin-top: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
}

/* line 237, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-transaction-content {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 243, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-transaction-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

/* line 251, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-transaction-info {
  background: rgba(20, 13, 35, 0.08);
}

/* line 255, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-transaction-info i {
  color: #C38761;
  font-size: 1.1rem;
}

/* line 260, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-transaction-info span {
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 500;
}

/* line 265, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-transaction-info span {
  color: #140D23;
}

/* line 272, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-document-search h4, .adv-edit-quote-document-search .h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 15px;
}

/* line 278, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-document-search h4, .lightmode .adv-edit-quote-document-search .h4 {
  color: #140D23;
}

/* line 283, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-document-search .search-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* line 289, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-document-search .form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 295, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-document-search .filter {
  width: auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  color: #FFFFFF;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

/* line 305, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-document-search .filter {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 311, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-document-search .filter:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 317, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-document-search .filter option {
  background: #140D23;
  color: #FFFFFF;
}

/* Styles pour la recherche d'articles */
/* line 325, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-search-filters {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

/* line 332, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-filter-group {
  display: flex;
  gap: 12px;
  width: 100%;
}

@media (max-width: 768px) {
  /* line 332, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
  .adv-edit-quote-filter-group {
    flex-direction: column;
  }
}

/* line 342, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-search-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* line 348, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-search-input {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 354, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-search-input .search-form {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

/* line 361, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-search-input i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  z-index: 2;
}

/* line 370, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-search-input i {
  color: rgba(20, 13, 35, 0.6);
}

/* line 375, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-search-input button {
  all: unset;
  padding: 8px 12px;
  background: #C38761;
  border-radius: 8px;
  color: #140D23;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 384, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-search-input button:hover {
  background: #864B28;
  transform: scale(1.05);
}

/* line 389, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-search-input button i {
  position: static;
  transform: none;
  color: #140D23;
}

/* Utilise maintenant la classe générique adv-searchbar */
/* Styles pour le tableau d'articles */
/* line 400, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-articles-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 407, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-articles-table {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
}

/* line 414, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-articles-table {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 420, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-articles-table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 1px;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.1);
}

/* line 427, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-articles-table-header {
  background: rgba(20, 13, 35, 0.1);
}

/* line 432, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-table-cell {
  padding: 12px 8px;
  font-size: 0.8rem;
  font-weight: 600;
  width: 100%;
  text-align: center;
  color: #FFFFFF;
}

/* line 440, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-table-cell {
  color: #140D23;
}

/* line 444, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-table-cell.adv-header-article {
  text-align: left;
  padding-left: 16px;
}

/* line 451, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-articles-table-body .entry {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

/* line 458, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-articles-table-body .entry {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 462, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-articles-table-body .entry:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* line 465, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-articles-table-body .entry:hover {
  background: rgba(20, 13, 35, 0.05);
}

/* line 470, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-articles-table-body .entry.new-entry {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
}

/* line 474, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-articles-table-body .entry.new-entry {
  color: rgba(20, 13, 35, 0.6);
}

/* line 478, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-articles-table-body .entry.new-entry:hover {
  background: rgba(195, 135, 97, 0.1);
  color: #C38761;
}

/* line 482, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-articles-table-body .entry.new-entry:hover {
  background: rgba(195, 135, 97, 0.1);
  color: #C38761;
}

/* line 489, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-articles-table-body .entry > div {
  padding: 12px 8px;
  font-size: 0.8rem;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 498, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-articles-table-body .entry > div.adv-edit-quote-row1-subrow4-list-column-article {
  text-align: left;
  padding-left: 16px;
  justify-content: flex-start;
  white-space: nowrap;
}

/* Styles pour la section des totaux - récupérés de _quote.scss */
/* line 509, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-quote-total-section {
  display: flex;
  justify-content: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

/* line 516, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-quote-total-section {
  background: rgba(20, 13, 35, 0.05);
}

/* line 521, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-quote-total-amount {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
}

/* line 528, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-quote-total-amount .adv-label {
  color: rgba(255, 255, 255, 0.8);
}

/* line 531, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-quote-total-amount .adv-label {
  color: rgba(20, 13, 35, 0.8);
}

/* line 536, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-quote-total-amount .adv-value {
  color: #C38761;
  font-size: 1.1rem;
}

/* line 540, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-quote-total-amount .adv-value {
  color: #C38761;
}

/* Styles pour les entrées du tableau (articles ajoutés) */
/* line 547, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.entry {
  width: 100%;
  padding: 10px;
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 553, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.entry:last-child {
  border-bottom: none;
}

/* line 557, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .entry {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 561, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.entry.new-entry {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
}

/* line 568, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .entry.new-entry {
  background-color: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 573, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.entry.new-entry:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.5);
}

/* line 577, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .entry.new-entry:hover {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 583, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.entry.new-entry .adv-edit-quote-row1-subrow4-list-column-article {
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
}

/* line 587, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .entry.new-entry .adv-edit-quote-row1-subrow4-list-column-article {
  color: rgba(20, 13, 35, 0.7);
}

/* line 592, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.entry.new-entry .actions-container {
  color: #C38761;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 599, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.entry.new-entry .actions-container i {
  color: #C38761;
  font-size: 1.2rem;
  transition: all 0.2s ease;
}

/* line 604, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.entry.new-entry .actions-container i:hover {
  color: #864B28;
  transform: scale(1.1);
}

/* line 610, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.entry.new-entry .actions-container:hover {
  transform: scale(1.05);
}

/* line 616, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.entry .quantity-input {
  all: unset;
  width: 70%;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 630, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .entry .quantity-input {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 635, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.entry .quantity-input:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 639, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .entry .quantity-input:focus {
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 646, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.entry .discount-input {
  all: unset;
  width: 10%;
  display: flex;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 661, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .entry .discount-input {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 666, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.entry .discount-input:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 670, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .entry .discount-input:focus {
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 677, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.entry .article-input {
  all: unset;
  width: 50%;
  display: flex;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 692, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .entry .article-input {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 697, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.entry .article-input:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 701, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .entry .article-input:focus {
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 708, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.entry .price-input {
  width: 80px;
  min-width: 60px;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
  text-align: center;
  -moz-appearance: textfield;
  /* Masquer les flèches du input number pour permettre la saisie libre */
}

/* line 722, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.entry .price-input::-webkit-outer-spin-button, .entry .price-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* line 728, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.entry .price-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 732, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .entry .price-input {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 736, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .entry .price-input::placeholder {
  color: rgba(20, 13, 35, 0.4);
}

/* line 741, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.entry .price-input:focus {
  outline: none;
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 746, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .entry .price-input:focus {
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 754, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.results {
  min-height: 50px;
  max-height: 200px;
  overflow-y: auto;
  width: 100%;
  /* Personnalisation de la barre de défilement */
}

/* line 761, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.results::-webkit-scrollbar {
  width: 5px;
}

/* line 765, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.results::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 770, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.results::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
  border: 4px solid #e8e8e8;
}

/* line 776, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.results::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 781, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.search-results-articles {
  display: flex;
  min-height: 30px;
  width: 98% !important;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 5px;
  border-radius: 0.375rem;
  flex-wrap: nowrap;
}

/* line 792, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.search-results-articles label {
  opacity: 1;
}

/* line 796, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.search-results-articles .articles {
  font-size: 0.7rem !important;
  margin: 0;
  cursor: pointer;
  font-weight: normal !important;
}

/* line 801, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.search-results-articles .articles p {
  color: #FFFFFF !important;
}

/* line 804, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .search-results-articles .articles p {
  color: #140D23 !important;
}

/* line 810, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.search-results-articles:hover {
  background-color: rgba(255, 255, 255, 0.5);
  transition: transform 0.3s ease;
}

/* line 814, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .search-results-articles:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 820, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
select {
  all: unset;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: normal;
  padding: 5px 15px;
}

/* line 833, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode select {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 838, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
select:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 842, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode select:focus {
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 848, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
select option {
  all: unset;
  background-color: #E8E8E8;
  color: #000000;
}

/* line 855, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.trash {
  cursor: pointer;
  font-size: 0.8rem;
}

/* line 858, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.trash:hover {
  color: #A60240;
}

/* Boutons d'actions */
/* line 864, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-row2 {
  width: 80%;
  height: 7.5%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  /* Styles spécifiques pour les boutons d'actions avec pictogrammes */
}

/* line 874, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-row2 form {
  display: flex !important;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  align-items: center;
  height: 100%;
}

/* line 884, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-row2 .form-button, .adv-edit-quote-row2 .crm-action-button, .adv-edit-quote-row2 .users-management-container .users-header .add-user-btn, .users-management-container .users-header .adv-edit-quote-row2 .add-user-btn {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: #C18859;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  /* Style pour le bouton d'abandon (danger) */
  /* Style pour le bouton retour (secondary) */
  /* Adaptation pour le mode clair */
}

/* line 899, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-row2 .form-button:hover, .adv-edit-quote-row2 .crm-action-button:hover, .adv-edit-quote-row2 .users-management-container .users-header .add-user-btn:hover, .users-management-container .users-header .adv-edit-quote-row2 .add-user-btn:hover {
  background-color: #a67548;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* line 905, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-row2 .form-button i, .adv-edit-quote-row2 .crm-action-button i, .adv-edit-quote-row2 .users-management-container .users-header .add-user-btn i, .users-management-container .users-header .adv-edit-quote-row2 .add-user-btn i {
  font-size: 0.9rem;
  color: white;
}

/* line 911, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-row2 .form-button[data-confirm], .adv-edit-quote-row2 .crm-action-button[data-confirm], .adv-edit-quote-row2 .users-management-container .users-header .add-user-btn[data-confirm], .users-management-container .users-header .adv-edit-quote-row2 .add-user-btn[data-confirm] {
  background-color: rgba(231, 76, 60, 0.8);
  border-color: rgba(231, 76, 60, 0.5);
}

/* line 915, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-row2 .form-button[data-confirm]:hover, .adv-edit-quote-row2 .crm-action-button[data-confirm]:hover, .adv-edit-quote-row2 .users-management-container .users-header .add-user-btn[data-confirm]:hover, .users-management-container .users-header .adv-edit-quote-row2 .add-user-btn[data-confirm]:hover {
  background-color: #e74c3c;
}

/* line 921, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-row2 .form-button[href*="show_quote"], .adv-edit-quote-row2 .crm-action-button[href*="show_quote"], .adv-edit-quote-row2 .users-management-container .users-header .add-user-btn[href*="show_quote"], .users-management-container .users-header .adv-edit-quote-row2 .add-user-btn[href*="show_quote"] {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

/* line 925, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-row2 .form-button[href*="show_quote"]:hover, .adv-edit-quote-row2 .crm-action-button[href*="show_quote"]:hover, .adv-edit-quote-row2 .users-management-container .users-header .add-user-btn[href*="show_quote"]:hover, .users-management-container .users-header .adv-edit-quote-row2 .add-user-btn[href*="show_quote"]:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 931, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-row2 .form-button, .lightmode .adv-edit-quote-row2 .crm-action-button, .lightmode .adv-edit-quote-row2 .users-management-container .users-header .add-user-btn, .users-management-container .users-header .lightmode .adv-edit-quote-row2 .add-user-btn {
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 935, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-row2 .form-button:hover, .lightmode .adv-edit-quote-row2 .crm-action-button:hover, .lightmode .adv-edit-quote-row2 .users-management-container .users-header .add-user-btn:hover, .users-management-container .users-header .lightmode .adv-edit-quote-row2 .add-user-btn:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 939, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-row2 .form-button[data-confirm], .lightmode .adv-edit-quote-row2 .crm-action-button[data-confirm], .lightmode .adv-edit-quote-row2 .users-management-container .users-header .add-user-btn[data-confirm], .users-management-container .users-header .lightmode .adv-edit-quote-row2 .add-user-btn[data-confirm] {
  background-color: rgba(231, 76, 60, 0.1);
  border-color: rgba(231, 76, 60, 0.3);
  color: #a82315;
}

/* line 944, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-row2 .form-button[data-confirm]:hover, .lightmode .adv-edit-quote-row2 .crm-action-button[data-confirm]:hover, .lightmode .adv-edit-quote-row2 .users-management-container .users-header .add-user-btn[data-confirm]:hover, .users-management-container .users-header .lightmode .adv-edit-quote-row2 .add-user-btn[data-confirm]:hover {
  background-color: rgba(231, 76, 60, 0.2);
}

/* line 949, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-row2 .form-button[href*="show_quote"], .lightmode .adv-edit-quote-row2 .crm-action-button[href*="show_quote"], .lightmode .adv-edit-quote-row2 .users-management-container .users-header .add-user-btn[href*="show_quote"], .users-management-container .users-header .lightmode .adv-edit-quote-row2 .add-user-btn[href*="show_quote"] {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 953, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-row2 .form-button[href*="show_quote"]:hover, .lightmode .adv-edit-quote-row2 .crm-action-button[href*="show_quote"]:hover, .lightmode .adv-edit-quote-row2 .users-management-container .users-header .add-user-btn[href*="show_quote"]:hover, .users-management-container .users-header .lightmode .adv-edit-quote-row2 .add-user-btn[href*="show_quote"]:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* line 961, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.userChoice {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 15px;
}

/* line 968, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.userChoice .item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* line 982, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .userChoice .item {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.1) 0%, rgba(20, 13, 35, 0.05) 100%);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 987, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.userChoice .item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  border-color: rgba(232, 232, 232, 0.6);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

/* line 993, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .userChoice .item:hover {
  border-color: rgba(20, 13, 35, 0.4);
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.15) 0%, rgba(20, 13, 35, 0.08) 100%);
}

/* line 999, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.userChoice .item .item-header {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-grow: 1;
}

/* line 1005, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.userChoice .item .item-header i {
  color: green;
  font-size: 1rem;
  padding: 8px;
  background-color: rgba(195, 135, 97, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* line 1014, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.userChoice .item .item-header p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-color-primary);
  line-height: 1.4;
  transition: color 0.3s ease;
}

/* line 1022, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .userChoice .item .item-header p {
  color: #140D23;
}

/* line 1029, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.userChoice .item:hover .item-header i {
  color: #864B28;
  background-color: rgba(134, 75, 40, 0.15);
  transform: scale(1.1);
}

/* line 1035, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.userChoice .item:hover .item-header p {
  color: #FFFFFF;
}

/* line 1038, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .userChoice .item:hover .item-header p {
  color: #140D23;
}

/* line 1046, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.recipient-choice-container, .recipient-search {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px;
}

/* line 1055, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.type-of-order-search {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
}

/* line 1063, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-market-type-selector {
  display: flex;
  gap: 12px;
}

/* line 1067, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-market-type-selector .adv-edit-quote-market-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 1083, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-market-type-selector .adv-edit-quote-market-option {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 1089, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-market-type-selector .adv-edit-quote-market-option i {
  font-size: 1rem;
  color: #C38761;
}

/* line 1094, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-market-type-selector .adv-edit-quote-market-option:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

/* line 1099, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-market-type-selector .adv-edit-quote-market-option:hover {
  background: rgba(20, 13, 35, 0.12);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 1105, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-market-type-selector .adv-edit-quote-market-option.selected {
  background: #C38761;
  border-color: #C38761;
  color: #140D23;
}

/* line 1110, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-market-type-selector .adv-edit-quote-market-option.selected i {
  color: #140D23;
}

/* ==========================================================================
   GLOBAL DISCOUNT QUOTE - MODULE ADV
   Structure principale et composants pour l'application d'une remise globale
   ========================================================================== */
/* line 6, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1200px;
  margin: 0px auto;
  padding: 20px;
  color: #fff;
}

/* line 15, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-container.lightmode {
  color: #140D23;
}

/* line 20, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-header {
  text-align: center;
  margin-bottom: 20px;
}

/* line 24, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-header h2, .adv-global-discount-quote-header .h2 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
}

/* line 33, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.lightmode .adv-global-discount-quote-header h2, .lightmode .adv-global-discount-quote-header .h2 {
  color: #140D23;
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 39, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-row1 {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

/* line 44, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 50, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  overflow: hidden;
}

/* line 56, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.lightmode .adv-global-discount-quote-table-section {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 60, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-articles-table {
  width: 100%;
  overflow-y: auto;
  max-height: 400px;
  /* Personnalisation de la barre de défilement */
}

/* line 66, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-articles-table::-webkit-scrollbar {
  width: 4px;
}

/* line 70, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-articles-table::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 75, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-articles-table::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 80, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-articles-table::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 85, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-table-cell, .adv-global-discount-quote-table-section .adv-header-cgv, .adv-global-discount-quote-table-section .adv-header-quantity, .adv-global-discount-quote-table-section .adv-header-price-ttc, .adv-global-discount-quote-table-section .adv-header-price-ht, .adv-global-discount-quote-table-section .adv-header-discount-perc, .adv-global-discount-quote-table-section .adv-header-article, .adv-global-discount-quote-table-section .adv-show-invoice-capsule .adv-invoice-articles-section .adv-header-article, .adv-show-invoice-capsule .adv-invoice-articles-section .adv-global-discount-quote-table-section .adv-header-article, .adv-global-discount-quote-table-section .adv-show-invoice-capsule .adv-invoice-articles-section .adv-header-discount-perc, .adv-show-invoice-capsule .adv-invoice-articles-section .adv-global-discount-quote-table-section .adv-header-discount-perc, .adv-global-discount-quote-table-section .adv-show-invoice-capsule .adv-invoice-articles-section .adv-header-price-ht, .adv-show-invoice-capsule .adv-invoice-articles-section .adv-global-discount-quote-table-section .adv-header-price-ht, .adv-global-discount-quote-table-section .adv-show-invoice-capsule .adv-invoice-articles-section .adv-header-price-ttc, .adv-show-invoice-capsule .adv-invoice-articles-section .adv-global-discount-quote-table-section .adv-header-price-ttc, .adv-global-discount-quote-table-section .adv-show-invoice-capsule .adv-invoice-articles-section .adv-header-quantity, .adv-show-invoice-capsule .adv-invoice-articles-section .adv-global-discount-quote-table-section .adv-header-quantity, .adv-global-discount-quote-table-section .adv-show-invoice-capsule .adv-invoice-articles-section .adv-header-cgv, .adv-show-invoice-capsule .adv-invoice-articles-section .adv-global-discount-quote-table-section .adv-header-cgv, .adv-global-discount-quote-table-section .adv-show-invoice-capsule .adv-invoice-articles-section .adv-table-cell, .adv-show-invoice-capsule .adv-invoice-articles-section .adv-global-discount-quote-table-section .adv-table-cell, .adv-global-discount-quote-table-section .adv-credit-note-articles-section .adv-articles-table .adv-header-article, .adv-credit-note-articles-section .adv-articles-table .adv-global-discount-quote-table-section .adv-header-article, .adv-global-discount-quote-table-section .adv-credit-note-articles-section .adv-articles-table .adv-header-discount-perc, .adv-credit-note-articles-section .adv-articles-table .adv-global-discount-quote-table-section .adv-header-discount-perc, .adv-global-discount-quote-table-section .adv-credit-note-articles-section .adv-articles-table .adv-header-price-ht, .adv-credit-note-articles-section .adv-articles-table .adv-global-discount-quote-table-section .adv-header-price-ht, .adv-global-discount-quote-table-section .adv-credit-note-articles-section .adv-articles-table .adv-header-price-ttc, .adv-credit-note-articles-section .adv-articles-table .adv-global-discount-quote-table-section .adv-header-price-ttc, .adv-global-discount-quote-table-section .adv-credit-note-articles-section .adv-articles-table .adv-header-quantity, .adv-credit-note-articles-section .adv-articles-table .adv-global-discount-quote-table-section .adv-header-quantity, .adv-global-discount-quote-table-section .adv-credit-note-articles-section .adv-articles-table .adv-table-cell, .adv-credit-note-articles-section .adv-articles-table .adv-global-discount-quote-table-section .adv-table-cell, .adv-global-discount-quote-table-section .adv-show-quote-capsule .adv-quote-articles-section .adv-header-article, .adv-show-quote-capsule .adv-quote-articles-section .adv-global-discount-quote-table-section .adv-header-article, .adv-global-discount-quote-table-section .adv-show-quote-capsule .adv-quote-articles-section .adv-header-discount-perc, .adv-show-quote-capsule .adv-quote-articles-section .adv-global-discount-quote-table-section .adv-header-discount-perc, .adv-global-discount-quote-table-section .adv-show-quote-capsule .adv-quote-articles-section .adv-header-price-ht, .adv-show-quote-capsule .adv-quote-articles-section .adv-global-discount-quote-table-section .adv-header-price-ht, .adv-global-discount-quote-table-section .adv-show-quote-capsule .adv-quote-articles-section .adv-header-price-ttc, .adv-show-quote-capsule .adv-quote-articles-section .adv-global-discount-quote-table-section .adv-header-price-ttc, .adv-global-discount-quote-table-section .adv-show-quote-capsule .adv-quote-articles-section .adv-header-quantity, .adv-show-quote-capsule .adv-quote-articles-section .adv-global-discount-quote-table-section .adv-header-quantity, .adv-global-discount-quote-table-section .adv-show-quote-capsule .adv-quote-articles-section .adv-table-cell, .adv-show-quote-capsule .adv-quote-articles-section .adv-global-discount-quote-table-section .adv-table-cell {
  padding: 8px 12px;
  display: flex;
  align-items: center;
}

/* line 91, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-articles-table-header {
  display: flex;
  background-color: rgba(255, 255, 255, 0.08);
  font-weight: 600;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* line 99, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.lightmode .adv-global-discount-quote-table-section .adv-articles-table-header {
  background-color: rgba(20, 13, 35, 0.08);
  color: rgba(20, 13, 35, 0.8);
  border-bottom: 1px solid rgba(20, 13, 35, 0.15);
}

/* line 106, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-articles-table-body {
  min-height: 200px;
  overflow-y: hidden;
}

/* line 110, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-articles-table-body .adv-articles-table-row {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

/* line 115, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-articles-table-body .adv-articles-table-row:last-child {
  border-bottom: none;
}

/* line 119, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-articles-table-body .adv-articles-table-row:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

/* line 123, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.lightmode .adv-global-discount-quote-table-section .adv-articles-table-body .adv-articles-table-row {
  border-bottom: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 126, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.lightmode .adv-global-discount-quote-table-section .adv-articles-table-body .adv-articles-table-row:hover {
  background-color: rgba(20, 13, 35, 0.03);
}

/* line 132, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-articles-table-body.adv-no-articles-container {
  text-align: center;
  padding: 2rem 15px;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  font-size: 0.85rem;
}

/* line 139, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.lightmode .adv-global-discount-quote-table-section .adv-articles-table-body.adv-no-articles-container {
  color: rgba(20, 13, 35, 0.6);
}

/* line 145, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-header-article {
  width: 30%;
  justify-content: flex-start;
}

/* line 150, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-header-discount-perc {
  width: 12%;
  justify-content: center;
}

/* line 155, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-header-price-ht {
  width: 16%;
  justify-content: center;
}

/* line 160, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-header-price-ttc {
  width: 16%;
  justify-content: center;
}

/* line 165, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-header-quantity {
  width: 10%;
  justify-content: center;
}

/* line 170, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-header-cgv {
  width: 16%;
  justify-content: center;
}

/* line 176, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-table-cell {
  color: #fff;
  font-size: 0.8rem;
}

/* line 181, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.lightmode .adv-global-discount-quote-table-section .adv-table-cell {
  color: #140D23;
}

/* line 186, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-cell-article {
  width: 30%;
  justify-content: flex-start;
}

/* line 190, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-cell-discount-perc {
  width: 12%;
  justify-content: center;
}

/* line 194, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-cell-price-ht {
  width: 16%;
  justify-content: center;
}

/* line 198, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-cell-price-ttc {
  width: 16%;
  justify-content: center;
}

/* line 202, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-cell-quantity {
  width: 10%;
  justify-content: center;
}

/* line 206, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-cell-cgv {
  width: 16%;
  justify-content: center;
}

/* line 212, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-summary-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
}

/* line 221, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.lightmode .adv-global-discount-quote-summary-section {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 225, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-summary-section .adv-summary-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1 1 0;
}

/* line 233, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-summary-section .adv-summary-item .adv-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  display: block;
}

/* line 239, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.lightmode .adv-global-discount-quote-summary-section .adv-summary-item .adv-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 244, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-summary-section .adv-summary-item .adv-value {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  text-align: center;
}

/* line 251, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.lightmode .adv-global-discount-quote-summary-section .adv-summary-item .adv-value {
  color: #140D23;
}

/* line 257, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-summary-section .adv-summary-item.adv-summary-total-ttc .adv-value {
  color: #C38761;
  font-size: 1.2rem;
}

/* line 265, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-form {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 273, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.lightmode .adv-global-discount-quote-form {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 277, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-form .adv-global-discount-quote-form-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

/* line 283, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-form .adv-global-discount-quote-form-content .adv-discount-display {
  text-align: center;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 400px;
}

/* line 292, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.lightmode .adv-global-discount-quote-form .adv-global-discount-quote-form-content .adv-discount-display {
  background-color: rgba(20, 13, 35, 0.05);
  border: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 297, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-form .adv-global-discount-quote-form-content .adv-discount-display p {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

/* line 303, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.lightmode .adv-global-discount-quote-form .adv-global-discount-quote-form-content .adv-discount-display p {
  color: #140D23;
}

/* line 309, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-form .adv-global-discount-quote-form-content .adv-discount-input-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 400px;
}

/* line 317, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-form .adv-global-discount-quote-form-content .adv-discount-input-section .adv-discount-label {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  opacity: 1;
}

/* line 324, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.lightmode .adv-global-discount-quote-form .adv-global-discount-quote-form-content .adv-discount-input-section .adv-discount-label {
  color: rgba(20, 13, 35, 0.8) !important;
}

/* line 329, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-form .adv-global-discount-quote-form-content .adv-discount-input-section .adv-discount-input {
  width: 100px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  text-align: center;
}

/* line 339, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-form .adv-global-discount-quote-form-content .adv-discount-input-section .adv-discount-input:focus {
  outline: none;
  border-color: #C38761;
  background-color: rgba(255, 255, 255, 0.15);
}

/* line 345, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-form .adv-global-discount-quote-form-content .adv-discount-input-section .adv-discount-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 349, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.lightmode .adv-global-discount-quote-form .adv-global-discount-quote-form-content .adv-discount-input-section .adv-discount-input {
  border: 1px solid rgba(20, 13, 35, 0.3);
  background-color: rgba(20, 13, 35, 0.05);
  color: #140D23;
}

/* line 354, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.lightmode .adv-global-discount-quote-form .adv-global-discount-quote-form-content .adv-discount-input-section .adv-discount-input:focus {
  border-color: #C38761;
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 359, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.lightmode .adv-global-discount-quote-form .adv-global-discount-quote-form-content .adv-discount-input-section .adv-discount-input::placeholder {
  color: rgba(20, 13, 35, 0.5);
}

/* line 365, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-form .adv-global-discount-quote-form-content .adv-discount-input-section .adv-discount-unit {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-left: 5px;
}

/* line 370, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.lightmode .adv-global-discount-quote-form .adv-global-discount-quote-form-content .adv-discount-input-section .adv-discount-unit {
  color: rgba(20, 13, 35, 0.7);
}

/* line 377, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-form .adv-global-discount-quote-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

/* line 383, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-form .adv-global-discount-quote-actions .adv-action-button {
  padding: 12px 25px;
  border-radius: 20px;
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* line 398, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-form .adv-global-discount-quote-actions .adv-action-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

/* line 403, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-form .adv-global-discount-quote-actions .adv-action-button.adv-action-button-primary {
  background-color: #C38761;
  border-color: #C38761;
  color: #140D23;
}

/* line 408, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-form .adv-global-discount-quote-actions .adv-action-button.adv-action-button-primary:hover {
  background-color: #af6c42;
}

/* line 413, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-form .adv-global-discount-quote-actions .adv-action-button.adv-action-button-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

/* line 418, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-form .adv-global-discount-quote-actions .adv-action-button.adv-action-button-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 422, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.lightmode .adv-global-discount-quote-form .adv-global-discount-quote-actions .adv-action-button.adv-action-button-secondary {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 427, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.lightmode .adv-global-discount-quote-form .adv-global-discount-quote-actions .adv-action-button.adv-action-button-secondary:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* Responsive design */
@media (max-width: 768px) {
  /* line 438, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
  .adv-global-discount-quote-container {
    padding: 15px;
  }
  /* line 442, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
  .adv-global-discount-quote-summary-section {
    flex-direction: column;
    gap: 1rem;
  }
  /* line 447, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
  .adv-global-discount-quote-actions {
    flex-direction: column;
  }
  /* line 450, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
  .adv-global-discount-quote-actions .adv-action-button {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   SHOW DEPOSIT INVOICE FROM QUOTE - MODULE ADV
   Page unifiée pour l'affichage d'une facture d'acompte
   ========================================================================== */
/* line 6, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-show-deposit-invoice-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  flex: 1;
  margin: 0 auto;
  height: 100%;
  padding: 20px;
  overflow-x: hidden;
  overflow-y: auto;
  /* Personnalisation de la barre de défilement */
}

/* line 19, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-show-deposit-invoice-container::-webkit-scrollbar {
  width: 8px;
}

/* line 23, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-show-deposit-invoice-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 28, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-show-deposit-invoice-container::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 33, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-show-deposit-invoice-container::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 37, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-show-deposit-invoice-container.lightmode {
  color: #140D23;
}

/* line 43, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.lightmode .adv-value-highlight {
  color: #C38761 !important;
}

/* ==========================================================================
   EN-TÊTE PRESTATAIRE / CLIENT
   ========================================================================== */
/* line 51, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-invoice-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 15px;
  gap: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  align-items: center;
}

@media (max-width: 768px) {
  /* line 51, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
  .adv-deposit-invoice-header {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* line 65, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.lightmode .adv-deposit-invoice-header {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 69, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-invoice-header .adv-header-section, .adv-deposit-invoice-header .adv-contract-number-section,
.adv-deposit-invoice-header .adv-market-type-section {
  display: flex;
  flex-direction: row;
  gap: 8px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* line 77, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-invoice-header .adv-header-section .adv-label, .adv-deposit-invoice-header .adv-contract-number-section .adv-label,
.adv-deposit-invoice-header .adv-market-type-section .adv-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  white-space: nowrap;
}

/* line 82, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.lightmode .adv-deposit-invoice-header .adv-header-section .adv-label, .lightmode .adv-deposit-invoice-header .adv-contract-number-section .adv-label,
.lightmode .adv-deposit-invoice-header .adv-market-type-section .adv-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 87, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-invoice-header .adv-header-section .adv-value, .adv-deposit-invoice-header .adv-contract-number-section .adv-value,
.adv-deposit-invoice-header .adv-market-type-section .adv-value {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}

/* line 92, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.lightmode .adv-deposit-invoice-header .adv-header-section .adv-value, .lightmode .adv-deposit-invoice-header .adv-contract-number-section .adv-value,
.lightmode .adv-deposit-invoice-header .adv-market-type-section .adv-value {
  color: #140D23;
}

/* ==========================================================================
   CONTENU PRINCIPAL
   ========================================================================== */
/* line 102, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-invoice-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ==========================================================================
   SECTION INFORMATIONS GÉNÉRALES
   ========================================================================== */
/* line 111, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-info-section {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 117, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.lightmode .adv-deposit-info-section {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 121, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-info-section .adv-deposit-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

@media (max-width: 1024px) {
  /* line 121, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
  .adv-deposit-info-section .adv-deposit-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  /* line 121, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
  .adv-deposit-info-section .adv-deposit-info-grid {
    grid-template-columns: 1fr;
  }
}

/* line 135, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-info-section .adv-deposit-info-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: center;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

/* line 144, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.lightmode .adv-deposit-info-section .adv-deposit-info-item {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 148, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-info-section .adv-deposit-info-item .adv-info-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* line 154, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.lightmode .adv-deposit-info-section .adv-deposit-info-item .adv-info-label {
  color: rgba(20, 13, 35, 0.6);
}

/* line 159, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-info-section .adv-deposit-info-item .adv-info-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
}

/* line 164, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.lightmode .adv-deposit-info-section .adv-deposit-info-item .adv-info-value {
  color: #140D23;
}

/* ==========================================================================
   RÉSUMÉ DE L'ACOMPTE
   ========================================================================== */
/* line 174, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-invoice-summary {
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 180, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.lightmode .adv-deposit-invoice-summary {
  background-color: rgba(20, 13, 35, 0.05);
}

/* Section principale : pourcentage | infos devis | montants acompte */
/* line 186, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-main-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 1.5rem;
}

@media (max-width: 900px) {
  /* line 186, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
  .adv-deposit-main-row {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
}

/* line 199, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-percentage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.2) 0%, rgba(195, 135, 97, 0.1) 100%);
  border: 3px solid #C38761;
  flex-shrink: 0;
}

/* line 211, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-percentage .adv-percentage-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: #C38761;
}

/* line 217, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-percentage .adv-percentage-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* line 223, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.lightmode .adv-deposit-percentage .adv-percentage-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 229, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-quote-reference {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 180px;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  justify-content: center;
}

@media (max-width: 900px) {
  /* line 229, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
  .adv-deposit-quote-reference {
    width: 100%;
    max-width: 300px;
  }
}

/* line 244, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.lightmode .adv-deposit-quote-reference {
  background-color: rgba(20, 13, 35, 0.03);
}

/* line 248, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-quote-reference .adv-quote-section-title {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.25rem;
}

/* line 256, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.lightmode .adv-deposit-quote-reference .adv-quote-section-title {
  color: rgba(20, 13, 35, 0.5);
}

/* line 261, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-quote-reference .adv-quote-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* line 267, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-quote-reference .adv-quote-info .adv-quote-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  background-color: rgba(195, 135, 97, 0.15);
  border: 1px solid rgba(195, 135, 97, 0.3);
  border-radius: 6px;
  color: #C38761;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* line 281, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-quote-reference .adv-quote-info .adv-quote-link:hover {
  background-color: rgba(195, 135, 97, 0.25);
  border-color: #C38761;
  transform: translateY(-1px);
}

/* line 287, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-quote-reference .adv-quote-info .adv-quote-link i {
  font-size: 0.8rem;
}

/* line 293, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-quote-reference .adv-quote-total {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

/* line 300, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-quote-reference .adv-quote-total .adv-quote-total-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* line 304, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.lightmode .adv-deposit-quote-reference .adv-quote-total .adv-quote-total-label {
  color: rgba(20, 13, 35, 0.6);
}

/* line 309, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-quote-reference .adv-quote-total .adv-quote-total-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

/* line 314, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.lightmode .adv-deposit-quote-reference .adv-quote-total .adv-quote-total-value {
  color: #140D23;
}

/* line 321, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-amounts {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  min-width: 220px;
  flex: 1;
  justify-content: center;
  border: 1px solid rgba(195, 135, 97, 0.2);
}

@media (max-width: 900px) {
  /* line 321, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
  .adv-deposit-amounts {
    width: 100%;
    max-width: 350px;
  }
}

/* line 338, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.lightmode .adv-deposit-amounts {
  background-color: rgba(20, 13, 35, 0.08);
  border-color: rgba(195, 135, 97, 0.3);
}

/* line 343, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-amounts .adv-deposit-amount-title {
  font-size: 0.85rem;
  text-align: center;
  font-weight: 600;
  color: #C38761;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

/* line 353, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-amounts .adv-deposit-amount-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
}

/* line 360, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-amounts .adv-deposit-amount-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 0;
}

/* line 366, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-amounts .adv-deposit-amount-row .adv-amount-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 370, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.lightmode .adv-deposit-amounts .adv-deposit-amount-row .adv-amount-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 375, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-amounts .adv-deposit-amount-row .adv-amount-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
}

/* line 380, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.lightmode .adv-deposit-amounts .adv-deposit-amount-row .adv-amount-value {
  color: #140D23;
}

/* line 385, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-amounts .adv-deposit-amount-row.adv-deposit-amount-total {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 0.5rem;
  margin-top: 0.25rem;
}

/* line 390, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.lightmode .adv-deposit-amounts .adv-deposit-amount-row.adv-deposit-amount-total {
  border-top-color: rgba(20, 13, 35, 0.15);
}

/* line 394, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-amounts .adv-deposit-amount-row.adv-deposit-amount-total .adv-amount-label {
  font-weight: 600;
  color: #fff;
}

/* line 398, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.lightmode .adv-deposit-amounts .adv-deposit-amount-row.adv-deposit-amount-total .adv-amount-label {
  color: #140D23;
}

/* line 403, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-amounts .adv-deposit-amount-row.adv-deposit-amount-total .adv-amount-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #C38761;
}

/* Divider - masqué dans le nouveau layout */
/* line 413, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-divider {
  display: none;
}

/* ==========================================================================
   SECTION DOCUMENTS LIÉS
   ========================================================================== */
/* line 420, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-documents-section {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 426, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.lightmode .adv-deposit-documents-section {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 430, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-documents-section .adv-section-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* line 438, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.lightmode .adv-deposit-documents-section .adv-section-title {
  color: #140D23;
}

/* line 443, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-documents-section .adv-documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
}

@media (max-width: 600px) {
  /* line 443, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
  .adv-deposit-documents-section .adv-documents-grid {
    grid-template-columns: 1fr;
  }
}

/* line 453, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-documents-section .adv-document-card {
  /* Sélection de facture */
}

/* line 454, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-documents-section .adv-document-card .adv-document-link-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  transition: all 0.2s ease;
}

/* line 466, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-documents-section .adv-document-card .adv-document-link-card:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* line 472, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.lightmode .adv-deposit-documents-section .adv-document-card .adv-document-link-card {
  background-color: rgba(20, 13, 35, 0.05);
  border: 1px solid rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 477, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.lightmode .adv-deposit-documents-section .adv-document-card .adv-document-link-card:hover {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 484, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-documents-section .adv-document-card.adv-document-card-selection, .adv-deposit-documents-section .adv-document-card.adv-document-card-empty {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

/* line 494, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.lightmode .adv-deposit-documents-section .adv-document-card.adv-document-card-selection, .lightmode .adv-deposit-documents-section .adv-document-card.adv-document-card-empty {
  background-color: rgba(20, 13, 35, 0.05);
  border: 1px dashed rgba(20, 13, 35, 0.2);
}

/* line 500, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-documents-section .adv-document-card .adv-document-icon {
  width: 45px;
  height: 45px;
  background-color: rgba(195, 135, 97, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* line 510, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-documents-section .adv-document-card .adv-document-icon i {
  color: #C38761;
  font-size: 1.2rem;
}

/* line 516, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-documents-section .adv-document-card .adv-document-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

/* line 523, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-documents-section .adv-document-card .adv-document-info .adv-document-title {
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 531, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-documents-section .adv-document-card .adv-document-info .adv-document-details {
  display: flex;
  gap: 15px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  flex-wrap: wrap;
}

/* line 538, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.lightmode .adv-deposit-documents-section .adv-document-card .adv-document-info .adv-document-details {
  color: rgba(20, 13, 35, 0.7);
}

/* line 542, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-documents-section .adv-document-card .adv-document-info .adv-document-details .adv-document-amount {
  font-weight: 600;
  color: #C38761;
}

/* line 547, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-documents-section .adv-document-card .adv-document-info .adv-document-details .adv-document-date {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* line 553, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-documents-section .adv-document-card .adv-document-info .adv-document-details i {
  font-size: 0.65rem;
}

/* line 559, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-documents-section .adv-document-card .adv-document-info .adv-document-status .status-badge {
  font-size: 0.65rem;
  padding: 2px 8px;
}

/* line 565, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-documents-section .adv-document-card .adv-document-info .adv-no-document-text {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  font-size: 0.8rem;
}

/* line 570, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.lightmode .adv-deposit-documents-section .adv-document-card .adv-document-info .adv-no-document-text {
  color: rgba(20, 13, 35, 0.6);
}

/* line 576, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-documents-section .adv-document-card .adv-document-arrow {
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.2s ease;
}

/* line 580, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.lightmode .adv-deposit-documents-section .adv-document-card .adv-document-arrow {
  color: rgba(20, 13, 35, 0.5);
}

/* line 585, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-documents-section .adv-document-card .adv-document-link-card:hover .adv-document-arrow {
  color: #C38761;
  transform: translateX(3px);
}

/* line 591, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-documents-section .adv-document-card .adv-invoice-selection {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

/* line 598, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-documents-section .adv-document-card .adv-invoice-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
}

/* line 607, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.lightmode .adv-deposit-documents-section .adv-document-card .adv-invoice-option {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 611, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-documents-section .adv-document-card .adv-invoice-option .adv-invoice-chrono {
  font-size: 0.8rem;
  font-weight: 500;
}

/* line 616, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-documents-section .adv-document-card .adv-invoice-option .adv-button-link {
  padding: 4px 10px;
  font-size: 0.7rem;
}

/* ==========================================================================
   ZONE D'ACTIONS
   ========================================================================== */
/* line 627, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.adv-deposit-invoice-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding: 0;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  /* line 627, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
  .adv-deposit-invoice-actions {
    justify-content: center;
  }
}

/* ==========================================================================
   BADGES DE STATUT
   ========================================================================== */
/* line 643, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
}

/* line 651, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.status-badge.draft {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

/* line 655, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.lightmode .status-badge.draft {
  background-color: rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.8);
}

/* line 661, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.status-badge.sent {
  background-color: #C38761;
  color: #140D23;
}

/* line 666, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.status-badge.validated {
  background-color: #4CAF50;
  color: white;
}

/* line 671, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.status-badge.cloture {
  background-color: #607D8B;
  color: white;
}

/* line 676, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.status-badge.archived {
  background-color: #9E9E9E;
  color: white;
}

/* line 681, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.status-badge.paid {
  background-color: #28a745;
  color: white;
}

/* line 686, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.status-badge.pending {
  background-color: #ffc107;
  color: #140D23;
}

/* line 691, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.status-badge.overdue {
  background-color: #F44336;
  color: white;
}

/* line 696, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.status-badge.cancelled {
  background-color: #9E9E9E;
  color: white;
}

/* line 701, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.status-badge.non-defini {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* line 705, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.lightmode .status-badge.non-defini {
  background-color: rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.6);
}

/* ==========================================================================
   CLASSES UTILITAIRES
   ========================================================================== */
/* line 715, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.d-none {
  display: none !important;
}

/* line 719, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_show_deposit_invoice_from_quote.scss */
.hidden {
  display: none !important;
}

/* ==========================================================================
   EDIT DEPOSIT INVOICE FROM QUOTE - MODULE ADV
   Structure principale et composants pour la modification d'une facture d'acompte
   ========================================================================== */
/* line 6, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1200px;
  margin: 0px auto;
  padding: 20px;
  color: #fff;
}

/* line 15, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-container.lightmode {
  color: #140D23;
}

/* line 20, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-header {
  text-align: center;
  margin-bottom: 20px;
}

/* line 24, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-header h2, .adv-edit-deposit-invoice-header .h2 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
}

/* line 33, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.lightmode .adv-edit-deposit-invoice-header h2, .lightmode .adv-edit-deposit-invoice-header .h2 {
  color: #140D23;
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 40, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-row1 {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

/* line 45, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-summary-section2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 50, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-row1 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 56, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-main-content {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

/* line 62, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 68, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-row2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 74, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-summary-section1 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
}

/* line 83, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.lightmode .adv-edit-deposit-invoice-summary-section1 {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 87, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-summary-section1 .adv-summary-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1 1 0;
}

/* line 95, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-summary-section1 .adv-summary-item .adv-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  display: block;
}

/* line 101, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.lightmode .adv-edit-deposit-invoice-summary-section1 .adv-summary-item .adv-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 106, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-summary-section1 .adv-summary-item .adv-value {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  text-align: center;
}

/* line 113, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.lightmode .adv-edit-deposit-invoice-summary-section1 .adv-summary-item .adv-value {
  color: #140D23;
}

/* line 119, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-summary-section1 .adv-summary-item.adv-summary-total-ttc .adv-value {
  color: #C38761;
  font-size: 1.2rem;
}

/* line 127, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-table-section-header {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 10px;
  margin-bottom: 10px;
}

/* line 136, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.lightmode .adv-edit-deposit-invoice-table-section-header {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 140, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-table-section-header h3, .adv-edit-deposit-invoice-table-section-header .h3 {
  color: #fff;
  font-size: 1rem;
}

/* line 144, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.lightmode .adv-edit-deposit-invoice-table-section-header h3, .lightmode .adv-edit-deposit-invoice-table-section-header .h3 {
  color: #140D23;
}

/* line 150, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-table-section {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  overflow: hidden;
}

/* line 156, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.lightmode .adv-edit-deposit-invoice-table-section {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 160, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-table-section .adv-articles-table {
  width: 100%;
  overflow-y: auto;
  max-height: 400px;
  /* Personnalisation de la barre de défilement */
}

/* line 166, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-table-section .adv-articles-table::-webkit-scrollbar {
  width: 4px;
}

/* line 170, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-table-section .adv-articles-table::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 174, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.lightmode .adv-edit-deposit-invoice-table-section .adv-articles-table::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 179, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-table-section .adv-articles-table::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 184, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-table-section .adv-articles-table::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 189, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-table-section .adv-table-cell, .adv-edit-deposit-invoice-table-section .adv-header-cgv, .adv-edit-deposit-invoice-table-section .adv-header-quantity, .adv-edit-deposit-invoice-table-section .adv-header-price-ttc, .adv-edit-deposit-invoice-table-section .adv-header-price-ht, .adv-edit-deposit-invoice-table-section .adv-header-discount-perc, .adv-edit-deposit-invoice-table-section .adv-header-article, .adv-edit-deposit-invoice-table-section .adv-show-invoice-capsule .adv-invoice-articles-section .adv-header-article, .adv-show-invoice-capsule .adv-invoice-articles-section .adv-edit-deposit-invoice-table-section .adv-header-article, .adv-edit-deposit-invoice-table-section .adv-show-invoice-capsule .adv-invoice-articles-section .adv-header-discount-perc, .adv-show-invoice-capsule .adv-invoice-articles-section .adv-edit-deposit-invoice-table-section .adv-header-discount-perc, .adv-edit-deposit-invoice-table-section .adv-show-invoice-capsule .adv-invoice-articles-section .adv-header-price-ht, .adv-show-invoice-capsule .adv-invoice-articles-section .adv-edit-deposit-invoice-table-section .adv-header-price-ht, .adv-edit-deposit-invoice-table-section .adv-show-invoice-capsule .adv-invoice-articles-section .adv-header-price-ttc, .adv-show-invoice-capsule .adv-invoice-articles-section .adv-edit-deposit-invoice-table-section .adv-header-price-ttc, .adv-edit-deposit-invoice-table-section .adv-show-invoice-capsule .adv-invoice-articles-section .adv-header-quantity, .adv-show-invoice-capsule .adv-invoice-articles-section .adv-edit-deposit-invoice-table-section .adv-header-quantity, .adv-edit-deposit-invoice-table-section .adv-show-invoice-capsule .adv-invoice-articles-section .adv-header-cgv, .adv-show-invoice-capsule .adv-invoice-articles-section .adv-edit-deposit-invoice-table-section .adv-header-cgv, .adv-edit-deposit-invoice-table-section .adv-show-invoice-capsule .adv-invoice-articles-section .adv-table-cell, .adv-show-invoice-capsule .adv-invoice-articles-section .adv-edit-deposit-invoice-table-section .adv-table-cell, .adv-edit-deposit-invoice-table-section .adv-credit-note-articles-section .adv-articles-table .adv-header-article, .adv-credit-note-articles-section .adv-articles-table .adv-edit-deposit-invoice-table-section .adv-header-article, .adv-edit-deposit-invoice-table-section .adv-credit-note-articles-section .adv-articles-table .adv-header-discount-perc, .adv-credit-note-articles-section .adv-articles-table .adv-edit-deposit-invoice-table-section .adv-header-discount-perc, .adv-edit-deposit-invoice-table-section .adv-credit-note-articles-section .adv-articles-table .adv-header-price-ht, .adv-credit-note-articles-section .adv-articles-table .adv-edit-deposit-invoice-table-section .adv-header-price-ht, .adv-edit-deposit-invoice-table-section .adv-credit-note-articles-section .adv-articles-table .adv-header-price-ttc, .adv-credit-note-articles-section .adv-articles-table .adv-edit-deposit-invoice-table-section .adv-header-price-ttc, .adv-edit-deposit-invoice-table-section .adv-credit-note-articles-section .adv-articles-table .adv-header-quantity, .adv-credit-note-articles-section .adv-articles-table .adv-edit-deposit-invoice-table-section .adv-header-quantity, .adv-edit-deposit-invoice-table-section .adv-credit-note-articles-section .adv-articles-table .adv-table-cell, .adv-credit-note-articles-section .adv-articles-table .adv-edit-deposit-invoice-table-section .adv-table-cell, .adv-edit-deposit-invoice-table-section .adv-show-quote-capsule .adv-quote-articles-section .adv-header-article, .adv-show-quote-capsule .adv-quote-articles-section .adv-edit-deposit-invoice-table-section .adv-header-article, .adv-edit-deposit-invoice-table-section .adv-show-quote-capsule .adv-quote-articles-section .adv-header-discount-perc, .adv-show-quote-capsule .adv-quote-articles-section .adv-edit-deposit-invoice-table-section .adv-header-discount-perc, .adv-edit-deposit-invoice-table-section .adv-show-quote-capsule .adv-quote-articles-section .adv-header-price-ht, .adv-show-quote-capsule .adv-quote-articles-section .adv-edit-deposit-invoice-table-section .adv-header-price-ht, .adv-edit-deposit-invoice-table-section .adv-show-quote-capsule .adv-quote-articles-section .adv-header-price-ttc, .adv-show-quote-capsule .adv-quote-articles-section .adv-edit-deposit-invoice-table-section .adv-header-price-ttc, .adv-edit-deposit-invoice-table-section .adv-show-quote-capsule .adv-quote-articles-section .adv-header-quantity, .adv-show-quote-capsule .adv-quote-articles-section .adv-edit-deposit-invoice-table-section .adv-header-quantity, .adv-edit-deposit-invoice-table-section .adv-show-quote-capsule .adv-quote-articles-section .adv-table-cell, .adv-show-quote-capsule .adv-quote-articles-section .adv-edit-deposit-invoice-table-section .adv-table-cell {
  padding: 8px 12px;
  display: flex;
  align-items: center;
}

/* line 195, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-table-section .adv-articles-table-header {
  display: flex;
  background-color: rgba(255, 255, 255, 0.08);
  font-weight: 600;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* line 203, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.lightmode .adv-edit-deposit-invoice-table-section .adv-articles-table-header {
  background-color: rgba(20, 13, 35, 0.08);
  color: rgba(20, 13, 35, 0.8);
  border-bottom: 1px solid rgba(20, 13, 35, 0.15);
}

/* line 210, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-table-section .adv-articles-table-body {
  min-height: 200px;
  overflow-y: hidden;
}

/* line 214, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-table-section .adv-articles-table-body .adv-articles-table-row {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

/* line 219, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-table-section .adv-articles-table-body .adv-articles-table-row:last-child {
  border-bottom: none;
}

/* line 223, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-table-section .adv-articles-table-body .adv-articles-table-row:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

/* line 227, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.lightmode .adv-edit-deposit-invoice-table-section .adv-articles-table-body .adv-articles-table-row {
  border-bottom: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 230, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.lightmode .adv-edit-deposit-invoice-table-section .adv-articles-table-body .adv-articles-table-row:hover {
  background-color: rgba(20, 13, 35, 0.03);
}

/* line 236, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-table-section .adv-articles-table-body.adv-no-articles-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

/* line 243, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-table-section .adv-articles-table-body .adv-no-articles-message {
  text-align: center;
  padding: 2rem 15px;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  font-size: 0.85rem;
}

/* line 250, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.lightmode .adv-edit-deposit-invoice-table-section .adv-articles-table-body .adv-no-articles-message {
  color: rgba(20, 13, 35, 0.6);
}

/* line 256, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-table-section .adv-header-article {
  width: 30%;
  justify-content: flex-start;
}

/* line 261, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-table-section .adv-header-discount-perc {
  width: 12%;
  justify-content: center;
}

/* line 266, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-table-section .adv-header-price-ht {
  width: 16%;
  justify-content: center;
}

/* line 271, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-table-section .adv-header-price-ttc {
  width: 16%;
  justify-content: center;
}

/* line 276, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-table-section .adv-header-quantity {
  width: 10%;
  justify-content: center;
}

/* line 281, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-table-section .adv-header-cgv {
  width: 16%;
  justify-content: center;
}

/* line 287, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-table-section .adv-table-cell {
  color: #fff;
  font-size: 0.8rem;
}

/* line 292, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.lightmode .adv-edit-deposit-invoice-table-section .adv-table-cell {
  color: #140D23;
}

/* line 297, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-table-section .adv-cell-article {
  width: 30%;
  justify-content: flex-start;
}

/* line 301, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-table-section .adv-cell-discount-perc {
  width: 12%;
  justify-content: center;
}

/* line 305, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-table-section .adv-cell-price-ht {
  width: 16%;
  justify-content: center;
}

/* line 309, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-table-section .adv-cell-price-ttc {
  width: 16%;
  justify-content: center;
}

/* line 313, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-table-section .adv-cell-quantity {
  width: 10%;
  justify-content: center;
}

/* line 317, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-table-section .adv-cell-cgv {
  width: 16%;
  justify-content: center;
}

/* line 323, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-summary-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
}

/* line 332, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.lightmode .adv-edit-deposit-invoice-summary-section {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 336, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-summary-section .adv-summary-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1 1 0;
}

/* line 344, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-summary-section .adv-summary-item .adv-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  display: block;
}

/* line 350, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.lightmode .adv-edit-deposit-invoice-summary-section .adv-summary-item .adv-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 355, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-summary-section .adv-summary-item .adv-value {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  text-align: center;
}

/* line 362, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.lightmode .adv-edit-deposit-invoice-summary-section .adv-summary-item .adv-value {
  color: #140D23;
}

/* line 368, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-summary-section .adv-summary-item.adv-summary-total-ttc .adv-value {
  color: #C38761;
  font-size: 1.2rem;
}

/* line 376, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-info-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
}

/* line 385, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.lightmode .adv-edit-deposit-invoice-info-section {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 389, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-info-section .adv-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1 1 0;
}

/* line 397, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-info-section .adv-info-item .adv-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  display: block;
}

/* line 403, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.lightmode .adv-edit-deposit-invoice-info-section .adv-info-item .adv-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 408, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-info-section .adv-info-item .adv-value {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  text-align: center;
}

/* line 415, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.lightmode .adv-edit-deposit-invoice-info-section .adv-info-item .adv-value {
  color: #140D23;
}

/* line 422, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-form {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 430, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.lightmode .adv-edit-deposit-invoice-form {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 434, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-form .adv-edit-deposit-invoice-form-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

/* line 440, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-form .adv-edit-deposit-invoice-form-content .adv-deposit-input-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 400px;
}

/* line 448, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-form .adv-edit-deposit-invoice-form-content .adv-deposit-input-section .adv-deposit-label {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  opacity: 1;
}

/* line 455, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.lightmode .adv-edit-deposit-invoice-form .adv-edit-deposit-invoice-form-content .adv-deposit-input-section .adv-deposit-label {
  color: rgba(20, 13, 35, 0.8) !important;
}

/* line 460, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-form .adv-edit-deposit-invoice-form-content .adv-deposit-input-section .adv-deposit-input {
  width: 100px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  text-align: center;
}

/* line 470, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-form .adv-edit-deposit-invoice-form-content .adv-deposit-input-section .adv-deposit-input:focus {
  outline: none;
  border-color: #C38761;
  background-color: rgba(255, 255, 255, 0.15);
}

/* line 476, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-form .adv-edit-deposit-invoice-form-content .adv-deposit-input-section .adv-deposit-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 480, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.lightmode .adv-edit-deposit-invoice-form .adv-edit-deposit-invoice-form-content .adv-deposit-input-section .adv-deposit-input {
  border: 1px solid rgba(20, 13, 35, 0.3);
  background-color: rgba(20, 13, 35, 0.05);
  color: #140D23;
}

/* line 485, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.lightmode .adv-edit-deposit-invoice-form .adv-edit-deposit-invoice-form-content .adv-deposit-input-section .adv-deposit-input:focus {
  border-color: #C38761;
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 490, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.lightmode .adv-edit-deposit-invoice-form .adv-edit-deposit-invoice-form-content .adv-deposit-input-section .adv-deposit-input::placeholder {
  color: rgba(20, 13, 35, 0.5);
}

/* line 496, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-form .adv-edit-deposit-invoice-form-content .adv-deposit-input-section .adv-deposit-unit {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-left: 5px;
}

/* line 501, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.lightmode .adv-edit-deposit-invoice-form .adv-edit-deposit-invoice-form-content .adv-deposit-input-section .adv-deposit-unit {
  color: rgba(20, 13, 35, 0.7);
}

/* line 507, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-form .adv-edit-deposit-invoice-form-content .adv-deposit-calculation-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 400px;
}

/* line 514, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-form .adv-edit-deposit-invoice-form-content .adv-deposit-calculation-section .adv-discount-display {
  text-align: center;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

/* line 522, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.lightmode .adv-edit-deposit-invoice-form .adv-edit-deposit-invoice-form-content .adv-deposit-calculation-section .adv-discount-display {
  background-color: rgba(20, 13, 35, 0.05);
  border: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 527, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-form .adv-edit-deposit-invoice-form-content .adv-deposit-calculation-section .adv-discount-display p {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

/* line 533, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.lightmode .adv-edit-deposit-invoice-form .adv-edit-deposit-invoice-form-content .adv-deposit-calculation-section .adv-discount-display p {
  color: #140D23;
}

/* line 541, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-form .adv-deposit-input-section-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

/* line 548, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-form .adv-edit-deposit-invoice-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

/* line 554, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-form .adv-edit-deposit-invoice-actions .adv-action-button {
  padding: 12px 25px;
  border-radius: 20px;
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* line 569, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-form .adv-edit-deposit-invoice-actions .adv-action-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

/* line 574, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-form .adv-edit-deposit-invoice-actions .adv-action-button.adv-action-button-primary {
  background-color: #C38761;
  border-color: #C38761;
  color: #140D23;
}

/* line 579, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-form .adv-edit-deposit-invoice-actions .adv-action-button.adv-action-button-primary:hover {
  background-color: #af6c42;
}

/* line 584, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-form .adv-edit-deposit-invoice-actions .adv-action-button.adv-action-button-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

/* line 589, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-form .adv-edit-deposit-invoice-actions .adv-action-button.adv-action-button-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 593, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.lightmode .adv-edit-deposit-invoice-form .adv-edit-deposit-invoice-actions .adv-action-button.adv-action-button-secondary {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 598, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.lightmode .adv-edit-deposit-invoice-form .adv-edit-deposit-invoice-actions .adv-action-button.adv-action-button-secondary:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* Responsive design */
@media (max-width: 768px) {
  /* line 609, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
  .adv-edit-deposit-invoice-container {
    padding: 15px;
  }
  /* line 613, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
  .adv-edit-deposit-invoice-summary-section1 {
    flex-direction: column;
    gap: 1rem;
  }
  /* line 618, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
  .adv-edit-deposit-invoice-info-section {
    flex-direction: column;
    gap: 1rem;
  }
  /* line 623, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
  .adv-edit-deposit-invoice-actions {
    flex-direction: column;
  }
  /* line 626, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
  .adv-edit-deposit-invoice-actions .adv-action-button {
    width: 100%;
    justify-content: center;
  }
}

/* Modes de couleur hérités - Compatibilité avec l'ancien code */
/* line 635, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-container p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 641, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-container span {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 647, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-container.lightmode span {
  color: #140D23;
}

/* line 651, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-container.nightmode span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 655, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-container.lightmode p {
  color: #140D23;
}

/* line 659, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-container.nightmode p {
  color: #FFFFFF;
}

/* line 663, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-container.lightmode i {
  color: #140D23;
}

/* line 667, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_edit_deposit_invoice_from_quote.scss */
.adv-edit-deposit-invoice-container.nightmode i {
  color: #FFFFFF;
}

/* line 2, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-capsule {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 10px 30px 10px 30px;
  font-size: 0.8rem;
  gap: 10px;
}

/* line 13, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-capsule.lightmode {
  color: #140D23;
}

/* line 18, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 24, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-capsule.lightmode span {
  color: #C38761;
}

/* line 28, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-capsule.nightmode span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 32, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-capsule.lightmode p {
  color: #140D23;
}

/* line 36, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-capsule.nightmode p {
  color: #FFFFFF;
}

/* line 40, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-capsule.lightmode i {
  color: #140D23;
}

/* line 44, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-capsule.nightmode i {
  color: #FFFFFF;
}

/* line 49, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-row1 {
  width: 80%;
  height: 92.5%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(232, 232, 232, 0.5);
  border-radius: 20px;
  padding-right: 20px;
}

/* line 60, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.lightmode .adv-deposit-invoice-contacts-row1 {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 65, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-row1 form {
  width: 35%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px;
}

/* line 75, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-row1 form input:focus {
  background-color: transparent;
}

/* line 81, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-row1 .adv-deposit-invoice-contacts-row1-column2 {
  width: 65%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

/* line 90, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-row1 .adv-deposit-invoice-contacts-row1-column2 #adv-deposit-invoice-number {
  font-size: 1.2rem;
  font-weight: 600;
  color: #C38761;
  margin-bottom: 0;
}

/* line 100, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-row1-column1 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  border-right: 1px solid rgba(232, 232, 232, 0.5);
}

/* line 110, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.lightmode .adv-deposit-invoice-contacts-row1-column1 {
  border-right-color: rgba(20, 13, 35, 0.2);
}

/* line 115, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-row1-column1-create-contact {
  width: 100%;
  margin-bottom: 10px;
}

/* line 120, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-create-contact-button {
  width: 100%;
  padding: 10px 15px;
  background-color: rgba(195, 135, 97, 0.2);
  border: 1px solid rgba(195, 135, 97, 0.4);
  border-radius: 8px;
  color: #C38761;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* line 136, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.lightmode .adv-create-contact-button {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 142, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-create-contact-button:hover {
  background-color: rgba(195, 135, 97, 0.3);
  border-color: rgba(195, 135, 97, 0.6);
  transform: translateY(-1px);
}

/* line 147, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.lightmode .adv-create-contact-button:hover {
  background-color: rgba(20, 13, 35, 0.2);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 153, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-create-contact-button i {
  font-size: 0.8rem;
  color: inherit;
}

/* line 159, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-row1-column1-searchbar {
  width: 100%;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 172, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.lightmode .adv-deposit-invoice-contacts-row1-column1-searchbar {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 177, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-row1-column1-searchbar button {
  all: unset;
}

/* line 180, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-row1-column1-searchbar i {
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 185, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.lightmode .adv-deposit-invoice-contacts-row1-column1-searchbar i {
  color: #140D23 !important;
}

/* line 189, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-row1-column1-searchbar span {
  font-weight: normal !important;
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 195, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.lightmode .adv-deposit-invoice-contacts-row1-column1-searchbar span {
  color: #140D23 !important;
}

/* line 201, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-row1-column1-results {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 100%;
}

/* line 210, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-row1-column1-results h3, .adv-deposit-invoice-contacts-row1-column1-results .h3 {
  all: unset;
  font-size: 0.8rem;
  color: #FFFFFF;
}

/* line 215, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.lightmode .adv-deposit-invoice-contacts-row1-column1-results h3, .lightmode .adv-deposit-invoice-contacts-row1-column1-results .h3 {
  color: #140D23;
}

/* line 220, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-row1-column1-results .results {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  min-height: 60px;
  max-height: 60%;
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
  /* Personnalisation de la barre de défilement */
  /* Style pour le message "Aucun contact sélectionné" */
  /* Style pour chaque contact sélectionné */
}

/* line 234, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.lightmode .adv-deposit-invoice-contacts-row1-column1-results .results {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 240, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-row1-column1-results .results::-webkit-scrollbar {
  width: 6px;
}

/* line 244, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-row1-column1-results .results::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 249, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-row1-column1-results .results::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
  border: 2px solid transparent;
}

/* line 255, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-row1-column1-results .results::-webkit-scrollbar-thumb:hover {
  background: #864B28;
}

/* line 260, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-row1-column1-results .results p[data-contacts-of-document-target="noContacts"] {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  text-align: center;
  margin: 0;
  padding: 20px;
}

/* line 267, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.lightmode .adv-deposit-invoice-contacts-row1-column1-results .results p[data-contacts-of-document-target="noContacts"] {
  color: rgba(20, 13, 35, 0.6);
}

/* line 273, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-row1-column1-results .results .contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  gap: 12px;
  /* Contenu du contact */
  /* Bouton de suppression */
  /* Animation d'entrée */
  /* Animation de sortie */
}

/* line 287, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.lightmode .adv-deposit-invoice-contacts-row1-column1-results .results .contact-item {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.1) 0%, rgba(20, 13, 35, 0.05) 100%);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 292, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-row1-column1-results .results .contact-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: rgba(195, 135, 97, 0.4);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

/* line 298, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.lightmode .adv-deposit-invoice-contacts-row1-column1-results .results .contact-item:hover {
  border-color: rgba(195, 135, 97, 0.4);
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.15) 0%, rgba(20, 13, 35, 0.08) 100%);
}

/* line 305, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-row1-column1-results .results .contact-item .contact-info {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  width: 100%;
}

/* line 312, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-row1-column1-results .results .contact-item .contact-info .contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(195, 135, 97, 0.15);
  border-radius: 50%;
  color: #C38761;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

/* line 325, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-row1-column1-results .results .contact-item .contact-info .contact-email {
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0;
  text-align: center;
}

/* line 332, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.lightmode .adv-deposit-invoice-contacts-row1-column1-results .results .contact-item .contact-info .contact-email {
  color: #140D23;
}

/* line 339, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-row1-column1-results .results .contact-item .contact-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(166, 2, 64, 0.1);
  border: 1px solid rgba(166, 2, 64, 0.3);
  border-radius: 50%;
  color: rgba(166, 2, 64, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
}

/* line 353, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-row1-column1-results .results .contact-item .contact-remove:hover {
  background: rgba(166, 2, 64, 0.2);
  border-color: #A60240;
  color: #A60240;
  transform: scale(1.1);
}

/* line 360, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-row1-column1-results .results .contact-item .contact-remove i {
  font-size: 0.8rem;
}

/* line 366, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-row1-column1-results .results .contact-item.contact-item-enter {
  animation: slideInFromTop 0.3s ease-out;
}

/* line 371, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-row1-column1-results .results .contact-item.contact-item-exit {
  animation: slideOutToRight 0.3s ease-in;
}

/* Animations pour les contacts */
@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideOutToRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

/* line 402, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-row1-column2-header {
  display: flex;
  width: 100%;
  height: 20%;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
}

/* line 412, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.lightmode .adv-deposit-invoice-contacts-row1-column2-header {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 417, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-row1-column2-header-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 10px;
}

/* line 427, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.lightmode .adv-deposit-invoice-contacts-row1-column2-header-section {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 431, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-row1-column2-header-section .adv-header-section, .adv-deposit-invoice-contacts-row1-column2-header-section .adv-contract-number-section,
.adv-deposit-invoice-contacts-row1-column2-header-section .adv-market-type-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px;
}

/* line 438, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-row1-column2-header-section .adv-header-section .adv-label, .adv-deposit-invoice-contacts-row1-column2-header-section .adv-contract-number-section .adv-label,
.adv-deposit-invoice-contacts-row1-column2-header-section .adv-market-type-section .adv-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  margin-bottom: 0.5rem;
  display: block;
}

/* line 444, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.lightmode .adv-deposit-invoice-contacts-row1-column2-header-section .adv-header-section .adv-label, .lightmode .adv-deposit-invoice-contacts-row1-column2-header-section .adv-contract-number-section .adv-label,
.lightmode .adv-deposit-invoice-contacts-row1-column2-header-section .adv-market-type-section .adv-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 449, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-row1-column2-header-section .adv-header-section .adv-value, .adv-deposit-invoice-contacts-row1-column2-header-section .adv-contract-number-section .adv-value,
.adv-deposit-invoice-contacts-row1-column2-header-section .adv-market-type-section .adv-value {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  display: block;
}

/* line 455, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.lightmode .adv-deposit-invoice-contacts-row1-column2-header-section .adv-header-section .adv-value, .lightmode .adv-deposit-invoice-contacts-row1-column2-header-section .adv-contract-number-section .adv-value,
.lightmode .adv-deposit-invoice-contacts-row1-column2-header-section .adv-market-type-section .adv-value {
  color: #140D23;
}

/* line 460, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-row1-column2-header-section .adv-header-section.adv-invoice-number-section, .adv-deposit-invoice-contacts-row1-column2-header-section .adv-invoice-number-section.adv-contract-number-section,
.adv-deposit-invoice-contacts-row1-column2-header-section .adv-invoice-number-section.adv-market-type-section {
  grid-column: 1 / -1;
}

/* line 462, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-row1-column2-header-section .adv-header-section.adv-invoice-number-section .adv-label, .adv-deposit-invoice-contacts-row1-column2-header-section .adv-invoice-number-section.adv-contract-number-section .adv-label,
.adv-deposit-invoice-contacts-row1-column2-header-section .adv-invoice-number-section.adv-market-type-section .adv-label {
  font-size: 1rem;
  font-weight: 600;
  color: #C38761;
  margin-bottom: 0;
}

/* line 473, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-amounts-section {
  width: 100%;
  height: 40%;
  display: flex;
  gap: 10px;
  padding: 20px;
}

/* line 480, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-amounts-section .adv-deposit-percentage-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  width: 60%;
  height: 100%;
  padding: 10px;
}

/* line 491, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.lightmode .adv-deposit-invoice-amounts-section .adv-deposit-percentage-section {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 493, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.lightmode .adv-deposit-invoice-amounts-section .adv-deposit-percentage-section .adv-value {
  color: #140D23 !important;
}

/* line 498, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-amounts-section .adv-deposit-percentage-section .adv-value {
  color: #C38761;
  font-size: 1.1rem;
  font-weight: 600;
}

/* line 505, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-amounts-section .adv-deposit-invoice-amounts-section-summary {
  width: 40%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 10px;
}

/* line 514, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-amounts-section .adv-summary-total-ht {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  width: 100%;
  padding: 10px;
}

/* line 520, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.lightmode .adv-deposit-invoice-amounts-section .adv-summary-total-ht {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 524, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-amounts-section .adv-summary-total-ht .adv-value {
  color: #FFFFFF;
  font-size: 1.1rem;
}

/* line 528, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.lightmode .adv-deposit-invoice-amounts-section .adv-summary-total-ht .adv-value {
  color: #140D23;
}

/* line 533, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-amounts-section .adv-summary-total-vat {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 10px;
  width: 100%;
}

/* line 539, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.lightmode .adv-deposit-invoice-amounts-section .adv-summary-total-vat {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 543, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-amounts-section .adv-summary-total-vat .adv-value {
  color: #FFFFFF;
  font-size: 1.1rem;
}

/* line 547, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.lightmode .adv-deposit-invoice-amounts-section .adv-summary-total-vat .adv-value {
  color: #140D23;
}

/* line 553, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-amounts-section .adv-summary-total-ttc {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 10px;
  width: 100%;
}

/* line 559, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.lightmode .adv-deposit-invoice-amounts-section .adv-summary-total-ttc {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 563, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-amounts-section .adv-summary-total-ttc .adv-value {
  color: #C38761;
  font-size: 1.1rem;
}

/* line 568, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-amounts-section .adv-summary-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1 1 0;
}

/* line 576, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-amounts-section .adv-summary-item .adv-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  margin-bottom: 0.5rem;
  display: block;
}

/* line 582, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.lightmode .adv-deposit-invoice-amounts-section .adv-summary-item .adv-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 587, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-amounts-section .adv-summary-item .adv-value {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  display: block;
  text-align: center;
}

/* line 594, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.lightmode .adv-deposit-invoice-amounts-section .adv-summary-item .adv-value {
  color: #140D23;
}

/* line 604, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-row2 {
  width: 80%;
  height: 7.5%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
}

/* line 613, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-deposit-invoice-contacts-row2 span {
  color: #140D23 !important;
}

@media (max-width: 1024px) {
  /* line 620, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
  .adv-deposit-invoice-contacts-row1 {
    width: 95%;
    flex-direction: column;
    height: auto;
  }
  /* line 625, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
  .adv-deposit-invoice-contacts-row1 form {
    width: 100%;
    height: auto;
    border-right: none;
    border-bottom: 1px solid rgba(232, 232, 232, 0.5);
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  /* line 633, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
  .lightmode .adv-deposit-invoice-contacts-row1 form {
    border-bottom-color: rgba(20, 13, 35, 0.2);
  }
  /* line 638, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
  .adv-deposit-invoice-contacts-row1 .adv-deposit-invoice-contacts-row1-column2 {
    width: 100%;
    height: auto;
    padding: 20px;
  }
  /* line 645, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
  .adv-deposit-invoice-contacts-row1-column2-header {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0.5rem;
  }
  /* line 650, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
  .adv-deposit-invoice-contacts-row1-column2-header .adv-header-section.adv-invoice-number-section, .adv-deposit-invoice-contacts-row1-column2-header .adv-invoice-number-section.adv-contract-number-section,
.adv-deposit-invoice-contacts-row1-column2-header .adv-invoice-number-section.adv-market-type-section {
    grid-column: 1;
  }
  /* line 655, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
  .adv-deposit-invoice-amounts-section {
    flex-direction: column;
    gap: 0.5rem;
    height: auto;
  }
  /* line 660, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
  .adv-deposit-invoice-amounts-section .adv-summary-item {
    width: 100%;
    padding: 10px;
  }
  /* line 666, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
  .adv-deposit-invoice-contacts-row2 {
    width: 95%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    height: auto;
    padding: 10px;
  }
}

@media (max-width: 768px) {
  /* line 677, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
  .adv-deposit-invoice-contacts-capsule {
    padding: 10px 15px;
  }
  /* line 681, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
  .adv-deposit-invoice-contacts-row1-column2-header {
    padding: 15px;
  }
  /* line 684, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
  .adv-deposit-invoice-contacts-row1-column2-header .adv-header-section, .adv-deposit-invoice-contacts-row1-column2-header .adv-contract-number-section,
.adv-deposit-invoice-contacts-row1-column2-header .adv-market-type-section {
    padding: 5px;
  }
  /* line 687, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
  .adv-deposit-invoice-contacts-row1-column2-header .adv-header-section .adv-label, .adv-deposit-invoice-contacts-row1-column2-header .adv-contract-number-section .adv-label,
.adv-deposit-invoice-contacts-row1-column2-header .adv-market-type-section .adv-label {
    font-size: 0.6rem;
  }
  /* line 691, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
  .adv-deposit-invoice-contacts-row1-column2-header .adv-header-section .adv-value, .adv-deposit-invoice-contacts-row1-column2-header .adv-contract-number-section .adv-value,
.adv-deposit-invoice-contacts-row1-column2-header .adv-market-type-section .adv-value {
    font-size: 0.8rem;
  }
  /* line 697, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
  .adv-deposit-invoice-amounts-section {
    padding: 15px;
  }
  /* line 701, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
  .adv-deposit-invoice-amounts-section .adv-summary-item .adv-label {
    font-size: 0.6rem;
  }
  /* line 705, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
  .adv-deposit-invoice-amounts-section .adv-summary-item .adv-value {
    font-size: 0.9rem;
  }
}

/* line 713, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-create-contact-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(4px);
}

/* line 726, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-create-contact-modal-overlay.d-none {
  display: none !important;
}

/* line 731, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-create-contact-modal {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(232, 232, 232, 0.3);
}

/* line 741, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.lightmode .adv-create-contact-modal {
  background-color: rgba(255, 255, 255, 0.98);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 746, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.nightmode .adv-create-contact-modal {
  background-color: rgba(20, 13, 35, 0.95);
}

/* line 751, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-create-contact-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid rgba(232, 232, 232, 0.3);
}

/* line 758, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.lightmode .adv-create-contact-modal-header {
  border-bottom-color: rgba(20, 13, 35, 0.2);
}

/* line 762, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-create-contact-modal-header h3, .adv-create-contact-modal-header .h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: #140D23;
}

/* line 768, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.nightmode .adv-create-contact-modal-header h3, .nightmode .adv-create-contact-modal-header .h3 {
  color: #FFFFFF;
}

/* line 774, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-create-contact-modal-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: rgba(20, 13, 35, 0.6);
  padding: 5px;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

/* line 789, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.nightmode .adv-create-contact-modal-close {
  color: rgba(255, 255, 255, 0.6);
}

/* line 793, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-create-contact-modal-close:hover {
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 797, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.nightmode .adv-create-contact-modal-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

/* line 804, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-create-contact-modal-body {
  padding: 25px;
}

/* line 808, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-create-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 814, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 820, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-form-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #140D23;
}

/* line 825, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.nightmode .adv-form-label {
  color: #FFFFFF;
}

/* line 830, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-form-input {
  padding: 12px 15px;
  border: 1px solid rgba(20, 13, 35, 0.3);
  border-radius: 8px;
  font-size: 0.9rem;
  background-color: rgba(255, 255, 255, 0.8);
  color: #140D23;
  transition: all 0.3s ease;
}

/* line 839, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.nightmode .adv-form-input {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
}

/* line 844, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.nightmode .adv-form-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* line 849, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-form-input:focus {
  outline: none;
  border-color: #C38761;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 855, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.nightmode .adv-form-input:focus {
  background-color: rgba(255, 255, 255, 0.15);
}

/* line 860, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-form-input.is-invalid {
  border-color: #e74c3c;
}

/* line 863, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-form-input.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

/* line 869, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-form-error {
  font-size: 0.8rem;
  color: #e74c3c;
  min-height: 18px;
}

/* line 874, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-form-error.show {
  display: block;
}

/* line 879, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-create-contact-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(232, 232, 232, 0.3);
}

/* line 887, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.lightmode .adv-create-contact-modal-actions {
  border-top-color: rgba(20, 13, 35, 0.2);
}

/* line 892, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-button-secondary {
  padding: 10px 20px;
  background-color: transparent;
  border: 1px solid rgba(20, 13, 35, 0.3);
  border-radius: 8px;
  color: #140D23;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 903, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.nightmode .adv-button-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
}

/* line 908, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-button-secondary:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 911, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.nightmode .adv-button-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 917, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-button-primary {
  padding: 10px 20px;
  background-color: #C38761;
  border: 1px solid #C38761;
  border-radius: 8px;
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 928, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-button-primary:hover {
  background-color: #af6c42;
  border-color: #af6c42;
  transform: translateY(-1px);
}

/* line 934, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_deposit_invoice_from_quote_contacts.scss */
.adv-button-primary:disabled {
  background-color: rgba(195, 135, 97, 0.5);
  border-color: rgba(195, 135, 97, 0.5);
  cursor: not-allowed;
  transform: none;
}

/* ==========================================================================
   UPLOAD SIGNED DOCUMENT MODAL - MODULE ADV
   Styles pour la modale d'import de devis signé
   ========================================================================== */
/* line 6, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_upload_signed_document_modal.scss */
.upload-signed-document-info {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(var(--primary-color-rgb), 0.1);
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

/* line 15, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_upload_signed_document_modal.scss */
.upload-signed-document-info .info-icon {
  font-size: 2rem;
  color: var(--primary-color);
}

/* line 21, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_upload_signed_document_modal.scss */
.upload-signed-document-info .info-text p {
  margin: 0;
}

/* line 24, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_upload_signed_document_modal.scss */
.upload-signed-document-info .info-text p.text-muted {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* line 33, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_upload_signed_document_modal.scss */
.file-upload-zone {
  border: 2px dashed var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

/* line 42, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_upload_signed_document_modal.scss */
.file-upload-zone:hover, .file-upload-zone.dragover {
  border-color: var(--primary-color);
  background: rgba(var(--primary-color-rgb), 0.05);
}

/* line 48, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_upload_signed_document_modal.scss */
.file-upload-zone .file-input-hidden {
  display: none;
}

/* line 53, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_upload_signed_document_modal.scss */
.file-upload-content,
.file-selected-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

/* line 60, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_upload_signed_document_modal.scss */
.file-upload-content i,
.file-selected-content i {
  font-size: 3rem;
  color: var(--text-muted);
}

/* line 65, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_upload_signed_document_modal.scss */
.file-upload-content p,
.file-selected-content p {
  margin: 0;
  color: var(--text-muted);
}

/* line 72, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_upload_signed_document_modal.scss */
.file-selected-content i {
  color: var(--primary-color);
}

/* line 77, app/assets/stylesheets/pages/servicespace/back-office/adv/quote_management/_upload_signed_document_modal.scss */
.custom-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

/* line 1, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_edit_sales_article.scss */
.adv-edit-sales-article-capsule {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 10px 30px 10px 30px;
  font-size: 0.8rem;
  gap: 10px;
}

/* line 12, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_edit_sales_article.scss */
.adv-edit-sales-article-capsule.lightmode {
  color: #140D23;
}

/* line 16, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_edit_sales_article.scss */
.adv-edit-sales-article-capsule form {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* line 25, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_edit_sales_article.scss */
.adv-edit-sales-article-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 31, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_edit_sales_article.scss */
.adv-edit-sales-article-capsule span {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 39, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_edit_sales_article.scss */
.lightmode .adv-edit-sales-article-capsule span {
  color: #140D23;
}

/* line 42, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_edit_sales_article.scss */
.nightmode .adv-edit-sales-article-capsule span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 48, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_edit_sales_article.scss */
.lightmode .adv-edit-sales-article-capsule p {
  color: #140D23;
}

/* line 51, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_edit_sales_article.scss */
.nightmode .adv-edit-sales-article-capsule p {
  color: #FFFFFF;
}

/* line 57, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_edit_sales_article.scss */
.lightmode .adv-edit-sales-article-capsule i {
  color: #140D23;
}

/* line 60, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_edit_sales_article.scss */
.nightmode .adv-edit-sales-article-capsule i {
  color: #FFFFFF;
}

/* line 66, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_edit_sales_article.scss */
.adv-edit-sales-article-row1 {
  width: 80%;
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 17px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(232, 232, 232, 0.5);
  border-radius: 20px;
  padding: 10px;
}

/* line 79, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_edit_sales_article.scss */
.lightmode .adv-edit-sales-article-row1 {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 84, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_edit_sales_article.scss */
.adv-edit-sales-article-row1 form {
  width: 100%;
  display: flex;
}

/* line 89, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_edit_sales_article.scss */
.adv-edit-sales-article-row1 form input:focus {
  background-color: transparent;
}

/* line 95, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_edit_sales_article.scss */
.adv-edit-sales-article-row1 h2, .adv-edit-sales-article-row1 .h2 {
  all: unset;
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 20px;
}

/* line 103, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_edit_sales_article.scss */
.adv-edit-sales-article-row2 {
  width: 80%;
  height: 20%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
}

/* line 114, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_edit_sales_article.scss */
.adv-edit-sales-article-row1-form {
  width: 100%;
  overflow-y: auto;
  /* Personnalisation de la barre de défilement */
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 118, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_edit_sales_article.scss */
.adv-edit-sales-article-row1-form::-webkit-scrollbar {
  width: 8px;
  /* Largeur de la barre de défilement */
}

/* line 123, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_edit_sales_article.scss */
.adv-edit-sales-article-row1-form::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  /* Couleur de l'arrière-plan de la barre */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 128, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_edit_sales_article.scss */
.adv-edit-sales-article-row1-form::-webkit-scrollbar-thumb {
  background: #C38761;
  /* Couleur de la barre de défilement */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 134, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_edit_sales_article.scss */
.adv-edit-sales-article-row1-form::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
  /* Couleur de la barre au survol */
}

/* line 143, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_edit_sales_article.scss */
.adv-edit-sales-article-row1-form .adv-edit-sales-article-row1-form-field {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* line 150, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_edit_sales_article.scss */
.adv-edit-sales-article-row1-form .adv-edit-sales-article-row1-form-field input {
  all: unset;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 163, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_edit_sales_article.scss */
.lightmode .adv-edit-sales-article-row1-form .adv-edit-sales-article-row1-form-field input {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 168, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_edit_sales_article.scss */
.adv-edit-sales-article-row1-form .adv-edit-sales-article-row1-form-field input:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 172, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_edit_sales_article.scss */
.lightmode .adv-edit-sales-article-row1-form .adv-edit-sales-article-row1-form-field input:focus {
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 179, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_edit_sales_article.scss */
.adv-edit-sales-article-row1-form .adv-edit-sales-article-row1-form-field select {
  all: unset;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 192, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_edit_sales_article.scss */
.lightmode .adv-edit-sales-article-row1-form .adv-edit-sales-article-row1-form-field select {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 197, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_edit_sales_article.scss */
.adv-edit-sales-article-row1-form .adv-edit-sales-article-row1-form-field select:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 201, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_edit_sales_article.scss */
.lightmode .adv-edit-sales-article-row1-form .adv-edit-sales-article-row1-form-field select:focus {
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 207, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_edit_sales_article.scss */
.adv-edit-sales-article-row1-form .adv-edit-sales-article-row1-form-field select:open {
  background-color: rgba(0, 0, 0, 0.8);
}

/* line 212, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_edit_sales_article.scss */
.adv-edit-sales-article-row1-form .adv-edit-sales-article-row1-form-field textarea {
  all: unset;
  background-color: transparent;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 225, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_edit_sales_article.scss */
.lightmode .adv-edit-sales-article-row1-form .adv-edit-sales-article-row1-form-field textarea {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 230, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_edit_sales_article.scss */
.adv-edit-sales-article-row1-form .adv-edit-sales-article-row1-form-field textarea:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 234, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_edit_sales_article.scss */
.lightmode .adv-edit-sales-article-row1-form .adv-edit-sales-article-row1-form-field textarea:focus {
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 241, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_edit_sales_article.scss */
.adv-edit-sales-article-row1-form .adv-edit-sales-article-row1-form-field label {
  all: unset;
  color: #FFFFFF !important;
  font-size: 0.8rem !important;
  text-align: center;
}

/* line 247, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_edit_sales_article.scss */
.lightmode .adv-edit-sales-article-row1-form .adv-edit-sales-article-row1-form-field label {
  color: #140D23 !important;
}

/* ==========================================================================
   NEW SALES ARTICLE - MODULE ADV (Refonte complète avec sections)
   ========================================================================== */
/* line 5, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-capsule {
  width: 95%;
  max-width: 800px;
  margin: 20px auto;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(232, 232, 232, 0.5);
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 rgba(232, 232, 232, 0.08);
  padding: 32px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.8rem;
  gap: 25px;
  min-height: auto;
  color: #C38761;
}

/* line 22, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.lightmode .adv-new-sales-article-capsule {
  background-color: transparent;
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 29, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.new-sales-article-form {
  width: 100%;
}

/* === HEADER === */
/* line 34, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-header {
  width: 100%;
  text-align: center;
  margin-bottom: 0;
}

/* line 39, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-header h2, .adv-new-sales-article-header .h2 {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 12px;
  color: inherit;
}

/* line 46, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-header .adv-new-sales-article-description {
  font-size: 0.85rem;
  color: #e8e8e8;
  margin-bottom: 0;
}

/* line 51, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.lightmode .adv-new-sales-article-header .adv-new-sales-article-description {
  color: #140D23;
}

/* line 55, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.nightmode .adv-new-sales-article-header .adv-new-sales-article-description {
  color: #FFFFFF;
}

/* === SECTIONS === */
/* line 62, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-section {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(232, 232, 232, 0.3);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 15px;
}

/* line 70, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.lightmode .adv-new-sales-article-section {
  background-color: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 76, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
#connectivity-section {
  display: none;
}

/* line 79, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
#certification-section {
  display: none;
}

/* line 82, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
#incoterm-section {
  display: none;
}

/* line 85, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-section-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 94, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-section-title i {
  color: #C38761;
  font-size: 1rem;
}

/* line 98, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.lightmode .adv-new-sales-article-section-title i {
  color: #140D23;
}

/* === FORM GROUPS === */
/* line 105, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* line 112, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* line 117, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-form-group label {
  opacity: 1;
}

/* line 122, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-form-group-row {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 15px;
}

/* line 128, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-form-group-row .adv-new-sales-article-form-group {
  flex: 1;
}

/* === LABELS === */
/* line 134, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: inherit;
  margin-bottom: 5px;
}

/* line 140, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.lightmode .adv-new-sales-article-label {
  color: #140D23;
}

/* === PRICE TTC DISPLAY === */
/* line 146, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-price-ttc-display {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 12px 16px;
  background: rgba(195, 135, 97, 0.1);
  border: 1.5px solid rgba(195, 135, 97, 0.3);
  border-radius: 12px;
}

/* line 155, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-price-ttc-display .adv-new-sales-article-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0;
  color: #C38761;
}

/* line 163, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.lightmode .adv-new-sales-article-price-ttc-display .adv-new-sales-article-label {
  color: #140D23;
}

/* line 168, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-price-ttc-display .adv-new-sales-article-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #C38761;
}

/* line 173, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.lightmode .adv-new-sales-article-price-ttc-display .adv-new-sales-article-value {
  color: #140D23;
}

/* line 178, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.lightmode .adv-new-sales-article-price-ttc-display {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* === INPUTS === */
/* line 185, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-input {
  width: 100%;
  border-radius: 12px;
  border: 1.5px solid rgba(232, 232, 232, 0.7);
  background: transparent;
  font-size: 0.8rem;
  color: inherit;
  padding: 12px 16px;
  margin: 0;
  box-sizing: border-box;
  font-family: inherit;
  text-align: left;
  transition: border-color 0.2s, box-shadow 0.2s;
}

/* line 199, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-input:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.15);
}

/* line 205, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-input::placeholder {
  color: #e8e8e8;
  opacity: 1;
  font-size: 0.75rem;
  font-family: inherit;
}

/* line 212, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.lightmode .adv-new-sales-article-input {
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.3);
  background: rgba(255, 255, 255, 0.7);
}

/* line 217, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.lightmode .adv-new-sales-article-input::placeholder {
  color: rgba(20, 13, 35, 0.5);
}

/* line 221, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.lightmode .adv-new-sales-article-input:focus {
  border-color: #140D23;
  box-shadow: 0 0 0 2px rgba(20, 13, 35, 0.15);
}

/* line 227, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.nightmode .adv-new-sales-article-input {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(20, 13, 35, 0.2);
}

/* line 232, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.nightmode .adv-new-sales-article-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

/* line 238, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
}

/* line 251, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-textarea {
  min-height: 80px;
  resize: vertical;
  font-family: inherit;
}

/* line 257, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-textarea-small {
  min-height: 60px;
  resize: vertical;
  font-family: inherit;
}

/* === FILE INPUTS === */
/* line 264, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-file {
  padding: 10px 12px;
  cursor: pointer;
}

/* line 268, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-file::-webkit-file-upload-button {
  background: #C38761;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  margin-right: 12px;
  cursor: pointer;
  font-size: 0.75rem;
  transition: background 0.2s;
}

/* line 279, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-file::-webkit-file-upload-button:hover {
  background: #C38761;
}

/* line 283, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.lightmode .adv-new-sales-article-file::-webkit-file-upload-button {
  background: #140D23;
}

/* line 286, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.lightmode .adv-new-sales-article-file::-webkit-file-upload-button:hover {
  background: black;
}

/* line 292, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-file::file-selector-button {
  background: #C38761;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  margin-right: 12px;
  cursor: pointer;
  font-size: 0.75rem;
  transition: background 0.2s;
}

/* line 303, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-file::file-selector-button:hover {
  background: #C38761;
}

/* line 307, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.lightmode .adv-new-sales-article-file::file-selector-button {
  background: #140D23;
}

/* line 310, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.lightmode .adv-new-sales-article-file::file-selector-button:hover {
  background: black;
}

/* === CHECKBOX === */
/* line 318, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}

/* line 325, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-checkbox {
  width: 18px;
  height: 18px;
  accent-color: #C38761;
  cursor: pointer;
}

/* line 331, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.lightmode .adv-new-sales-article-checkbox {
  accent-color: #140D23;
}

/* line 336, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-checkbox-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: inherit;
  cursor: pointer;
  margin: 0;
  opacity: 1;
}

/* line 344, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.lightmode .adv-new-sales-article-checkbox-label {
  color: #140D23;
}

/* === HELP TEXT === */
/* line 350, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-help {
  font-size: 0.7rem;
  color: #e8e8e8;
  margin-top: 5px;
  font-style: italic;
}

/* line 356, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.lightmode .adv-new-sales-article-help {
  color: rgba(20, 13, 35, 0.6);
}

/* === ALERT MESSAGES === */
/* line 362, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-alert {
  margin: 1rem 0;
  padding: 1rem;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: 4px;
  color: #721c24;
}

/* line 370, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-alert strong {
  font-weight: 600;
}

/* line 374, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.lightmode .adv-new-sales-article-alert {
  background-color: #fee;
  border-color: #fcc;
  color: #c00;
}

/* line 381, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-alert-list {
  margin: 0.5rem 0 0 1.5rem;
  padding: 0;
}

/* line 385, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-alert-list li {
  margin-bottom: 0.25rem;
}

/* line 388, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-alert-list li:last-child {
  margin-bottom: 0;
}

/* === TOAST NOTIFICATIONS === */
/* line 395, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: rgba(239, 68, 68, 0.95);
  color: white;
  padding: 16px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  max-width: 400px;
  font-size: 0.9rem;
  line-height: 1.4;
  white-space: pre-line;
  animation: adv-new-sales-article-slide-in-right 0.3s ease-out;
}

/* line 411, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-toast.adv-new-sales-article-toast--exiting {
  animation: adv-new-sales-article-slide-out-right 0.3s ease-out;
}

/* line 415, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.lightmode .adv-new-sales-article-toast {
  background-color: rgba(220, 38, 38, 0.95);
}

/* Animations pour les toasts */
@keyframes adv-new-sales-article-slide-in-right {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes adv-new-sales-article-slide-out-right {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* === ACTIONS === */
/* line 444, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-actions {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(232, 232, 232, 0.3);
}

/* line 454, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.lightmode .adv-new-sales-article-actions {
  border-top-color: rgba(20, 13, 35, 0.2);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  /* line 461, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
  .adv-new-sales-article-capsule {
    width: 95%;
    margin: 15px auto;
    padding: 20px 15px;
    gap: 20px;
  }
  /* line 468, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
  .adv-new-sales-article-section {
    padding: 15px;
  }
  /* line 472, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
  .adv-new-sales-article-form-group-row {
    flex-direction: column;
    gap: 10px;
  }
  /* line 477, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
  .adv-new-sales-article-actions {
    flex-direction: column;
    gap: 10px;
  }
  /* line 481, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
  .adv-new-sales-article-actions .adv-button-regular,
.adv-new-sales-article-actions .adv-cancel-button {
    width: 100%;
    text-align: center;
  }
  /* line 488, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
  .adv-new-sales-article-header h2, .adv-new-sales-article-header .h2 {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  /* line 494, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
  .adv-new-sales-article-capsule {
    padding: 15px 10px;
  }
  /* line 498, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
  .adv-new-sales-article-section {
    padding: 12px;
  }
  /* line 502, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
  .adv-new-sales-article-input {
    padding: 10px 12px;
    font-size: 0.75rem;
  }
  /* line 507, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
  .adv-new-sales-article-section-title {
    font-size: 1rem;
  }
}

/* === ANIMATIONS === */
/* line 513, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-section {
  transition: all 0.3s ease;
}

/* line 516, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-section:hover {
  border-color: rgba(195, 135, 97, 0.5);
}

/* line 519, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.lightmode .adv-new-sales-article-section:hover {
  border-color: rgba(20, 13, 35, 0.4);
}

/* line 525, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-input {
  transition: all 0.2s ease;
}

/* line 528, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-input:hover {
  border-color: rgba(195, 135, 97, 0.6);
}

/* line 531, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.lightmode .adv-new-sales-article-input:hover {
  border-color: rgba(20, 13, 35, 0.5);
}

/* === LEGACY STYLES (à supprimer progressivement) === */
/* line 538, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-row1,
.adv-new-sales-article-row1-scrollbar,
.adv-new-sales-article-row2,
.adv-new-sales-article-row1-form,
.adv-new-sales-article-row1-form-content,
.adv-new-sales-article-row1-form-field {
  display: none;
}

/* line 547, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.form-button, .crm-action-button, .users-management-container .users-header .add-user-btn,
.form-button-cancel {
  display: none;
}

/* line 552, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-capsule p,
.adv-new-sales-article-capsule span {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 559, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-capsule.lightmode span {
  color: #C38761;
}

/* line 563, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-capsule.nightmode span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 567, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-capsule.lightmode p {
  color: #140D23;
}

/* line 571, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-capsule.nightmode p {
  color: #FFFFFF;
}

/* line 575, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-capsule.lightmode i {
  color: #140D23;
}

/* line 579, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.adv-new-sales-article-capsule.nightmode i {
  color: #FFFFFF;
}

/* ==========================================================================
   ARTICLE TYPE SELECTOR (Produit/Service)
   ========================================================================== */
/* line 587, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.article-type-selector {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
}

@media (max-width: 768px) {
  /* line 587, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
  .article-type-selector {
    flex-direction: column;
  }
}

/* line 598, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.article-type-option {
  flex: 1;
  position: relative;
  cursor: pointer;
  margin: 0;
}

/* line 604, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.article-type-option .article-type-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* line 610, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.article-type-option .article-type-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 20px;
  border: 2px solid rgba(232, 232, 232, 0.3);
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
  min-height: 120px;
}

/* line 623, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.lightmode .article-type-option .article-type-label {
  border-color: rgba(20, 13, 35, 0.2);
  background-color: rgba(255, 255, 255, 0.5);
}

/* line 628, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.article-type-option .article-type-label i {
  font-size: 2rem;
  color: #e8e8e8;
  transition: all 0.3s ease;
}

/* line 633, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.lightmode .article-type-option .article-type-label i {
  color: #140D23;
}

/* line 638, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.article-type-option .article-type-label span {
  font-size: 1rem;
  font-weight: 600;
  color: #e8e8e8;
  transition: all 0.3s ease;
}

/* line 644, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.lightmode .article-type-option .article-type-label span {
  color: #140D23;
}

/* line 649, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.article-type-option .article-type-label:hover {
  border-color: rgba(195, 135, 97, 0.5);
  background-color: rgba(195, 135, 97, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(195, 135, 97, 0.15);
}

/* line 655, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.lightmode .article-type-option .article-type-label:hover {
  border-color: rgba(20, 13, 35, 0.5);
  background-color: rgba(20, 13, 35, 0.08);
  box-shadow: 0 4px 12px rgba(20, 13, 35, 0.15);
}

/* line 661, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.article-type-option .article-type-label:hover i {
  color: #C38761;
  transform: scale(1.1);
}

/* line 665, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.lightmode .article-type-option .article-type-label:hover i {
  color: #140D23;
}

/* line 670, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.article-type-option .article-type-label:hover span {
  color: #C38761;
}

/* line 673, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.lightmode .article-type-option .article-type-label:hover span {
  color: #140D23;
}

/* line 680, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.article-type-option .article-type-radio:checked + .article-type-label {
  border-color: #C38761;
  background-color: rgba(195, 135, 97, 0.15);
  box-shadow: 0 4px 16px rgba(195, 135, 97, 0.25);
}

/* line 685, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.lightmode .article-type-option .article-type-radio:checked + .article-type-label {
  border-color: #140D23;
  background-color: rgba(20, 13, 35, 0.15);
  box-shadow: 0 4px 16px rgba(20, 13, 35, 0.25);
}

/* line 691, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.article-type-option .article-type-radio:checked + .article-type-label i {
  color: #C38761;
  transform: scale(1.15);
}

/* line 695, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.lightmode .article-type-option .article-type-radio:checked + .article-type-label i {
  color: #140D23;
}

/* line 700, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.article-type-option .article-type-radio:checked + .article-type-label span {
  color: #C38761;
  font-weight: 700;
}

/* line 704, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_new_sales_article.scss */
.lightmode .article-type-option .article-type-radio:checked + .article-type-label span {
  color: #140D23;
}

/* ==========================================================================
   SALES ARTICLES LIST - MODULE ADV
   Structure principale et composants pour la gestion des articles de vente
   ========================================================================== */
/* ==========================================================================
   LAYOUT PRINCIPAL - Structure générale du module
   ========================================================================== */
/* line 10, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-capsule {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 5px 20px;
  font-size: 0.8rem;
  gap: 10px;
  overflow: hidden;
}

/* line 22, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-capsule.lightmode {
  color: #140D23;
}

/* line 26, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-capsule.nightmode {
  color: #FFFFFF;
}

/* line 31, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 37, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-capsule span {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* Variations de thème clair/sombre */
/* line 44, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-capsule.lightmode span {
  color: #C38761;
}

/* line 48, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-capsule.nightmode span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 52, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-capsule.lightmode p {
  color: #140D23;
}

/* line 56, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-capsule.nightmode p {
  color: #FFFFFF;
}

/* line 60, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-capsule.lightmode i {
  color: #140D23;
}

/* line 64, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-capsule.nightmode i {
  color: #FFFFFF;
}

/* ==========================================================================
   BARRE SUPÉRIEURE - Recherche et bouton création
   ========================================================================== */
/* line 72, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-row1 {
  width: 80%;
  height: 50px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  flex-shrink: 0;
  margin-bottom: 5px;
}

/* line 83, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-row1 form {
  width: 100%;
  display: flex;
  padding: 0 !important;
}

/* ==========================================================================
   BARRE DE RECHERCHE - Composants et fonctionnalités
   ========================================================================== */
/* line 94, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-row1-searchbar {
  width: 100%;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-content: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
  /* Utilise maintenant la classe générique adv-searchbar */
}

/* line 107, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-capsule.lightmode .adv-sales-articles-list-row1-searchbar {
  border-color: rgba(20, 13, 35, 0.5);
  color: #140D23;
}

/* line 112, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-row1-searchbar .adv-sales-articles-list-search-form {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 119, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-row1-searchbar .adv-sales-articles-list-search-input-wrapper {
  position: relative;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

/* line 128, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-row1-searchbar .adv-sales-articles-list-clear-search-button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 0.6rem;
  text-decoration: none;
}

/* line 143, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-capsule.lightmode .adv-sales-articles-list-row1-searchbar .adv-sales-articles-list-clear-search-button {
  color: #140D23;
}

/* line 147, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-row1-searchbar .adv-sales-articles-list-clear-search-button:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* line 150, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-capsule.lightmode .adv-sales-articles-list-row1-searchbar .adv-sales-articles-list-clear-search-button:hover {
  color: rgba(20, 13, 35, 0.7);
}

/* line 156, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-row1-searchbar button {
  all: unset;
  cursor: pointer;
}

/* line 161, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-row1-searchbar .adv-sales-articles-list-search-button {
  padding: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 169, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-row1-searchbar i {
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 174, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-capsule.lightmode .adv-sales-articles-list-row1-searchbar i {
  color: #140D23 !important;
}

/* line 179, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-row1-searchbar span {
  font-weight: normal !important;
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 185, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-capsule.lightmode .adv-sales-articles-list-row1-searchbar span {
  color: #140D23 !important;
}

/* Bannière d'information sur la recherche en cours */
/* line 192, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-search-info {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: #FFFFFF;
  margin-bottom: -10px;
  z-index: 5;
}

/* line 202, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-capsule.lightmode .adv-sales-articles-list-search-info {
  color: #140D23;
}

/* line 206, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-search-info span {
  opacity: 0.8;
}

/* line 210, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-search-info .adv-sales-articles-list-reset-search-link {
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s ease;
}

/* line 221, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-capsule.lightmode .adv-sales-articles-list-search-info .adv-sales-articles-list-reset-search-link {
  color: #140D23;
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 226, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-search-info .adv-sales-articles-list-reset-search-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 229, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-capsule.lightmode .adv-sales-articles-list-search-info .adv-sales-articles-list-reset-search-link:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* ==========================================================================
   CONTENEUR PRINCIPAL DES DONNÉES - Structure du tableau des articles
   ========================================================================== */
/* line 240, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-row2 {
  width: 80%;
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 15px;
  overflow: hidden;
  margin-top: 5px;
}

/* line 254, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-capsule.lightmode .adv-sales-articles-list-row2 {
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 259, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-row2-list {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

/* ==========================================================================
   EN-TÊTE DU TABLEAU - Titres des colonnes et tri
   ========================================================================== */
/* line 272, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-row2-list-head {
  width: 97%;
  display: flex;
  padding-right: 8px;
  flex-direction: row;
  font-weight: bold;
  font-size: 0.75rem;
  margin-bottom: 5px;
  color: #FFFFFF;
}

/* line 282, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-capsule.lightmode .adv-sales-articles-list-row2-list-head {
  color: #140D23;
}

/* line 287, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-row2-list-head .adv-sales-articles-list-row2-list-column {
  width: 20%;
  text-align: center;
  justify-content: center;
}

/* line 292, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-row2-list-head .adv-sales-articles-list-row2-list-column.sortable {
  cursor: pointer;
  transition: background-color 0.2s ease;
}

/* line 296, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-row2-list-head .adv-sales-articles-list-row2-list-column.sortable:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

/* line 299, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-capsule.lightmode .adv-sales-articles-list-row2-list-head .adv-sales-articles-list-row2-list-column.sortable:hover {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 304, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-row2-list-head .adv-sales-articles-list-row2-list-column.sortable .sort-link {
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 100%;
  height: 100%;
}

/* line 314, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-capsule.lightmode .adv-sales-articles-list-row2-list-head .adv-sales-articles-list-row2-list-column.sortable .sort-link {
  color: #140D23;
}

/* line 318, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-row2-list-head .adv-sales-articles-list-row2-list-column.sortable .sort-link i {
  font-size: 0.6rem !important;
}

/* line 321, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-capsule.lightmode .adv-sales-articles-list-row2-list-head .adv-sales-articles-list-row2-list-column.sortable .sort-link i {
  color: #140D23 !important;
}

/* Styles communs pour les colonnes */
/* line 330, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-row2-list-column {
  display: flex;
  align-items: center;
  font-size: 0.7rem;
  padding: 5px 10px;
}

/* ==========================================================================
   CORPS DU TABLEAU - Liste des articles avec défilement
   ========================================================================== */
/* line 341, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-row2-list-entries {
  width: 100%;
  height: calc(100% - 30px);
  display: flex;
  gap: 5px;
  flex-direction: column;
  overflow-y: auto;
}

/* line 349, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-row2-list-entries::-webkit-scrollbar {
  width: 8px;
}

/* line 353, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-row2-list-entries::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 357, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-capsule.lightmode .adv-sales-articles-list-row2-list-entries::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 362, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-row2-list-entries::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 367, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-row2-list-entries::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 370, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-capsule.lightmode .adv-sales-articles-list-row2-list-entries::-webkit-scrollbar-thumb:hover {
  background: #140D23;
}

/* Lignes du tableau des articles */
/* line 377, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-row2-list-entry {
  width: 97%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  font-size: 0.7rem;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 2px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 40px;
  padding: 3px 0;
  margin-bottom: 2px;
  color: #FFFFFF;
}

/* line 395, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-capsule.lightmode .adv-sales-articles-list-row2-list-entry {
  color: #140D23;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 2px;
}

/* line 400, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-row2-list-entry:hover {
  transform: scale(1.01);
  transition: transform 0.3s ease;
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 405, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-capsule.lightmode .adv-sales-articles-list-row2-list-entry:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 410, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-row2-list-entry .adv-sales-articles-list-row2-list-column {
  width: 20%;
  text-align: center;
  justify-content: center;
}

/* Message quand aucun article n'est trouvé */
/* line 418, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.no-results {
  width: 100%;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-top: 10px;
}

/* line 428, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.adv-sales-articles-list-capsule.lightmode .no-results {
  color: #140D23;
  background-color: rgba(20, 13, 35, 0.05);
}

/* ==========================================================================
   BOUTON DE CRÉATION - Style du bouton pour créer un nouvel article
   ========================================================================== */
/* line 438, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.form-button, .crm-action-button, .users-management-container .users-header .add-user-btn {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  border: none;
  cursor: pointer;
  background-color: #C38761;
  color: #FFFFFF;
}

/* line 453, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.form-button:hover, .crm-action-button:hover, .users-management-container .users-header .add-user-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Classes utilitaires */
/* line 460, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_sales_articles_list.scss */
.d-none {
  display: none !important;
}

/* line 1, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-capsule {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 10px 30px 10px 30px;
  font-size: 0.8rem;
  gap: 10px;
}

/* line 12, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-capsule.lightmode {
  color: #140D23;
}

/* line 17, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 23, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-capsule span {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 29, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-capsule.lightmode span {
  color: #140D23;
}

/* line 33, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-capsule.nightmode span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 37, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-capsule.lightmode p {
  color: #140D23;
}

/* line 41, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-capsule.nightmode p {
  color: #FFFFFF;
}

/* line 45, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-capsule.lightmode i {
  color: #140D23;
}

/* line 49, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-capsule.nightmode i {
  color: #FFFFFF;
}

/* Container principal avec les deux colonnes */
/* line 54, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-main-container {
  width: 100%;
  padding: 15px 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  gap: 15px;
  margin-bottom: 10px;
}

/* line 66, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.lightmode .adv-show-sales-article-main-container {
  background-color: rgba(20, 13, 35, 0.05);
  border: 1px solid rgba(20, 13, 35, 0.3);
}

/* line 71, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-main-container h2, .adv-show-sales-article-main-container .h2 {
  all: unset;
  font-size: 0.75rem;
  text-align: center;
  font-weight: 600;
  margin-bottom: 12px;
}

/* Colonne gauche (40%) */
/* line 81, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-left-column {
  width: 40%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

/* Section hiérarchie */
/* line 92, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-hierarchy-section {
  width: 100%;
  height: 20%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(232, 232, 232, 0.5);
  border-radius: 15px;
  padding: 15px;
}

/* line 104, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.lightmode .adv-show-sales-article-hierarchy-section {
  background-color: rgba(20, 13, 35, 0.05);
  border: 1px solid rgba(20, 13, 35, 0.3);
}

/* line 110, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-hierarchy-item {
  width: 100%;
  height: 33.33%;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 5px;
}

/* line 118, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-hierarchy-item .arrow-right {
  position: relative;
  width: 30%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 126, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-hierarchy-item .arrow-right::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: white;
  transform: translateY(-50%);
}

/* line 134, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.lightmode .adv-show-sales-article-hierarchy-item .arrow-right::after {
  background-color: #140D23;
}

/* line 140, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-hierarchy-item .adv-show-sales-article-hierarchy-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 10px;
  text-align: center;
}

/* line 149, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-hierarchy-item .adv-show-sales-article-hierarchy-content a {
  all: unset;
  font-size: 0.8rem;
  color: white;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  white-space: nowrap;
}

/* line 157, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.lightmode .adv-show-sales-article-hierarchy-item .adv-show-sales-article-hierarchy-content a {
  color: #140D23;
}

/* line 162, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-hierarchy-item .adv-show-sales-article-hierarchy-content a:hover p {
  color: #C38761;
}

/* line 167, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-hierarchy-item .adv-show-sales-article-hierarchy-content a p {
  margin: 0;
  font-size: 0.8rem;
}

/* line 173, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-hierarchy-item .adv-show-sales-article-hierarchy-content p {
  margin: 0;
  font-size: 0.8rem;
  white-space: nowrap;
  transition: 0.3s ease-in-out;
}

/* Section image */
/* line 183, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-image-section {
  width: 100%;
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(232, 232, 232, 0.5);
  border-radius: 15px;
  padding: 15px;
}

/* line 195, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.lightmode .adv-show-sales-article-image-section {
  background-color: rgba(20, 13, 35, 0.05);
  border: 1px solid rgba(20, 13, 35, 0.3);
}

/* line 201, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* line 211, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-image-container h3, .adv-show-sales-article-image-container .h3 {
  font-size: 0.8rem;
  text-align: center;
  color: #C38761;
  font-weight: bold;
}

/* line 217, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.lightmode .adv-show-sales-article-image-container h3, .lightmode .adv-show-sales-article-image-container .h3 {
  color: #140D23;
}

/* line 223, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-image-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  width: 100%;
}

/* Colonne droite (60%) */
/* line 234, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-right-column {
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding-right: 5px;
  overflow-y: auto;
  /* Personnalisation de la barre de défilement */
}

/* line 246, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-right-column::-webkit-scrollbar {
  width: 8px;
}

/* line 250, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-right-column::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 255, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-right-column::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 260, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-right-column::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 265, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.lightmode .adv-show-sales-article-right-column::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* Section informations générales */
/* line 272, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-info-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Section CGV (en dehors du main-container) */
/* line 280, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-cgv-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}

/* line 289, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.lightmode .adv-show-sales-article-cgv-section {
  background-color: rgba(20, 13, 35, 0.05);
  border: 1px solid rgba(20, 13, 35, 0.3);
}

/* line 294, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-cgv-section h2, .adv-show-sales-article-cgv-section .h2 {
  all: unset;
  font-size: 1rem;
  text-align: center;
  font-weight: bold;
  color: #FFFFFF;
  margin-bottom: 10px;
}

/* line 302, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.lightmode .adv-show-sales-article-cgv-section h2, .lightmode .adv-show-sales-article-cgv-section .h2 {
  color: #140D23;
}

/* Container pour les cards de CGV */
/* line 309, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-cgv-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  width: 100%;
}

@media (max-width: 1024px) {
  /* line 309, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
  .adv-show-sales-article-cgv-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* line 309, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
  .adv-show-sales-article-cgv-cards-container {
    grid-template-columns: 1fr;
  }
}

/* Card individuelle de CGV */
/* line 325, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-cgv-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(232, 232, 232, 0.5);
  border-radius: 15px;
  transition: all 0.3s ease;
}

/* line 337, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.lightmode .adv-show-sales-article-cgv-card {
  background-color: rgba(20, 13, 35, 0.05);
  border: 1px solid rgba(20, 13, 35, 0.3);
}

/* line 342, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-cgv-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #C38761;
}

/* line 349, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-cgv-card-icon {
  font-size: 2rem;
  color: #C38761;
  margin-bottom: 10px;
}

/* line 355, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-cgv-card-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

/* line 363, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-cgv-card-filename {
  font-size: 0.85rem;
  font-weight: 500;
  color: #FFFFFF;
  text-align: center;
  margin: 0;
}

/* line 370, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.lightmode .adv-show-sales-article-cgv-card-filename {
  color: #140D23;
}

/* line 375, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-cgv-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 15px;
  background-color: rgba(195, 135, 97, 0.2);
  border: 1px solid #C38761;
  border-radius: 8px;
  color: #C38761;
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* line 389, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-cgv-card-link:hover {
  background-color: #C38761;
  color: #FFFFFF;
  transform: scale(1.05);
}

/* line 395, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-cgv-card-link i {
  font-size: 0.9rem;
}

/* Container pour l'état vide (pas de CGV) */
/* line 401, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-cgv-no-content {
  width: 100%;
}

/* line 405, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-cgv-empty-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 30px 20px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(232, 232, 232, 0.3);
  border-radius: 15px;
}

/* line 416, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.lightmode .adv-show-sales-article-cgv-empty-card {
  background-color: rgba(20, 13, 35, 0.03);
  border: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 421, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-cgv-empty-card i {
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.3);
}

/* line 425, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.lightmode .adv-show-sales-article-cgv-empty-card i {
  color: rgba(20, 13, 35, 0.3);
}

/* line 430, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-cgv-empty-card p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* line 436, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.lightmode .adv-show-sales-article-cgv-empty-card p {
  color: rgba(20, 13, 35, 0.6);
}

/* Section article d'achat associé */
/* line 443, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-purchase-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* Utilise les mêmes styles que .adv-show-sales-article-info-card définis plus haut */
}

/* line 451, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-purchase-section .edit-icon-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* line 455, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-purchase-section .edit-icon-button:disabled:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: none;
}

/* line 459, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.lightmode .adv-show-sales-article-purchase-section .edit-icon-button:disabled:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* Boutons d'action */
/* line 468, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-actions {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
}

/* Cartes d'information */
/* line 479, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-info-card {
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* line 488, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.lightmode .adv-show-sales-article-info-card {
  background-color: rgba(20, 13, 35, 0.07);
  border: 1px solid rgba(20, 13, 35, 0.3);
}

/* line 493, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-info-card .adv-show-sales-article-card-title {
  padding: 0.6rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  /* Bouton d'ajout */
}

/* line 503, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.lightmode .adv-show-sales-article-info-card .adv-show-sales-article-card-title {
  background-color: rgba(20, 13, 35, 0.1);
  border-bottom: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 508, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-info-card .adv-show-sales-article-card-title p {
  all: unset;
  font-size: 0.68rem !important;
  margin: 0;
  font-weight: normal !important;
}

/* line 514, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-info-card .adv-show-sales-article-card-title h3, .adv-show-sales-article-info-card .adv-show-sales-article-card-title .h3 {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 500;
}

/* line 520, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-info-card .adv-show-sales-article-card-title i {
  font-size: 0.9rem;
}

/* line 525, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-info-card .adv-show-sales-article-card-title .add-btn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  margin: 0;
  margin-left: auto;
  outline: none;
}

/* line 542, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.lightmode .adv-show-sales-article-info-card .adv-show-sales-article-card-title .add-btn {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 548, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-info-card .adv-show-sales-article-card-title .add-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 551, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.lightmode .adv-show-sales-article-info-card .adv-show-sales-article-card-title .add-btn:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* line 558, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-info-card .card-content {
  padding: 1rem;
  flex-grow: 1;
}

/* line 562, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-info-card .card-content.scrollable {
  max-height: 200px;
  overflow-y: auto;
}

/* line 566, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-info-card .card-content.scrollable::-webkit-scrollbar {
  width: 6px;
}

/* line 570, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-info-card .card-content.scrollable::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

/* line 574, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-info-card .card-content.scrollable::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 3px;
}

/* line 580, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.lightmode .adv-show-sales-article-info-card .card-content.scrollable::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.05);
}

/* line 586, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-info-card .card-content .email-link,
.adv-show-sales-article-info-card .card-content .phone-link {
  font-size: 0.9rem;
  color: #C38761;
  text-decoration: none;
}

/* line 592, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-info-card .card-content .email-link:hover,
.adv-show-sales-article-info-card .card-content .phone-link:hover {
  text-decoration: underline;
}

/* line 597, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-info-card .card-content .no-data {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

/* line 602, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.lightmode .adv-show-sales-article-info-card .card-content .no-data {
  color: rgba(20, 13, 35, 0.5);
}

/* Styles pour les icônes d'édition */
/* line 610, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.edit-icon-button {
  width: 22px;
  height: 22px;
  background-color: transparent;
  border: none;
  color: white;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  margin: 0;
  margin-left: auto;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 629, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.lightmode .edit-icon-button {
  color: #140D23;
}

/* line 633, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.edit-icon-button:hover {
  color: #C38761;
  scale: 1.1;
}

/* line 638, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.edit-icon-button i {
  font-size: 12px;
}

/* Styles pour les boutons avec icônes */
/* line 644, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.delete-button,
.return-button {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FFFFFF !important;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

/* line 659, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.lightmode .delete-button, .lightmode .return-button {
  color: #140D23 !important;
}

/* line 663, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.delete-button i,
.return-button i {
  font-size: 14px;
  padding-left: 5px;
}

/* line 666, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.lightmode .delete-button i, .lightmode .return-button i {
  color: #140D23;
}

/* line 669, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.nightmode .delete-button i, .nightmode .return-button i {
  color: #FFFFFF;
}

/* line 675, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
#sales-article-image {
  width: 300px;
  height: 300px;
}

/* === NOUVELLES SECTIONS === */
/* Sections Spécifications (physiques, temporelles, logistique) */
/* line 683, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-specs-section,
.adv-show-sales-article-temporal-section,
.adv-show-sales-article-logistics-section {
  width: 100%;
  padding: 12px 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(232, 232, 232, 0.3);
  border-radius: 12px;
  margin-bottom: 10px;
}

/* line 693, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.lightmode .adv-show-sales-article-specs-section, .lightmode .adv-show-sales-article-temporal-section, .lightmode .adv-show-sales-article-logistics-section {
  background-color: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 698, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-specs-section h2, .adv-show-sales-article-specs-section .h2,
.adv-show-sales-article-temporal-section h2,
.adv-show-sales-article-temporal-section .h2,
.adv-show-sales-article-logistics-section h2,
.adv-show-sales-article-logistics-section .h2 {
  all: unset;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
  text-align: center;
  color: inherit;
}

/* Grids pour les sections de spécifications */
/* line 710, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-specs-grid,
.adv-show-sales-article-temporal-grid,
.adv-show-sales-article-logistics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

/* Section Documents */
/* line 720, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-documents-section {
  width: 100%;
  padding: 12px 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(232, 232, 232, 0.3);
  border-radius: 12px;
  margin-bottom: 10px;
}

/* line 728, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.lightmode .adv-show-sales-article-documents-section {
  background-color: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 733, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-documents-section h2, .adv-show-sales-article-documents-section .h2 {
  all: unset;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
  text-align: center;
  color: inherit;
}

/* line 744, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 12px;
  margin-top: 10px;
}

/* line 751, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-document-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(232, 232, 232, 0.3);
  border-radius: 10px;
  transition: all 0.3s ease;
}

/* line 762, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.lightmode .adv-show-sales-article-document-card {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 767, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-document-card:hover {
  border-color: #C38761;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(195, 135, 97, 0.1);
}

/* line 772, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.lightmode .adv-show-sales-article-document-card:hover {
  border-color: #140D23;
  box-shadow: 0 4px 12px rgba(20, 13, 35, 0.1);
}

/* line 779, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-document-icon {
  font-size: 1.5rem;
  color: #C38761;
  flex-shrink: 0;
}

/* line 784, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.lightmode .adv-show-sales-article-document-icon {
  color: #140D23;
}

/* line 789, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-document-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* line 795, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-document-info h3, .adv-show-sales-article-document-info .h3 {
  all: unset;
  font-size: 0.8rem;
  font-weight: 600;
  color: inherit;
  display: block;
}

/* line 803, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-document-info p {
  all: unset;
  font-size: 0.7rem;
  color: #e8e8e8;
  display: block;
}

/* line 809, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.lightmode .adv-show-sales-article-document-info p {
  color: rgba(20, 13, 35, 0.7);
}

/* line 815, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-document-filename {
  font-size: 0.7rem !important;
  color: #e8e8e8 !important;
  font-style: italic;
}

/* line 820, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.lightmode .adv-show-sales-article-document-filename {
  color: rgba(20, 13, 35, 0.6) !important;
}

/* line 825, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-document-link {
  all: unset;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: #C38761;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

/* line 836, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.lightmode .adv-show-sales-article-document-link {
  color: #140D23;
}

/* line 840, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-document-link:hover {
  color: #C38761;
  text-decoration: underline;
}

/* line 844, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.lightmode .adv-show-sales-article-document-link:hover {
  color: black;
}

/* line 849, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-document-link i {
  font-size: 0.75rem;
}

/* Section Options */
/* line 855, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-options-section {
  width: 100%;
  padding: 12px 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(232, 232, 232, 0.3);
  border-radius: 12px;
  margin-bottom: 10px;
}

/* line 863, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.lightmode .adv-show-sales-article-options-section {
  background-color: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 868, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-options-section h2, .adv-show-sales-article-options-section .h2 {
  all: unset;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
  text-align: center;
  color: inherit;
}

/* line 879, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 10px;
}

/* line 886, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-option-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(232, 232, 232, 0.3);
  border-radius: 10px;
}

/* line 896, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.lightmode .adv-show-sales-article-option-card {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 902, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-option-icon {
  font-size: 1.5rem;
  color: #C38761;
  flex-shrink: 0;
}

/* line 907, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.lightmode .adv-show-sales-article-option-icon {
  color: #140D23;
}

/* line 912, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-option-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* line 918, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-option-info h3, .adv-show-sales-article-option-info .h3 {
  all: unset;
  font-size: 0.8rem;
  font-weight: 600;
  color: inherit;
  display: block;
}

/* line 926, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-option-info p {
  all: unset;
  font-size: 0.7rem;
  color: #e8e8e8;
  display: block;
}

/* line 932, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.lightmode .adv-show-sales-article-option-info p {
  color: rgba(20, 13, 35, 0.7);
}

/* Status badges */
/* line 939, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.status-badge {
  all: unset;
  display: inline-flex !important;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 15px;
  font-size: 0.65rem !important;
  font-weight: 500;
}

/* line 949, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.status-badge i {
  font-size: 0.7rem;
}

/* line 954, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.status-active {
  background-color: rgba(195, 135, 97, 0.2);
  color: #C38761;
  border: 1px solid #C38761;
}

/* line 959, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.lightmode .status-active {
  background-color: rgba(76, 175, 80, 0.15);
  color: #2e7d32;
  border-color: #2e7d32;
}

/* line 966, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.status-inactive {
  background-color: rgba(232, 232, 232, 0.2);
  color: #e8e8e8;
  border: 1px solid #e8e8e8;
}

/* line 971, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.lightmode .status-inactive {
  background-color: rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.6);
  border-color: rgba(20, 13, 35, 0.3);
}

/* Section Connectivité */
/* line 979, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-connectivity-section {
  width: 100%;
  padding: 12px 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(232, 232, 232, 0.3);
  border-radius: 12px;
  margin-bottom: 10px;
}

/* line 987, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.lightmode .adv-show-sales-article-connectivity-section {
  background-color: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 992, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-connectivity-section h2, .adv-show-sales-article-connectivity-section .h2 {
  all: unset;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
  text-align: center;
  color: inherit;
}

/* line 1003, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-connectivity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 10px;
}

/* line 1010, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-connectivity-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(232, 232, 232, 0.3);
  border-radius: 10px;
  transition: all 0.3s ease;
}

/* line 1021, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.lightmode .adv-show-sales-article-connectivity-card {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 1026, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-connectivity-card:hover {
  border-color: #C38761;
  transform: translateY(-2px);
}

/* line 1030, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.lightmode .adv-show-sales-article-connectivity-card:hover {
  border-color: #140D23;
}

/* line 1036, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-connectivity-icon {
  font-size: 1.5rem;
  color: #C38761;
  flex-shrink: 0;
}

/* line 1041, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.lightmode .adv-show-sales-article-connectivity-icon {
  color: #140D23;
}

/* line 1046, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-connectivity-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* line 1052, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-connectivity-info h3, .adv-show-sales-article-connectivity-info .h3 {
  all: unset;
  font-size: 0.8rem;
  font-weight: 600;
  color: inherit;
  display: block;
}

/* line 1060, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-connectivity-info p {
  all: unset;
  font-size: 0.7rem;
  color: #e8e8e8;
  display: block;
}

/* line 1066, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.lightmode .adv-show-sales-article-connectivity-info p {
  color: rgba(20, 13, 35, 0.7);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  /* line 1074, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
  .adv-show-sales-article-specs-grid,
.adv-show-sales-article-temporal-grid,
.adv-show-sales-article-logistics-grid,
.adv-show-sales-article-documents-grid,
.adv-show-sales-article-options-grid,
.adv-show-sales-article-connectivity-grid {
    grid-template-columns: 1fr;
  }
  /* line 1083, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
  .adv-show-sales-article-document-card,
.adv-show-sales-article-option-card,
.adv-show-sales-article-connectivity-card {
    flex-direction: column;
    text-align: center;
  }
}

/* line 1091, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
#certification-section,
#incoterm-section {
  display: none;
}

/* line 1096, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
#uploadTechnicalSheetButton,
#uploadPdfButton {
  width: fit-content;
}

/* line 1101, app/assets/stylesheets/pages/servicespace/back-office/adv/sale_item_management/_show_sales_article.scss */
.adv-show-sales-article-document-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
  margin-top: 10px;
  width: 100%;
}

/* line 22, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
.results-capsule {
  width: 100%;
  position: absolute;
  border-radius: 5px;
  padding: 10px;
  bottom: -10px;
  left: 0;
  transform: translateY(100%);
  z-index: 1000;
  background-color: transparent;
  backdrop-filter: blur(50px);
  border: 1px solid rgba(195, 135, 97, 0.5);
  height: fit-content;
}

/* line 38, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
.results-capsule .search-results {
  width: 98% !important;
  font-size: 0.7rem !important;
  margin: 0;
  cursor: pointer;
  font-weight: normal !important;
}

/* line 45, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
.results-capsule .search-results p {
  color: #FFFFFF !important;
  margin-left: 10px;
}

/* line 49, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
.lightmode .results-capsule .search-results p {
  color: #140D23 !important;
}

/* line 54, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
.results-capsule .search-results:hover {
  background-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

/* line 59, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
.lightmode .results-capsule .search-results:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 68, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
.results-capsule .results {
  min-height: 50px;
  max-height: 200px;
  overflow-y: auto;
  width: 100%;
}

/* line 75, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
.results-capsule .results::-webkit-scrollbar {
  width: 5px;
}

/* line 79, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
.results-capsule .results::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 84, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
.results-capsule .results::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
  border: 4px solid #e8e8e8;
}

/* line 90, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
.results-capsule .results::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 101, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
.adv-new-contract-search-results .results-capsule {
  position: static;
  transform: none;
  bottom: auto;
  left: auto;
  background-color: transparent;
  backdrop-filter: none;
  z-index: auto;
}

/* line 112, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
.adv-edit-contract-search-results .results-capsule {
  position: static;
  transform: none;
  bottom: auto;
  left: auto;
  background-color: transparent;
  backdrop-filter: none;
  z-index: auto;
}

/* line 123, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
.adv-invoice-search-results .results-capsule {
  position: static;
  transform: none;
  bottom: auto;
  left: auto;
  background-color: transparent;
  backdrop-filter: none;
  z-index: auto;
}

/* line 138, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
.lightmode .results-capsule.lightmode-support {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 147, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
.search-results-articles {
  display: flex;
  min-height: 30px;
  width: 98% !important;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 5px;
  border-radius: 0.375rem;
  flex-wrap: nowrap;
}

/* line 158, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
.search-results-articles label {
  opacity: 1;
}

/* line 162, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
.search-results-articles .articles {
  font-size: 0.7rem !important;
  margin: 0;
  cursor: pointer;
  font-weight: normal !important;
}

/* line 168, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
.search-results-articles .articles p {
  color: #FFFFFF !important;
}

/* line 171, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
.lightmode .search-results-articles .articles p {
  color: #140D23 !important;
}

/* line 181, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
.services-adv-search-articles {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  gap: 10px;
}

/* line 190, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
.services-adv-search-articles .form-group {
  margin: 0 !important;
}

/* line 194, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
.services-adv-search-articles .results {
  display: flex;
  justify-content: start;
  flex-direction: column;
  width: 100%;
  position: absolute;
  border-radius: 5px;
  padding: 10px;
  top: 100%;
  left: 0;
  transform: translateY(0);
  z-index: 1000;
  background-color: #e8e8e8;
  min-height: 50px;
  max-height: 200px;
  overflow-y: auto;
}

/* line 211, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
.services-adv-search-articles .results .search-results {
  width: 100%;
}

@media (max-width: 768px) {
  /* line 221, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
  .results-capsule {
    width: 95%;
    left: 2.5%;
  }
  /* line 225, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
  .results-capsule .search-results {
    width: 100% !important;
    font-size: 0.8rem !important;
  }
  /* line 231, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
  .services-adv-search-articles .results {
    width: 95%;
    left: 2.5%;
  }
}

@media (max-width: 480px) {
  /* line 238, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
  .results-capsule {
    width: 90%;
    left: 5%;
    padding: 8px;
  }
  /* line 243, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
  .results-capsule .search-results {
    font-size: 0.9rem !important;
  }
  /* line 248, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
  .services-adv-search-articles .results {
    width: 90%;
    left: 5%;
    padding: 8px;
  }
}

/* line 258, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
.results-capsule {
  transition: all 0.3s ease;
}

/* line 261, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
.results-capsule:hover {
  transform: translateY(100%) scale(1.01);
}

/* line 266, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
.results-capsule.static-position {
  position: static;
  transform: none;
  bottom: auto;
  left: auto;
}

/* line 272, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
.results-capsule.static-position:hover {
  transform: none;
}

/* line 283, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
.results-capsule.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid #C38761;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* line 298, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
.results-capsule.empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
}

/* line 304, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
.results-capsule.empty::before {
  content: 'Aucun résultat trouvé';
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* line 309, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
.lightmode .results-capsule.empty::before {
  color: rgba(20, 13, 35, 0.6);
}

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

/* line 327, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
.organization-result {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

/* line 333, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
.organization-result p {
  margin: 0;
  flex: 1;
}

/* line 339, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
.organization-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

/* line 351, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
.organization-badge.prospect-badge {
  background-color: rgba(195, 135, 97, 0.2);
  color: #C38761;
  border: 1px solid rgba(195, 135, 97, 0.4);
}

/* line 356, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
.lightmode .organization-badge.prospect-badge {
  background-color: rgba(195, 135, 97, 0.15);
  color: #af6c42;
}

/* line 362, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
.organization-badge.client-badge {
  background-color: rgba(16, 185, 129, 0.2);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

/* line 367, app/assets/stylesheets/pages/servicespace/back-office/adv/_results_capsule.scss */
.lightmode .organization-badge.client-badge {
  background-color: rgba(16, 185, 129, 0.15);
  color: #0c8a60;
}

/* ==========================================================================
   MODAL DE CREATION RAPIDE D'ARTICLE DE VENTE
   Styles pour la modal de creation rapide d'article depuis les devis/factures
   Style aligné avec la modal "Nouvelle tâche" (gradient violet/magenta)
   ========================================================================== */
/* line 7, app/assets/stylesheets/pages/servicespace/back-office/adv/_quick_sales_article_modal.scss */
.quick-sales-article-modal {
  max-width: 450px;
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
  backdrop-filter: blur(12px);
  border: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  overflow: hidden;
}

/* line 18, app/assets/stylesheets/pages/servicespace/back-office/adv/_quick_sales_article_modal.scss */
.quick-sales-article-modal .custom-modal-header {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 1.5rem;
}

/* line 24, app/assets/stylesheets/pages/servicespace/back-office/adv/_quick_sales_article_modal.scss */
.quick-sales-article-modal .custom-modal-title {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 32, app/assets/stylesheets/pages/servicespace/back-office/adv/_quick_sales_article_modal.scss */
.quick-sales-article-modal .custom-modal-title i {
  color: #C38761;
}

/* line 37, app/assets/stylesheets/pages/servicespace/back-office/adv/_quick_sales_article_modal.scss */
.quick-sales-article-modal .custom-modal-close {
  color: rgba(255, 255, 255, 0.8);
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

/* line 46, app/assets/stylesheets/pages/servicespace/back-office/adv/_quick_sales_article_modal.scss */
.quick-sales-article-modal .custom-modal-close:hover {
  color: #C38761;
}

/* line 52, app/assets/stylesheets/pages/servicespace/back-office/adv/_quick_sales_article_modal.scss */
.quick-sales-article-modal .custom-modal-body {
  padding: 1.5rem;
  background: transparent;
  max-height: calc(80vh - 140px);
  overflow-y: auto;
}

/* line 58, app/assets/stylesheets/pages/servicespace/back-office/adv/_quick_sales_article_modal.scss */
.quick-sales-article-modal .custom-modal-body::-webkit-scrollbar {
  width: 6px;
}

/* line 61, app/assets/stylesheets/pages/servicespace/back-office/adv/_quick_sales_article_modal.scss */
.quick-sales-article-modal .custom-modal-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

/* line 65, app/assets/stylesheets/pages/servicespace/back-office/adv/_quick_sales_article_modal.scss */
.quick-sales-article-modal .custom-modal-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

/* line 69, app/assets/stylesheets/pages/servicespace/back-office/adv/_quick_sales_article_modal.scss */
.quick-sales-article-modal .custom-modal-body::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* line 76, app/assets/stylesheets/pages/servicespace/back-office/adv/_quick_sales_article_modal.scss */
.quick-sales-article-modal .form-errors {
  background: rgba(220, 53, 69, 0.15);
  border: 1px solid rgba(220, 53, 69, 0.4);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 1rem;
}

/* line 84, app/assets/stylesheets/pages/servicespace/back-office/adv/_quick_sales_article_modal.scss */
.quick-sales-article-modal .error-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* line 90, app/assets/stylesheets/pages/servicespace/back-office/adv/_quick_sales_article_modal.scss */
.quick-sales-article-modal .error-item {
  color: #ff6b6b;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 97, app/assets/stylesheets/pages/servicespace/back-office/adv/_quick_sales_article_modal.scss */
.quick-sales-article-modal .error-item i {
  flex-shrink: 0;
}

/* line 103, app/assets/stylesheets/pages/servicespace/back-office/adv/_quick_sales_article_modal.scss */
.quick-sales-article-modal .form-group {
  margin-bottom: 1.25rem;
}

/* line 107, app/assets/stylesheets/pages/servicespace/back-office/adv/_quick_sales_article_modal.scss */
.quick-sales-article-modal .modal-label {
  display: block;
  color: rgba(255, 255, 255, 0.95);
  text-align: left;
  padding-left: 0;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 120, app/assets/stylesheets/pages/servicespace/back-office/adv/_quick_sales_article_modal.scss */
.quick-sales-article-modal .form-control {
  width: 100% !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: rgba(255, 255, 255, 0.95) !important;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

/* line 130, app/assets/stylesheets/pages/servicespace/back-office/adv/_quick_sales_article_modal.scss */
.quick-sales-article-modal .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
}

/* line 134, app/assets/stylesheets/pages/servicespace/back-office/adv/_quick_sales_article_modal.scss */
.quick-sales-article-modal .form-control:focus {
  border-color: rgba(195, 135, 97, 0.6) !important;
  background: rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.15) !important;
  outline: none;
}

/* line 142, app/assets/stylesheets/pages/servicespace/back-office/adv/_quick_sales_article_modal.scss */
.quick-sales-article-modal select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  padding-right: 36px !important;
  cursor: pointer;
}

/* line 150, app/assets/stylesheets/pages/servicespace/back-office/adv/_quick_sales_article_modal.scss */
.quick-sales-article-modal select.form-control option {
  background: #140D23;
  color: white;
}

/* line 157, app/assets/stylesheets/pages/servicespace/back-office/adv/_quick_sales_article_modal.scss */
.quick-sales-article-modal .form-row {
  display: flex;
  gap: 1rem;
}

/* line 162, app/assets/stylesheets/pages/servicespace/back-office/adv/_quick_sales_article_modal.scss */
.quick-sales-article-modal .half-width {
  flex: 1;
}

/* line 166, app/assets/stylesheets/pages/servicespace/back-office/adv/_quick_sales_article_modal.scss */
.quick-sales-article-modal .input-with-suffix {
  position: relative;
  display: flex;
  align-items: center;
}

/* line 171, app/assets/stylesheets/pages/servicespace/back-office/adv/_quick_sales_article_modal.scss */
.quick-sales-article-modal .input-with-suffix .form-control {
  padding-right: 70px !important;
}

/* line 176, app/assets/stylesheets/pages/servicespace/back-office/adv/_quick_sales_article_modal.scss */
.quick-sales-article-modal .input-suffix {
  position: absolute;
  right: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  pointer-events: none;
}

/* line 185, app/assets/stylesheets/pages/servicespace/back-office/adv/_quick_sales_article_modal.scss */
.quick-sales-article-modal .custom-modal-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

/* line 194, app/assets/stylesheets/pages/servicespace/back-office/adv/_quick_sales_article_modal.scss */
.quick-sales-article-modal .form-button, .quick-sales-article-modal .crm-action-button, .quick-sales-article-modal .users-management-container .users-header .add-user-btn, .users-management-container .users-header .quick-sales-article-modal .add-user-btn {
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 206, app/assets/stylesheets/pages/servicespace/back-office/adv/_quick_sales_article_modal.scss */
.quick-sales-article-modal .form-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary), .quick-sales-article-modal .crm-action-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary), .quick-sales-article-modal .users-management-container .users-header .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary), .users-management-container .users-header .quick-sales-article-modal .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary) {
  background: #C38761;
  color: #140D23;
}

/* line 210, app/assets/stylesheets/pages/servicespace/back-office/adv/_quick_sales_article_modal.scss */
.quick-sales-article-modal .form-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover:not(:disabled), .quick-sales-article-modal .crm-action-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover:not(:disabled), .quick-sales-article-modal .users-management-container .users-header .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover:not(:disabled), .users-management-container .users-header .quick-sales-article-modal .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover:not(:disabled) {
  background: #bc794f;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(195, 135, 97, 0.3);
}

/* line 217, app/assets/stylesheets/pages/servicespace/back-office/adv/_quick_sales_article_modal.scss */
.quick-sales-article-modal .form-button.btn-secondary, .quick-sales-article-modal .btn-secondary.crm-action-button, .quick-sales-article-modal .crm-action-button.crm-action-button-secondary, .quick-sales-article-modal .users-management-container .users-header .btn-secondary.add-user-btn, .users-management-container .users-header .quick-sales-article-modal .btn-secondary.add-user-btn {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 222, app/assets/stylesheets/pages/servicespace/back-office/adv/_quick_sales_article_modal.scss */
.quick-sales-article-modal .form-button.btn-secondary:hover, .quick-sales-article-modal .btn-secondary.crm-action-button:hover, .quick-sales-article-modal .crm-action-button.crm-action-button-secondary:hover, .quick-sales-article-modal .users-management-container .users-header .btn-secondary.add-user-btn:hover, .users-management-container .users-header .quick-sales-article-modal .btn-secondary.add-user-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

/* line 228, app/assets/stylesheets/pages/servicespace/back-office/adv/_quick_sales_article_modal.scss */
.quick-sales-article-modal .form-button:disabled, .quick-sales-article-modal .crm-action-button:disabled, .quick-sales-article-modal .users-management-container .users-header .add-user-btn:disabled, .users-management-container .users-header .quick-sales-article-modal .add-user-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* line 234, app/assets/stylesheets/pages/servicespace/back-office/adv/_quick_sales_article_modal.scss */
.quick-sales-article-modal .button-loading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Style pour le conteneur global de modal — !important nécessaire pour écraser Bootstrap d-block/d-none */
/* line 242, app/assets/stylesheets/pages/servicespace/back-office/adv/_quick_sales_article_modal.scss */
#global-modal-container.d-block {
  display: block !important;
}

/* line 246, app/assets/stylesheets/pages/servicespace/back-office/adv/_quick_sales_article_modal.scss */
#global-modal-container.d-none {
  display: none !important;
}

/* Notifications de création d'article */
/* line 252, app/assets/stylesheets/pages/servicespace/back-office/adv/_quick_sales_article_modal.scss */
.quick-article-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10001;
  padding: 12px 16px;
  border-radius: 8px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 350px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

/* line 270, app/assets/stylesheets/pages/servicespace/back-office/adv/_quick_sales_article_modal.scss */
.quick-article-notification.quick-article-notification--visible {
  transform: translateX(0);
}

/* line 275, app/assets/stylesheets/pages/servicespace/back-office/adv/_quick_sales_article_modal.scss */
.quick-article-notification--success {
  background: rgba(40, 167, 69, 0.9);
}

/* line 279, app/assets/stylesheets/pages/servicespace/back-office/adv/_quick_sales_article_modal.scss */
.quick-article-notification--error {
  background: rgba(220, 53, 69, 0.9);
}

/* line 2, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-capsule {
  width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 05px;
}

/* line 13, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-capsule.lightmode {
  color: #140D23;
}

/* line 17, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-capsule.nightmode {
  color: #FFFFFF;
}

/* En-tête avec titre et bouton retour */
/* line 23, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

/* line 29, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-header h1, .adv-show-customer-organization-header .h1 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

/* line 35, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-header .back-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.2s ease;
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

/* line 47, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-capsule.lightmode .adv-show-customer-organization-header .back-button {
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 52, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-header .back-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 55, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-capsule.lightmode .adv-show-customer-organization-header .back-button:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* line 60, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-header .back-button i {
  font-size: 0.8rem;
}

/* Conteneur principal */
/* line 67, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-card-container {
  overflow-y: auto;
  background-color: rgba(254, 254, 254, 0.1);
  border-radius: 15px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* line 78, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-capsule.lightmode .adv-show-customer-organization-card-container {
  background-color: rgba(20, 13, 35, 0.03);
}

/* Rangées */
/* line 84, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-infos {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 10px;
  gap: 15px;
  overflow-y: auto;
  /* Personnalisation de la barre de défilement */
}

/* line 92, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-infos::-webkit-scrollbar {
  width: 8px;
  /* Largeur de la barre de défilement */
}

/* line 96, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-infos::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  /* Couleur de l'arrière-plan de la barre */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 101, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-infos::-webkit-scrollbar-thumb {
  background: #C38761;
  /* Couleur de la barre de défilement */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 106, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-infos::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
  /* Couleur de la barre au survol */
}

/* line 112, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-info {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

/* line 118, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-adresses {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 125, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-legal-infos {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Sections */
/* line 134, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-info-section.full-width {
  width: 100%;
}

/* line 138, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-info-section.half-width {
  width: calc(50% - 10px);
}

@media (max-width: 768px) {
  /* line 138, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
  .adv-show-customer-organization-info-section.half-width {
    width: 100%;
  }
}

/* Carte de nom principal */
/* line 148, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-name-card {
  border-radius: 12px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
}

/* line 157, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-capsule.lightmode .adv-show-customer-organization-name-card {
  background-color: rgba(20, 13, 35, 0.07);
}

/* line 161, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-name-card h2, .adv-show-customer-organization-name-card .h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-color-primary);
}

/* Cartes d'information */
/* line 169, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-info-card {
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* line 177, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-capsule.lightmode .adv-show-customer-organization-info-card {
  background-color: rgba(20, 13, 35, 0.07);
}

/* line 181, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-info-card.comments-card, .adv-show-customer-organization-info-card.appointments-card {
  min-height: 145px;
}

/* line 186, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-info-card .adv-show-customer-organization-card-title {
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  /* Bouton d'ajout */
}

/* line 196, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-capsule.lightmode .adv-show-customer-organization-info-card .adv-show-customer-organization-card-title {
  background-color: rgba(20, 13, 35, 0.1);
  border-bottom: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 200, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-info-card .adv-show-customer-organization-card-title p {
  all: unset;
  font-size: 0.7rem !important;
  margin: 0;
  font-weight: normal !important;
}

/* line 206, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-info-card .adv-show-customer-organization-card-title h3, .adv-show-customer-organization-info-card .adv-show-customer-organization-card-title .h3 {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
}

/* line 211, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-info-card .adv-show-customer-organization-card-title h3 i, .adv-show-customer-organization-info-card .adv-show-customer-organization-card-title .h3 i {
  font-size: 0.65rem;
}

/* line 216, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-info-card .adv-show-customer-organization-card-title i {
  font-size: 1rem;
}

/* line 221, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-info-card .adv-show-customer-organization-card-title .add-btn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  margin: 0;
  margin-left: auto;
  outline: none;
}

/* line 238, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-capsule.lightmode .adv-show-customer-organization-info-card .adv-show-customer-organization-card-title .add-btn {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 244, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-info-card .adv-show-customer-organization-card-title .add-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 247, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-capsule.lightmode .adv-show-customer-organization-info-card .adv-show-customer-organization-card-title .add-btn:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* line 254, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-info-card .card-content {
  padding: 1rem;
  flex-grow: 1;
}

/* line 258, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-info-card .card-content.scrollable {
  max-height: 200px;
  overflow-y: auto;
}

/* line 262, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-info-card .card-content.scrollable::-webkit-scrollbar {
  width: 6px;
}

/* line 266, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-info-card .card-content.scrollable::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

/* line 270, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-info-card .card-content.scrollable::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 3px;
}

/* line 276, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-capsule.lightmode .adv-show-customer-organization-info-card .card-content.scrollable::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.05);
}

/* line 282, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-info-card .card-content .email-link,
.adv-show-customer-organization-info-card .card-content .phone-link {
  font-size: 0.9rem;
  color: #C38761;
  text-decoration: none;
}

/* line 288, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-info-card .card-content .email-link:hover,
.adv-show-customer-organization-info-card .card-content .phone-link:hover {
  text-decoration: underline;
}

/* line 293, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-info-card .card-content .no-data {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

/* line 298, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-capsule.lightmode .adv-show-customer-organization-info-card .card-content .no-data {
  color: rgba(20, 13, 35, 0.5);
}

/* Styles pour les commentaires */
/* line 306, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.comment-item {
  padding: 12px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 12px;
  border-left: 3px solid #C38761;
}

/* line 313, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-capsule.lightmode .comment-item {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 317, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.comment-item .comment-header {
  margin-bottom: 8px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 322, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-capsule.lightmode .comment-item .comment-header {
  color: rgba(20, 13, 35, 0.7);
}

/* line 327, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.comment-item .comment-content {
  margin-bottom: 5px;
  word-break: break-word;
}

/* line 328, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.comment-item .comment-content p {
  margin: 0;
  font-size: 0.85rem;
}

/* line 336, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.comment-item .comment-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 342, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-capsule.lightmode .comment-item .comment-meta {
  color: rgba(20, 13, 35, 0.7);
}

/* line 346, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.comment-item .comment-meta .comment-date {
  font-style: italic;
}

/* line 350, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.comment-item .comment-meta .comment-user {
  font-weight: 500;
}

/* Styles pour les rendez-vous */
/* line 357, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.appointment-item {
  padding: 12px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 12px;
}

/* line 363, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-capsule.lightmode .appointment-item {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 367, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.appointment-item .appointment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

/* line 373, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.appointment-item .appointment-header .appointment-date {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 377, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-capsule.lightmode .appointment-item .appointment-header .appointment-date {
  color: rgba(20, 13, 35, 0.7);
}

/* line 382, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.appointment-item .appointment-header .appointment-status {
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 4px;
}

/* line 387, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.appointment-item .appointment-header .appointment-status.a_venir {
  background-color: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
}

/* line 391, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-capsule.lightmode .appointment-item .appointment-header .appointment-status.a_venir {
  background-color: rgba(46, 204, 113, 0.4);
  color: #1e8449;
}

/* line 397, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.appointment-item .appointment-header .appointment-status.termine {
  background-color: rgba(52, 152, 219, 0.2);
  color: #3498db;
}

/* line 401, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-capsule.lightmode .appointment-item .appointment-header .appointment-status.termine {
  background-color: rgba(52, 152, 219, 0.4);
  color: #1a5276;
}

/* line 407, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.appointment-item .appointment-header .appointment-status.abandonne {
  background-color: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
}

/* line 411, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.adv-show-customer-organization-capsule.lightmode .appointment-item .appointment-header .appointment-status.abandonne {
  background-color: rgba(231, 76, 60, 0.4);
  color: #a93226;
}

/* line 420, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.appointment-item .appointment-details p {
  margin: 0 0 4px 0;
  font-size: 0.85rem;
}

/* Styles pour les modals */
/* line 428, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.custom-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.783);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1050;
}

/* line 440, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.custom-modal-overlay.active {
  display: flex;
  animation: fadeIn 0.3s;
}

/* line 446, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.custom-modal {
  background-color: rgba(59, 57, 57, 0.4);
  color: black;
  border-radius: 5px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  border: 1px solid rgba(115, 115, 115, 0.31);
}

/* line 459, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.custom-modal-overlay.active .custom-modal {
  transform: translateY(0);
  opacity: 1;
}

/* line 465, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.custom-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  color: #FFFFFF !important;
  border-bottom: 1px solid #e9ecef;
}

/* line 474, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.custom-modal-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 500;
}

/* line 480, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.custom-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #FFFFFF !important;
}

/* line 487, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.custom-modal-close:hover {
  color: #343a40;
}

/* line 492, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.custom-modal-body {
  padding: 10px;
}

/* line 495, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.custom-modal-body .form-group {
  margin-bottom: 1.25rem !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

/* line 503, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.custom-modal-body .form-control,
.custom-modal-body input[type="text"],
.custom-modal-body input[type="email"],
.custom-modal-body textarea {
  width: 85% !important;
  height: 38px !important;
  padding: 8px 12px !important;
  border-radius: 4px !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: white !important;
  font-size: 0.9rem !important;
  box-sizing: border-box !important;
  margin: 0 auto !important;
}

/* line 519, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.custom-modal-body textarea.form-control {
  height: auto !important;
  min-height: 80px !important;
}

/* line 525, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.custom-modal-footer {
  padding: 1rem 0 1rem 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* line 532, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.modal-label,
.custom-modal-body label,
.custom-modal-body .form-group label,
.custom-modal form label {
  display: block !important;
  text-transform: capitalize !important;
  font-weight: 500 !important;
  margin-bottom: 0.5rem !important;
  color: #FFFFFF !important;
  opacity: 1 !important;
  visibility: visible !important;
  font-size: 0.9rem !important;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.5) !important;
  width: 100% !important;
  text-align: center !important;
  padding-left: 1.5rem !important;
}

/* line 549, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.modal-label.lightmode,
.custom-modal-body label.lightmode,
.custom-modal-body .form-group label.lightmode,
.custom-modal form label.lightmode {
  color: #140D23 !important;
}

/* Animation pour l'apparition du modal */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* line 560, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_show_customer_organization.scss */
.show-customer-organization-actions,
.show-customer-contact-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  align-items: center;
}

/* line 1, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.adv-new-customer-organization-capsule {
  width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 05px;
}

/* line 12, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.adv-new-customer-organization-capsule.lightmode {
  color: #140D23;
}

/* line 16, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.adv-new-customer-organization-capsule.nightmode {
  color: #FFFFFF;
}

/* Conteneur principal */
/* line 22, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.adv-new-customer-organization-card-container {
  overflow-y: auto;
  background-color: rgba(254, 254, 254, 0.1);
  border-radius: 15px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  /* Personnalisation de la barre de défilement */
}

/* line 33, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.adv-new-customer-organization-card-container::-webkit-scrollbar {
  width: 4px;
  /* Largeur de la barre de défilement */
}

/* line 37, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.adv-new-customer-organization-card-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  /* Couleur de l'arrière-plan de la barre */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 42, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.adv-new-customer-organization-card-container::-webkit-scrollbar-thumb {
  background: #C38761;
  /* Couleur de la barre de défilement */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 47, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.adv-new-customer-organization-card-container::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
  /* Couleur de la barre au survol */
}

/* line 51, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.lightmode .adv-new-customer-organization-card-container {
  background-color: rgba(20, 13, 35, 0.03);
}

/* Sections */
/* line 58, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.adv-new-customer-organization-info-section.full-width {
  width: 100%;
}

/* line 62, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.adv-new-customer-organization-info-section.half-width {
  width: calc(50% - 10px);
}

@media (max-width: 768px) {
  /* line 62, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
  .adv-new-customer-organization-info-section.half-width {
    width: 100%;
  }
}

/* Carte d'en-tête */
/* line 72, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.adv-new-customer-organization-header-card {
  border-radius: 12px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
}

/* line 81, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.lightmode .adv-new-customer-organization-header-card {
  background-color: rgba(20, 13, 35, 0.07);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 86, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.adv-new-customer-organization-header-card h2, .adv-new-customer-organization-header-card .h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-color-primary);
  margin-bottom: 10px;
}

/* line 92, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.lightmode .adv-new-customer-organization-header-card h2, .lightmode .adv-new-customer-organization-header-card .h2 {
  color: #140D23;
}

/* line 97, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.adv-new-customer-organization-header-card .adv-new-customer-organization-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* line 102, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.lightmode .adv-new-customer-organization-header-card .adv-new-customer-organization-description {
  color: rgba(20, 13, 35, 0.7);
}

/* Formulaire */
/* line 109, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.adv-new-customer-organization-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Rangées */
/* line 116, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.adv-new-customer-organization-infos {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 10px;
  gap: 15px;
  overflow-y: auto;
  /* Personnalisation de la barre de défilement */
}

/* line 125, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.adv-new-customer-organization-infos::-webkit-scrollbar {
  width: 8px;
}

/* line 129, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.adv-new-customer-organization-infos::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 134, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.adv-new-customer-organization-infos::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 139, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.adv-new-customer-organization-infos::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 144, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.adv-new-customer-organization-info {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  /* line 144, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
  .adv-new-customer-organization-info {
    flex-direction: column;
  }
}

/* line 155, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.adv-new-customer-organization-adresses {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 162, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.adv-new-customer-organization-legal-infos {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Titre des sections */
/* line 170, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.adv-new-customer-organization-infos-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-color-primary);
  margin-bottom: 10px;
  border-bottom: 2px solid #C38761;
  padding-bottom: 5px;
}

/* line 178, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.lightmode .adv-new-customer-organization-infos-title {
  color: #140D23;
}

/* Cartes d'information */
/* line 184, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.adv-new-customer-organization-info-card {
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-width: 300px;
}

/* line 194, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.lightmode .adv-new-customer-organization-info-card {
  background-color: rgba(20, 13, 35, 0.07);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 199, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.adv-new-customer-organization-info-card .adv-new-customer-organization-card-title {
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 208, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.lightmode .adv-new-customer-organization-info-card .adv-new-customer-organization-card-title {
  background-color: rgba(20, 13, 35, 0.1);
  border-bottom: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 213, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.adv-new-customer-organization-info-card .adv-new-customer-organization-card-title h3, .adv-new-customer-organization-info-card .adv-new-customer-organization-card-title .h3 {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
}

/* line 218, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.lightmode .adv-new-customer-organization-info-card .adv-new-customer-organization-card-title h3, .lightmode .adv-new-customer-organization-info-card .adv-new-customer-organization-card-title .h3 {
  color: #140D23;
}

/* line 223, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.adv-new-customer-organization-info-card .adv-new-customer-organization-card-title i {
  font-size: 1rem;
  color: #C38761;
}

/* line 229, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.adv-new-customer-organization-info-card .adv-new-customer-organization-card-content {
  padding: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Champs de formulaire */
/* line 239, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.adv-new-customer-organization-input {
  width: 100% !important;
  height: 40px !important;
  padding: 8px 12px !important;
  border-radius: 6px !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: white !important;
  font-size: 0.9rem !important;
  box-sizing: border-box !important;
  transition: all 0.3s ease !important;
}

/* line 251, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.lightmode .adv-new-customer-organization-input {
  background-color: rgba(20, 13, 35, 0.1) !important;
  border-color: rgba(20, 13, 35, 0.3) !important;
  color: #140D23 !important;
}

/* line 257, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.adv-new-customer-organization-input:focus {
  outline: none !important;
  border-color: #C38761 !important;
  background-color: rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.2) !important;
}

/* line 263, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.lightmode .adv-new-customer-organization-input:focus {
  background-color: rgba(20, 13, 35, 0.15) !important;
  border-color: rgba(20, 13, 35, 0.5) !important;
  box-shadow: 0 0 0 2px rgba(20, 13, 35, 0.2) !important;
}

/* line 270, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.adv-new-customer-organization-input::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* line 273, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.lightmode .adv-new-customer-organization-input::placeholder {
  color: rgba(20, 13, 35, 0.5) !important;
}

/* line 278, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.adv-new-customer-organization-input:hover {
  border-color: rgba(255, 255, 255, 0.5) !important;
}

/* line 281, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.lightmode .adv-new-customer-organization-input:hover {
  border-color: rgba(20, 13, 35, 0.5) !important;
}

/* Boutons d'action */
/* line 288, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.adv-new-customer-organization-actions {
  display: flex;
  justify-content: end;
  gap: 1rem;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 20px;
}

/* line 296, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.lightmode .adv-new-customer-organization-actions {
  border-top-color: rgba(20, 13, 35, 0.1);
}

/* Responsive */
@media (max-width: 1200px) {
  /* line 303, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
  .adv-new-customer-organization-capsule {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 768px) {
  /* line 311, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
  .adv-new-customer-organization-capsule {
    padding-left: 15px;
    padding-right: 15px;
  }
  /* line 316, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
  .adv-new-customer-organization-card-container {
    padding: 10px;
  }
  /* line 320, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
  .adv-new-customer-organization-info-card {
    min-width: 100%;
  }
  /* line 324, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
  .adv-new-customer-organization-header-card {
    padding: 15px;
  }
  /* line 327, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
  .adv-new-customer-organization-header-card h2, .adv-new-customer-organization-header-card .h2 {
    font-size: 1.5rem;
  }
}

/* Animation pour les transitions */
/* line 335, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.adv-new-customer-organization-info-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* line 338, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.adv-new-customer-organization-info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Styles pour les messages d'erreur */
/* line 345, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.adv-new-customer-organization-error-message {
  color: #e74c3c;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  display: block;
}

/* Styles pour les messages de succès */
/* line 353, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.adv-new-customer-organization-success-message {
  color: #2ecc71;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  display: block;
}

/* Styles pour les messages d'erreur généraux */
/* line 361, app/assets/stylesheets/pages/servicespace/back-office/adv/organizations_of_customer_management/_new_customer_organization.scss */
.adv-new-customer-organization-general-error {
  background-color: rgba(231, 76, 60, 0.1);
  border: 1px solid #e74c3c;
  color: #e74c3c;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  display: none;
}

/* ==========================================================================
   CONTRACT LIST - MODULE ADV
   Structure principale et composants pour la gestion des contrats
   ========================================================================== */
/* line 4, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_document_validation_alerts.scss */
.quote-button-wrapper {
  position: relative;
  display: inline-block;
}

/* line 9, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_document_validation_alerts.scss */
.quote-validation-alert,
.adv-contract-validation-alert {
  position: absolute;
  top: -8px;
  right: -8px;
  z-index: 10;
}

/* line 17, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_document_validation_alerts.scss */
.quote-validation-icon,
.adv-contract-validation-icon {
  color: #f59e0b;
  cursor: pointer;
  font-size: 0.9rem;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 50%;
  padding: 5px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}

/* line 33, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_document_validation_alerts.scss */
.quote-validation-icon:hover,
.adv-contract-validation-icon:hover {
  background: rgba(245, 158, 11, 0.25);
  border-color: rgba(245, 158, 11, 0.5);
}

/* line 38, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_document_validation_alerts.scss */
.lightmode .quote-validation-icon, .lightmode .adv-contract-validation-icon {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.25);
}

/* line 42, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_document_validation_alerts.scss */
.lightmode .quote-validation-icon:hover, .lightmode .adv-contract-validation-icon:hover {
  background: rgba(245, 158, 11, 0.2);
  border-color: rgba(245, 158, 11, 0.4);
}

/* line 49, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_document_validation_alerts.scss */
.quote-validation-message,
.adv-contract-validation-message {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 300px;
  max-width: 400px;
  z-index: 1000;
  animation: slideDown 0.3s ease;
  display: none;
}

/* line 60, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_document_validation_alerts.scss */
.quote-validation-message.visible,
.adv-contract-validation-message.visible {
  display: block;
}

/* line 65, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_document_validation_alerts.scss */
.quote-validation-message.above-button,
.adv-contract-validation-message.above-button {
  top: auto;
  bottom: calc(100% + 10px);
  animation: slideUp 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* line 94, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_document_validation_alerts.scss */
.quote-validation-message-content,
.adv-contract-validation-message-content {
  background-color: rgba(245, 158, 11, 0.1);
  border: 2px solid #f59e0b;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.875rem;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

/* line 108, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_document_validation_alerts.scss */
.quote-validation-message-content span,
.adv-contract-validation-message-content span {
  font-size: 0.8rem;
  text-align: center;
  color: #FFFFFF;
}

/* line 114, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_document_validation_alerts.scss */
.quote-validation-message-content i,
.adv-contract-validation-message-content i {
  color: #f59e0b;
  margin-right: 6px;
}

/* line 120, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_document_validation_alerts.scss */
.lightmode .quote-validation-message-content, .lightmode .adv-contract-validation-message-content {
  background-color: rgba(245, 158, 11, 0.15);
  border-color: #f59e0b;
}

/* line 124, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_document_validation_alerts.scss */
.lightmode .quote-validation-message-content span, .lightmode .adv-contract-validation-message-content span {
  color: #140D23;
}

/* line 130, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_document_validation_alerts.scss */
.quote-validation-link,
.adv-contract-validation-link {
  color: #f59e0b;
  text-decoration: underline;
  font-weight: 500;
  margin-top: 4px;
  display: inline-block;
  transition: color 0.2s ease;
}

/* line 139, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_document_validation_alerts.scss */
.quote-validation-link:hover,
.adv-contract-validation-link:hover {
  color: #FF9800;
  text-decoration: none;
}

/* line 145, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_document_validation_alerts.scss */
.lightmode .quote-validation-link, .lightmode .adv-contract-validation-link {
  color: #c57f08;
}

/* line 148, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_document_validation_alerts.scss */
.lightmode .quote-validation-link:hover, .lightmode .adv-contract-validation-link:hover {
  color: #cc7a00;
}

/* line 157, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_document_validation_alerts.scss */
.quote-button-wrapper .crm-button-regular.adv-button-disabled, .quote-button-wrapper .adv-button-disabled.crm-back-button,
.adv-contract-button-wrapper .crm-button-regular.adv-button-disabled,
.adv-contract-button-wrapper .adv-button-disabled.crm-back-button {
  background-color: rgba(128, 128, 128, 0.3);
  border-color: rgba(128, 128, 128, 0.5);
  color: rgba(255, 255, 255, 0.6);
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: none;
}

/* line 165, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_document_validation_alerts.scss */
.lightmode .quote-button-wrapper .crm-button-regular.adv-button-disabled, .lightmode .quote-button-wrapper .adv-button-disabled.crm-back-button, .lightmode .adv-contract-button-wrapper .crm-button-regular.adv-button-disabled, .lightmode .adv-contract-button-wrapper .adv-button-disabled.crm-back-button {
  background-color: rgba(128, 128, 128, 0.2);
  border-color: rgba(128, 128, 128, 0.4);
  color: rgba(20, 13, 35, 0.5);
}

/* line 171, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_document_validation_alerts.scss */
.quote-button-wrapper .crm-button-regular.adv-button-disabled:hover, .quote-button-wrapper .adv-button-disabled.crm-back-button:hover,
.adv-contract-button-wrapper .crm-button-regular.adv-button-disabled:hover,
.adv-contract-button-wrapper .adv-button-disabled.crm-back-button:hover {
  background-color: rgba(128, 128, 128, 0.3);
  transform: none;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.6);
}

/* line 177, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_document_validation_alerts.scss */
.lightmode .quote-button-wrapper .crm-button-regular.adv-button-disabled:hover, .lightmode .quote-button-wrapper .adv-button-disabled.crm-back-button:hover, .lightmode .adv-contract-button-wrapper .crm-button-regular.adv-button-disabled:hover, .lightmode .adv-contract-button-wrapper .adv-button-disabled.crm-back-button:hover {
  background-color: rgba(128, 128, 128, 0.2);
  color: rgba(20, 13, 35, 0.5);
}

/* line 186, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_document_validation_alerts.scss */
.adv-contract-button-wrapper {
  margin-right: 10px;
  overflow: visible;
}

@media (max-width: 768px) {
  /* line 193, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_document_validation_alerts.scss */
  .quote-validation-message,
.adv-contract-validation-message {
    min-width: 250px;
    max-width: 300px;
    right: auto;
    left: 0;
  }
}

/* ==========================================================================
   LAYOUT PRINCIPAL - Structure générale du module
   ========================================================================== */
/* line 12, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-capsule {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-right: 10px;
  font-size: 0.8rem;
  gap: 10px;
  overflow: hidden;
}

/* line 24, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-capsule.lightmode {
  color: #140D23;
}

/* line 28, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-capsule.nightmode {
  color: #FFFFFF;
}

/* line 33, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-index {
  width: 100%;
  height: 98%;
}

/* line 37, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 43, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-capsule span {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* Variations de thème clair/sombre */
/* line 50, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-capsule.lightmode span {
  color: #C38761;
}

/* line 54, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-capsule.nightmode span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 58, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-capsule.lightmode p {
  color: #140D23;
}

/* line 62, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-capsule.nightmode p {
  color: #FFFFFF;
}

/* line 66, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-capsule.lightmode i {
  color: #140D23;
}

/* line 70, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-capsule.nightmode i {
  color: #FFFFFF;
}

/* ==========================================================================
   SECTION SUPÉRIEURE - Recherche et liste des contrats
   ========================================================================== */
/* line 78, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-upper-section {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

/* ==========================================================================
   BARRE SUPÉRIEURE - Recherche et bouton création
   ========================================================================== */
/* line 91, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-row1 {
  width: 100%;
  height: 50px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  flex-shrink: 0;
  margin-bottom: 20px;
}

/* line 102, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-row1 form {
  width: 100%;
  display: flex;
  padding: 0 !important;
}

/* ==========================================================================
   BARRE DE RECHERCHE - Composants et fonctionnalités
   ========================================================================== */
/* line 113, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-row1-searchbar {
  width: 100%;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-content: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 126, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-capsule.lightmode .adv-contract-list-row1-searchbar {
  border-color: rgba(20, 13, 35, 0.5);
  color: #140D23;
}

/* line 131, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-row1-searchbar .adv-contract-list-search-form {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 138, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-row1-searchbar .adv-contract-list-search-input-wrapper {
  position: relative;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

/* line 145, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-row1-searchbar .search-input {
  width: 100%;
  background: transparent;
  border: none;
  color: #FFFFFF;
  outline: none;
  padding-right: 25px;
}

/* line 153, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-capsule.lightmode .adv-contract-list-row1-searchbar .search-input {
  color: #140D23;
}

/* line 156, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-capsule.lightmode .adv-contract-list-row1-searchbar .search-input::placeholder {
  color: rgba(20, 13, 35, 0.6);
}

/* line 162, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-row1-searchbar .adv-contract-list-clear-search-button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 0.6rem;
  text-decoration: none;
}

/* line 177, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-capsule.lightmode .adv-contract-list-row1-searchbar .adv-contract-list-clear-search-button {
  color: #140D23;
}

/* line 181, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-row1-searchbar .adv-contract-list-clear-search-button:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* line 184, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-capsule.lightmode .adv-contract-list-row1-searchbar .adv-contract-list-clear-search-button:hover {
  color: rgba(20, 13, 35, 0.7);
}

/* line 190, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-row1-searchbar button {
  all: unset;
  cursor: pointer;
}

/* line 195, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-row1-searchbar .adv-contract-list-search-button {
  padding: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 203, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-row1-searchbar i {
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 208, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-capsule.lightmode .adv-contract-list-row1-searchbar i {
  color: #140D23 !important;
}

/* line 213, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-row1-searchbar span {
  font-weight: normal !important;
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 219, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-capsule.lightmode .adv-contract-list-row1-searchbar span {
  color: #140D23 !important;
}

/* Bannière d'information sur la recherche en cours */
/* line 226, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-search-info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: #FFFFFF;
  margin-bottom: -10px;
  z-index: 5;
}

/* line 236, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-capsule.lightmode .adv-contract-list-search-info {
  color: #140D23;
}

/* line 240, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-search-info span {
  opacity: 0.8;
}

/* line 244, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-search-info .adv-contract-list-reset-search-link {
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s ease;
}

/* line 255, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-capsule.lightmode .adv-contract-list-search-info .adv-contract-list-reset-search-link {
  color: #140D23;
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 260, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-search-info .adv-contract-list-reset-search-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 263, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-capsule.lightmode .adv-contract-list-search-info .adv-contract-list-reset-search-link:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* line 270, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-tabs {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  overflow: visible;
  position: relative;
}

/* ==========================================================================
   CONTENEUR DU TABLEAU - Structure du tableau des contrats
   ========================================================================== */
/* line 284, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-table-container {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 15px;
  overflow: hidden;
}

/* line 294, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-capsule.lightmode .adv-contract-list-table-container {
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 299, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-row2-list {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

/* ==========================================================================
   EN-TÊTE DU TABLEAU - Titres des colonnes et tri
   ========================================================================== */
/* line 312, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-row2-list-head {
  width: 97%;
  display: flex;
  padding-right: 8px;
  flex-direction: row;
  font-weight: bold;
  font-size: 0.75rem;
  margin-bottom: 5px;
  color: #FFFFFF;
}

/* line 322, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-capsule.lightmode .adv-contract-list-row2-list-head {
  color: #140D23;
}

/* line 327, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-row2-list-head .adv-contract-list-row2-list-column {
  width: 20%;
  text-align: center;
  justify-content: center;
}

/* line 332, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-row2-list-head .adv-contract-list-row2-list-column.sortable {
  cursor: pointer;
  transition: background-color 0.2s ease;
}

/* line 336, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-row2-list-head .adv-contract-list-row2-list-column.sortable:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

/* line 339, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-capsule.lightmode .adv-contract-list-row2-list-head .adv-contract-list-row2-list-column.sortable:hover {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 344, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-row2-list-head .adv-contract-list-row2-list-column.sortable .sort-link {
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 100%;
  height: 100%;
}

/* line 354, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-capsule.lightmode .adv-contract-list-row2-list-head .adv-contract-list-row2-list-column.sortable .sort-link {
  color: #140D23;
}

/* line 358, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-row2-list-head .adv-contract-list-row2-list-column.sortable .sort-link i {
  font-size: 0.6rem !important;
}

/* line 361, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-capsule.lightmode .adv-contract-list-row2-list-head .adv-contract-list-row2-list-column.sortable .sort-link i {
  color: #140D23 !important;
}

/* Styles communs pour les colonnes */
/* line 370, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-row2-list-column {
  display: flex;
  align-items: center;
  font-size: 0.7rem;
  padding: 5px 10px;
}

/* ==========================================================================
   CORPS DU TABLEAU - Liste des contrats avec défilement
   ========================================================================== */
/* line 381, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-row2-list-entries {
  width: 100%;
  height: calc(100% - 30px);
  display: flex;
  gap: 5px;
  flex-direction: column;
  overflow-y: auto;
}

/* line 389, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-row2-list-entries::-webkit-scrollbar {
  width: 8px;
}

/* line 393, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-row2-list-entries::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 397, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-capsule.lightmode .adv-contract-list-row2-list-entries::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 402, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-row2-list-entries::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 407, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-row2-list-entries::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 410, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-capsule.lightmode .adv-contract-list-row2-list-entries::-webkit-scrollbar-thumb:hover {
  background: #140D23;
}

/* Lignes du tableau des contrats */
/* line 417, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-row2-list-entry {
  width: 97%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  font-size: 0.7rem;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 2px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 40px;
  padding: 3px 0;
  margin-bottom: 2px;
  color: #FFFFFF;
}

/* line 435, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-capsule.lightmode .adv-contract-list-row2-list-entry {
  color: #140D23;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 2px;
}

/* line 440, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-row2-list-entry:hover {
  transform: scale(1.01);
  transition: transform 0.3s ease;
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 445, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-capsule.lightmode .adv-contract-list-row2-list-entry:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 450, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-row2-list-entry .adv-contract-list-row2-list-column {
  width: 20%;
  text-align: center;
  justify-content: center;
}

/* Message quand aucun contrat n'est trouvé */
/* line 458, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.no-results {
  width: 100%;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-top: 10px;
}

/* line 468, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-capsule.lightmode .no-results {
  color: #140D23;
  background-color: rgba(20, 13, 35, 0.05);
}

/* ==========================================================================
   SECTION INFÉRIEURE - Templates de contrats (repliée par défaut)
   ========================================================================== */
/* line 478, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-lower-section {
  width: 100%;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

/* line 489, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-capsule.lightmode .adv-contract-list-lower-section {
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 493, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-lower-section.expanded {
  min-height: 300px;
}

/* ==========================================================================
   BOUTON TOGGLE DES TEMPLATES - En-tête cliquable
   ========================================================================== */
/* line 502, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-templates-toggle {
  width: 100%;
  min-height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  background-color: rgba(255, 255, 255, 0.05);
}

/* line 513, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-capsule.lightmode .adv-contract-list-templates-toggle {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 517, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-templates-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 520, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-capsule.lightmode .adv-contract-list-templates-toggle:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 524, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-templates-toggle:hover i {
  color: #C38761;
}

/* line 529, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-templates-toggle h3, .adv-contract-list-templates-toggle .h3 {
  all: unset;
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFFFFF;
  text-align: center;
  letter-spacing: 0.5px;
}

/* line 537, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-capsule.lightmode .adv-contract-list-templates-toggle h3, .adv-contract-list-capsule.lightmode .adv-contract-list-templates-toggle .h3 {
  color: #140D23;
}

/* line 542, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-templates-toggle i {
  font-size: 0.8rem;
  color: #FFFFFF;
  transition: all 0.3s ease-in-out;
}

/* line 547, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-capsule.lightmode .adv-contract-list-templates-toggle i {
  color: #140D23;
}

/* line 552, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-templates-toggle.expanded i {
  transform: rotate(180deg);
}

/* ==========================================================================
   CONTENU DES TEMPLATES - Section extensible
   ========================================================================== */
/* line 561, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-templates-content {
  width: 100%;
  max-height: 0;
  overflow: auto;
  transition: max-height 0.3s ease-in-out;
  background-color: rgba(255, 255, 255, 0.05);
}

/* line 568, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-capsule.lightmode .adv-contract-list-templates-content {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 572, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-templates-content.expanded {
  max-height: 500px;
}

/* line 576, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-templates-content::-webkit-scrollbar {
  width: 8px;
}

/* line 580, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-templates-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 585, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-templates-content::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 590, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-templates-content::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* ==========================================================================
   MODÈLES DE CONTRATS - Index compact
   ========================================================================== */
/* line 599, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.contract-template-index {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 8px 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 606, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.lightmode .contract-template-index {
  border-top-color: rgba(20, 13, 35, 0.1);
}

/* line 611, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.contract-template-index-row {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
  gap: 10px;
}

/* line 620, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.contract-template-index-row:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* line 623, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.lightmode .contract-template-index-row:not(:last-child) {
  border-bottom-color: rgba(20, 13, 35, 0.05);
}

/* line 628, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.contract-template-index-row:hover {
  background-color: rgba(255, 255, 255, 0.06);
}

/* line 631, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.lightmode .contract-template-index-row:hover {
  background-color: rgba(20, 13, 35, 0.06);
}

/* line 636, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.contract-template-index-row--add {
  cursor: pointer;
  border-bottom: 1px solid rgba(195, 135, 97, 0.2) !important;
}

/* line 640, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.contract-template-index-row--add .contract-template-index-icon {
  color: #C38761;
}

/* line 644, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.contract-template-index-row--add .contract-template-index-title {
  color: #C38761;
  font-weight: 600;
}

/* line 650, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.contract-template-index-row--inactive {
  opacity: 0.6;
}

/* line 654, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.contract-template-index-row--incomplete {
  opacity: 0.85;
}

/* line 659, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.contract-template-index-link {
  all: unset;
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
  cursor: pointer;
  color: #FFFFFF;
  font-size: 0.75rem;
  text-decoration: none;
}

/* line 671, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.lightmode .contract-template-index-link {
  color: #140D23;
}

/* line 676, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.contract-template-index-link:hover .contract-template-index-title {
  color: #C38761;
}

/* line 680, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.contract-template-index-link:hover .contract-template-index-icon {
  color: #C38761;
}

/* line 686, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.contract-template-index-icon {
  flex-shrink: 0;
  font-size: 0.8rem;
  width: 20px;
  text-align: center;
  color: #FFFFFF;
  transition: color 0.2s ease;
}

/* line 694, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.lightmode .contract-template-index-icon {
  color: #140D23;
}

/* line 699, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.contract-template-index-title {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.75rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

/* line 710, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.contract-template-index-badge {
  flex-shrink: 0;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.6rem;
  font-weight: 600;
}

/* line 717, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.contract-template-index-badge--inactive {
  background: rgba(255, 152, 0, 0.2);
  color: #ff9800;
}

/* line 722, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.contract-template-index-badge--archived {
  background: rgba(158, 158, 158, 0.2);
  color: #9e9e9e;
}

/* line 727, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.contract-template-index-badge--incomplete {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
}

/* line 733, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.contract-template-index-project {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 10;
}

/* line 741, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.contract-template-index-project form {
  display: flex;
  align-items: center;
  gap: 6px;
  width: auto;
  padding: 0;
}

/* line 750, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.contract-template-index-project-label {
  font-size: 0.65rem;
  opacity: 0.7;
  white-space: nowrap;
}

/* line 756, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.contract-template-index-project-select {
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  max-width: 150px;
  cursor: pointer;
}

/* line 766, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.lightmode .contract-template-index-project-select {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 773, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.contract-template-index-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* line 779, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.contract-template-index-actions form {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  padding: 0;
}

/* line 787, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.contract-template-index-actions .template-action-btn {
  all: unset;
  font-size: 0.65rem;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 4px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
}

/* line 797, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.contract-template-index-actions .template-action-btn i {
  color: #FFFFFF;
  transition: color 0.2s ease;
}

/* line 801, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.lightmode .contract-template-index-actions .template-action-btn i {
  color: #140D23;
}

/* line 806, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.contract-template-index-actions .template-action-btn:hover i {
  color: #C38761;
}

/* line 810, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.contract-template-index-actions .template-action-btn.activate-btn:hover i {
  color: #4caf50;
}

/* line 811, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.contract-template-index-actions .template-action-btn.archive-btn:hover i {
  color: #9e9e9e;
}

/* line 812, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.contract-template-index-actions .template-action-btn.disable-btn:hover i {
  color: #ff9800;
}

/* line 813, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.contract-template-index-actions .template-action-btn.delete-btn:hover i {
  color: #f44336;
}

/* ==========================================================================
   BOUTON DE CRÉATION - Style du bouton pour créer un nouveau contrat
   ========================================================================== */
/* line 821, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.form-button, .crm-action-button, .users-management-container .users-header .add-user-btn {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  border: none;
  cursor: pointer;
  background-color: #C38761;
  color: #FFFFFF;
}

/* line 836, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.form-button:hover, .crm-action-button:hover, .users-management-container .users-header .add-user-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Classes utilitaires */
/* line 843, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.d-none {
  display: none !important;
}

/* ==========================================================================
   WARNING - Aucun template de contrat disponible
   ========================================================================== */
/* line 850, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.no-template-warning {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

/* line 856, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.no-template-warning .warning-message {
  font-size: 0.75rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  padding: 4px 8px;
  background: rgba(255, 152, 0, 0.15);
  border-radius: 8px;
  border-left: 3px solid #ff9800;
  white-space: nowrap;
}

/* line 866, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-list-capsule.lightmode .no-template-warning .warning-message {
  color: rgba(20, 13, 35, 0.8);
  background: rgba(255, 152, 0, 0.1);
}

/* ==========================================================================
   VALIDATION ALERT - Styles pour l'alerte de validation des contrats
   ========================================================================== */
/* line 877, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_list.scss */
.adv-contract-button-wrapper {
  position: relative;
  display: inline-block;
  margin-right: 10px;
  overflow: visible;
}

/* line 1, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 10px 20px 10px 20px;
  font-size: 0.8rem;
  gap: 10px;
}

/* line 12, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule.lightmode {
  color: #140D23;
}

/* line 14, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule.lightmode .discount-input {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 18, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule.lightmode .price-input {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 22, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule.lightmode .price-ttc-container {
  color: #140D23;
}

/* line 25, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule.lightmode .new-contract-transaction-choice {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 29, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule.lightmode .search-input {
  border-color: transparent !important;
}

/* line 31, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule.lightmode .search-input:focus {
  border-color: transparent !important;
  box-shadow: none !important;
}

/* line 36, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule.lightmode .recipient-choice {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 40, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule.lightmode #publicMarket {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 44, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule.lightmode #privateMarket {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 50, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule .form-group {
  margin: 0;
}

/* line 54, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule form {
  display: flex !important;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  align-items: center;
  height: 100%;
}

/* Nouvelle Card de Configuration */
/* line 65, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-configuration-card {
  width: 100%;
  max-width: 1400px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

/* line 77, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-configuration-card {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.08) 0%, rgba(20, 13, 35, 0.03) 100%);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 84, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-config-header {
  text-align: center;
  margin-bottom: 30px;
}

/* line 88, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-config-header h2, .adv-new-contract-config-header .h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

/* line 94, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-config-header h2, .lightmode .adv-new-contract-config-header .h2 {
  color: #140D23;
}

/* line 99, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-config-header p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 103, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-config-header p {
  color: rgba(20, 13, 35, 0.7);
}

/* line 109, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-config-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* line 115, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-config-section {
  width: 100%;
}

/* line 119, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-config-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  /* line 119, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
  .adv-new-contract-config-row {
    grid-template-columns: 1fr;
  }
}

/* line 129, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-config-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 135, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-config-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 140, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-config-label i {
  font-size: 1.1rem;
  color: #C38761;
}

/* line 145, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-config-label h3, .adv-new-contract-config-label .h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
}

/* line 151, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-config-label h3, .lightmode .adv-new-contract-config-label .h3 {
  color: #140D23;
}

/* line 157, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-config-select {
  width: auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  color: #FFFFFF;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

/* line 167, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-config-select {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 173, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-config-select:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 179, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-config-select option {
  background: #140D23;
  color: #FFFFFF;
}

/* line 185, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-market-type-selector {
  display: flex;
  gap: 12px;
}

/* line 189, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-market-type-selector .adv-new-contract-market-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 205, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-market-type-selector .adv-new-contract-market-option {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 211, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-market-type-selector .adv-new-contract-market-option i {
  font-size: 1rem;
  color: #C38761;
}

/* line 216, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-market-type-selector .adv-new-contract-market-option:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

/* line 221, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-market-type-selector .adv-new-contract-market-option:hover {
  background: rgba(20, 13, 35, 0.12);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 227, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-market-type-selector .adv-new-contract-market-option.selected {
  background: #C38761;
  border-color: #C38761;
  color: #140D23;
}

/* line 232, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-market-type-selector .adv-new-contract-market-option.selected i {
  color: #140D23;
}

/* line 241, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-search-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}

/* line 248, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-search-input {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 254, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-search-input .search-form {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

/* line 261, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-search-input i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  z-index: 2;
}

/* line 270, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-search-input i {
  color: rgba(20, 13, 35, 0.6);
}

/* line 275, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-search-input button {
  all: unset;
  padding: 8px 12px;
  background: #C38761;
  border-radius: 8px;
  color: #140D23;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 284, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-search-input button:hover {
  background: #864B28;
  transform: scale(1.05);
}

/* line 289, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-search-input button i {
  position: static;
  transform: none;
  color: #140D23;
}

/* Utilise maintenant la classe générique adv-searchbar */
/* line 299, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-search-results {
  min-height: 120px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}

/* line 307, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-search-results {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 314, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-search-results .userChoice {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* line 321, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-search-results .userChoice .no-recipient, .adv-new-contract-search-results .userChoice .no-document {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
}

/* line 328, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-search-results .userChoice .no-recipient, .lightmode .adv-new-contract-search-results .userChoice .no-document {
  color: rgba(20, 13, 35, 0.6);
}

/* line 332, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-search-results .userChoice .no-recipient::before, .adv-new-contract-search-results .userChoice .no-document::before {
  content: '\f007';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.4);
}

/* line 339, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-search-results .userChoice .no-recipient::before, .lightmode .adv-new-contract-search-results .userChoice .no-document::before {
  color: rgba(20, 13, 35, 0.4);
}

/* Styles pour la section Transaction */
/* line 348, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-transaction-selector {
  display: flex;
  gap: 12px;
}

/* line 352, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-transaction-selector .new-contract-transaction-choice {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 368, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-transaction-selector .new-contract-transaction-choice {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 374, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-transaction-selector .new-contract-transaction-choice i {
  font-size: 1rem;
  color: #C38761;
}

/* line 379, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-transaction-selector .new-contract-transaction-choice:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

/* line 384, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-transaction-selector .new-contract-transaction-choice:hover {
  background: rgba(20, 13, 35, 0.12);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 390, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-transaction-selector .new-contract-transaction-choice.selected {
  background: #C38761;
  border-color: #C38761;
  color: #140D23;
}

/* line 395, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-transaction-selector .new-contract-transaction-choice.selected i {
  color: #140D23;
}

/* Styles pour le contenu des transactions */
/* line 403, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-transaction-content {
  margin-top: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
}

/* line 410, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-transaction-content {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 416, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-transaction-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

/* line 424, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-transaction-info {
  background: rgba(20, 13, 35, 0.08);
}

/* line 428, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-transaction-info i {
  color: #C38761;
  font-size: 1.1rem;
}

/* line 433, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-transaction-info span {
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 500;
}

/* line 438, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-transaction-info span {
  color: #140D23;
}

/* line 445, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-document-search h4, .adv-new-contract-document-search .h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 15px;
}

/* line 451, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-document-search h4, .lightmode .adv-new-contract-document-search .h4 {
  color: #140D23;
}

/* line 456, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-document-search .search-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* line 462, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-document-search .form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 468, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-document-search .filter {
  width: auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  color: #FFFFFF;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

/* line 478, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-document-search .filter {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 484, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-document-search .filter:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 490, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-document-search .filter option {
  background: #140D23;
  color: #FFFFFF;
}

/* Styles pour les clauses du contrat */
/* line 498, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-clauses-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  width: 100%;
}

/* Styles pour les sections de clauses existantes */
/* line 506, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-row1-subrow4-preamble,
.adv-new-contract-row1-subrow4-designation,
.adv-new-contract-row1-subrow4-contract-object,
.adv-new-contract-row1-subrow4-duration,
.adv-new-contract-row1-subrow4-financial-condition,
.adv-new-contract-row1-subrow4-obligations,
.adv-new-contract-row1-subrow4-confidentiality,
.adv-new-contract-row1-subrow4-responsibility,
.adv-new-contract-row1-subrow4-force-majeure,
.adv-new-contract-row1-subrow4-termination,
.adv-new-contract-row1-subrow4-applicable-law,
.adv-new-contract-row1-subrow4-signatures {
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
  gap: 10px;
}

/* line 527, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-row1-subrow4-preamble, .lightmode .adv-new-contract-row1-subrow4-designation, .lightmode .adv-new-contract-row1-subrow4-contract-object, .lightmode .adv-new-contract-row1-subrow4-duration, .lightmode .adv-new-contract-row1-subrow4-financial-condition, .lightmode .adv-new-contract-row1-subrow4-obligations, .lightmode .adv-new-contract-row1-subrow4-confidentiality, .lightmode .adv-new-contract-row1-subrow4-responsibility, .lightmode .adv-new-contract-row1-subrow4-force-majeure, .lightmode .adv-new-contract-row1-subrow4-termination, .lightmode .adv-new-contract-row1-subrow4-applicable-law, .lightmode .adv-new-contract-row1-subrow4-signatures {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* Boutons d'actions */
/* line 534, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-row2 {
  width: 80%;
  height: 7.5%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
}

/* line 544, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-row2 #fakeSubmitButton {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  border: none;
  cursor: pointer;
  background-color: #C38761;
  color: #140D23;
}

/* line 559, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-row2 #fakeSubmitButton:hover {
  background-color: #864B28;
  transform: scale(1.05);
}

/* line 565, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-row2 form {
  display: flex !important;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  align-items: center;
  height: 100%;
}

/* Classes utilitaires */
/* line 576, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.userChoice {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 15px;
}

/* line 583, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.userChoice .no-recipient, .userChoice .no-document {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-color-primary);
}

/* line 600, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.lightmode .userChoice .no-recipient, .lightmode .userChoice .no-document {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.1) 0%, rgba(20, 13, 35, 0.05) 100%);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 607, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.userChoice .item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* line 621, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.lightmode .userChoice .item {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.1) 0%, rgba(20, 13, 35, 0.05) 100%);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 626, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.userChoice .item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  border-color: rgba(232, 232, 232, 0.6);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

/* line 632, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.lightmode .userChoice .item:hover {
  border-color: rgba(20, 13, 35, 0.4);
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.15) 0%, rgba(20, 13, 35, 0.08) 100%);
}

/* line 638, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.userChoice .item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #C38761, #864B28);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* line 650, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.userChoice .item:hover::before {
  opacity: 1;
}

/* line 654, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.userChoice .item .item-header {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-grow: 1;
}

/* line 660, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.userChoice .item .item-header i {
  color: green;
  font-size: 1rem;
  padding: 8px;
  background-color: rgba(195, 135, 97, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* line 669, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.userChoice .item .item-header p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-color-primary);
  line-height: 1.4;
  transition: color 0.3s ease;
}

/* line 677, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.lightmode .userChoice .item .item-header p {
  color: #140D23;
}

/* line 684, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.userChoice .item:hover .item-header i {
  color: #864B28;
  background-color: rgba(134, 75, 40, 0.15);
  transform: scale(1.1);
}

/* line 690, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.userChoice .item:hover .item-header p {
  color: #FFFFFF;
}

/* line 693, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.lightmode .userChoice .item:hover .item-header p {
  color: #140D23;
}

/* line 699, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.userChoice .item .item-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* line 706, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.userChoice .item .item-actions button {
  all: unset;
  padding: 6px;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-size: 0.7rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 716, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.lightmode .userChoice .item .item-actions button {
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 721, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.userChoice .item .item-actions button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

/* line 725, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.lightmode .userChoice .item .item-actions button:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* line 732, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.userChoice .item:hover .item-actions {
  opacity: 1;
}

/* line 739, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.trash {
  cursor: pointer;
  font-size: 0.8rem;
}

/* line 742, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.trash:hover {
  color: #A60240;
}

/* Responsive */
@media (max-width: 768px) {
  /* line 749, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
  .adv-new-contract-config-row {
    grid-template-columns: 1fr;
  }
  /* line 753, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
  .adv-new-contract-market-type-selector {
    flex-direction: column;
  }
  /* line 757, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
  .adv-new-contract-transaction-selector {
    flex-direction: column;
  }
  /* line 761, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
  .adv-new-contract-clauses-container {
    grid-template-columns: 1fr;
  }
}

/* Styles hérités pour compatibilité */
/* line 767, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 773, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule span {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 781, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-capsule span {
  color: #140D23;
}

/* line 784, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.nightmode .adv-new-contract-capsule span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 790, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-capsule p {
  color: #140D23;
}

/* line 793, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.nightmode .adv-new-contract-capsule p {
  color: #FFFFFF;
}

/* line 799, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-capsule i {
  color: #140D23;
}

/* line 802, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.nightmode .adv-new-contract-capsule i {
  color: #FFFFFF;
}

/* Styles pour les champs de recherche existants */
/* line 809, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-row1-searchbar {
  width: 100%;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
  height: 30px;
}

/* line 823, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-row1-searchbar {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 828, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-row1-searchbar button {
  all: unset;
}

/* line 832, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-row1-searchbar i {
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 837, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-row1-searchbar i {
  color: #140D23 !important;
}

/* line 842, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-row1-searchbar span {
  font-weight: normal !important;
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 848, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-row1-searchbar span {
  color: #140D23 !important;
}

/* Styles pour les champs de saisie existants */
/* line 856, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-clauses-input {
  all: unset;
  height: auto;
  width: auto;
  background-color: transparent;
  font-size: 0.7rem;
  color: #FFFFFF;
}

/* line 864, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-clauses-input {
  color: #140D23;
}

/* line 868, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-clauses-input:focus {
  all: unset;
  height: auto;
  width: auto;
  background-color: transparent;
  font-size: 0.7rem;
  color: #FFFFFF;
}

/* line 876, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-clauses-input:focus {
  color: #140D23;
}

/* line 882, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-clauses-input[type="number"] {
  display: inline-block;
  min-width: 80px;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
  color: #FFFFFF;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

/* line 894, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-clauses-input[type="number"]:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(195, 135, 97, 0.6);
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.15);
}

/* line 900, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-clauses-input[type="number"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 904, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule.lightmode .adv-new-contract-clauses-input[type="number"] {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 909, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule.lightmode .adv-new-contract-clauses-input[type="number"]:focus {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(195, 135, 97, 0.7);
}

/* line 914, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule.lightmode .adv-new-contract-clauses-input[type="number"]::placeholder {
  color: rgba(20, 13, 35, 0.5);
}

/* Styles pour les sélecteurs existants */
/* line 923, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
select {
  all: unset;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: normal;
  padding: 5px 15px;
}

/* line 936, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.lightmode select {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 941, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
select:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 945, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.lightmode select:focus {
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 951, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
select option {
  all: unset;
  background-color: #E8E8E8;
  color: #000000;
}

/* ==========================================================================
   SECTIONS CLASSIQUES - Style harmonisé avec sections personnalisées
   ========================================================================== */
/* line 961, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-clauses-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
}

/* ==========================================================================
   SECTIONS PERSONNALISÉES - Templates custom
   ========================================================================== */
/* line 984, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-custom-clauses-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem 0;
}

/* line 992, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-custom-sections {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* line 999, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-custom-section, .adv-new-contract-classic-section {
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  transition: all 0.3s ease;
}

/* line 1007, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-custom-section:hover, .adv-new-contract-classic-section:hover {
  border-color: rgba(195, 135, 97, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* line 1012, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule.lightmode .adv-new-contract-custom-section, .adv-new-contract-capsule.lightmode .adv-new-contract-classic-section {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.05) 0%, rgba(20, 13, 35, 0.02) 100%);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 1016, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule.lightmode .adv-new-contract-custom-section:hover, .adv-new-contract-capsule.lightmode .adv-new-contract-classic-section:hover {
  border-color: rgba(195, 135, 97, 0.4);
}

/* line 1022, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-custom-section-header, .adv-new-contract-classic-section-header {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

/* line 1027, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-custom-section-header h3, .adv-new-contract-classic-section-header h3, .adv-new-contract-custom-section-header .h3, .adv-new-contract-classic-section-header .h3 {
  all: unset;
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
}

/* line 1036, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule.lightmode .adv-new-contract-custom-section-header h3, .adv-new-contract-capsule.lightmode .adv-new-contract-classic-section-header h3, .adv-new-contract-capsule.lightmode .adv-new-contract-custom-section-header .h3, .adv-new-contract-capsule.lightmode .adv-new-contract-classic-section-header .h3 {
  color: #140D23;
}

/* line 1041, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule.lightmode .adv-new-contract-custom-section-header, .adv-new-contract-capsule.lightmode .adv-new-contract-classic-section-header {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 1046, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-custom-section-content, .adv-new-contract-classic-section-content {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* line 1051, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule.lightmode .adv-new-contract-custom-section-content, .adv-new-contract-capsule.lightmode .adv-new-contract-classic-section-content {
  color: rgba(20, 13, 35, 0.9);
}

/* line 1056, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-custom-section-content input[type="text"], .adv-new-contract-classic-section-content input[type="text"],
.adv-new-contract-custom-section-content input[type="date"],
.adv-new-contract-classic-section-content input[type="date"],
.adv-new-contract-custom-section-content input[type="number"],
.adv-new-contract-classic-section-content input[type="number"],
.adv-new-contract-custom-section-content textarea,
.adv-new-contract-classic-section-content textarea {
  all: unset;
  display: inline-block;
  min-width: 200px;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
  color: #FFFFFF;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

/* line 1072, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-custom-section-content input[type="text"]:focus, .adv-new-contract-classic-section-content input[type="text"]:focus,
.adv-new-contract-custom-section-content input[type="date"]:focus,
.adv-new-contract-classic-section-content input[type="date"]:focus,
.adv-new-contract-custom-section-content input[type="number"]:focus,
.adv-new-contract-classic-section-content input[type="number"]:focus,
.adv-new-contract-custom-section-content textarea:focus,
.adv-new-contract-classic-section-content textarea:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(195, 135, 97, 0.6);
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.15);
}

/* line 1078, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-custom-section-content input[type="text"]::placeholder, .adv-new-contract-classic-section-content input[type="text"]::placeholder,
.adv-new-contract-custom-section-content input[type="date"]::placeholder,
.adv-new-contract-classic-section-content input[type="date"]::placeholder,
.adv-new-contract-custom-section-content input[type="number"]::placeholder,
.adv-new-contract-classic-section-content input[type="number"]::placeholder,
.adv-new-contract-custom-section-content textarea::placeholder,
.adv-new-contract-classic-section-content textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 1082, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule.lightmode .adv-new-contract-custom-section-content input[type="text"], .adv-new-contract-capsule.lightmode .adv-new-contract-classic-section-content input[type="text"], .adv-new-contract-capsule.lightmode .adv-new-contract-custom-section-content input[type="date"], .adv-new-contract-capsule.lightmode .adv-new-contract-classic-section-content input[type="date"], .adv-new-contract-capsule.lightmode .adv-new-contract-custom-section-content input[type="number"], .adv-new-contract-capsule.lightmode .adv-new-contract-classic-section-content input[type="number"], .adv-new-contract-capsule.lightmode .adv-new-contract-custom-section-content textarea, .adv-new-contract-capsule.lightmode .adv-new-contract-classic-section-content textarea {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 1087, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule.lightmode .adv-new-contract-custom-section-content input[type="text"]:focus, .adv-new-contract-capsule.lightmode .adv-new-contract-classic-section-content input[type="text"]:focus, .adv-new-contract-capsule.lightmode .adv-new-contract-custom-section-content input[type="date"]:focus, .adv-new-contract-capsule.lightmode .adv-new-contract-classic-section-content input[type="date"]:focus, .adv-new-contract-capsule.lightmode .adv-new-contract-custom-section-content input[type="number"]:focus, .adv-new-contract-capsule.lightmode .adv-new-contract-classic-section-content input[type="number"]:focus, .adv-new-contract-capsule.lightmode .adv-new-contract-custom-section-content textarea:focus, .adv-new-contract-capsule.lightmode .adv-new-contract-classic-section-content textarea:focus {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(195, 135, 97, 0.7);
}

/* line 1092, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule.lightmode .adv-new-contract-custom-section-content input[type="text"]::placeholder, .adv-new-contract-capsule.lightmode .adv-new-contract-classic-section-content input[type="text"]::placeholder, .adv-new-contract-capsule.lightmode .adv-new-contract-custom-section-content input[type="date"]::placeholder, .adv-new-contract-capsule.lightmode .adv-new-contract-classic-section-content input[type="date"]::placeholder, .adv-new-contract-capsule.lightmode .adv-new-contract-custom-section-content input[type="number"]::placeholder, .adv-new-contract-capsule.lightmode .adv-new-contract-classic-section-content input[type="number"]::placeholder, .adv-new-contract-capsule.lightmode .adv-new-contract-custom-section-content textarea::placeholder, .adv-new-contract-capsule.lightmode .adv-new-contract-classic-section-content textarea::placeholder {
  color: rgba(20, 13, 35, 0.5);
}

/* line 1098, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-custom-section-content textarea, .adv-new-contract-classic-section-content textarea {
  display: block;
  width: 100%;
  min-height: 100px;
  margin: 0.5rem 0;
  resize: vertical;
}

/* line 1107, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-annexes-sections {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Section Facture contractuelle */
/* line 1113, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-invoice-selector {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 16px;
}

/* line 1120, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-invoice-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 120px;
}

/* line 1134, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-invoice-option {
  background: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 1139, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-invoice-option i {
  font-size: 32px;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

/* line 1144, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-invoice-option i {
  color: rgba(20, 13, 35, 0.5);
}

/* line 1149, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-invoice-option span {
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  text-align: center;
}

/* line 1155, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-invoice-option span {
  color: #140D23;
}

/* line 1160, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-invoice-option:hover {
  transform: translateY(-4px);
  background: rgba(195, 135, 97, 0.1);
  border-color: rgba(195, 135, 97, 0.3);
  box-shadow: 0 8px 20px rgba(195, 135, 97, 0.15);
}

/* line 1166, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-invoice-option:hover {
  background: rgba(195, 135, 97, 0.15);
  border-color: rgba(195, 135, 97, 0.4);
}

/* line 1171, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-invoice-option:hover i {
  color: #C38761;
  transform: scale(1.1);
}

/* line 1177, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-invoice-option.selected {
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.2), rgba(195, 135, 97, 0.1));
  border-color: #C38761;
  box-shadow: 0 4px 16px rgba(195, 135, 97, 0.2);
}

/* line 1182, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-invoice-option.selected {
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.25), rgba(195, 135, 97, 0.15));
  border-color: #C38761;
}

/* line 1187, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-invoice-option.selected i {
  color: #C38761;
  transform: scale(1.15);
}

/* line 1192, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-invoice-option.selected span {
  color: #C38761;
}

/* line 1195, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-invoice-option.selected span {
  color: #af6c42;
}

/* line 1202, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-invoice-info {
  margin-top: 16px;
}

/* line 1206, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-info-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: rgba(195, 135, 97, 0.1);
  border-left: 4px solid #C38761;
  border-radius: 8px;
}

/* line 1214, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-info-card {
  background: rgba(195, 135, 97, 0.15);
}

/* line 1218, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-info-card > i {
  font-size: 24px;
  color: #C38761;
  flex-shrink: 0;
  margin-top: 4px;
}

/* line 1225, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-info-card div {
  flex: 1;
}

/* line 1228, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-info-card div p {
  margin: 0;
  color: #FFFFFF;
  font-size: 14px;
  line-height: 1.6;
}

/* line 1234, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-info-card div p {
  color: #140D23;
}

/* line 1, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-capsule {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 30px 10px 30px;
  font-size: 0.8rem;
  gap: 10px;
}

/* line 11, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-capsule .form-group {
  margin: 0;
}

/* line 15, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-capsule.lightmode {
  color: #140D23;
}

/* line 17, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-capsule.lightmode h2, .adv-new-contract-template-capsule.lightmode .h2 {
  color: #140D23 !important;
}

/* line 20, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-capsule.lightmode ul {
  color: #140D23 !important;
}

/* line 23, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-capsule.lightmode strong {
  color: #140D23 !important;
}

/* line 26, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-capsule.lightmode label {
  color: #140D23 !important;
}

/* line 29, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-capsule.lightmode #contract_template_title {
  color: #140D23 !important;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 33, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-capsule.lightmode .adv-new-contract-template-keywords {
  color: #C38761 !important;
}

/* line 38, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-capsule.nightmode {
  color: #FFFFFF;
}

/* line 42, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-main-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 47, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.new-contract-template-capsule-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: flex-start;
  gap: 20px;
}

/* line 58, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 64, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-capsule span {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 70, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-capsule.lightmode span {
  color: #C38761;
}

/* line 74, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-capsule.nightmode span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 78, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-capsule.lightmode p {
  color: #140D23;
}

/* line 82, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-capsule.nightmode p {
  color: #FFFFFF;
}

/* line 86, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-capsule.lightmode i {
  color: #140D23;
}

/* line 90, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-capsule.nightmode i {
  color: #FFFFFF;
}

/* line 94, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1 {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 17px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(232, 232, 232, 0.5);
  border-radius: 20px;
  padding: 20px;
}

/* line 105, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1 form {
  width: 100%;
  display: flex;
}

/* line 110, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1 form input:focus {
  background-color: transparent;
}

/* line 116, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1 .selected {
  background-color: #e8e8e8 !important;
}

/* line 119, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1 .selected p {
  color: #140D23 !important;
}

/* line 123, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1 .special-toggle {
  width: 200px !important;
  background-color: transparent;
  color: #140D23;
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: space-evenly;
  transition: transform 0.3s ease;
  border: 1px solid rgba(232, 232, 232, 0.5);
}

/* line 134, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1 .special-toggle span {
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: normal;
  padding: 5px;
  white-space: nowrap;
}

/* line 143, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1 .special-toggle:hover {
  transform: scale(1.04);
}

/* line 147, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1 .choosen-one {
  background-color: #e8e8e8;
}

/* line 149, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1 .choosen-one span {
  color: #140D23;
}

/* line 155, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1 .selected {
  background-color: #e8e8e8;
}

/* line 158, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1 .selected span {
  color: #140D23;
}

/* line 165, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row2 {
  width: 80%;
  height: 7.5%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
}

/* line 175, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row2 #fakeSubmitButton {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  border: none;
  cursor: pointer;
  background-color: #C38761;
  color: #140D23;
}

/* line 190, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row2 #fakeSubmitButton:hover {
  background-color: #864B28;
  transform: scale(1.05);
}

/* line 197, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-searchbar {
  width: 100%;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 212, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-searchbar button {
  all: unset;
}

/* line 215, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-searchbar i {
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 222, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-searchbar span {
  font-weight: normal !important;
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 229, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow1 {
  width: 100%;
  height: 10%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

/* line 238, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow2 {
  width: 100%;
  height: 10%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

/* line 247, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow2 .selected {
  background-color: #e8e8e8 !important;
}

/* line 250, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow2 .selected p {
  color: #140D23 !important;
}

/* line 255, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow2 .adv-new-contract-template-row1-subrow2-market {
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 257, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow2 .adv-new-contract-template-row1-subrow2-market h3, .adv-new-contract-template-row1-subrow2 .adv-new-contract-template-row1-subrow2-market .h3 {
  all: unset;
  font-size: 0.7rem;
  font-weight: normal;
  white-space: nowrap;
}

/* line 268, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow2 .adv-new-contract-template-row1-subrow2-market-choice {
  width: 200px !important;
  background-color: transparent;
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: space-evenly;
  transition: transform 0.3s ease;
  border: 1px solid rgba(232, 232, 232, 0.5);
  cursor: pointer;
}

/* line 281, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow3 {
  width: 100%;
  height: 10%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

/* line 291, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow3 .special-toggle-sales-cycle {
  width: 270px !important;
  background-color: transparent;
  color: #140D23;
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: space-evenly;
  transition: transform 0.3s ease;
  border: 1px solid rgba(232, 232, 232, 0.5);
}

/* line 302, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow3 .special-toggle-sales-cycle span {
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: normal;
  padding: 5px;
  white-space: nowrap;
}

/* line 311, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow3 .special-toggle:hover {
  transform: scale(1.04);
}

/* line 315, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow3 .selected {
  background-color: #e8e8e8;
}

/* line 318, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow3 .selected span {
  color: #140D23;
}

/* line 324, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow3-new-transaction {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* line 329, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow3-new-transaction p {
  all: unset;
  font-size: 0.7rem;
  text-align: center;
}

/* line 336, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow3-searchbar {
  width: 100%;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 350, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow3-searchbar .results p {
  all: unset;
  font-size: 0.7rem !important;
  margin: 0;
  font-weight: normal !important;
  color: #140D23 !important;
}

/* line 360, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow3-searchbar button {
  all: unset;
}

/* line 363, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow3-searchbar i {
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 370, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow3-searchbar span {
  font-weight: normal !important;
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 376, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow4 {
  width: 100%;
  height: 10%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

/* line 385, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow5 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* line 392, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-vertical-line {
  width: 90%;
  border-bottom: 1px solid rgba(232, 232, 232, 0.5);
}

/* line 397, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.userChoice {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* line 402, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.userChoice .no-recipient {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-color-primary);
}

/* line 419, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.userChoice .item {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  padding: 5px 40px 5px 15px;
}

/* line 427, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.userChoice .item .item-header {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* line 431, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.userChoice .item .item-header i {
  color: green;
  font-size: 0.7rem;
}

/* line 435, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.userChoice .item .item-header p {
  margin: 0;
  font-size: 0.7rem;
  font-weight: normal;
}

/* line 444, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.customerChoice {
  display: flex;
  justify-content: end;
  align-items: center;
  width: 100%;
}

/* line 449, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.customerChoice .no-recipient {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-color-primary);
}

/* line 466, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.customerChoice .item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* line 480, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.customerChoice .item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  border-color: rgba(232, 232, 232, 0.6);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

/* line 487, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.customerChoice .item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #C38761, #864B28);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* line 499, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.customerChoice .item:hover::before {
  opacity: 1;
}

/* line 503, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.customerChoice .item .item-header {
  display: flex;
  justify-content: center;
  gap: 15px;
  align-items: center;
  flex-grow: 1;
}

/* line 510, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.customerChoice .item .item-header i {
  color: green;
  font-size: 1rem;
  padding: 8px;
  background-color: rgba(195, 135, 97, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* line 519, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.customerChoice .item .item-header p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-color-primary);
  line-height: 1.4;
  transition: color 0.3s ease;
}

/* line 530, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.customerChoice .item:hover .item-header i {
  color: #864B28;
  background-color: rgba(134, 75, 40, 0.15);
  transform: scale(1.1);
}

/* line 536, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.customerChoice .item:hover .item-header p {
  color: #FFFFFF;
}

/* line 541, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.customerChoice .item .item-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* line 548, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.customerChoice .item .item-actions button {
  all: unset;
  padding: 6px;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-size: 0.7rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 558, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.customerChoice .item .item-actions button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

/* line 565, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.customerChoice .item:hover .item-actions {
  opacity: 1;
}

/* line 571, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow4-list {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 579, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow4-list-head {
  width: 100%;
  display: flex;
  flex-direction: row;
  font-weight: bold;
  font-size: 0.8rem;
}

/* line 587, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow4-list-column {
  width: 12%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.6rem;
  padding: 2px 5px;
}

/* line 595, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow4-list-column-article {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.6rem;
  padding: 2px 5px;
}

/* line 604, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow4-list-entries {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 1;
}

/* line 614, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.entry {
  width: 100%;
  display: flex;
}

/* line 618, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.entry .quantity-input {
  all: unset;
  width: 70%;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 631, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.entry .quantity-input:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 636, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.entry .discount-input {
  all: unset;
  width: 50%;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 649, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.entry .discount-input:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 656, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.totalPrice {
  font-size: 0.8rem;
  font-weight: bold;
  text-align: center;
  color: #140D23;
  border-radius: 20px;
  background-color: #e8e8e8;
}

/* line 663, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.totalPrice p {
  color: #000000 !important;
}

/* line 668, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.search-results-articles {
  display: flex;
  min-height: 30px;
  width: 97% !important;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  padding: 5px;
  border-radius: 0.375rem;
  flex-wrap: nowrap;
}

/* line 678, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.search-results-articles label {
  opacity: 1;
}

/* line 681, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.search-results-articles p {
  all: unset;
  font-size: 0.7rem !important;
  margin: 0;
  font-weight: normal !important;
  color: #140D23 !important;
}

/* line 689, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.search-results-articles:hover {
  background-color: rgba(255, 255, 255, 0.5);
  transition: transform 0.3s ease;
}

/* line 695, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.articles {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

/* line 703, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-form-field {
  display: flex;
  width: 100%;
  height: 10%;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 20px;
}

/* line 711, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-form-field label {
  all: unset;
  font-size: 0.7rem;
  font-weight: normal;
  color: #FFFFFF;
}

/* line 720, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow4-contract {
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 722, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow4-contract h3, .adv-new-contract-template-row1-subrow4-contract .h3 {
  all: unset;
  font-size: 0.7rem;
  font-weight: normal;
  white-space: nowrap;
}

/* line 732, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow4-contract label {
  all: unset;
  font-size: 0.7rem;
  font-weight: normal;
  color: #FFFFFF;
}

/* line 740, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow4-contract-choice {
  width: 200px !important;
  background-color: transparent;
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: space-evenly;
  transition: transform 0.3s ease;
  border: 1px solid rgba(232, 232, 232, 0.5);
  cursor: pointer;
}

/* line 753, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow5-RFA-capsule {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 15px;
}

/* line 761, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow5-RFA-objectifs {
  display: flex;
  gap: 10px;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

/* line 768, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow5-RFA-reward {
  display: flex;
  gap: 10px;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

/* line 775, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow5-RFA-calculation-base {
  display: flex;
  gap: 10px;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

/* line 782, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.label-group {
  display: flex;
  gap: 5px;
}

/* line 786, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.label-group label {
  all: unset;
  font-size: 0.7rem;
  font-weight: normal;
  color: #FFFFFF;
}

/* line 794, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow5-licence-capsule {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 15px;
}

/* line 801, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow5-licence-capsule .adv-new-contract-template-row1-subrow5-licence-cycle {
  display: flex;
  gap: 10px;
  width: 100%;
  height: 100%;
}

/* line 806, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow5-licence-capsule .adv-new-contract-template-row1-subrow5-licence-cycle label {
  all: unset;
  font-size: 0.7rem;
  font-weight: normal;
  color: #FFFFFF;
}

/* line 814, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow5-licence-capsule .adv-new-contract-template-row1-subrow5-licence-users {
  display: flex;
  gap: 10px;
  width: 100%;
  height: 100%;
}

/* line 819, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow5-licence-capsule .adv-new-contract-template-row1-subrow5-licence-users label {
  all: unset;
  font-size: 0.7rem;
  font-weight: normal;
  color: #FFFFFF;
}

/* line 827, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow5-licence-capsule .adv-new-contract-template-row1-subrow5-licence-modules {
  display: flex;
  gap: 10px;
  width: 100%;
  height: 100%;
}

/* line 832, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow5-licence-capsule .adv-new-contract-template-row1-subrow5-licence-modules label {
  all: unset;
  font-size: 0.7rem;
  font-weight: normal;
  color: #FFFFFF;
}

/* line 840, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow5-licence-capsule .adv-new-contract-template-row1-subrow5-licence-suspension {
  display: flex;
  gap: 10px;
  width: 100%;
  height: 100%;
}

/* line 845, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow5-licence-capsule .adv-new-contract-template-row1-subrow5-licence-suspension label {
  all: unset;
  font-size: 0.7rem;
  font-weight: normal;
  color: #FFFFFF;
}

/* line 853, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow5-licence-capsule .adv-new-contract-template-row1-subrow5-licence-activation {
  display: flex;
  gap: 10px;
  width: 100%;
  height: 100%;
}

/* line 858, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow5-licence-capsule .adv-new-contract-template-row1-subrow5-licence-activation label {
  all: unset;
  font-size: 0.7rem;
  font-weight: normal;
  color: #FFFFFF;
}

/* line 867, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-row1-subrow5-licence-capsule .form-check label {
  all: unset;
  font-size: 0.7rem;
  font-weight: normal;
  color: #FFFFFF;
}

/* line 875, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.contract-template-steps {
  display: grid;
  grid-template-rows: repeat(14, 1fr);
  width: 20%;
  height: 100%;
}

/* line 881, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.contract-template-steps .contract-template-step {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.5s ease;
}

/* line 890, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.contract-template-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* line 895, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.contract-template-content #template {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 10px;
}

/* line 904, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.contract-template-content h2, .contract-template-content .h2 {
  all: unset;
  font-size: 1.2rem;
  font-weight: bold;
  color: #FFFFFF;
  text-align: center;
}

/* line 912, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.contract-template-content label {
  all: unset;
  font-size: 0.8rem;
  font-weight: normal;
  color: #FFFFFF;
}

/* line 920, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.new-contract-template-question-suivante {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* line 925, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.new-contract-template-title {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

/* line 932, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.new-contract-template-select-container {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.75rem;
  text-transform: capitalize;
  font-weight: 600;
  padding: 8px 12px;
  background-color: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 10px;
}

/* line 947, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.new-contract-template-select-container .new-contract-template-select-container {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 954, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.new-contract-template-version-content {
  padding: 12px;
  color: #ffffff;
  font-size: 0.7rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  line-height: 30px;
}

/* line 961, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.new-contract-template-version-content p {
  all: unset;
  font-size: 0.7rem;
  font-weight: normal;
  color: #FFFFFF;
}

/* line 969, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.new-contract-template-column1 {
  width: 30%;
  height: 100%;
}

/* line 973, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.new-contract-template-column2 {
  width: 70%;
  height: 100%;
}

/* line 978, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.new-contract-template-personnal-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 20px;
}

/* line 985, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.new-contract-template-personnal-actions .new-contract-template-personnal-variable {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 991, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.new-contract-template-personnal-actions .new-contract-template-personnal-variable .contract-template-custom-variable-input {
  width: 100%;
  padding: 10px 14px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-size: 0.8rem;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

/* line 1002, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.new-contract-template-personnal-actions .new-contract-template-personnal-variable .contract-template-custom-variable-input:focus {
  outline: none;
  border-color: rgba(195, 135, 97, 0.5);
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.15);
}

/* line 1009, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.new-contract-template-personnal-actions .new-contract-template-personnal-variable .contract-template-custom-variable-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

/* line 1014, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.lightmode .new-contract-template-personnal-actions .new-contract-template-personnal-variable .contract-template-custom-variable-input {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 1019, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.lightmode .new-contract-template-personnal-actions .new-contract-template-personnal-variable .contract-template-custom-variable-input::placeholder {
  color: rgba(20, 13, 35, 0.5);
}

/* line 1023, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.lightmode .new-contract-template-personnal-actions .new-contract-template-personnal-variable .contract-template-custom-variable-input:focus {
  border-color: rgba(195, 135, 97, 0.5);
  background-color: rgba(20, 13, 35, 0.15);
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.15);
}

/* line 1031, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.new-contract-template-personnal-actions .new-contract-template-personnal-variable input {
  width: 100%;
  color: #FFFFFF;
}

/* line 1034, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.lightmode .new-contract-template-personnal-actions .new-contract-template-personnal-variable input::placeholder {
  color: #140D23;
}

/* line 1038, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.new-contract-template-personnal-actions .new-contract-template-personnal-variable .form-button, .new-contract-template-personnal-actions .new-contract-template-personnal-variable .crm-action-button, .new-contract-template-personnal-actions .new-contract-template-personnal-variable .users-management-container .users-header .add-user-btn, .users-management-container .users-header .new-contract-template-personnal-actions .new-contract-template-personnal-variable .add-user-btn {
  all: unset;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 4px 12px;
  color: #FFFFFF;
  font-size: 0.75rem;
  text-transform: capitalize;
  font-weight: 600;
  cursor: pointer;
}

/* line 1053, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.new-contract-template-personnal-actions .new-contract-template-personnal-variable .form-button:hover, .new-contract-template-personnal-actions .new-contract-template-personnal-variable .crm-action-button:hover, .new-contract-template-personnal-actions .new-contract-template-personnal-variable .users-management-container .users-header .add-user-btn:hover, .users-management-container .users-header .new-contract-template-personnal-actions .new-contract-template-personnal-variable .add-user-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 1056, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.lightmode .new-contract-template-personnal-actions .new-contract-template-personnal-variable .form-button, .lightmode .new-contract-template-personnal-actions .new-contract-template-personnal-variable .crm-action-button, .lightmode .new-contract-template-personnal-actions .new-contract-template-personnal-variable .users-management-container .users-header .add-user-btn, .users-management-container .users-header .lightmode .new-contract-template-personnal-actions .new-contract-template-personnal-variable .add-user-btn {
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 1062, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.lightmode .new-contract-template-personnal-actions .new-contract-template-personnal-variable .form-control {
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 1068, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.new-contract-template-personnal-actions .new-contract-template-dropdown-variable {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* line 1075, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.new-contract-template-personnal-actions .new-contract-template-dropdown-variable .new-contract-template-dropdown-button {
  all: unset;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 8px 12px;
  color: #FFFFFF;
  font-size: 0.75rem;
  text-transform: capitalize;
  font-weight: 600;
  cursor: pointer;
}

/* line 1091, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.new-contract-template-personnal-actions .new-contract-template-dropdown-variable .new-contract-template-dropdown-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 1094, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.lightmode .new-contract-template-personnal-actions .new-contract-template-dropdown-variable .new-contract-template-dropdown-button {
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 1099, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.new-contract-template-personnal-actions .new-contract-template-dropdown-variable .absolute-dropdown-list-container {
  position: absolute;
  top: 100%;
  left: 0;
  padding: 10px;
  width: 100%;
  max-height: 300px;
  z-index: 10;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 1112, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.new-contract-template-personnal-actions .new-contract-template-dropdown-variable .absolute-dropdown-list {
  padding: 5px;
  display: flex;
  flex-direction: column;
  max-height: 250px;
  gap: 5px;
  overflow-y: auto;
  /* Personnalisation de la barre de défilement */
}

/* line 1120, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.new-contract-template-personnal-actions .new-contract-template-dropdown-variable .absolute-dropdown-list::-webkit-scrollbar {
  width: 8px;
  /* Largeur de la barre de défilement */
}

/* line 1124, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.new-contract-template-personnal-actions .new-contract-template-dropdown-variable .absolute-dropdown-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  /* Couleur de l'arrière-plan de la barre */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 1129, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.new-contract-template-personnal-actions .new-contract-template-dropdown-variable .absolute-dropdown-list::-webkit-scrollbar-thumb {
  background: #C38761;
  /* Couleur de la barre de défilement */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 1134, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.new-contract-template-personnal-actions .new-contract-template-dropdown-variable .absolute-dropdown-list::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
  /* Couleur de la barre au survol */
}

/* line 1137, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.new-contract-template-personnal-actions .new-contract-template-dropdown-variable .absolute-dropdown-list .dropdown-item {
  all: unset;
  cursor: pointer;
  padding: 5px;
}

/* line 1141, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.new-contract-template-personnal-actions .new-contract-template-dropdown-variable .absolute-dropdown-list .dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 1148, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.contract-builder-intro {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 2rem;
  overflow-y: auto;
  /* Personnalisation de la barre de défilement */
}

/* line 1157, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.contract-builder-intro::-webkit-scrollbar {
  width: 8px;
  /* Largeur de la barre de défilement */
}

/* line 1161, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.contract-builder-intro::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  /* Couleur de l'arrière-plan de la barre */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 1166, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.contract-builder-intro::-webkit-scrollbar-thumb {
  background: #C38761;
  /* Couleur de la barre de défilement */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 1171, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.contract-builder-intro::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
  /* Couleur de la barre au survol */
}

/* line 1174, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.contract-builder-intro h2, .contract-builder-intro .h2 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* line 1180, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.contract-builder-intro h3, .contract-builder-intro .h3 {
  font-size: 0.8rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

/* line 1187, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.contract-builder-intro p {
  font-size: 0.7rem;
  margin-bottom: 1rem;
}

/* line 1193, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.contract-builder-intro ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

/* line 1197, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.contract-builder-intro ul li {
  font-size: 0.7rem;
  margin-bottom: 0.5rem;
}

/* line 1202, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.contract-builder-intro ul li strong {
  color: #FFFFFF;
}

/* line 1210, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.new-contract-template-actions-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* line 1217, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.new-contract-template-question-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

/* line 1224, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.new-contract-template-question-container label {
  font-weight: bold;
}

/* line 1227, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.new-contract-template-question-container input {
  all: unset;
  margin: 0 5px;
  width: 100%;
  background-color: transparent;
  font-size: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 5px 10px;
  border-radius: 30px;
  font-weight: bold;
  text-align: center;
}

/* line 1238, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.new-contract-template-question-container input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-weight: normal;
}

/* line 1245, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.new-contract-template-intro-container {
  padding: 5px;
  height: 90%;
  margin-bottom: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
}

/* line 1254, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.adv-new-contract-template-keywords {
  color: #864B28;
}

/* line 1259, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.contract-template-choice-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  width: 100%;
  margin-top: 2rem;
  padding: 1rem;
}

/* line 1268, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.contract-template-choice-option {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* line 1280, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.contract-template-choice-option::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #C38761, #864B28);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* line 1292, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.contract-template-choice-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border-color: rgba(195, 135, 97, 0.5);
}

/* line 1297, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.contract-template-choice-option:hover::before {
  opacity: 1;
}

/* line 1302, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.contract-template-choice-option .choice-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

/* line 1308, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.contract-template-choice-option .choice-header .choice-icon {
  font-size: 2.5rem;
  line-height: 1;
}

/* line 1313, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.contract-template-choice-option .choice-header h3, .contract-template-choice-option .choice-header .h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #FFFFFF;
  margin: 0;
}

/* line 1321, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.contract-template-choice-option p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* line 1328, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.contract-template-choice-option ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

/* line 1333, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.contract-template-choice-option ul li {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
}

/* line 1341, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.contract-template-choice-option .choice-button {
  margin-top: auto;
  width: 100%;
  text-align: center;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #C38761 0%, #864B28 100%);
  color: #140D23;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* line 1355, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.contract-template-choice-option .choice-button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(195, 135, 97, 0.4);
}

/* line 1364, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.lightmode .contract-template-choice-option {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.05) 0%, rgba(20, 13, 35, 0.02) 100%);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 1368, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.lightmode .contract-template-choice-option .choice-header h3, .lightmode .contract-template-choice-option .choice-header .h3 {
  color: #140D23;
}

/* line 1372, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.lightmode .contract-template-choice-option p {
  color: rgba(20, 13, 35, 0.9);
}

/* line 1376, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.lightmode .contract-template-choice-option ul li {
  color: rgba(20, 13, 35, 0.85);
}

/* line 1380, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.lightmode .contract-template-choice-option:hover {
  border-color: rgba(195, 135, 97, 0.5);
}

/* line 1387, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.custom-contract-editor {
  min-height: 400px;
  background: rgba(255, 255, 255, 0.05);
}

/* line 1391, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.custom-contract-editor.lightmode {
  background: rgba(20, 13, 35, 0.03);
  color: #140D23;
}

/* line 1398, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.custom-contract-presentation {
  width: 100%;
  padding: 1rem 2rem;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 1407, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.custom-sections-container {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0 1rem;
  margin-bottom: 2rem;
  box-sizing: border-box;
  overflow-x: hidden;
}

/* line 1419, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.custom-section {
  width: 100%;
  max-width: 100%;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  transition: all 0.3s ease;
  position: relative;
  box-sizing: border-box;
  overflow-x: hidden;
}

/* line 1431, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.custom-section:hover {
  border-color: rgba(195, 135, 97, 0.3);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* line 1437, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 1447, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.section-title-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* line 1453, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.section-title-container .section-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 1461, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.section-title-container .section-title-input {
  all: unset;
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

/* line 1473, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.section-title-container .section-title-input:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(195, 135, 97, 0.5);
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 1479, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.section-title-container .section-title-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-weight: normal;
}

/* line 1486, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.delete-section-button {
  all: unset;
  padding: 0.5rem 1rem;
  background: rgba(195, 135, 97, 0.2);
  border: 1px solid rgba(195, 135, 97, 0.3);
  border-radius: 0.5rem;
  color: #C38761;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 1500, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.delete-section-button:hover {
  background: rgba(195, 135, 97, 0.3);
  transform: scale(1.05);
}

/* line 1506, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.section-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* line 1516, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.add-section-button-container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 1rem;
  margin-bottom: 2rem;
}

/* line 1524, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.add-section-button {
  all: unset;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #C38761 0%, #864B28 100%);
  border: none;
  border-radius: 0.75rem;
  color: #140D23;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(195, 135, 97, 0.3);
}

/* line 1540, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.add-section-button span {
  font-size: 1.2rem;
}

/* line 1544, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.add-section-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(195, 135, 97, 0.4);
}

/* line 1549, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.add-section-button:active {
  transform: translateY(0);
}

/* line 1556, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.lightmode .custom-contract-presentation {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.05) 0%, rgba(20, 13, 35, 0.02) 100%);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 1561, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.lightmode .custom-section {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.08) 0%, rgba(20, 13, 35, 0.03) 100%);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 1565, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.lightmode .custom-section:hover {
  border-color: rgba(195, 135, 97, 0.4);
}

/* line 1570, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.lightmode .section-header {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 1575, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.lightmode .section-title-container .section-label {
  color: #140D23;
}

/* line 1579, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.lightmode .section-title-container .section-title-input {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 1584, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.lightmode .section-title-container .section-title-input:focus {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(195, 135, 97, 0.6);
}

/* line 1589, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.lightmode .section-title-container .section-title-input::placeholder {
  color: rgba(20, 13, 35, 0.4);
}

/* line 1595, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.lightmode .custom-contract-editor {
  background: white;
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 1603, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.custom-variable-item {
  position: relative;
  font-style: italic;
  background: rgba(195, 135, 97, 0.05);
}

/* line 1608, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.custom-variable-item:hover {
  background: rgba(195, 135, 97, 0.15);
}

/* line 1614, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.lightmode .custom-variable-item {
  background: rgba(195, 135, 97, 0.08);
}

/* line 1617, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.lightmode .custom-variable-item:hover {
  background: rgba(195, 135, 97, 0.2);
}

/* line 1624, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.annexes-sections-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem 0;
  margin-top: 1.5rem;
}

/* line 1637, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.contract-template-progress-bar {
  width: 100%;
  padding: 1rem 0;
  margin-bottom: 1.5rem;
}

/* line 1643, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.progress-bar-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  padding: 1.25rem;
  transition: all 0.3s ease;
}

/* line 1654, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.progress-bar-container:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: rgba(195, 135, 97, 0.3);
}

/* line 1660, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.progress-bar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.25rem;
}

/* line 1666, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.progress-bar-header .progress-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.3px;
}

/* line 1673, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.progress-bar-header .progress-percentage {
  font-size: 0.9rem;
  font-weight: 700;
  color: #C38761;
  background: rgba(195, 135, 97, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
}

/* line 1683, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.progress-bar-track {
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* line 1693, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.progress-bar-fill {
  height: 100%;
  width: var(--dynamic-width, 0%);
  background: linear-gradient(90deg, #C38761 0%, #864B28 100%);
  border-radius: 1rem;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 2px 8px rgba(195, 135, 97, 0.4);
}

/* line 1702, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.progress-bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* line 1726, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.progress-steps-indicators {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
  gap: 0.25rem;
}

/* line 1734, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.progress-step-indicator {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  max-width: 36px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  position: relative;
}

/* line 1751, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.progress-step-indicator span {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 1757, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.progress-step-indicator i {
  font-size: 0.7rem;
  color: #140D23;
}

/* line 1762, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.progress-step-indicator.completed {
  background: linear-gradient(135deg, #C38761 0%, #864B28 100%);
  border-color: #864B28;
  color: #140D23;
  box-shadow: 0 2px 8px rgba(195, 135, 97, 0.4);
  transform: scale(1.05);
}

/* line 1769, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.progress-step-indicator.completed i {
  color: #140D23;
  font-weight: bold;
}

/* line 1775, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.progress-step-indicator.current {
  background: linear-gradient(135deg, #C38761 0%, #864B28 100%);
  border-color: #864B28;
  color: #140D23;
  box-shadow: 0 0 0 4px rgba(195, 135, 97, 0.2), 0 4px 12px rgba(195, 135, 97, 0.5);
  transform: scale(1.15);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  z-index: 1;
}

/* line 1785, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.progress-step-indicator.current span {
  font-weight: 700;
}

/* line 1790, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.progress-step-indicator:hover:not(.completed):not(.current) {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.08);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 4px rgba(195, 135, 97, 0.2), 0 4px 12px rgba(195, 135, 97, 0.5);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(195, 135, 97, 0.1), 0 4px 12px rgba(195, 135, 97, 0.3);
  }
}

/* line 1810, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.lightmode .progress-bar-container {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.05) 0%, rgba(20, 13, 35, 0.02) 100%);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 1814, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.lightmode .progress-bar-container:hover {
  border-color: rgba(195, 135, 97, 0.4);
}

/* line 1820, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.lightmode .progress-bar-header .progress-label {
  color: #140D23;
}

/* line 1824, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.lightmode .progress-bar-header .progress-percentage {
  color: #864B28;
  background: rgba(195, 135, 97, 0.15);
}

/* line 1830, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.lightmode .progress-bar-track {
  background: rgba(20, 13, 35, 0.08);
}

/* line 1834, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.lightmode .progress-step-indicator {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
  color: rgba(20, 13, 35, 0.6);
}

/* line 1840, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.lightmode .progress-step-indicator.completed i {
  color: #140D23;
}

/* line 1846, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.lightmode .progress-step-indicator.current span {
  color: #140D23;
}

/* line 1851, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.lightmode .progress-step-indicator:hover:not(.completed):not(.current) {
  background: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
}

@media (max-width: 768px) {
  /* line 1860, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
  .progress-steps-indicators {
    gap: 0.15rem;
  }
  /* line 1864, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
  .progress-step-indicator {
    min-width: 24px;
    max-width: 30px;
    height: 24px;
    font-size: 0.6rem;
  }
  /* line 1870, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
  .progress-step-indicator i {
    font-size: 0.6rem;
  }
  /* line 1874, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
  .progress-step-indicator.current {
    transform: scale(1.1);
  }
  /* line 1880, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
  .progress-bar-header .progress-label {
    font-size: 0.75rem;
  }
  /* line 1884, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
  .progress-bar-header .progress-percentage {
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
  }
}

/* line 1892, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.tiptap-editor-container {
  min-height: 200px;
  border: 1px solid #ccc;
  padding: 1rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
}

/* line 1900, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.tiptap-editor-container:focus-within {
  border-color: rgba(195, 135, 97, 0.5);
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 1906, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.tiptap-editor-container .ProseMirror {
  outline: none;
}

/* line 1909, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.tiptap-editor-container .ProseMirror p {
  margin: 0;
  margin-bottom: 0.5em;
}

/* line 1913, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.tiptap-editor-container .ProseMirror p:last-child {
  margin-bottom: 0;
}

/* line 1919, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.tiptap-editor-container .ProseMirror .adv-new-contract-template-keywords {
  color: #864B28;
  user-select: all;
  cursor: default;
}

/* line 1928, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.tiptap-editor-container .ProseMirror ul, .tiptap-editor-container .ProseMirror ol {
  padding-left: 1.5em;
  margin: 0.5em 0;
}

/* line 1933, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.tiptap-editor-container .ProseMirror h1, .tiptap-editor-container .ProseMirror .h1, .tiptap-editor-container .ProseMirror h2, .tiptap-editor-container .ProseMirror .h2, .tiptap-editor-container .ProseMirror h3, .tiptap-editor-container .ProseMirror .h3, .tiptap-editor-container .ProseMirror h4, .tiptap-editor-container .ProseMirror .h4, .tiptap-editor-container .ProseMirror h5, .tiptap-editor-container .ProseMirror .h5, .tiptap-editor-container .ProseMirror h6, .tiptap-editor-container .ProseMirror .h6 {
  margin: 0.5em 0;
  font-weight: bold;
}

/* line 1938, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.tiptap-editor-container .ProseMirror h1, .tiptap-editor-container .ProseMirror .h1 {
  font-size: 2em;
}

/* line 1939, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.tiptap-editor-container .ProseMirror h2, .tiptap-editor-container .ProseMirror .h2 {
  font-size: 1.5em;
}

/* line 1940, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.tiptap-editor-container .ProseMirror h3, .tiptap-editor-container .ProseMirror .h3 {
  font-size: 1.17em;
}

/* line 1941, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.tiptap-editor-container .ProseMirror h4, .tiptap-editor-container .ProseMirror .h4 {
  font-size: 1em;
}

/* line 1942, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.tiptap-editor-container .ProseMirror h5, .tiptap-editor-container .ProseMirror .h5 {
  font-size: 0.83em;
}

/* line 1943, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.tiptap-editor-container .ProseMirror h6, .tiptap-editor-container .ProseMirror .h6 {
  font-size: 0.67em;
}

/* line 1945, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.tiptap-editor-container .ProseMirror blockquote {
  border-left: 3px solid rgba(255, 255, 255, 0.3);
  padding-left: 1em;
  margin: 0.5em 0;
}

/* line 1951, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.tiptap-editor-container .ProseMirror code {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.2em 0.4em;
  border-radius: 3px;
  font-family: monospace;
}

/* line 1958, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.tiptap-editor-container .ProseMirror pre {
  background: rgba(255, 255, 255, 0.1);
  padding: 1em;
  border-radius: 4px;
  overflow-x: auto;
}

/* line 1964, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.tiptap-editor-container .ProseMirror pre code {
  background: none;
  padding: 0;
}

/* line 1970, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.tiptap-editor-container .ProseMirror strong {
  font-weight: bold;
}

/* line 1974, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.tiptap-editor-container .ProseMirror em {
  font-style: italic;
}

/* line 1978, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.tiptap-editor-container .ProseMirror u {
  text-decoration: underline;
}

/* line 1982, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.tiptap-editor-container .ProseMirror s {
  text-decoration: line-through;
}

/* line 1989, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.lightmode .tiptap-editor-container {
  background: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 1993, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.lightmode .tiptap-editor-container:focus-within {
  border-color: rgba(195, 135, 97, 0.6);
}

/* line 1998, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.lightmode .tiptap-editor-container .adv-new-contract-template-keywords {
  color: #C38761;
}

/* line 2005, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.custom-section-editor-container {
  min-height: 300px;
  width: 100%;
  max-width: 100%;
  border: 1px solid #ccc;
  padding: 1.5rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: pre-wrap;
  overflow-x: hidden;
  overflow-y: auto;
}

/* line 2023, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.custom-section-editor-container:focus, .custom-section-editor-container:focus-within {
  border-color: rgba(195, 135, 97, 0.5);
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
  outline: none;
}

/* line 2031, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.custom-section-editor-container .adv-new-contract-template-keywords {
  color: #864B28;
  user-select: all;
  cursor: default;
}

/* line 2039, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.lightmode .custom-section-editor-container {
  background: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 2043, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.lightmode .custom-section-editor-container:focus, .lightmode .custom-section-editor-container:focus-within {
  border-color: rgba(195, 135, 97, 0.6);
}

/* line 2049, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.lightmode .custom-section-editor-container .adv-new-contract-template-keywords {
  color: #C38761;
}

/* line 2056, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.variable-badge {
  color: #C38761;
  font-weight: bold;
  padding: 2px 6px;
  background-color: rgba(195, 135, 97, 0.1);
  border-radius: 3px;
}

/* line 2063, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.variable-badge.custom-variable {
  color: #f39c12;
  background-color: rgba(243, 156, 18, 0.1);
}

/* ==========================================================================
   NOTIFICATIONS - Variables personnalisées
   ========================================================================== */
/* line 2073, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.contract-template-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  padding: 12px 16px;
  border-radius: 8px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 350px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

/* line 2091, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.contract-template-notification i {
  font-size: 16px;
  opacity: 0.9;
}

/* line 2096, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.contract-template-notification span {
  flex: 1;
}

/* line 2100, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.contract-template-notification.contract-template-notification-success {
  background: rgba(40, 167, 69, 0.9);
}

/* line 2104, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.contract-template-notification.contract-template-notification-error {
  background: rgba(220, 53, 69, 0.9);
}

/* line 2108, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.contract-template-notification.contract-template-notification-info {
  background: rgba(23, 162, 184, 0.9);
}

/* line 2112, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.contract-template-notification.contract-template-notification-show {
  transform: translateX(0);
}

/* line 2116, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.contract-template-notification.contract-template-notification-hide {
  transform: translateX(100%);
}

/* line 2121, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.custom-contract-sections-container {
  max-width: 900px;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* ==========================================================================
   TIPTAP LOADING OVERLAY
   ========================================================================== */
/* line 2131, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.tiptap-loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  z-index: 10;
}

/* line 2146, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.tiptap-loading-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 500;
}

/* line 2155, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.tiptap-loading-spinner i {
  font-size: 1.5rem;
  color: #C38761;
}

/* line 2160, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.tiptap-loading-spinner span {
  opacity: 0.9;
}

/* line 2166, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.lightmode .tiptap-loading-overlay {
  background: rgba(255, 255, 255, 0.7);
}

/* line 2170, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.lightmode .tiptap-loading-spinner {
  color: #140D23;
}

/* line 2173, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_new_contract_template.scss */
.lightmode .tiptap-loading-spinner i {
  color: #864B28;
}

/* ==========================================================================
   ADV SHOW TABS SCROLLER
   Chevrons de navigation horizontale pour les onglets des pages show ADV.
   Réutilise landing_scroller_controller.js (query .orizon-rail-arrow--left/--right).
   ========================================================================== */
/* line 7, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_adv_show_tabs_scroller.scss */
.adv-tabs-scroller {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* line 13, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_adv_show_tabs_scroller.scss */
.adv-tabs-scroller-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.65rem;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

/* line 29, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_adv_show_tabs_scroller.scss */
.lightmode .adv-tabs-scroller-arrow {
  background-color: rgba(20, 13, 35, 0.08);
  color: rgba(20, 13, 35, 0.6);
}

/* line 34, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_adv_show_tabs_scroller.scss */
.adv-tabs-scroller-arrow:hover:not([disabled]) {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* line 38, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_adv_show_tabs_scroller.scss */
.lightmode .adv-tabs-scroller-arrow:hover:not([disabled]) {
  background-color: rgba(20, 13, 35, 0.15);
  color: #140D23;
}

/* line 44, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_adv_show_tabs_scroller.scss */
.adv-tabs-scroller-arrow[disabled] {
  opacity: 0;
  cursor: default;
  pointer-events: none;
}

/* line 1, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-show-contract-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 20px;
  overflow-y: auto;
  overflow-x: hidden;
  /* Personnalisation de la barre de défilement */
}

/* line 12, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-show-contract-container::-webkit-scrollbar {
  width: 8px;
}

/* line 16, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-show-contract-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 21, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-show-contract-container::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 26, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-show-contract-container::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 29, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-show-contract-container.lightmode {
  color: #140D23;
}

/* line 34, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-show-contract-main-content {
  display: flex;
  height: 100%;
  flex-direction: row;
  gap: 30px;
  align-items: flex-start;
  width: 100%;
}

/* line 43, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-show-contract-capsule {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-width: 0;
  width: 100%;
  height: 100%;
}

/* line 55, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.lightmode .adv-show-contract-capsule {
  color: #140D23;
}

/* line 61, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-contract-header-tabs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

/* line 68, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-contract-info-header {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 5px;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

/* line 76, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.lightmode .adv-contract-info-header {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 80, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-contract-info-header .adv-header-section, .adv-contract-info-header .adv-contract-number-section,
.adv-contract-info-header .adv-market-type-section {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  justify-content: flex-start;
  white-space: nowrap;
}

/* line 88, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-contract-info-header .adv-header-section .adv-label, .adv-contract-info-header .adv-contract-number-section .adv-label,
.adv-contract-info-header .adv-market-type-section .adv-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  display: block;
}

/* line 93, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.lightmode .adv-contract-info-header .adv-header-section .adv-label, .lightmode .adv-contract-info-header .adv-contract-number-section .adv-label,
.lightmode .adv-contract-info-header .adv-market-type-section .adv-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 98, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-contract-info-header .adv-header-section .adv-value, .adv-contract-info-header .adv-contract-number-section .adv-value,
.adv-contract-info-header .adv-market-type-section .adv-value {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
}

/* line 103, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.lightmode .adv-contract-info-header .adv-header-section .adv-value, .lightmode .adv-contract-info-header .adv-contract-number-section .adv-value,
.lightmode .adv-contract-info-header .adv-market-type-section .adv-value {
  color: #140D23;
}

/* line 108, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-contract-info-header .adv-header-section.adv-recipient-name-section, .adv-contract-info-header .adv-recipient-name-section.adv-contract-number-section,
.adv-contract-info-header .adv-recipient-name-section.adv-market-type-section {
  text-align: center;
}

/* line 111, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-contract-info-header .adv-header-section.adv-recipient-name-section .adv-value, .adv-contract-info-header .adv-recipient-name-section.adv-contract-number-section .adv-value,
.adv-contract-info-header .adv-recipient-name-section.adv-market-type-section .adv-value {
  font-size: 0.8rem;
}

/* line 119, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-contract-tabs {
  display: flex;
  gap: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  overflow-x: auto;
  flex: 1;
  min-width: 0;
  scrollbar-width: none;
}

/* line 128, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-contract-tabs::-webkit-scrollbar {
  display: none;
}

/* line 130, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.lightmode .adv-contract-tabs {
  border-bottom: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 135, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-tab-button {
  padding: 10px 20px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 2px solid transparent;
}

/* line 146, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.lightmode .adv-tab-button {
  color: rgba(20, 13, 35, 0.6);
}

/* line 150, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-tab-button:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* line 153, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.lightmode .adv-tab-button:hover {
  color: rgba(20, 13, 35, 0.8);
}

/* line 158, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-tab-button.active {
  color: #C38761;
  border-bottom-color: #C38761;
  font-weight: 600;
}

/* line 166, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-contract-tab-content {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  /* Personnalisation de la barre de défilement */
}

/* line 172, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-contract-tab-content::-webkit-scrollbar {
  width: 4px;
}

/* line 176, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-contract-tab-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 181, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-contract-tab-content::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 186, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-contract-tab-content::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 191, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-tab-panel {
  display: none;
}

/* line 194, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-tab-panel.active {
  display: block;
}

/* line 200, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-tab-content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

/* line 209, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.lightmode .adv-tab-content-header {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 213, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-tab-content-header h3, .adv-tab-content-header .h3 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

/* line 219, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.lightmode .adv-tab-content-header h3, .lightmode .adv-tab-content-header .h3 {
  color: #140D23;
}

/* line 225, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-create-button {
  padding: 8px 16px;
  background-color: #C38761;
  color: #140D23;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

/* line 235, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-create-button:hover {
  background-color: #af6c42;
  transform: translateY(-1px);
}

/* line 241, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-tab-content-body {
  min-height: 200px;
}

/* line 245, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-documents-grid {
  display: grid;
  gap: 10px;
}

/* line 251, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-contract-infos-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 257, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-contract-infos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  width: 100%;
}

/* line 264, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-contract-info-card {
  background: rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 90px;
}

/* line 275, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.lightmode .adv-contract-info-card {
  background: rgba(20, 13, 35, 0.13);
}

/* line 279, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-contract-info-card .adv-contract-card-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #C38761;
  margin-bottom: 0.5rem;
}

/* line 286, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-contract-info-card .adv-contract-card-content {
  font-size: 0.8rem;
  color: #fff;
  font-weight: 500;
  word-break: break-word;
  text-align: center;
}

/* line 293, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.lightmode .adv-contract-info-card .adv-contract-card-content {
  color: #140D23;
}

/* line 300, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-contract-sidebar {
  width: 400px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  height: 100%;
  margin-top: 0;
  transition: all 0.3s ease;
  overflow-y: auto;
}

/* line 310, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.lightmode .adv-contract-sidebar {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 314, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-contract-sidebar::-webkit-scrollbar {
  width: 6px;
}

/* line 317, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-contract-sidebar::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 321, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-contract-sidebar::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 325, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-contract-sidebar::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 329, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-contract-sidebar.hidden {
  display: none;
}

/* line 334, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.contract-documents-section {
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
}

/* line 339, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.contract-documents-section .section-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

/* line 345, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.lightmode .contract-documents-section .section-label {
  color: #140D23;
}

/* line 350, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.contract-documents-section .documents-section-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 355, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.contract-documents-section .documents-section-content .document-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* line 360, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.contract-documents-section .documents-section-content .document-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}

/* line 364, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.lightmode .contract-documents-section .documents-section-content .document-item:not(:last-child) {
  border-bottom: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 369, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.contract-documents-section .documents-section-content .document-item .document-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 373, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.lightmode .contract-documents-section .documents-section-content .document-item .document-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 378, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.contract-documents-section .documents-section-content .document-item .document-value {
  font-size: 0.85rem;
  color: #fff;
}

/* line 382, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.lightmode .contract-documents-section .documents-section-content .document-item .document-value {
  color: #140D23;
}

/* line 387, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.contract-documents-section .documents-section-content .document-item .adv-document-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
}

/* line 400, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.lightmode .contract-documents-section .documents-section-content .document-item .adv-document-link {
  border: 1px solid rgba(20, 13, 35, 0.1);
  background-color: rgba(20, 13, 35, 0.05);
  color: #140D23;
}

/* line 406, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.contract-documents-section .documents-section-content .document-item .adv-document-link .adv-document-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* line 413, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.contract-documents-section .documents-section-content .document-item .adv-document-link .adv-document-title i {
  color: #C38761;
  font-size: 0.8rem;
}

/* line 419, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.contract-documents-section .documents-section-content .document-item .adv-document-link .adv-document-details {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 426, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.lightmode .contract-documents-section .documents-section-content .document-item .adv-document-link .adv-document-details {
  color: rgba(20, 13, 35, 0.7);
}

/* line 430, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.contract-documents-section .documents-section-content .document-item .adv-document-link .adv-document-details .adv-document-amount {
  font-weight: 600;
  color: #C38761;
}

/* line 435, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.contract-documents-section .documents-section-content .document-item .adv-document-link .adv-document-details .adv-document-date {
  font-style: italic;
}

/* line 440, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.contract-documents-section .documents-section-content .document-item .adv-document-link .adv-document-status {
  display: flex;
  justify-content: flex-end;
}

/* line 444, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.contract-documents-section .documents-section-content .document-item .adv-document-link .adv-document-status .status-badge {
  font-size: 0.65rem;
  padding: 2px 8px;
}

/* line 454, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.schedule-view-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #C38761;
  text-decoration: underline;
  font-size: 0.8rem;
  transition: opacity 0.2s ease;
}

/* line 463, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.schedule-view-link:hover {
  opacity: 0.8;
}

/* line 467, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-contract-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  padding: 0;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  background: none;
}

/* line 478, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.lightmode .adv-contract-actions {
  border-top: 1px solid rgba(20, 13, 35, 0.12);
}

/* line 483, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-action-button {
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* line 496, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-action-button.adv-action-button-primary {
  background: #C38761;
  color: #140D23;
}

/* line 500, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-action-button.adv-action-button-primary:hover {
  background: #af6c42;
  transform: translateY(-1px);
}

/* line 506, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-action-button.adv-action-button-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 511, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.lightmode .adv-action-button.adv-action-button-secondary {
  background: rgba(20, 13, 35, 0.1);
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 517, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-action-button.adv-action-button-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

/* line 521, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.lightmode .adv-action-button.adv-action-button-secondary:hover {
  background: rgba(20, 13, 35, 0.2);
}

/* line 526, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-action-button.adv-action-button-secondary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* line 535, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
}

/* line 543, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.status-badge.success {
  background-color: #4CAF50;
  color: white;
}

/* line 548, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.status-badge.warning {
  background-color: #FF9800;
  color: white;
}

/* line 553, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.status-badge.secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

/* line 558, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.status-badge.active {
  background-color: #4CAF50;
  color: white;
}

/* line 563, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.status-badge.inactive {
  background-color: #f44336;
  color: white;
}

/* line 570, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
.adv-value {
  color: #C38761;
  font-weight: 500;
}

@media (max-width: 768px) {
  /* line 577, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
  .adv-show-contract-main-content {
    flex-direction: column;
  }
  /* line 581, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
  .adv-contract-sidebar {
    width: 100%;
  }
  /* line 585, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
  .adv-contract-tabs {
    flex-wrap: wrap;
  }
  /* line 589, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_show_contract.scss */
  .adv-tab-button {
    flex: 1;
    min-width: 120px;
  }
}

/* line 1, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-capsule {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 10px 20px 10px 20px;
  font-size: 1rem;
  gap: 10px;
}

/* line 12, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-capsule.lightmode {
  color: #140D23;
}

/* line 14, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-capsule.lightmode .discount-input {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 18, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-capsule.lightmode .price-input {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 22, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-capsule.lightmode .price-ttc-container {
  color: #140D23;
}

/* line 25, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-capsule.lightmode .edit-contract-transaction-choice {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 29, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-capsule.lightmode .search-input {
  border-color: transparent !important;
}

/* line 31, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-capsule.lightmode .search-input:focus {
  border-color: transparent !important;
  box-shadow: none !important;
}

/* line 36, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-capsule.lightmode .recipient-choice {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 40, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-capsule.lightmode #publicMarket {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 44, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-capsule.lightmode #privateMarket {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 50, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-capsule .form-group {
  margin: 0;
}

/* line 54, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-capsule form {
  display: flex !important;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  align-items: center;
  height: 100%;
}

/* Card de Configuration */
/* line 65, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-configuration-card {
  width: 100%;
  max-width: 1400px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

/* line 77, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.lightmode .adv-edit-contract-configuration-card {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.08) 0%, rgba(20, 13, 35, 0.03) 100%);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 83, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-config-header {
  text-align: center;
  margin-bottom: 30px;
}

/* line 87, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-config-header h2, .adv-edit-contract-config-header .h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

/* line 93, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.lightmode .adv-edit-contract-config-header h2, .lightmode .adv-edit-contract-config-header .h2 {
  color: #140D23;
}

/* line 98, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-config-header p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 102, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.lightmode .adv-edit-contract-config-header p {
  color: rgba(20, 13, 35, 0.7);
}

/* line 108, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-config-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* line 114, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-config-section {
  width: 100%;
}

/* line 118, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-config-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  /* line 118, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
  .adv-edit-contract-config-row {
    grid-template-columns: 1fr;
  }
}

/* line 128, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-config-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 134, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-config-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 139, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-config-label i {
  font-size: 1.1rem;
  color: #C38761;
}

/* line 144, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-config-label h3, .adv-edit-contract-config-label .h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
}

/* line 150, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.lightmode .adv-edit-contract-config-label h3, .lightmode .adv-edit-contract-config-label .h3 {
  color: #140D23;
}

/* line 156, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-config-select {
  width: auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  color: #FFFFFF;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

/* line 166, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.lightmode .adv-edit-contract-config-select {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 172, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-config-select:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 178, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-config-select option {
  background: #140D23;
  color: #FFFFFF;
}

/* line 184, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-market-type-selector {
  display: flex;
  gap: 12px;
}

/* line 188, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-market-type-selector .adv-edit-contract-market-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 204, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.lightmode .adv-edit-contract-market-type-selector .adv-edit-contract-market-option {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 210, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-market-type-selector .adv-edit-contract-market-option i {
  font-size: 1rem;
  color: #C38761;
}

/* line 215, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-market-type-selector .adv-edit-contract-market-option:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

/* line 220, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.lightmode .adv-edit-contract-market-type-selector .adv-edit-contract-market-option:hover {
  background: rgba(20, 13, 35, 0.12);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 226, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-market-type-selector .adv-edit-contract-market-option.selected {
  background: #C38761;
  border-color: #C38761;
  color: #140D23;
}

/* line 231, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-market-type-selector .adv-edit-contract-market-option.selected i {
  color: #140D23;
}

/* line 238, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-search-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}

/* line 245, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-search-input {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 251, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-search-input .search-form {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

/* line 258, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-search-input i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  z-index: 2;
}

/* line 267, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.lightmode .adv-edit-contract-search-input i {
  color: rgba(20, 13, 35, 0.6);
}

/* line 272, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-search-input button {
  all: unset;
  padding: 8px 12px;
  background: #C38761;
  border-radius: 8px;
  color: #140D23;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 281, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-search-input button:hover {
  background: #864B28;
  transform: scale(1.05);
}

/* line 286, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-search-input button i {
  position: static;
  transform: none;
  color: #140D23;
}

/* Utilise maintenant la classe générique adv-searchbar */
/* line 296, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-search-results {
  min-height: 120px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}

/* line 304, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.lightmode .adv-edit-contract-search-results {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 310, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-search-results .userChoice {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* line 317, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-search-results .userChoice .no-recipient, .adv-edit-contract-search-results .userChoice .no-document {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
}

/* line 324, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.lightmode .adv-edit-contract-search-results .userChoice .no-recipient, .lightmode .adv-edit-contract-search-results .userChoice .no-document {
  color: rgba(20, 13, 35, 0.6);
}

/* line 328, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-search-results .userChoice .no-recipient::before, .adv-edit-contract-search-results .userChoice .no-document::before {
  content: '\f007';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.4);
}

/* line 335, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.lightmode .adv-edit-contract-search-results .userChoice .no-recipient::before, .lightmode .adv-edit-contract-search-results .userChoice .no-document::before {
  color: rgba(20, 13, 35, 0.4);
}

/* Styles pour la section Transaction */
/* line 344, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-transaction-selector {
  display: flex;
  gap: 12px;
}

/* line 348, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-transaction-selector .edit-contract-transaction-choice {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 364, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.lightmode .adv-edit-contract-transaction-selector .edit-contract-transaction-choice {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 370, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-transaction-selector .edit-contract-transaction-choice i {
  font-size: 1rem;
  color: #C38761;
}

/* line 375, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-transaction-selector .edit-contract-transaction-choice:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

/* line 380, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.lightmode .adv-edit-contract-transaction-selector .edit-contract-transaction-choice:hover {
  background: rgba(20, 13, 35, 0.12);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 386, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-transaction-selector .edit-contract-transaction-choice.selected {
  background: #C38761;
  border-color: #C38761;
  color: #140D23;
}

/* line 391, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-transaction-selector .edit-contract-transaction-choice.selected i {
  color: #140D23;
}

/* Styles pour le contenu des transactions */
/* line 399, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-transaction-content {
  margin-top: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
}

/* line 406, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.lightmode .adv-edit-contract-transaction-content {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 412, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-transaction-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

/* line 420, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.lightmode .adv-edit-contract-transaction-info {
  background: rgba(20, 13, 35, 0.08);
}

/* line 424, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-transaction-info i {
  color: #C38761;
  font-size: 1.1rem;
}

/* line 429, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-transaction-info span {
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 500;
}

/* line 434, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.lightmode .adv-edit-contract-transaction-info span {
  color: #140D23;
}

/* line 441, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-document-search h4, .adv-edit-contract-document-search .h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 15px;
}

/* line 447, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.lightmode .adv-edit-contract-document-search h4, .lightmode .adv-edit-contract-document-search .h4 {
  color: #140D23;
}

/* line 452, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-document-search .search-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* line 458, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-document-search .form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 464, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-document-search .filter {
  width: auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  color: #FFFFFF;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

/* line 474, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.lightmode .adv-edit-contract-document-search .filter {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 480, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-document-search .filter:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 486, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-document-search .filter option {
  background: #140D23;
  color: #FFFFFF;
}

/* Styles pour les clauses du contrat */
/* line 494, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-clauses-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  width: 100%;
}

/* Styles pour les sections de clauses existantes */
/* line 502, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-row1-subrow4-preamble,
.adv-edit-contract-row1-subrow4-designation,
.adv-edit-contract-row1-subrow4-contract-object,
.adv-edit-contract-row1-subrow4-duration,
.adv-edit-contract-row1-subrow4-financial-condition,
.adv-edit-contract-row1-subrow4-obligations,
.adv-edit-contract-row1-subrow4-confidentiality,
.adv-edit-contract-row1-subrow4-responsibility,
.adv-edit-contract-row1-subrow4-force-majeure,
.adv-edit-contract-row1-subrow4-termination,
.adv-edit-contract-row1-subrow4-applicable-law,
.adv-edit-contract-row1-subrow4-signatures {
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  gap: 10px;
}

/* line 527, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.lightmode .adv-edit-contract-row1-subrow4-preamble, .lightmode .adv-edit-contract-row1-subrow4-designation, .lightmode .adv-edit-contract-row1-subrow4-contract-object, .lightmode .adv-edit-contract-row1-subrow4-duration, .lightmode .adv-edit-contract-row1-subrow4-financial-condition, .lightmode .adv-edit-contract-row1-subrow4-obligations, .lightmode .adv-edit-contract-row1-subrow4-confidentiality, .lightmode .adv-edit-contract-row1-subrow4-responsibility, .lightmode .adv-edit-contract-row1-subrow4-force-majeure, .lightmode .adv-edit-contract-row1-subrow4-termination, .lightmode .adv-edit-contract-row1-subrow4-applicable-law, .lightmode .adv-edit-contract-row1-subrow4-signatures {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* Boutons d'actions */
/* line 534, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-row2 {
  width: 80%;
  height: 7.5%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
}

/* line 544, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-row2 #fakeSubmitButton {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  border: none;
  cursor: pointer;
  background-color: #C38761;
  color: #140D23;
}

/* line 559, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-row2 #fakeSubmitButton:hover {
  background-color: #864B28;
  transform: scale(1.05);
}

/* line 565, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-row2 form {
  display: flex !important;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  align-items: center;
  height: 100%;
}

/* Classes utilitaires */
/* line 576, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.userChoice {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 15px;
}

/* line 583, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.userChoice .no-recipient, .userChoice .no-document {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-color-primary);
}

/* line 600, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.lightmode .userChoice .no-recipient, .lightmode .userChoice .no-document {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.1) 0%, rgba(20, 13, 35, 0.05) 100%);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 607, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.userChoice .item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* line 621, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.lightmode .userChoice .item {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.1) 0%, rgba(20, 13, 35, 0.05) 100%);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 626, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.userChoice .item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  border-color: rgba(232, 232, 232, 0.6);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

/* line 632, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.lightmode .userChoice .item:hover {
  border-color: rgba(20, 13, 35, 0.4);
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.15) 0%, rgba(20, 13, 35, 0.08) 100%);
}

/* line 638, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.userChoice .item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #C38761, #864B28);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* line 650, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.userChoice .item:hover::before {
  opacity: 1;
}

/* line 654, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.userChoice .item .item-header {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-grow: 1;
}

/* line 660, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.userChoice .item .item-header i {
  color: green;
  font-size: 1rem;
  padding: 8px;
  background-color: rgba(195, 135, 97, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* line 669, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.userChoice .item .item-header p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-color-primary);
  line-height: 1.4;
  transition: color 0.3s ease;
}

/* line 677, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.lightmode .userChoice .item .item-header p {
  color: #140D23;
}

/* line 684, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.userChoice .item:hover .item-header i {
  color: #864B28;
  background-color: rgba(134, 75, 40, 0.15);
  transform: scale(1.1);
}

/* line 690, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.userChoice .item:hover .item-header p {
  color: #FFFFFF;
}

/* line 693, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.lightmode .userChoice .item:hover .item-header p {
  color: #140D23;
}

/* line 699, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.userChoice .item .item-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* line 706, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.userChoice .item .item-actions button {
  all: unset;
  padding: 6px;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-size: 0.7rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 716, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.lightmode .userChoice .item .item-actions button {
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 721, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.userChoice .item .item-actions button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

/* line 725, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.lightmode .userChoice .item .item-actions button:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* line 732, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.userChoice .item:hover .item-actions {
  opacity: 1;
}

/* Style spécifique pour les résultats de recherche de clients/prospects */
/* line 743, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.trash {
  cursor: pointer;
  font-size: 0.8rem;
}

/* line 746, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.trash:hover {
  color: #A60240;
}

/* Responsive */
@media (max-width: 768px) {
  /* line 753, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
  .adv-edit-contract-config-row {
    grid-template-columns: 1fr;
  }
  /* line 757, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
  .adv-edit-contract-market-type-selector {
    flex-direction: column;
  }
  /* line 761, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
  .adv-edit-contract-transaction-selector {
    flex-direction: column;
  }
  /* line 765, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
  .adv-edit-contract-clauses-container {
    grid-template-columns: 1fr;
  }
}

/* Styles hérités pour compatibilité */
/* line 771, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 777, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-capsule span {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 785, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.lightmode .adv-edit-contract-capsule span {
  color: #140D23;
}

/* line 788, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.nightmode .adv-edit-contract-capsule span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 794, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.lightmode .adv-edit-contract-capsule p {
  color: #140D23;
}

/* line 797, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.nightmode .adv-edit-contract-capsule p {
  color: #FFFFFF;
}

/* line 803, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.lightmode .adv-edit-contract-capsule i {
  color: #140D23;
}

/* line 806, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.nightmode .adv-edit-contract-capsule i {
  color: #FFFFFF;
}

/* Styles pour les champs de recherche existants */
/* line 813, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-row1-searchbar {
  width: 100%;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
  height: 30px;
}

/* line 827, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.lightmode .adv-edit-contract-row1-searchbar {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 832, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-row1-searchbar button {
  all: unset;
}

/* line 836, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-row1-searchbar i {
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 841, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.lightmode .adv-edit-contract-row1-searchbar i {
  color: #140D23 !important;
}

/* line 846, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-row1-searchbar span {
  font-weight: normal !important;
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 852, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.lightmode .adv-edit-contract-row1-searchbar span {
  color: #140D23 !important;
}

/* Styles pour les champs de saisie existants */
/* line 859, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-clauses-input {
  all: unset;
  height: auto;
  width: auto;
  background-color: transparent;
  font-size: 0.7rem;
  color: #FFFFFF;
}

/* line 867, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.lightmode .adv-edit-contract-clauses-input {
  color: #140D23;
}

/* line 871, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.adv-edit-contract-clauses-input:focus {
  all: unset;
  height: auto;
  width: auto;
  background-color: transparent;
  font-size: 0.7rem;
  color: #FFFFFF;
}

/* line 879, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.lightmode .adv-edit-contract-clauses-input:focus {
  color: #140D23;
}

/* Styles pour les sélecteurs existants */
/* line 886, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
select {
  all: unset;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: normal;
  padding: 5px 15px;
}

/* line 899, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.lightmode select {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 904, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
select:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 908, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.lightmode select:focus {
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 914, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
select option {
  all: unset;
  background-color: #E8E8E8;
  color: #000000;
}

/* Styles pour les champs de recherche existants */
/* line 922, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.search-input {
  all: unset;
  height: 100%;
  width: 100%;
  background-color: transparent;
  font-size: 0.7rem;
  padding: 5px 10px;
  border-radius: 30px;
  font-weight: bold;
  color: #FFFFFF;
}

/* line 934, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.lightmode .search-input {
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 939, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-weight: normal;
}

/* line 943, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.lightmode .search-input::placeholder {
  color: rgba(20, 13, 35, 0.5);
}

/* line 948, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.search-input:focus {
  all: unset;
  height: 100%;
  width: 100%;
  background-color: transparent;
  font-size: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 5px 10px;
  border-radius: 30px;
  font-weight: bold;
  color: #FFFFFF;
}

/* line 960, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
.lightmode .search-input:focus {
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 967, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_edit_contract.scss */
textarea.search-input {
  min-height: 60px;
  resize: vertical;
  border-radius: 10px;
  padding: 10px;
  font-family: inherit;
  line-height: 1.4;
}

/* line 1, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-capsule {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 10px 30px 10px 30px;
  font-size: 0.8rem;
  gap: 10px;
}

/* line 11, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-capsule.lightmode {
  color: #140D23;
}

/* line 16, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-contacts-capsule span {
  color: #140D23;
}

/* line 19, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.nightmode .adv-contract-contacts-capsule span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 25, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-contacts-capsule p {
  color: #140D23;
}

/* line 28, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.nightmode .adv-contract-contacts-capsule p {
  color: #FFFFFF;
}

/* line 34, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-contacts-capsule i {
  color: #140D23;
}

/* line 37, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.nightmode .adv-contract-contacts-capsule i {
  color: #FFFFFF;
}

/* line 43, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 50, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-tabs {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(232, 232, 232, 0.3);
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}

/* line 61, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-contacts-tabs {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 67, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-tab-button {
  flex: 1;
  padding: 15px 20px;
  background-color: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* line 82, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-tab-button {
  color: rgba(20, 13, 35, 0.6);
}

/* line 86, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-tab-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

/* line 90, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-tab-button:hover {
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 96, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-tab-button.adv-tab-active {
  background-color: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  font-weight: 600;
}

/* line 101, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-tab-button.adv-tab-active {
  background-color: rgba(20, 13, 35, 0.15);
  color: #140D23;
}

/* line 107, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-tab-button i {
  font-size: 1rem;
}

/* line 112, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-content {
  width: 100%;
  height: 85%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(232, 232, 232, 0.5);
  border-top: none;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
}

/* line 121, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-contacts-content {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 127, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-tab-content {
  display: none;
  height: 100%;
  width: 100%;
}

/* line 132, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-tab-content.adv-tab-active {
  display: block;
}

/* line 137, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-details-row {
  width: 100%;
  padding: 25px;
  display: flex;
  justify-content: center;
}

/* line 144, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-details-main {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 151, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-details-header {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* line 160, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-details-header {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 165, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-details-header .adv-header-section, .adv-contract-details-header .adv-contract-number-section,
.adv-contract-details-header .adv-market-type-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

/* line 172, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-details-header .adv-header-section .adv-label, .adv-contract-details-header .adv-contract-number-section .adv-label,
.adv-contract-details-header .adv-market-type-section .adv-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

/* line 176, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-details-header .adv-header-section .adv-label, .lightmode .adv-contract-details-header .adv-contract-number-section .adv-label,
.lightmode .adv-contract-details-header .adv-market-type-section .adv-label {
  color: rgba(20, 13, 35, 0.65);
}

/* line 181, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-details-header .adv-header-section .adv-value, .adv-contract-details-header .adv-contract-number-section .adv-value,
.adv-contract-details-header .adv-market-type-section .adv-value {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.95rem;
}

/* line 186, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-details-header .adv-header-section .adv-value, .lightmode .adv-contract-details-header .adv-contract-number-section .adv-value,
.lightmode .adv-contract-details-header .adv-market-type-section .adv-value {
  color: #140D23;
}

/* line 198, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

/* line 204, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* line 215, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-card {
  background: rgba(20, 13, 35, 0.06);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 221, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-card__label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 225, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-card__label {
  color: rgba(20, 13, 35, 0.65);
}

/* line 230, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-card__value {
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* line 235, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-card__value {
  color: #140D23;
}

/* line 239, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-card__value a {
  color: #C38761;
  text-decoration: none;
}

/* line 243, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-card__value a:hover {
  text-decoration: underline;
}

/* line 249, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-summary-section {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* line 258, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-summary-section {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 265, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
}

/* line 274, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1 .adv-contract-contacts-row1-column2 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 10px;
}

/* line 285, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column1 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
}

/* line 295, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column1-searchbar {
  width: 100%;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 308, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-contacts-row1-column1-searchbar {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 313, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column1-searchbar button {
  all: unset;
}

/* line 316, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column1-searchbar i {
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 321, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-contacts-row1-column1-searchbar i {
  color: #140D23 !important;
}

/* line 325, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column1-searchbar span {
  font-weight: normal !important;
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 331, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-contacts-row1-column1-searchbar span {
  color: #140D23 !important;
}

/* line 337, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column1-create-contact {
  width: 100%;
  margin-bottom: 10px;
}

/* line 342, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-create-contact-button {
  width: 100%;
  padding: 10px 15px;
  background-color: rgba(195, 135, 97, 0.2);
  border: 1px solid rgba(195, 135, 97, 0.4);
  border-radius: 8px;
  color: #C38761;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* line 358, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-create-contact-button {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 364, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-create-contact-button:hover {
  background-color: rgba(195, 135, 97, 0.3);
  border-color: rgba(195, 135, 97, 0.6);
  transform: translateY(-1px);
}

/* line 369, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-create-contact-button:hover {
  background-color: rgba(20, 13, 35, 0.2);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 375, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-create-contact-button i {
  font-size: 0.8rem;
  color: inherit;
}

/* line 381, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column1-results {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 100%;
}

/* line 390, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column1-results h3, .adv-contract-contacts-row1-column1-results .h3 {
  all: unset;
  font-size: 0.8rem;
}

/* line 394, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-contacts-row1-column1-results h3, .lightmode .adv-contract-contacts-row1-column1-results .h3 {
  color: #140D23;
}

/* line 399, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column1-results .results {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  min-height: 60px;
  max-height: 60%;
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
  /* Personnalisation de la barre de défilement */
  /* Style pour le message "Aucun contact sélectionné" */
  /* Style pour chaque contact sélectionné */
}

/* line 413, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-contacts-row1-column1-results .results {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 419, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column1-results .results::-webkit-scrollbar {
  width: 6px;
}

/* line 423, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column1-results .results::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 428, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column1-results .results::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
  border: 2px solid transparent;
}

/* line 434, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column1-results .results::-webkit-scrollbar-thumb:hover {
  background: #864B28;
}

/* line 439, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column1-results .results p[data-contacts-of-document-target="noContacts"] {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  text-align: center;
  margin: 0;
  padding: 20px;
}

/* line 446, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-contacts-row1-column1-results .results p[data-contacts-of-document-target="noContacts"] {
  color: rgba(20, 13, 35, 0.6);
}

/* line 452, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column1-results .results .contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 80px;
  gap: 5px;
  /* Contenu du contact */
  /* Bouton de suppression */
  /* Animation d'entrée */
  /* Animation de sortie */
}

/* line 467, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-contacts-row1-column1-results .results .contact-item {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.1) 0%, rgba(20, 13, 35, 0.05) 100%);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 472, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column1-results .results .contact-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: rgba(195, 135, 97, 0.4);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

/* line 478, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-contacts-row1-column1-results .results .contact-item:hover {
  border-color: rgba(195, 135, 97, 0.4);
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.15) 0%, rgba(20, 13, 35, 0.08) 100%);
}

/* line 485, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column1-results .results .contact-item .contact-info {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
  width: 100%;
}

/* line 492, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column1-results .results .contact-item .contact-info .contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(195, 135, 97, 0.15);
  border-radius: 50%;
  color: #C38761;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

/* line 505, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column1-results .results .contact-item .contact-info .contact-email {
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0;
  text-align: center;
}

/* line 512, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-contacts-row1-column1-results .results .contact-item .contact-info .contact-email {
  color: #140D23;
}

/* line 519, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column1-results .results .contact-item .contact-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(166, 2, 64, 0.1);
  border: 1px solid rgba(166, 2, 64, 0.3);
  border-radius: 50%;
  color: rgba(166, 2, 64, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
}

/* line 533, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column1-results .results .contact-item .contact-remove:hover {
  background: rgba(166, 2, 64, 0.2);
  border-color: #A60240;
  color: #A60240;
  transform: scale(1.1);
}

/* line 540, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column1-results .results .contact-item .contact-remove i {
  font-size: 0.8rem;
}

/* line 546, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column1-results .results .contact-item.contact-item-enter {
  animation: slideInFromTop 0.3s ease-out;
}

/* line 551, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column1-results .results .contact-item.contact-item-exit {
  animation: slideOutToRight 0.3s ease-in;
}

/* Animations pour les contacts */
@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideOutToRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

/* Styles responsives pour la liste des contacts */
@media (max-width: 768px) {
  /* line 584, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
  .adv-contract-contacts-row1-column1-results .results {
    padding: 8px;
    gap: 6px;
    max-height: 250px;
  }
  /* line 589, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
  .adv-contract-contacts-row1-column1-results .results .contact-item {
    padding: 5px;
    gap: 5px;
  }
  /* line 593, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
  .adv-contract-contacts-row1-column1-results .results .contact-item .contact-info {
    gap: 8px;
  }
  /* line 596, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
  .adv-contract-contacts-row1-column1-results .results .contact-item .contact-info .contact-icon {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
  /* line 602, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
  .adv-contract-contacts-row1-column1-results .results .contact-item .contact-info .contact-email {
    font-size: 0.8rem;
  }
  /* line 607, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
  .adv-contract-contacts-row1-column1-results .results .contact-item .contact-remove {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  /* line 619, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
  .adv-contract-contacts-row1-column1-results .results {
    padding: 6px;
    gap: 4px;
    max-height: 200px;
  }
  /* line 624, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
  .adv-contract-contacts-row1-column1-results .results .contact-item {
    padding: 5px;
    gap: 5px;
  }
  /* line 628, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
  .adv-contract-contacts-row1-column1-results .results .contact-item .contact-info {
    gap: 6px;
  }
  /* line 631, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
  .adv-contract-contacts-row1-column1-results .results .contact-item .contact-info .contact-icon {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
  }
  /* line 637, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
  .adv-contract-contacts-row1-column1-results .results .contact-item .contact-info .contact-email {
    font-size: 0.75rem;
    word-break: break-all;
  }
  /* line 643, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
  .adv-contract-contacts-row1-column1-results .results .contact-item .contact-remove {
    width: 22px;
    height: 22px;
    font-size: 0.65rem;
  }
}

/* line 654, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column2-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  width: 100%;
  margin-bottom: 5px;
  height: 15%;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
}

/* line 667, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-contacts-row1-column2-header {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 671, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column2-header .adv-header-section, .adv-contract-contacts-row1-column2-header .adv-contract-number-section,
.adv-contract-contacts-row1-column2-header .adv-market-type-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  gap: 5px;
}

/* line 678, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column2-header .adv-header-section .adv-label, .adv-contract-contacts-row1-column2-header .adv-contract-number-section .adv-label,
.adv-contract-contacts-row1-column2-header .adv-market-type-section .adv-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  margin-bottom: 0;
  display: block;
  white-space: nowrap;
}

/* line 685, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-contacts-row1-column2-header .adv-header-section .adv-label, .lightmode .adv-contract-contacts-row1-column2-header .adv-contract-number-section .adv-label,
.lightmode .adv-contract-contacts-row1-column2-header .adv-market-type-section .adv-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 689, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column2-header .adv-header-section .adv-value, .adv-contract-contacts-row1-column2-header .adv-contract-number-section .adv-value,
.adv-contract-contacts-row1-column2-header .adv-market-type-section .adv-value {
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  display: block;
  white-space: nowrap;
}

/* line 695, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-contacts-row1-column2-header .adv-header-section .adv-value, .lightmode .adv-contract-contacts-row1-column2-header .adv-contract-number-section .adv-value,
.lightmode .adv-contract-contacts-row1-column2-header .adv-market-type-section .adv-value {
  color: #140D23;
}

/* line 700, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column2-header .adv-header-section.adv-recipient-name-section .adv-value, .adv-contract-contacts-row1-column2-header .adv-recipient-name-section.adv-contract-number-section .adv-value,
.adv-contract-contacts-row1-column2-header .adv-recipient-name-section.adv-market-type-section .adv-value {
  font-size: 0.7rem;
}

/* line 706, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column2-header .adv-articles-table {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  width: 100%;
  height: 80%;
  overflow-y: hidden;
  margin-bottom: 10px;
}

/* line 714, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-contacts-row1-column2-header .adv-articles-table {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 720, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column2-header .adv-articles-table-header {
  display: flex;
  background-color: rgba(255, 255, 255, 0.08);
  font-weight: 600;
  white-space: nowrap;
  font-size: 0.75rem;
  padding: 5px;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* line 730, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-contacts-row1-column2-header .adv-articles-table-header {
  background-color: rgba(20, 13, 35, 0.08);
  color: rgba(20, 13, 35, 0.8);
  border-bottom-color: rgba(20, 13, 35, 0.15);
}

/* line 735, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column2-header .adv-articles-table-header .adv-table-cell {
  white-space: nowrap;
  padding: 5px;
}

/* line 741, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column2-header .adv-articles-table-body {
  min-height: 120px;
  overflow-y: auto;
}

/* line 744, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column2-header .adv-articles-table-body.adv-no-articles-container {
  text-align: center;
  padding: 2rem 15px;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  font-size: 0.85rem;
}

/* line 751, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-contacts-row1-column2-header .adv-articles-table-body.adv-no-articles-container {
  color: rgba(20, 13, 35, 0.6);
}

/* line 755, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column2-header .adv-articles-table-body::-webkit-scrollbar {
  width: 4px;
}

/* line 758, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column2-header .adv-articles-table-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 762, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column2-header .adv-articles-table-body::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 766, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column2-header .adv-articles-table-body::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 771, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column2-header .adv-articles-table-row {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

/* line 776, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-contacts-row1-column2-header .adv-articles-table-row {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 780, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column2-header .adv-articles-table-row:last-child {
  border-bottom: none;
}

/* line 783, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column2-header .adv-articles-table-row:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

/* line 786, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-contacts-row1-column2-header .adv-articles-table-row:hover {
  background-color: rgba(20, 13, 35, 0.03);
}

/* line 792, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column2-header .adv-table-cell {
  color: #fff;
  font-size: 0.8rem;
  padding: 8px 12px;
  display: flex;
  align-items: center;
}

/* line 799, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-contacts-row1-column2-header .adv-table-cell {
  color: #140D23;
}

/* line 804, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column2-header .adv-header-article, .adv-contract-contacts-row1-column2-header .adv-cell-article {
  width: 40%;
  justify-content: flex-start;
}

/* line 805, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column2-header .adv-header-discount-perc, .adv-contract-contacts-row1-column2-header .adv-cell-discount-perc {
  width: 15%;
  justify-content: center;
}

/* line 806, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column2-header .adv-header-price-ht, .adv-contract-contacts-row1-column2-header .adv-cell-price-ht {
  width: 15%;
  justify-content: center;
}

/* line 807, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column2-header .adv-header-price-ttc, .adv-contract-contacts-row1-column2-header .adv-cell-price-ttc {
  width: 15%;
  justify-content: center;
}

/* line 808, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column2-header .adv-header-quantity, .adv-contract-contacts-row1-column2-header .adv-cell-quantity {
  width: 15%;
  justify-content: center;
}

/* line 810, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column2-header .adv-invoice-summary-section {
  width: 100%;
  height: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

/* line 821, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-contacts-row1-column2-header .adv-invoice-summary-section {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 825, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column2-header .adv-invoice-summary-section .adv-summary-item {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1 1 0;
}

/* line 833, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column2-header .adv-invoice-summary-section .adv-summary-item .adv-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  margin-bottom: 0;
  display: block;
  white-space: nowrap;
}

/* line 840, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-contacts-row1-column2-header .adv-invoice-summary-section .adv-summary-item .adv-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 844, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column2-header .adv-invoice-summary-section .adv-summary-item .adv-value {
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  display: block;
  text-align: center;
  white-space: nowrap;
}

/* line 851, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-contacts-row1-column2-header .adv-invoice-summary-section .adv-summary-item .adv-value {
  color: #140D23;
}

/* line 856, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row1-column2-header .adv-invoice-summary-section .adv-summary-item.adv-summary-total-ttc .adv-value {
  color: #d4a574;
  font-size: 0.8rem;
}

/* line 866, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-cgv-tab-content {
  width: 100%;
  height: 100%;
  padding: 30px;
  overflow-y: auto;
}

/* line 872, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-cgv-tab-content::-webkit-scrollbar {
  width: 6px;
}

/* line 875, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-cgv-tab-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 879, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-cgv-tab-content::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 883, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-cgv-tab-content::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 888, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-cgv-header {
  text-align: center;
  margin-bottom: 30px;
}

/* line 892, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-cgv-header h2, .adv-cgv-header .h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #FFFFFF;
}

/* line 898, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-cgv-header h2, .lightmode .adv-cgv-header .h2 {
  color: #140D23;
}

/* line 903, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-cgv-header p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 907, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-cgv-header p {
  color: rgba(20, 13, 35, 0.7);
}

/* line 913, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-cgv-list-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 919, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-cgv-item {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(232, 232, 232, 0.3);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
}

/* line 926, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-cgv-item {
  background-color: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 931, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-cgv-item:hover {
  background-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* line 936, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-cgv-item:hover {
  background-color: rgba(20, 13, 35, 0.12);
}

/* line 942, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-cgv-item-header {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}

/* line 949, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-cgv-item-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(195, 135, 97, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* line 959, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-cgv-item-icon i {
  font-size: 1.5rem;
  color: #C38761;
}

/* line 965, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-cgv-item-info {
  flex: 1;
}

/* line 968, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-cgv-item-info h3, .adv-cgv-item-info .h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #FFFFFF;
}

/* line 974, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-cgv-item-info h3, .lightmode .adv-cgv-item-info .h3 {
  color: #140D23;
}

/* line 980, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-cgv-documents {
  margin-top: 15px;
}

/* line 983, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-cgv-documents h4, .adv-cgv-documents .h4 {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
}

/* line 989, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-cgv-documents h4, .lightmode .adv-cgv-documents .h4 {
  color: rgba(20, 13, 35, 0.8);
}

/* line 995, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-cgv-documents-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 1001, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-cgv-document-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 12px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
}

/* line 1010, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-cgv-document-item {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 1015, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-cgv-document-info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

/* line 1021, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-cgv-document-info i {
  color: #e74c3c;
  font-size: 0.9rem;
}

/* line 1026, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-cgv-document-info .adv-cgv-document-name {
  font-size: 0.85rem;
  color: #FFFFFF;
}

/* line 1030, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-cgv-document-info .adv-cgv-document-name {
  color: #140D23;
}

/* line 1035, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-cgv-document-info .adv-cgv-document-pages {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

/* line 1042, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-cgv-document-info .adv-cgv-document-pages {
  color: rgba(20, 13, 35, 0.6);
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 1049, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-cgv-document-view-button {
  color: #C38761;
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 6px;
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background-color: transparent;
  border: 1px solid rgba(195, 135, 97, 0.3);
}

/* line 1064, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-cgv-document-view-button:hover {
  background: #C38761;
  color: #FFFFFF;
  transform: scale(1.05);
  border-color: #C38761;
}

/* line 1071, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-cgv-document-view-button i {
  font-size: 0.8rem;
  color: inherit;
}

/* line 1076, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-cgv-document-view-button {
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 1080, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-cgv-document-view-button:hover {
  background: #140D23;
  color: #FFFFFF;
  border-color: #140D23;
}

/* line 1088, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-cgv-no-documents {
  margin-top: 15px;
  text-align: center;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
}

/* line 1095, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-cgv-no-documents {
  background-color: rgba(20, 13, 35, 0.03);
}

/* line 1099, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-cgv-no-documents p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

/* line 1104, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-cgv-no-documents p {
  color: rgba(20, 13, 35, 0.5);
}

/* line 1110, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-cgv-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 40px;
}

/* line 1120, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-cgv-empty-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* line 1130, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-cgv-empty-icon {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 1134, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-cgv-empty-icon i {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.4);
}

/* line 1138, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-cgv-empty-icon i {
  color: rgba(20, 13, 35, 0.4);
}

/* line 1144, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-cgv-empty-state h3, .adv-cgv-empty-state .h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFFFFF;
}

/* line 1150, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-cgv-empty-state h3, .lightmode .adv-cgv-empty-state .h3 {
  color: #140D23;
}

/* line 1155, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-cgv-empty-state p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 400px;
  line-height: 1.5;
}

/* line 1161, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-cgv-empty-state p {
  color: rgba(20, 13, 35, 0.6);
}

/* line 1167, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-actions-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  align-items: center;
}

/* line 1176, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 100%;
}

/* line 1187, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-delivery-choice {
  background: rgba(20, 13, 35, 0.06);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 1193, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 1199, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-delivery-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(195, 135, 97, 0.2);
  color: #C38761;
}

/* line 1209, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-delivery-icon {
  background: rgba(20, 13, 35, 0.12);
  color: #140D23;
}

/* line 1214, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-delivery-icon i {
  font-size: 1.1rem;
}

/* line 1219, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-delivery-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 1224, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-delivery-text h3, .adv-delivery-text .h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* line 1230, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-delivery-text h3, .lightmode .adv-delivery-text .h3 {
  color: #140D23;
}

/* line 1235, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-delivery-text p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 1240, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-delivery-text p {
  color: rgba(20, 13, 35, 0.65);
}

/* line 1246, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice-options {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* line 1253, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-delivery-option,
.adv-contract-delivery-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  flex: 1 1 45%;
  min-width: 0;
}

/* line 1271, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-delivery-option, .lightmode .adv-contract-delivery-option {
  color: rgba(20, 13, 35, 0.7);
}

/* line 1275, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-delivery-option:hover,
.adv-contract-delivery-option:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* line 1278, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-delivery-option:hover, .lightmode .adv-contract-delivery-option:hover {
  background: rgba(20, 13, 35, 0.12);
}

/* line 1283, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-delivery-option i,
.adv-contract-delivery-option i {
  font-size: 0.9rem;
}

/* line 1288, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-delivery-option--active,
.adv-contract-delivery-option--active {
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.25), rgba(195, 135, 97, 0.15));
  color: #FFFFFF;
  border-color: rgba(195, 135, 97, 0.5);
  box-shadow: 0 4px 10px rgba(195, 135, 97, 0.2);
}

/* line 1295, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-delivery-option--active, .lightmode .adv-contract-delivery-option--active {
  color: #140D23;
}

/* line 1301, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.full-width {
  width: 100%;
}

/* line 1305, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-searchbar-container {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

/* line 1313, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-searchbar {
  flex: 1;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

/* line 1323, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-searchbar {
  background: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 1329, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-searchbar:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.2);
}

/* line 1336, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.results-capsule {
  position: absolute;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

/* line 1347, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .results-capsule {
  background: rgba(20, 13, 35, 0.04);
  border-color: rgba(20, 13, 35, 0.12);
}

/* line 1352, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.results-capsule.d-none {
  display: none;
}

/* line 1356, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.results-capsule .results {
  max-height: 260px;
  overflow-y: auto;
}

/* line 1363, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-contacts-search-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* line 1372, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-delivery-choice .adv-contract-contacts-search-section {
  border-top-color: rgba(20, 13, 35, 0.15);
}

/* line 1376, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-contacts-search-section .adv-contract-contacts-search-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 1382, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-contacts-search-section .adv-contract-contacts-search-actions {
  width: 100%;
}

/* line 1386, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-contacts-search-section .adv-create-contact-button {
  width: 100%;
}

/* line 1392, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-contacts-selected-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* line 1401, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-delivery-choice .adv-contract-contacts-selected-section {
  border-top-color: rgba(20, 13, 35, 0.15);
}

/* line 1405, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-contacts-selected-section h3, .adv-contract-delivery-choice .adv-contract-contacts-selected-section .h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* line 1411, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-delivery-choice .adv-contract-contacts-selected-section h3, .lightmode .adv-contract-delivery-choice .adv-contract-contacts-selected-section .h3 {
  color: #140D23;
}

/* line 1416, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-contacts-selected-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 8px;
}

/* line 1424, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-contacts-selected-list::-webkit-scrollbar {
  width: 4px;
}

/* line 1428, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-contacts-selected-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
}

/* line 1433, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-contacts-selected-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

/* line 1438, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-contacts-selected-list::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* line 1442, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-contacts-selected-list p {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  padding: 16px;
}

/* line 1448, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-delivery-choice .adv-contract-contacts-selected-list p {
  color: rgba(20, 13, 35, 0.6);
}

/* line 1454, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-contacts-selected-list .contact-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  min-height: 60px;
  gap: 12px;
}

/* line 1468, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-delivery-choice .adv-contract-contacts-selected-list .contact-item {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.1) 0%, rgba(20, 13, 35, 0.05) 100%);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 1473, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-contacts-selected-list .contact-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: rgba(195, 135, 97, 0.4);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

/* line 1479, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-delivery-choice .adv-contract-contacts-selected-list .contact-item:hover {
  border-color: rgba(195, 135, 97, 0.4);
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.15) 0%, rgba(20, 13, 35, 0.08) 100%);
}

/* line 1485, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-contacts-selected-list .contact-item .contact-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

/* line 1491, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-contacts-selected-list .contact-item .contact-info .contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(195, 135, 97, 0.15);
  border-radius: 50%;
  color: #C38761;
  font-size: 1rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

/* line 1505, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-contacts-selected-list .contact-item .contact-info .contact-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

/* line 1512, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-contacts-selected-list .contact-item .contact-info .contact-name {
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}

/* line 1518, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-delivery-choice .adv-contract-contacts-selected-list .contact-item .contact-info .contact-name {
  color: #140D23;
}

/* line 1523, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-contacts-selected-list .contact-item .contact-info .contact-email {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  font-weight: 400;
  margin: 0;
}

/* line 1529, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-delivery-choice .adv-contract-contacts-selected-list .contact-item .contact-info .contact-email {
  color: rgba(20, 13, 35, 0.7);
}

/* line 1535, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-contacts-selected-list .contact-item .contact-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(166, 2, 64, 0.1);
  border: 1px solid rgba(166, 2, 64, 0.3);
  border-radius: 50%;
  color: rgba(166, 2, 64, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* line 1550, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-contacts-selected-list .contact-item .contact-remove:hover {
  background: rgba(166, 2, 64, 0.2);
  border-color: #A60240;
  color: #A60240;
  transform: scale(1.1);
}

/* line 1558, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-contacts-selected-list .contact-item.contact-item-enter {
  animation: slideInFromTop 0.3s ease-out;
}

/* line 1562, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-contacts-selected-list .contact-item.contact-item-exit {
  animation: slideOutToRight 0.3s ease-in;
}

/* line 1569, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-signature-panel {
  width: 100%;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-bottom: none;
  background: transparent;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}

/* line 1583, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-delivery-choice .adv-contract-signature-panel {
  border-top-color: rgba(20, 13, 35, 0.15);
}

/* line 1588, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-signature-panel .signature-form__row {
  position: relative;
  margin-bottom: 0;
}

/* line 1593, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-signature-panel .signature-form__prestataire-search,
.adv-contract-delivery-choice .adv-contract-signature-panel .signature-form__client-search {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

/* line 1601, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-signature-panel .signature-representatives-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

/* line 1607, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-signature-panel .signature-representatives-list__title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px 0;
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
  position: relative;
}

/* line 1617, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-delivery-choice .adv-contract-signature-panel .signature-representatives-list__title {
  color: #140D23;
}

/* line 1621, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-signature-panel .signature-representatives-list__title i {
  color: #C38761;
  font-size: 0.95rem;
}

/* line 1629, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-signature-panel .signature-representatives-divider {
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  transform: translateX(-50%);
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.2) 10%, rgba(255, 255, 255, 0.2) 90%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* line 1646, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-delivery-choice .adv-contract-signature-panel .signature-representatives-divider {
  background: linear-gradient(to bottom, transparent 0%, rgba(20, 13, 35, 0.2) 10%, rgba(20, 13, 35, 0.2) 90%, transparent 100%);
}

/* line 1658, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-signature-panel .signature-prestataire-selected,
.adv-contract-delivery-choice .adv-contract-signature-panel .signature-clients-selected {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 250px;
  overflow-y: auto;
  padding-right: 8px;
}

/* line 1667, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-signature-panel .signature-prestataire-selected::-webkit-scrollbar,
.adv-contract-delivery-choice .adv-contract-signature-panel .signature-clients-selected::-webkit-scrollbar {
  width: 4px;
}

/* line 1671, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-signature-panel .signature-prestataire-selected::-webkit-scrollbar-track,
.adv-contract-delivery-choice .adv-contract-signature-panel .signature-clients-selected::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
}

/* line 1676, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-signature-panel .signature-prestataire-selected::-webkit-scrollbar-thumb,
.adv-contract-delivery-choice .adv-contract-signature-panel .signature-clients-selected::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

/* line 1681, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-signature-panel .signature-prestataire-selected::-webkit-scrollbar-thumb:hover,
.adv-contract-delivery-choice .adv-contract-signature-panel .signature-clients-selected::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* line 1685, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-signature-panel .signature-prestataire-selected p,
.adv-contract-delivery-choice .adv-contract-signature-panel .signature-clients-selected p {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  padding: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  margin: 0;
}

/* line 1694, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-delivery-choice .adv-contract-signature-panel .signature-prestataire-selected p, .lightmode .adv-contract-delivery-choice .adv-contract-signature-panel .signature-clients-selected p {
  color: rgba(20, 13, 35, 0.6);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 1701, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-signature-panel .signature-prestataire-selected .contact-item,
.adv-contract-delivery-choice .adv-contract-signature-panel .signature-clients-selected .contact-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  min-height: 60px;
  gap: 12px;
}

/* line 1715, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-delivery-choice .adv-contract-signature-panel .signature-prestataire-selected .contact-item, .lightmode .adv-contract-delivery-choice .adv-contract-signature-panel .signature-clients-selected .contact-item {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.1) 0%, rgba(20, 13, 35, 0.05) 100%);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 1720, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-signature-panel .signature-prestataire-selected .contact-item:hover,
.adv-contract-delivery-choice .adv-contract-signature-panel .signature-clients-selected .contact-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: rgba(195, 135, 97, 0.4);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

/* line 1726, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-delivery-choice .adv-contract-signature-panel .signature-prestataire-selected .contact-item:hover, .lightmode .adv-contract-delivery-choice .adv-contract-signature-panel .signature-clients-selected .contact-item:hover {
  border-color: rgba(195, 135, 97, 0.4);
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.15) 0%, rgba(20, 13, 35, 0.08) 100%);
}

/* line 1732, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-signature-panel .signature-prestataire-selected .contact-item .contact-info,
.adv-contract-delivery-choice .adv-contract-signature-panel .signature-clients-selected .contact-item .contact-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

/* line 1738, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-signature-panel .signature-prestataire-selected .contact-item .contact-info .contact-icon,
.adv-contract-delivery-choice .adv-contract-signature-panel .signature-clients-selected .contact-item .contact-info .contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(195, 135, 97, 0.15);
  border-radius: 50%;
  color: #C38761;
  font-size: 1rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

/* line 1752, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-signature-panel .signature-prestataire-selected .contact-item .contact-info .contact-details,
.adv-contract-delivery-choice .adv-contract-signature-panel .signature-clients-selected .contact-item .contact-info .contact-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

/* line 1759, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-signature-panel .signature-prestataire-selected .contact-item .contact-info .contact-name,
.adv-contract-delivery-choice .adv-contract-signature-panel .signature-clients-selected .contact-item .contact-info .contact-name {
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}

/* line 1765, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-delivery-choice .adv-contract-signature-panel .signature-prestataire-selected .contact-item .contact-info .contact-name, .lightmode .adv-contract-delivery-choice .adv-contract-signature-panel .signature-clients-selected .contact-item .contact-info .contact-name {
  color: #140D23;
}

/* line 1770, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-signature-panel .signature-prestataire-selected .contact-item .contact-info .contact-email,
.adv-contract-delivery-choice .adv-contract-signature-panel .signature-clients-selected .contact-item .contact-info .contact-email {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  font-weight: 400;
  margin: 0;
}

/* line 1776, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-delivery-choice .adv-contract-signature-panel .signature-prestataire-selected .contact-item .contact-info .contact-email, .lightmode .adv-contract-delivery-choice .adv-contract-signature-panel .signature-clients-selected .contact-item .contact-info .contact-email {
  color: rgba(20, 13, 35, 0.7);
}

/* line 1782, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-signature-panel .signature-prestataire-selected .contact-item .contact-remove,
.adv-contract-delivery-choice .adv-contract-signature-panel .signature-clients-selected .contact-item .contact-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(166, 2, 64, 0.1);
  border: 1px solid rgba(166, 2, 64, 0.3);
  border-radius: 50%;
  color: rgba(166, 2, 64, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* line 1797, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-signature-panel .signature-prestataire-selected .contact-item .contact-remove:hover,
.adv-contract-delivery-choice .adv-contract-signature-panel .signature-clients-selected .contact-item .contact-remove:hover {
  background: rgba(166, 2, 64, 0.2);
  border-color: #A60240;
  color: #A60240;
  transform: scale(1.1);
}

/* line 1805, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-signature-panel .signature-prestataire-selected .contact-item.contact-item-enter,
.adv-contract-delivery-choice .adv-contract-signature-panel .signature-clients-selected .contact-item.contact-item-enter {
  animation: slideInFromTop 0.3s ease-out;
}

/* line 1809, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-delivery-choice .adv-contract-signature-panel .signature-prestataire-selected .contact-item.contact-item-exit,
.adv-contract-delivery-choice .adv-contract-signature-panel .signature-clients-selected .contact-item.contact-item-exit {
  animation: slideOutToRight 0.3s ease-in;
}

/* line 1818, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-signature-panel {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  transition: all 0.3s ease;
}

/* line 1826, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-signature-panel {
  border-color: rgba(20, 13, 35, 0.15);
  background: rgba(20, 13, 35, 0.05);
}

/* line 1831, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-signature-panel .signature-panel {
  box-shadow: none;
  background: transparent;
  border: none;
  color: #FFFFFF;
}

/* line 1837, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-signature-panel .signature-panel {
  color: #140D23;
}

/* line 1841, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-signature-panel .signature-panel__title h3, .adv-contract-signature-panel .signature-panel__title .h3 {
  color: inherit;
}

/* line 1845, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-signature-panel .signature-panel__meta {
  color: rgba(255, 255, 255, 0.75);
}

/* line 1848, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-signature-panel .signature-panel__meta {
  color: rgba(20, 13, 35, 0.65);
}

/* line 1852, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-signature-panel .signature-panel__meta-item {
  background: rgba(255, 255, 255, 0.12);
}

/* line 1855, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-signature-panel .signature-panel__meta-item {
  background: rgba(20, 13, 35, 0.08);
}

/* line 1861, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-signature-panel .signature-panel__body--split {
  gap: 1.5rem;
}

/* line 1865, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-signature-panel .signature-panel__form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* line 1869, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-signature-panel .signature-panel__form {
  background: rgba(20, 13, 35, 0.04);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 1874, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-signature-panel .signature-panel__form h4, .adv-contract-signature-panel .signature-panel__form .h4 {
  color: inherit;
}

/* line 1879, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-signature-panel .signature-panel__hint {
  color: rgba(255, 255, 255, 0.65);
}

/* line 1882, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-signature-panel .signature-panel__hint {
  color: rgba(20, 13, 35, 0.6);
}

/* line 1887, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-signature-panel .signature-panel__timeline h4, .adv-contract-signature-panel .signature-panel__timeline .h4 {
  color: inherit;
}

/* line 1891, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-signature-panel .signature-panel__empty {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}

/* line 1895, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-signature-panel .signature-panel__empty {
  border-color: rgba(20, 13, 35, 0.2);
  color: rgba(20, 13, 35, 0.7);
}

/* line 1900, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-signature-panel .signature-panel__empty i {
  color: rgba(255, 255, 255, 0.6);
}

/* line 1903, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-signature-panel .signature-panel__empty i {
  color: rgba(20, 13, 35, 0.5);
}

/* line 1910, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-signature-panel .signature-form__label {
  color: inherit;
  opacity: 1;
}

/* line 1915, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-signature-panel .signature-form__input,
.adv-contract-signature-panel .signature-form__textarea,
.adv-contract-signature-panel .signature-form__select {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

/* line 1922, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-signature-panel .signature-form__input, .lightmode .adv-contract-signature-panel .signature-form__textarea, .lightmode .adv-contract-signature-panel .signature-form__select {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 1929, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-signature-panel .signature-form__help {
  color: rgba(255, 255, 255, 0.6);
}

/* line 1932, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-signature-panel .signature-form__help {
  color: rgba(20, 13, 35, 0.55);
}

/* line 1937, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-signature-panel .signature-form__disabled {
  color: rgba(255, 255, 255, 0.6);
}

/* line 1940, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-signature-panel .signature-form__disabled {
  color: rgba(20, 13, 35, 0.55);
}

/* line 1945, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-signature-panel .signature-timeline__item {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.04) 55%, rgba(255, 255, 255, 0.02) 100%);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 18px;
}

/* line 1958, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-signature-panel .signature-timeline__item {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.85) 100%);
  border-color: rgba(20, 13, 35, 0.12);
  box-shadow: 0 12px 24px rgba(20, 13, 35, 0.12);
}

/* line 1970, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-signature-panel .signature-timeline__header {
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* line 1975, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-signature-panel .signature-timeline__header {
  border-bottom-color: rgba(20, 13, 35, 0.12);
}

/* line 1979, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-signature-panel .signature-timeline__header strong {
  font-size: 0.95rem;
  color: #FFFFFF;
}

/* line 1983, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-signature-panel .signature-timeline__header strong {
  color: #140D23;
}

/* line 1988, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-signature-panel .signature-timeline__header .signature-timeline__meta span {
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* line 1997, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-signature-panel .signature-timeline__header .signature-timeline__meta span {
  color: rgba(20, 13, 35, 0.65);
  background: rgba(20, 13, 35, 0.08);
}

/* line 2004, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-signature-panel .signature-participant {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 10px 14px;
}

/* line 2010, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-signature-panel .signature-participant {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.12);
}

/* line 2016, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-signature-panel .signature-timeline__audit {
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 12px;
}

/* line 2022, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-signature-panel .signature-timeline__audit {
  background: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.18);
}

/* line 2027, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-signature-panel .signature-timeline__audit strong {
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.75);
}

/* line 2032, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-signature-panel .signature-timeline__audit strong {
  color: rgba(20, 13, 35, 0.7);
}

/* line 2037, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-signature-panel .signature-timeline__audit li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

/* line 2041, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-signature-panel .signature-timeline__audit li {
  color: rgba(20, 13, 35, 0.65);
}

/* line 2048, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.signature-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* line 2056, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .signature-panel__header {
  border-bottom-color: rgba(20, 13, 35, 0.12);
}

/* line 2061, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.signature-panel__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
}

/* line 2068, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.signature-panel__title i {
  color: #C38761;
  font-size: 1rem;
}

/* line 2074, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.signature-panel__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* line 2080, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.signature-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 2086, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.signature-form__group--half {
  flex: 1;
  min-width: 0;
}

/* line 2091, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.signature-form__client-search-form,
.signature-form__prestataire-search-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 2098, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.signature-form__use-current-user {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 2111, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .signature-form__use-current-user {
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 2116, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.signature-form__use-current-user:hover {
  background: rgba(195, 135, 97, 0.2);
  border-color: rgba(195, 135, 97, 0.35);
  color: #FFFFFF;
}

/* line 2123, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.signature-representatives-list--client,
.signature-representatives-list--prestataire {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 2130, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.signature-representatives-list__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}

/* line 2138, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.signature-clients-empty,
.signature-prestataire-empty {
  margin: 0;
  padding: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

/* line 2148, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .signature-clients-empty, .lightmode .signature-prestataire-empty {
  border-color: rgba(20, 13, 35, 0.2);
  color: rgba(20, 13, 35, 0.6);
}

/* line 2154, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-signature-panel--hidden {
  display: none;
}

/* line 2158, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-actions {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

/* line 2165, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-actions span {
  color: #140D23 !important;
}

/* line 2168, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.nightmode .adv-contract-contacts-actions span {
  color: #FFFFFF !important;
}

/* line 2174, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-button-regular {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 2189, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-button-regular {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 2195, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-button-regular:hover {
  background: rgba(195, 135, 97, 0.2);
  border-color: rgba(195, 135, 97, 0.35);
  box-shadow: 0 6px 14px rgba(195, 135, 97, 0.25);
  color: #FFFFFF;
}

/* line 2201, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-button-regular:hover {
  color: #140D23;
}

/* line 2207, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-button-small {
  padding: 8px 16px;
  font-size: 0.85rem;
}

/* line 2212, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-back-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #FFFFFF;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* line 2225, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-back-button {
  border-color: rgba(20, 13, 35, 0.25);
  color: #140D23;
}

/* line 2230, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-back-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* line 2233, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-back-button:hover {
  background: rgba(20, 13, 35, 0.1);
}

/* line 2239, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-email-form {
  margin: 0;
}

/* line 2243, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row2 {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

/* line 2251, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-row2 span {
  color: #140D23 !important;
}

/* line 2254, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.nightmode .adv-contract-contacts-row2 span {
  color: #FFFFFF !important;
}

/* line 2261, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-create-contact-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(4px);
}

/* line 2274, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-create-contact-modal-overlay.d-none {
  display: none !important;
}

/* line 2279, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-create-contact-modal {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(232, 232, 232, 0.3);
}

/* line 2289, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-create-contact-modal {
  background-color: rgba(255, 255, 255, 0.98);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 2294, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.nightmode .adv-create-contact-modal {
  background-color: rgba(20, 13, 35, 0.95);
}

/* line 2299, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-create-contact-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid rgba(232, 232, 232, 0.3);
}

/* line 2306, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-create-contact-modal-header {
  border-bottom-color: rgba(20, 13, 35, 0.2);
}

/* line 2310, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-create-contact-modal-header h3, .adv-create-contact-modal-header .h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: #140D23;
}

/* line 2316, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.nightmode .adv-create-contact-modal-header h3, .nightmode .adv-create-contact-modal-header .h3 {
  color: #FFFFFF;
}

/* line 2322, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-create-contact-modal-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: rgba(20, 13, 35, 0.6);
  padding: 5px;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

/* line 2337, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.nightmode .adv-create-contact-modal-close {
  color: rgba(255, 255, 255, 0.6);
}

/* line 2341, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-create-contact-modal-close:hover {
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 2345, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.nightmode .adv-create-contact-modal-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

/* line 2352, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-create-contact-modal-body {
  padding: 25px;
}

/* line 2356, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-create-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 2362, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 2368, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-form-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #140D23;
}

/* line 2373, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.nightmode .adv-form-label {
  color: #FFFFFF;
}

/* line 2378, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-form-input {
  padding: 12px 15px;
  border: 1px solid rgba(20, 13, 35, 0.3);
  border-radius: 8px;
  font-size: 0.9rem;
  background-color: rgba(255, 255, 255, 0.8);
  color: #140D23;
  transition: all 0.3s ease;
}

/* line 2387, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.nightmode .adv-form-input {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
}

/* line 2392, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.nightmode .adv-form-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* line 2397, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-form-input:focus {
  outline: none;
  border-color: #C38761;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 2403, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.nightmode .adv-form-input:focus {
  background-color: rgba(255, 255, 255, 0.15);
}

/* line 2408, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-form-input.is-invalid {
  border-color: #e74c3c;
}

/* line 2411, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-form-input.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

/* line 2417, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-form-error {
  font-size: 0.8rem;
  color: #e74c3c;
  min-height: 18px;
}

/* line 2422, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-form-error.show {
  display: block;
}

/* line 2427, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-create-contact-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(232, 232, 232, 0.3);
}

/* line 2435, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-create-contact-modal-actions {
  border-top-color: rgba(20, 13, 35, 0.2);
}

/* line 2440, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-button-secondary {
  padding: 10px 20px;
  background-color: transparent;
  border: 1px solid rgba(20, 13, 35, 0.3);
  border-radius: 8px;
  color: #140D23;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 2451, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.nightmode .adv-button-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
}

/* line 2456, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-button-secondary:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 2459, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.nightmode .adv-button-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 2465, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-button-primary {
  padding: 10px 20px;
  background-color: #C38761;
  border: 1px solid #C38761;
  border-radius: 8px;
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 2476, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-button-primary:hover {
  background-color: #af6c42;
  border-color: #af6c42;
  transform: translateY(-1px);
}

/* line 2482, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-button-primary:disabled {
  background-color: rgba(195, 135, 97, 0.5);
  border-color: rgba(195, 135, 97, 0.5);
  cursor: not-allowed;
  transform: none;
}

/* line 2491, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-contacts-content [data-tab="documents"] {
  padding: 25px;
}

/* line 2495, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-documents-tab {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 2501, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-documents-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* line 2507, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-document-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 2516, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-document-card {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.12);
}

/* line 2521, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-document-card .section-label-contract {
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* line 2526, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-document-card .section-label-contract {
  color: #140D23;
}

/* line 2531, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.adv-contract-document-card .section-content-contract {
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 12px;
}

/* line 2537, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_contacts.scss */
.lightmode .adv-contract-document-card .section-content-contract {
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 1, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_catalog.scss */
.adv-template-catalog {
  padding: 20px;
}

/* line 4, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_catalog.scss */
.adv-template-catalog-header {
  margin-bottom: 24px;
}

/* line 7, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_catalog.scss */
.adv-template-catalog-header h1, .adv-template-catalog-header .h1 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary, #fff);
  margin-bottom: 8px;
}

/* line 14, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_catalog.scss */
.adv-template-catalog-header p {
  color: var(--text-secondary, rgba(255, 255, 255, 0.7));
  font-size: 0.9rem;
}

/* line 20, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_catalog.scss */
.adv-template-catalog-filters {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

/* line 27, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_catalog.scss */
.adv-template-catalog-filter-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 32, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_catalog.scss */
.adv-template-catalog-filter-group label {
  font-size: 0.75rem;
  color: var(--text-secondary, rgba(255, 255, 255, 0.6));
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 39, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_catalog.scss */
.adv-template-catalog-filter-group select {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary, #fff);
  font-size: 0.85rem;
  min-width: 160px;
}

/* line 48, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_catalog.scss */
.adv-template-catalog-filter-group select:focus {
  outline: none;
  border-color: #c18859;
}

/* line 55, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_catalog.scss */
.adv-template-catalog-actions {
  margin-bottom: 24px;
}

/* line 59, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_catalog.scss */
.adv-template-catalog-create-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  background: #c18859;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background 0.2s ease;
}

/* line 72, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_catalog.scss */
.adv-template-catalog-create-btn:hover {
  background: #b07342;
  color: #fff;
}

/* line 78, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_catalog.scss */
.adv-template-catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

/* line 84, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_catalog.scss */
.adv-template-catalog-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  color: var(--text-secondary, rgba(255, 255, 255, 0.5));
}

/* line 90, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_catalog.scss */
.adv-template-catalog-empty code {
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85rem;
}

/* line 99, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_catalog.scss */
.adv-template-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

/* line 109, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_catalog.scss */
.adv-template-card:hover {
  border-color: rgba(193, 136, 89, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

/* line 114, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_catalog.scss */
.adv-template-card-header {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* line 120, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_catalog.scss */
.adv-template-card-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 130, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_catalog.scss */
.adv-template-card-badge--orizen {
  background: rgba(193, 136, 89, 0.2);
  color: #c18859;
}

/* line 135, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_catalog.scss */
.adv-template-card-badge--custom {
  background: rgba(100, 180, 255, 0.2);
  color: #64b4ff;
}

/* line 140, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_catalog.scss */
.adv-template-card-badge--cgv {
  background: rgba(255, 170, 100, 0.15);
  color: #ffaa64;
}

/* line 145, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_catalog.scss */
.adv-template-card-badge--contract {
  background: rgba(100, 200, 150, 0.15);
  color: #64c896;
}

/* line 150, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_catalog.scss */
.adv-template-card-badge--subscription {
  background: rgba(150, 130, 255, 0.15);
  color: #9682ff;
}

/* line 156, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_catalog.scss */
.adv-template-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

/* line 163, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_catalog.scss */
.adv-template-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary, #fff);
  margin: 0;
  line-height: 1.3;
}

/* line 171, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_catalog.scss */
.adv-template-card-code {
  font-size: 0.75rem;
  color: var(--text-secondary, rgba(255, 255, 255, 0.5));
  font-family: monospace;
}

/* line 177, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_catalog.scss */
.adv-template-card-sector, .adv-template-card-vars, .adv-template-card-articles {
  font-size: 0.8rem;
  color: var(--text-secondary, rgba(255, 255, 255, 0.6));
  display: flex;
  align-items: center;
  gap: 6px;
}

/* line 186, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_catalog.scss */
.adv-template-card-sector i, .adv-template-card-vars i, .adv-template-card-articles i {
  width: 14px;
  text-align: center;
  font-size: 0.7rem;
}

/* line 193, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_catalog.scss */
.adv-template-card-actions {
  display: flex;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* line 200, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_catalog.scss */
.adv-template-card-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

/* line 215, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_catalog.scss */
.adv-template-card-btn--primary {
  background: #c18859;
  color: #fff;
}

/* line 219, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_catalog.scss */
.adv-template-card-btn--primary:hover {
  background: #b07342;
  color: #fff;
}

/* line 225, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_catalog.scss */
.adv-template-card-btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary, #fff);
}

/* line 229, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_catalog.scss */
.adv-template-card-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-primary, #fff);
}

/* line 1, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard {
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
}

/* line 6, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-content {
  margin-top: 24px;
}

/* line 12, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 16px 0;
}

/* line 20, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 80px;
}

/* line 27, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

/* line 41, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-step-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  white-space: nowrap;
}

/* line 48, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-step.active .adv-wizard-step-number {
  border-color: #c18859;
  background: #c18859;
  color: #fff;
}

/* line 54, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-step.active .adv-wizard-step-label {
  color: #c18859;
  font-weight: 600;
}

/* line 59, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-step.completed .adv-wizard-step-number {
  border-color: #4caf50;
  background: #4caf50;
  color: #fff;
}

/* line 65, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-step.completed .adv-wizard-step-label {
  color: rgba(255, 255, 255, 0.6);
}

/* line 69, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-step-connector {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 8px;
  margin-bottom: 22px;
  max-width: 80px;
}

/* line 77, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-step-connector.completed {
  background: #4caf50;
}

/* line 84, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 91, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-step-content h2, .adv-wizard-step-content .h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary, #fff);
  margin-bottom: 4px;
}

/* line 99, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-step-description {
  color: var(--text-secondary, rgba(255, 255, 255, 0.6));
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* line 104, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-step-description code {
  background: rgba(193, 136, 89, 0.2);
  color: #c18859;
  padding: 1px 4px;
  border-radius: 3px;
  font-size: 0.85em;
}

/* line 113, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-field {
  margin-bottom: 16px;
}

/* line 116, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary, #fff);
  margin-bottom: 6px;
}

/* line 125, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary, #fff);
  font-size: 0.9rem;
}

/* line 134, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-input:focus {
  outline: none;
  border-color: #c18859;
}

/* line 139, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

/* line 144, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-select {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary, #fff);
  font-size: 0.9rem;
}

/* line 153, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-select:focus {
  outline: none;
  border-color: #c18859;
}

/* line 160, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-info-box {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(193, 136, 89, 0.1);
  border: 1px solid rgba(193, 136, 89, 0.2);
  margin-bottom: 16px;
}

/* line 169, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-info-box i {
  color: #c18859;
  font-size: 1.1rem;
  margin-top: 2px;
}

/* line 175, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-info-box strong {
  color: var(--text-primary, #fff);
  font-size: 0.9rem;
}

/* line 180, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-info-box p {
  color: var(--text-secondary, rgba(255, 255, 255, 0.6));
  font-size: 0.85rem;
  margin: 4px 0 0;
}

/* line 188, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}

/* line 194, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-article-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.2s ease;
}

/* line 203, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-article-header:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* line 208, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-article-number {
  font-size: 0.75rem;
  font-weight: 600;
  color: #c18859;
  background: rgba(193, 136, 89, 0.15);
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

/* line 218, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-article-title {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary, #fff);
  margin: 0;
}

/* line 226, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-article-body {
  padding: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* line 233, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-clause {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}

/* line 239, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-clause-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.03);
}

/* line 247, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-clause-header:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* line 251, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-clause-header h4, .adv-wizard-clause-header .h4 {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary, #fff);
  margin: 0;
}

/* line 261, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-clause-status--filled {
  color: #4caf50;
  font-size: 0.8rem;
}

/* line 267, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-clause-body {
  padding: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* line 272, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-clause-select {
  margin-bottom: 12px;
}

/* line 276, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-clause-placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
  font-size: 0.85rem;
  padding: 8px 0;
}

/* line 285, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-accordion-icon {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

/* line 290, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-accordion-icon.rotated {
  transform: rotate(180deg);
}

/* line 296, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-editor {
  min-height: 100px;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-primary, #fff);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* line 306, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-editor:focus {
  outline: none;
  border-color: #c18859;
}

/* line 311, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-editor[placeholder]:empty::before {
  content: attr(placeholder);
  color: rgba(255, 255, 255, 0.3);
}

/* line 318, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-section {
  margin-bottom: 24px;
}

/* line 321, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-section h3, .adv-wizard-section .h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary, #fff);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 330, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-section h3 i, .adv-wizard-section .h3 i {
  color: #c18859;
}

/* line 337, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-signature-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* line 343, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-signature-party {
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 349, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-signature-party strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-primary, #fff);
  margin-bottom: 4px;
}

/* line 356, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-signature-party p {
  font-size: 0.85rem;
  color: var(--text-secondary, rgba(255, 255, 255, 0.6));
  margin: 0;
}

/* line 364, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-variables-sidebar {
  margin-top: 20px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 371, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-variables-sidebar h3, .adv-wizard-variables-sidebar .h3 {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

/* line 377, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-variables-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 386, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-variables-list li code {
  font-size: 0.75rem;
  background: rgba(193, 136, 89, 0.15);
  color: #c18859;
  padding: 2px 6px;
  border-radius: 4px;
}

/* line 398, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-recap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

/* line 404, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-recap-item {
  padding: 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
}

/* line 410, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-recap-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

/* line 419, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-recap-value {
  font-size: 0.9rem;
  color: var(--text-primary, #fff);
  font-weight: 500;
}

/* line 427, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-annexe-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

/* line 435, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 20px;
}

/* line 444, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

/* line 457, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-btn--primary {
  background: #c18859;
  color: #fff;
}

/* line 461, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-btn--primary:hover {
  background: #b07342;
  color: #fff;
}

/* line 467, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary, #fff);
}

/* line 471, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-primary, #fff);
}

/* line 477, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-btn--success {
  background: #4caf50;
  color: #fff;
}

/* line 481, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-btn--success:hover {
  background: #409343;
  color: #fff;
}

/* line 487, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-btn--outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-primary, #fff);
}

/* line 492, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-btn--outline:hover {
  border-color: #c18859;
  color: #c18859;
}

/* line 498, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-btn-icon {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
}

/* line 506, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_template_wizard.scss */
.adv-wizard-btn-icon:hover {
  color: #ff5252;
  background: rgba(255, 82, 82, 0.1);
}

/* line 2, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  overflow-x: hidden;
}

/* line 12, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 16px 24px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 22, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-close {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.2s ease;
}

/* line 37, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* line 44, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-body {
  flex: 1;
  display: flex;
  overflow: hidden;
}

/* line 51, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-config {
  width: 55%;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 59, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-config::-webkit-scrollbar {
  width: 6px;
}

/* line 63, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-config::-webkit-scrollbar-track {
  background: transparent;
}

/* line 67, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-config::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}

/* line 71, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-config::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* line 78, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-preview {
  width: 45%;
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.15);
}

/* line 85, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-preview-placeholder {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* line 94, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-preview-placeholder i {
  font-size: 1rem;
}

/* line 98, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-preview-placeholder p {
  font-size: 0.9rem;
  margin: 0;
}

/* line 104, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-preview-loading {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
}

/* line 113, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-preview-loading p {
  font-size: 0.9rem;
  margin: 0;
}

/* line 119, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-preview-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* line 126, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* line 133, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

/* line 140, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause.dragging {
  opacity: 0.5;
  border-color: #c18859;
}

/* line 145, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.2s ease;
}

/* line 153, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause-header:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* line 158, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause-drag {
  cursor: grab;
  color: rgba(255, 255, 255, 0.3);
  padding: 2px;
}

/* line 163, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause-drag:active {
  cursor: grabbing;
}

/* line 168, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause-toggle {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 18px;
  flex-shrink: 0;
}

/* line 175, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* line 181, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause-toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 9px;
  transition: 0.3s;
}

/* line 189, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause-toggle-slider::before {
  content: '';
  position: absolute;
  height: 14px;
  width: 14px;
  left: 2px;
  bottom: 2px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
}

/* line 202, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
input:checked + .contract-builder-clause-toggle-slider {
  background: #4caf50;
}

/* line 206, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
input:checked + .contract-builder-clause-toggle-slider::before {
  transform: translateX(16px);
}

/* line 211, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause-title {
  flex: 1;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary, #fff);
  margin: 0;
}

/* line 219, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause-tone-badge {
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(193, 136, 89, 0.15);
  color: #c18859;
  text-transform: capitalize;
}

/* line 228, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause-delete {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 4px;
  font-size: 0.75rem;
  transition: color 0.2s ease;
}

/* line 237, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause-delete:hover {
  color: #dc3545;
}

/* line 242, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause-expand {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 4px;
}

/* line 250, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause-body {
  padding: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* line 255, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause-tone-selector {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

/* line 261, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause-tone-selector label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

/* line 267, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause-tone-selector select {
  flex: 1;
  max-width: 200px;
}

/* line 273, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause-content {
  min-height: 80px;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-primary, #fff);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* line 283, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause-content:focus {
  outline: none;
  border-color: #c18859;
}

/* line 288, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause-content[placeholder]:empty::before {
  content: attr(placeholder);
  color: rgba(255, 255, 255, 0.3);
}

/* line 296, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-add-section {
  margin-top: 14px;
  text-align: center;
}

/* line 303, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-toggle {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

/* line 309, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.85rem;
}

/* line 324, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-option:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.7);
}

/* line 329, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-option.selected {
  border-color: #c18859;
  background: rgba(193, 136, 89, 0.12);
  color: #c18859;
}

/* line 335, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-option i {
  font-size: 0.9rem;
}

/* line 340, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-config {
  margin-top: 16px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

/* line 347, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-config .adv-wizard-field {
  margin-bottom: 0;
}

/* line 350, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-config .adv-wizard-field label {
  margin-bottom: 6px;
}

/* line 353, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-config .adv-wizard-field label i.fa-solid {
  color: #c18859;
}

/* line 359, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-config .adv-wizard-select,
.contract-builder-billing-config .adv-wizard-input[type="date"],
.contract-builder-billing-config .adv-wizard-input.flatpickr-input {
  max-width: 220px;
  cursor: pointer;
}

/* line 366, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-config .adv-wizard-input[type="number"] {
  max-width: 120px;
}

/* line 371, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  /* line 371, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
  .contract-builder-billing-row {
    grid-template-columns: 1fr;
  }
}

/* line 382, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-interval {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 389, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-interval .contract-builder-billing-interval-input {
  width: 70px;
  text-align: center;
}

/* line 395, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-summary {
  margin-top: 16px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(193, 136, 89, 0.06);
  border: 1px solid rgba(193, 136, 89, 0.15);
}

/* line 402, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-summary h4, .contract-builder-billing-summary .h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: #c18859;
  margin-bottom: 10px;
}

/* line 408, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-summary h4 i, .contract-builder-billing-summary .h4 i {
  margin-right: 6px;
}

/* line 413, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-summary p {
  margin: 4px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 418, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-summary p strong {
  color: rgba(255, 255, 255, 0.9);
}

/* line 426, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-articles-list {
  max-height: 300px;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-top: 8px;
}

/* line 433, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-articles-list::-webkit-scrollbar {
  width: 5px;
}

/* line 437, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-articles-list::-webkit-scrollbar-track {
  background: transparent;
}

/* line 441, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-articles-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}

/* line 447, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: background 0.15s ease;
  font-size: 0.85rem;
}

/* line 457, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-item:last-child {
  border-bottom: none;
}

/* line 461, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

/* line 465, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-item input[type="checkbox"] {
  accent-color: #c18859;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* line 472, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-item .contract-builder-article-name {
  flex: 1;
  color: var(--text-primary, #fff);
}

/* line 477, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-item .contract-builder-article-ref {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  min-width: 80px;
}

/* line 483, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-item .contract-builder-article-price {
  color: #c18859;
  font-weight: 500;
  font-size: 0.8rem;
  min-width: 80px;
  text-align: right;
}

/* line 494, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause-toolbar {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

/* line 500, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-insert-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  font-size: 0.75rem;
  border-radius: 5px;
  border: 1px solid rgba(193, 136, 89, 0.3);
  background: rgba(193, 136, 89, 0.08);
  color: #c18859;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 513, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-insert-btn:hover {
  background: rgba(193, 136, 89, 0.15);
  border-color: #c18859;
}

/* line 518, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-insert-btn i {
  font-size: 0.7rem;
}

/* line 523, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-palette {
  margin-bottom: 12px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(193, 136, 89, 0.2);
  background: rgba(193, 136, 89, 0.04);
}

/* line 531, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-group {
  margin-bottom: 10px;
}

/* line 534, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-group:last-child {
  margin-bottom: 0;
}

/* line 539, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-group-header {
  font-size: 0.75rem;
  font-weight: 600;
  color: #c18859;
  margin-bottom: 6px;
}

/* line 545, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-group-header i {
  margin-right: 4px;
  width: 14px;
  text-align: center;
}

/* line 552, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-group-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

/* line 558, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-btn {
  padding: 3px 8px;
  font-size: 0.7rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: 'SF Mono', 'Monaco', 'Menlo', monospace;
}

/* line 569, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-btn:hover {
  background: rgba(193, 136, 89, 0.12);
  border-color: rgba(193, 136, 89, 0.3);
  color: #c18859;
}

/* line 576, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-create-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  margin-top: 10px;
  padding: 6px 10px;
  font-size: 0.75rem;
  border: 1px dashed rgba(193, 136, 89, 0.4);
  background: rgba(193, 136, 89, 0.06);
  color: #c18859;
  font-family: inherit;
  justify-content: center;
}

/* line 590, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-create-btn:hover {
  background: rgba(193, 136, 89, 0.15);
  border-color: #c18859;
}

/* line 596, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-palette-empty {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  text-align: center;
}

/* line 605, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-var-tag {
  display: inline;
  padding: 1px 6px;
  border-radius: 3px;
  background: rgba(193, 136, 89, 0.15);
  border: 1px solid rgba(193, 136, 89, 0.25);
  color: #c18859;
  font-size: 0.8em;
  font-family: 'SF Mono', 'Monaco', 'Menlo', monospace;
  white-space: nowrap;
  user-select: all;
}

/* line 620, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-recap-vars-resolved {
  color: #4caf50;
}

/* line 624, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-recap-vars-warning {
  color: #ff9800;
  font-size: 0.75rem;
}

/* line 629, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-recap-vars-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
}

/* line 636, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-recap-var-chip {
  padding: 2px 6px;
  font-size: 0.7rem;
  border-radius: 3px;
  font-family: 'SF Mono', 'Monaco', 'Menlo', monospace;
}

/* line 642, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-recap-var-chip--resolved {
  background: rgba(76, 175, 80, 0.12);
  border: 1px solid rgba(76, 175, 80, 0.25);
  color: #4caf50;
}

/* line 648, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-recap-var-chip--unresolved {
  background: rgba(255, 152, 0, 0.12);
  border: 1px solid rgba(255, 152, 0, 0.25);
  color: #ff9800;
}

/* line 657, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-counter {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 8px;
  margin-bottom: 12px;
}

/* line 664, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-counter--complete {
  background: rgba(76, 175, 80, 0.08);
  border: 1px solid rgba(76, 175, 80, 0.25);
}

/* line 669, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-counter--incomplete {
  background: rgba(255, 152, 0, 0.08);
  border: 1px solid rgba(255, 152, 0, 0.25);
}

/* line 675, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-counter-badge {
  font-size: 0.85rem;
  font-weight: 500;
}

/* line 679, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-counter--complete .contract-builder-variable-counter-badge {
  color: #4caf50;
}

/* line 683, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-counter--incomplete .contract-builder-variable-counter-badge {
  color: #ff9800;
}

/* line 687, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-counter-badge i {
  margin-right: 6px;
}

/* line 694, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

/* line 701, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
}

/* line 709, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-item--resolved {
  background: rgba(76, 175, 80, 0.06);
  border: 1px solid rgba(76, 175, 80, 0.15);
}

/* line 714, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-item--unresolved {
  background: rgba(255, 152, 0, 0.06);
  border: 1px solid rgba(255, 152, 0, 0.15);
}

/* line 720, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-name {
  font-family: 'SF Mono', 'Monaco', 'Menlo', monospace;
  font-size: 0.8rem;
  color: #c18859;
  min-width: 160px;
}

/* line 727, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-value {
  flex: 1;
  color: rgba(255, 255, 255, 0.7);
}

/* line 732, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-input {
  flex: 1;
  max-width: 300px;
}

/* line 737, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-status {
  font-size: 0.8rem;
}

/* line 740, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-item--resolved .contract-builder-variable-status {
  color: #4caf50;
}

/* line 744, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-item--unresolved .contract-builder-variable-status {
  color: #ff9800;
}

/* line 751, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-custom-variables {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

/* line 758, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-custom-variable-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 6px;
  background: rgba(193, 136, 89, 0.06);
  border: 1px solid rgba(193, 136, 89, 0.15);
}

/* line 768, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-custom-variable-label {
  flex: 1;
  font-size: 0.85rem;
  color: var(--text-primary, #fff);
}

/* line 774, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-custom-variable-key {
  font-size: 0.75rem;
  color: #c18859;
  background: rgba(193, 136, 89, 0.1);
  padding: 2px 6px;
  border-radius: 3px;
}

/* line 782, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-custom-variable-remove {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease;
}

/* line 790, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-custom-variable-remove:hover {
  color: #dc3545;
}

/* line 797, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-save-template {
  text-align: center;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* line 805, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-annexes-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

/* line 812, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-annex-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
}

/* line 822, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-annex-item i {
  color: #dc3545;
  font-size: 1.1rem;
}

/* line 828, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-annex-name {
  flex: 1;
  color: var(--text-primary, #fff);
}

/* line 833, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-annex-size {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
}

/* line 838, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-annex-badge {
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(76, 175, 80, 0.12);
  border: 1px solid rgba(76, 175, 80, 0.25);
  color: #4caf50;
  font-weight: 500;
}

/* line 848, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-annex-item--pending {
  border-style: dashed;
  border-color: rgba(76, 175, 80, 0.25);
  background: rgba(76, 175, 80, 0.04);
}

/* line 854, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-annexes-upload {
  margin-top: 8px;
}

/* line 858, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-file-input {
  display: none;
}

/* line 862, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-upload-zone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  border: 2px dashed rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.85rem;
}

/* line 875, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-upload-zone:hover {
  border-color: #c18859;
  color: #c18859;
  background: rgba(193, 136, 89, 0.04);
}

/* line 881, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-upload-zone i {
  font-size: 1.2rem;
}

/* line 888, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-unit-price-table {
  margin-top: 8px;
  overflow-x: auto;
}

/* line 893, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-price-grid {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

/* line 898, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-price-grid th {
  text-align: left;
  padding: 8px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 908, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-price-grid th:nth-child(1) {
  width: 30%;
}

/* line 909, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-price-grid th:nth-child(2) {
  width: 20%;
}

/* line 910, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-price-grid th:nth-child(3) {
  width: 12%;
}

/* line 911, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-price-grid th:nth-child(4) {
  width: 15%;
}

/* line 912, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-price-grid th:nth-child(5) {
  width: 15%;
}

/* line 913, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-price-grid th:nth-child(6) {
  width: 8%;
}

/* line 916, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-price-grid td {
  padding: 6px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* line 921, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-price-grid .adv-wizard-input {
  width: 100%;
  min-width: 0;
  font-size: 0.85rem;
  box-sizing: border-box;
}

/* line 929, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-price-total {
  white-space: nowrap;
  color: #c18859;
  font-weight: 500;
  font-size: 0.85rem;
  min-width: 90px;
}

/* line 937, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-price-remove {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease;
}

/* line 945, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-price-remove:hover {
  color: #dc3545;
}

/* line 952, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.adv-field-required {
  color: #dc3545;
  font-weight: 600;
}

/* line 958, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.adv-wizard-field.field-error .adv-wizard-input,
.adv-wizard-field.field-error .flatpickr-input {
  border-color: #dc3545 !important;
}

/* line 963, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.adv-wizard-field.field-error label {
  color: #dc3545;
}

/* line 970, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-tooltip-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 4px;
  cursor: help;
}

/* line 977, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-tooltip-trigger > i.fa-solid {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease;
}

/* line 983, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-tooltip-trigger:hover > i.fa-solid {
  color: #c18859;
}

/* line 987, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-tooltip-trigger .contract-builder-tooltip-text {
  display: none;
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.65rem;
  font-weight: 400;
  line-height: 1.3;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  max-width: 280px;
  white-space: normal;
  z-index: 10;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* line 1007, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-tooltip-trigger .contract-builder-tooltip-text::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.9);
}

/* line 1018, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-tooltip-trigger:hover .contract-builder-tooltip-text {
  display: block;
}

/* line 1024, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-tooltip-trigger > i.fa-solid {
  color: rgba(0, 0, 0, 0.3);
}

/* line 1028, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-tooltip-trigger:hover > i.fa-solid {
  color: #c18859;
}

/* line 1032, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-tooltip-trigger .contract-builder-tooltip-text {
  background: rgba(30, 30, 60, 0.95);
}

/* line 1039, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-emission-visual {
  margin: 16px 0;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 1047, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-emission-timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* line 1054, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-emission-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

/* line 1061, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-emission-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

/* line 1066, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-emission-dot--emission {
  background: #c18859;
}

/* line 1070, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-emission-dot--reference {
  background: #4caf50;
}

/* line 1075, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-emission-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-primary, #fff);
}

/* line 1081, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-emission-sublabel {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
}

/* line 1086, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-emission-arrow {
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.2rem;
}

/* line 1094, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder--review-mode .contract-builder-body {
  position: relative;
}

/* line 1098, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder--review-mode .contract-builder-config {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  overflow: visible;
  padding: 12px 24px;
  border-right: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  z-index: 10;
}

/* line 1112, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder--review-mode .contract-builder-preview {
  width: 100%;
  padding-bottom: 70px;
}

/* line 1120, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-template-selector {
  margin-top: 8px;
}

/* line 1123, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-template-selector .adv-wizard-select {
  width: 92%;
  max-width: 100%;
}

/* line 1132, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-config .adv-wizard-select,
.contract-builder-config .adv-wizard-input {
  width: 92%;
  max-width: 100%;
  box-sizing: border-box;
}

/* line 1142, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-html-preview {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  background: #fff;
  color: #333;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* line 1151, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-html-preview::-webkit-scrollbar {
  width: 6px;
}

/* line 1155, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-html-preview::-webkit-scrollbar-track {
  background: transparent;
}

/* line 1159, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-html-preview::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 3px;
}

/* line 1165, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-html-preview-header {
  font-size: 0.8rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 2px solid #eee;
}

/* line 1175, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-html-preview-header i {
  margin-right: 6px;
  color: #c18859;
}

/* line 1181, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-html-section {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}

/* line 1186, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-html-section:last-child {
  border-bottom: none;
}

/* line 1191, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-html-section-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #222;
  margin: 0 0 8px;
}

/* line 1198, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-html-section-content {
  color: #444;
  font-size: 0.85rem;
  line-height: 1.8;
}

/* line 1205, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-preview-var {
  display: inline;
  padding: 1px 6px;
  border-radius: 3px;
  font-family: 'SF Mono', 'Monaco', 'Menlo', monospace;
  font-size: 0.85em;
  transition: all 0.3s ease;
}

/* line 1213, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-preview-var--resolved {
  background: rgba(76, 175, 80, 0.12);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #2e7d32;
}

/* line 1219, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-preview-var--unresolved {
  background: rgba(255, 152, 0, 0.12);
  border: 1px solid rgba(255, 152, 0, 0.3);
  color: #e65100;
}

/* line 1225, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-preview-var--gold {
  background: rgba(193, 136, 89, 0.18);
  border: 1px solid rgba(193, 136, 89, 0.4);
  color: #8b5e3c;
  font-weight: 500;
}

/* line 1232, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-preview-var--highlight {
  background: rgba(255, 180, 50, 0.35) !important;
  border: 2px solid #c18859 !important;
  color: #6b3a1f !important;
  font-weight: 600 !important;
  box-shadow: 0 0 8px rgba(193, 136, 89, 0.5), 0 0 0 4px rgba(193, 136, 89, 0.25);
  animation: contract-var-pulse 1s ease-in-out infinite;
}

@keyframes contract-var-pulse {
  0%, 100% {
    box-shadow: 0 0 8px rgba(193, 136, 89, 0.5), 0 0 0 4px rgba(193, 136, 89, 0.25);
  }
  50% {
    box-shadow: 0 0 16px rgba(193, 136, 89, 0.7), 0 0 0 8px rgba(193, 136, 89, 0.15);
  }
}

@media (max-width: 992px) {
  /* line 1253, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
  .contract-builder-body {
    flex-direction: column;
  }
  /* line 1257, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
  .contract-builder-config {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    max-height: 60vh;
  }
  /* line 1264, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
  .contract-builder-preview {
    width: 100%;
    min-height: 40vh;
  }
}

/* line 1274, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-inline-add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 8px;
  border: 1px solid rgba(193, 136, 89, 0.4);
  background: rgba(193, 136, 89, 0.08);
  color: #c18859;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.85rem;
}

/* line 1289, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-inline-add-btn:hover {
  background: rgba(193, 136, 89, 0.2);
  border-color: #c18859;
}

/* line 1295, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-inline-form {
  margin-bottom: 10px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(193, 136, 89, 0.25);
  background: rgba(193, 136, 89, 0.04);
}

/* line 1303, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-inline-form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 10px;
}

/* line 1309, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-inline-form-fields .adv-wizard-input {
  max-width: none;
  width: 100%;
}

/* line 1315, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-inline-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

/* line 1321, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-inline-form-btn {
  padding: 6px 14px;
  border-radius: 6px;
  border: none;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 1329, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-inline-form-btn--cancel {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
}

/* line 1333, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-inline-form-btn--cancel:hover {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
}

/* line 1339, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-inline-form-btn--confirm {
  background: rgba(193, 136, 89, 0.2);
  color: #c18859;
}

/* line 1343, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-inline-form-btn--confirm:hover {
  background: rgba(193, 136, 89, 0.35);
}

/* line 1349, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-contact-search-row {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  width: 100%;
}

/* line 1355, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-contact-search-row form {
  flex: 1;
}

/* line 1364, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-articles {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

/* line 1370, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-articles > label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* line 1378, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-articles > label i {
  color: #c18859;
}

/* line 1382, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-search {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

/* line 1388, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-search-input-wrapper {
  flex: 1;
  position: relative;
}

/* line 1392, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-search-input-wrapper > i {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

/* line 1401, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-search-input-wrapper .adv-wizard-input {
  padding-left: 32px;
  max-width: none;
  width: 100%;
}

/* line 1408, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-results {
  position: absolute;
  width: 100%;
  background: rgba(30, 30, 35, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 20;
}

/* line 1419, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  cursor: pointer;
  transition: background 0.15s;
}

/* line 1427, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-result:hover {
  background: rgba(193, 136, 89, 0.15);
}

/* line 1431, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-result:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* line 1436, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-result-ref {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

/* line 1441, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-result-price {
  font-size: 0.8rem;
  color: #c18859;
  font-weight: 500;
}

/* line 1447, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-result--empty {
  padding: 12px;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

/* line 1454, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-empty {
  text-align: center;
  padding: 20px;
  color: rgba(255, 255, 255, 0.3);
}

/* line 1459, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-empty i {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

/* line 1460, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-empty p {
  margin: 0;
  font-size: 0.85rem;
}

/* line 1463, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
  margin-bottom: 8px;
}

/* line 1469, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-table th {
  padding: 8px 6px;
  text-align: left;
  font-weight: 600;
  color: #fff;
  background-color: #c18859;
  border-bottom: none;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 1481, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-table td {
  padding: 8px 6px;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  vertical-align: middle;
}

/* line 1489, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-qty {
  width: 55px;
  padding: 4px 6px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 0.8rem;
  text-align: center;
}

/* line 1500, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-remove {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  padding: 4px;
  transition: color 0.15s;
}

/* line 1508, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-remove:hover {
  color: #dc3545;
}

/* line 1511, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-totals {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 1518, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-totals > div {
  display: flex;
  gap: 6px;
  font-size: 0.85rem;
}

/* line 1523, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-totals > div span:first-child {
  color: rgba(255, 255, 255, 0.5);
}

/* line 1524, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-totals > div span:last-child {
  color: #c18859;
  font-weight: 600;
}

/* line 1532, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-contact {
  margin-top: 16px;
  padding: 12px;
  border-radius: 8px;
  border: 1px dashed rgba(193, 136, 89, 0.3);
  background: rgba(193, 136, 89, 0.04);
  position: relative;
}

/* line 1540, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-contact > label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* line 1548, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-contact > label i {
  color: #c18859;
}

/* line 1552, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-contact-search {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

/* line 1558, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-contact-search-input-wrapper {
  flex: 1;
  position: relative;
}

/* line 1562, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-contact-search-input-wrapper > i {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

/* line 1571, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-contact-search-input-wrapper .adv-wizard-input {
  padding-left: 32px;
  max-width: none;
  width: 100%;
}

/* line 1578, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-contact-results {
  position: absolute;
  width: calc(100% - 24px);
  max-height: 180px;
  overflow-y: auto;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(30, 30, 35, 0.95);
  z-index: 20;
}

/* line 1589, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-contact-result {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  cursor: pointer;
  transition: background 0.15s;
}

/* line 1597, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-contact-result:hover {
  background: rgba(193, 136, 89, 0.15);
}

/* line 1598, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-contact-result:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* line 1600, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-contact-result > i {
  color: rgba(255, 255, 255, 0.3);
}

/* line 1603, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-contact-result-info {
  display: flex;
  flex-direction: column;
}

/* line 1607, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-contact-result-info strong {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
}

/* line 1608, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-contact-result-info span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* line 1611, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-contact-result-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

/* line 1616, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-contact-result-name i {
  margin-right: 4px;
  color: rgba(255, 255, 255, 0.3);
}

/* line 1619, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-contact-result-email {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-left: auto;
}

/* line 1625, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-contact-result--empty {
  padding: 12px;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

/* line 1632, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-selected-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(193, 136, 89, 0.1);
  border: 1px solid rgba(193, 136, 89, 0.25);
}

/* line 1642, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-selected-contact-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 1647, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-selected-contact-info i {
  color: #28a745;
}

/* line 1649, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-selected-contact-info span:first-of-type {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
}

/* line 1655, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-selected-contact-info span:last-of-type {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

/* line 1663, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-review-billing {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 8px;
}

/* line 1671, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-review-billing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* line 1678, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-review-billing-row:last-child {
  border-bottom: none;
}

/* line 1681, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-review-billing-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* line 1686, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-review-billing-value {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
}

/* line 1690, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-review-billing-value i {
  margin-right: 4px;
  color: #c18859;
}

/* line 1691, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-review-billing-value strong {
  color: #c18859;
}

/* line 1699, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-article-results {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(0, 0, 0, 0.1);
}

/* line 1705, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-article-result:hover {
  background: rgba(193, 136, 89, 0.08);
}

/* line 1706, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-article-result:not(:last-child) {
  border-color: rgba(0, 0, 0, 0.06);
}

/* line 1709, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-article-result-ref {
  color: rgba(0, 0, 0, 0.85);
}

/* line 1710, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-article-empty {
  color: rgba(0, 0, 0, 0.3);
}

/* line 1713, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-article-table th {
  color: #fff;
  background-color: #8b5e3c;
  border-bottom: none;
}

/* line 1714, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-article-table td {
  color: rgba(0, 0, 0, 0.85);
  border-color: rgba(0, 0, 0, 0.05);
}

/* line 1717, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-article-qty {
  border-color: rgba(0, 0, 0, 0.15);
  background: rgba(0, 0, 0, 0.03);
  color: #333;
}

/* line 1723, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-article-remove {
  color: rgba(0, 0, 0, 0.3);
}

/* line 1726, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-article-totals > div span:first-child {
  color: rgba(0, 0, 0, 0.5);
}

/* line 1729, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-contact-results {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(0, 0, 0, 0.1);
}

/* line 1735, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-contact-result:hover {
  background: rgba(193, 136, 89, 0.08);
}

/* line 1736, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-contact-result > i {
  color: rgba(0, 0, 0, 0.3);
}

/* line 1740, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-contact-result-info strong {
  color: rgba(0, 0, 0, 0.85);
}

/* line 1741, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-contact-result-info span {
  color: rgba(0, 0, 0, 0.5);
}

/* line 1744, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-contact-result-name {
  color: rgba(0, 0, 0, 0.85);
}

/* line 1746, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-contact-result-name i {
  color: rgba(0, 0, 0, 0.3);
}

/* line 1749, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-contact-result-email {
  color: rgba(0, 0, 0, 0.5);
}

/* line 1754, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-selected-contact-info span:first-of-type {
  color: rgba(0, 0, 0, 0.85);
}

/* line 1755, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-selected-contact-info span:last-of-type {
  color: rgba(0, 0, 0, 0.5);
}

/* line 1758, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-review-billing {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.08);
}

/* line 1763, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-review-billing-row {
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

/* line 1767, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-review-billing-label {
  color: rgba(0, 0, 0, 0.5);
}

/* line 1768, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-review-billing-value {
  color: rgba(0, 0, 0, 0.85);
}

/* line 1770, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-inline-form {
  background: rgba(193, 136, 89, 0.03);
  border-color: rgba(193, 136, 89, 0.15);
}

/* line 1775, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-inline-form-btn--cancel {
  background: rgba(0, 0, 0, 0.06);
  color: rgba(0, 0, 0, 0.5);
}

/* line 1779, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-inline-form-btn--cancel:hover {
  background: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.7);
}

/* line 1786, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-modal .custom-modal {
  background-color: #fff;
  color: #333;
}

/* line 1791, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-modal .custom-modal-body label {
  color: #333 !important;
  text-shadow: none !important;
}

/* line 1793, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-modal .custom-modal-body .form-control {
  background-color: #fff !important;
  color: #333 !important;
  border-color: rgba(0, 0, 0, 0.2) !important;
}

/* line 1799, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-modal .form-errors {
  color: #dc3545;
}

/* line 1807, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 1050;
}

/* line 1820, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal .custom-modal {
  background-color: rgba(30, 30, 35, 0.98);
  color: #fff;
  border-radius: 8px;
  width: 90%;
  max-width: 480px;
  max-height: 90%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
}

/* line 1833, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal .custom-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 1841, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal .custom-modal-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

/* line 1846, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal .custom-modal-title i {
  margin-right: 8px;
  color: #c18859;
}

/* line 1849, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal .custom-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

/* line 1858, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal .custom-modal-close:hover {
  color: #fff;
}

/* line 1861, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal .custom-modal-body {
  padding: 20px;
}

/* line 1864, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal .custom-modal-body .form-group {
  margin-bottom: 16px;
}

/* line 1868, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal .custom-modal-body label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

/* line 1876, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal .custom-modal-body .form-control {
  width: 100%;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 0.9rem;
}

/* line 1885, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal .custom-modal-body .form-control:focus {
  border-color: #c18859;
  outline: none;
  box-shadow: 0 0 0 2px rgba(193, 136, 89, 0.2);
}

/* line 1891, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal .custom-modal-body .form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

/* line 1894, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal .custom-modal-body .form-errors {
  padding: 10px 12px;
  margin-bottom: 12px;
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 6px;
  color: #f5a5a5;
  font-size: 0.85rem;
}

/* line 1903, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal .custom-modal-body .form-errors p {
  margin: 0;
}

/* line 1904, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal .custom-modal-body .form-errors p + p {
  margin-top: 4px;
}

/* line 1908, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal .custom-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 1916, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal .form-button, .contract-builder-modal .crm-action-button, .contract-builder-modal .users-management-container .users-header .add-user-btn, .users-management-container .users-header .contract-builder-modal .add-user-btn {
  padding: 8px 16px;
  border-radius: 6px;
  border: none;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  background: #c18859;
  color: #fff;
  transition: background 0.15s;
}

/* line 1927, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal .form-button:hover, .contract-builder-modal .crm-action-button:hover, .contract-builder-modal .users-management-container .users-header .add-user-btn:hover, .users-management-container .users-header .contract-builder-modal .add-user-btn:hover {
  background: #b07342;
}

/* line 1928, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal .form-button:disabled, .contract-builder-modal .crm-action-button:disabled, .contract-builder-modal .users-management-container .users-header .add-user-btn:disabled, .users-management-container .users-header .contract-builder-modal .add-user-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* line 1930, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal .form-button.btn-secondary, .contract-builder-modal .btn-secondary.crm-action-button, .contract-builder-modal .crm-action-button.crm-action-button-secondary, .contract-builder-modal .users-management-container .users-header .btn-secondary.add-user-btn, .users-management-container .users-header .contract-builder-modal .btn-secondary.add-user-btn {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

/* line 1934, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal .form-button.btn-secondary:hover, .contract-builder-modal .btn-secondary.crm-action-button:hover, .contract-builder-modal .crm-action-button.crm-action-button-secondary:hover, .contract-builder-modal .users-management-container .users-header .btn-secondary.add-user-btn:hover, .users-management-container .users-header .contract-builder-modal .btn-secondary.add-user-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* line 1937, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal .form-button .button-loading, .contract-builder-modal .crm-action-button .button-loading, .contract-builder-modal .users-management-container .users-header .add-user-btn .button-loading, .users-management-container .users-header .contract-builder-modal .add-user-btn .button-loading {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   CONTRACT CREATION MODAL - Modal de choix type + parcours
   Style cohérent avec _organization_wizard_modal.scss
   ========================================================================== */
/* line 6, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
}

/* line 18, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-overlay.active, .contract-creation-modal-overlay[style*="display: flex"] {
  display: flex !important;
}

/* line 24, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-content {
  max-width: 700px;
  width: 95%;
  max-height: 85vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
  color: white;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  padding: 0;
}

/* line 42, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px 0;
}

/* line 48, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-header h2, .contract-creation-modal-header .h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

/* line 56, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color 0.2s ease;
  padding: 0;
  line-height: 1;
}

/* line 72, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-close:hover {
  color: #C38761;
}

/* line 77, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 16px 24px;
}

/* line 83, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-step {
  padding: 0 24px 24px;
}

/* line 87, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-step-title {
  text-align: center;
  margin-bottom: 24px;
}

/* line 91, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-step-title h3, .contract-creation-modal-step-title .h3 {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Cards de sélection */
/* line 100, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

/* line 106, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-cards--two {
  grid-template-columns: repeat(2, 1fr);
}

/* line 111, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: white;
  text-align: center;
}

/* line 125, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(195, 135, 97, 0.4);
  transform: translateY(-2px);
}

/* line 131, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-card.selected {
  background: rgba(195, 135, 97, 0.15);
  border-color: #C38761;
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.3);
}

/* line 137, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-card--wide {
  padding: 28px 20px;
}

/* line 142, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-card-icon {
  font-size: 1.8rem;
  color: #C38761;
  margin-bottom: 4px;
}

/* line 148, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-card-label {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

/* line 154, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-card-description {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.3;
}

/* Navigation */
/* line 161, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 8px;
  padding-top: 16px;
}

/* line 171, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-btn {
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  min-width: 120px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
}

/* line 185, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-btn--secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}

/* line 190, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

/* line 196, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-btn--primary {
  background: #C38761;
  border: 1px solid #C38761;
  color: white;
}

/* line 201, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-btn--primary:hover:not(:disabled) {
  background: #bc794f;
}

/* line 205, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-btn--primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ==========================================================================
   LIGHT MODE
   ========================================================================== */
/* line 215, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-content {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(20, 13, 35, 0.15);
  box-shadow: 0 8px 32px rgba(20, 13, 35, 0.15);
  color: #140D23;
}

/* line 221, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-content .contract-creation-modal-header h2, .lightmode .contract-creation-modal-content .contract-creation-modal-header .h2 {
  color: #140D23;
}

/* line 225, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-content .contract-creation-modal-close {
  color: #140D23;
}

/* line 228, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-content .contract-creation-modal-close:hover {
  color: #C38761;
}

/* line 233, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-content .contract-creation-modal-divider {
  border-top-color: rgba(20, 13, 35, 0.1);
}

/* line 237, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-content .contract-creation-modal-step-title h3, .lightmode .contract-creation-modal-content .contract-creation-modal-step-title .h3 {
  color: rgba(20, 13, 35, 0.85);
}

/* line 241, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-content .contract-creation-card {
  background: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.15);
  color: #140D23;
}

/* line 246, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-content .contract-creation-card:hover {
  background: rgba(20, 13, 35, 0.06);
  border-color: rgba(195, 135, 97, 0.4);
}

/* line 251, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-content .contract-creation-card.selected {
  background: rgba(195, 135, 97, 0.08);
  border-color: #C38761;
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.2);
}

/* line 258, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-content .contract-creation-card-icon {
  color: #C38761;
}

/* line 262, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-content .contract-creation-card-label {
  color: #140D23;
}

/* line 266, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-content .contract-creation-card-description {
  color: rgba(20, 13, 35, 0.6);
}

/* line 270, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-content .contract-creation-modal-nav {
  border-top-color: rgba(20, 13, 35, 0.1);
}

/* line 275, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-content .contract-creation-modal-btn--secondary {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 280, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-content .contract-creation-modal-btn--secondary:hover {
  background: rgba(20, 13, 35, 0.1);
}

/* line 285, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-content .contract-creation-modal-btn--primary {
  background: #C38761;
  border-color: #C38761;
}

/* line 289, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-content .contract-creation-modal-btn--primary:hover:not(:disabled) {
  background: #bc794f;
}

/* ==========================================================================
   DELETE MODAL - Confirmation de suppression d'un modèle
   ========================================================================== */
/* line 300, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.contract-delete-modal-body {
  text-align: center;
  padding: 8px 0 20px;
}

/* line 305, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.contract-delete-modal-icon {
  font-size: 2.5rem;
  color: #dc3545;
  margin-bottom: 16px;
}

/* line 311, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.contract-delete-modal-message {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 8px;
}

/* line 316, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.contract-delete-modal-message strong {
  color: #fff;
}

/* line 321, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.contract-delete-modal-warning {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* line 327, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-btn--danger {
  background: #dc3545;
  border: 1px solid #dc3545;
  color: white;
}

/* line 332, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-btn--danger:hover {
  background: #c62232;
}

/* line 337, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-delete-modal-message {
  color: rgba(0, 0, 0, 0.75);
}

/* line 340, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-delete-modal-message strong {
  color: #000;
}

/* line 345, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-delete-modal-warning {
  color: rgba(0, 0, 0, 0.45);
}

/* line 349, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-btn--danger {
  background: #dc3545;
  border-color: #dc3545;
  color: white;
}

/* line 354, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-btn--danger:hover {
  background: #c62232;
}

/* ==========================================================================
   INPUT MODAL - Champ de saisie dans la modal (section / variable)
   ========================================================================== */
/* line 362, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-step .contract-creation-modal-input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  outline: none;
  transition: border-color 0.2s ease;
}

/* line 373, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-step .contract-creation-modal-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* line 377, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-step .contract-creation-modal-input:focus {
  border-color: #C38761;
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.2);
}

/* line 383, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-step .contract-creation-modal-field-label {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
}

/* line 391, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-step .contract-creation-modal-input {
  background: rgba(20, 13, 35, 0.04);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 396, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-step .contract-creation-modal-input::placeholder {
  color: rgba(20, 13, 35, 0.4);
}

/* line 400, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-step .contract-creation-modal-input:focus {
  border-color: #C38761;
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.2);
}

/* line 406, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-step .contract-creation-modal-field-label {
  color: rgba(20, 13, 35, 0.85);
}

@media (max-width: 768px) {
  /* line 411, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
  .contract-creation-modal-cards {
    grid-template-columns: 1fr;
  }
  /* line 414, app/assets/stylesheets/pages/servicespace/back-office/adv/contract_management/../../../../../shared/_contract_creation_modal.scss */
  .contract-creation-modal-cards--two {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   NEW/EDIT GENERAL CONDITIONS OF SALES - MODULE ADV (Harmonisé avec CATEGORY MANAGEMENT)
   ========================================================================== */
/* line 5, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-capsule,
.adv-edit-general-conditions-of-sales-capsule {
  width: 85%;
  margin: 5px auto;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 rgba(232, 232, 232, 0.08);
  padding: 32px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.8rem;
  gap: 0;
  color: #C38761;
}

/* line 19, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.lightmode .adv-new-general-conditions-of-sales-capsule, .lightmode .adv-edit-general-conditions-of-sales-capsule {
  background-color: transparent;
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 26, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.new-general-conditions-of-sales-form,
.edit-general-conditions-of-sales-form {
  width: 100%;
}

/* line 31, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-header,
.adv-edit-general-conditions-of-sales-header {
  width: 100%;
  text-align: center;
  margin-bottom: 18px;
}

/* line 36, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-header h2, .adv-new-general-conditions-of-sales-header .h2,
.adv-edit-general-conditions-of-sales-header h2,
.adv-edit-general-conditions-of-sales-header .h2 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: inherit;
}

/* line 42, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-header .adv-new-general-conditions-of-sales-description,
.adv-new-general-conditions-of-sales-header .adv-edit-general-conditions-of-sales-description,
.adv-edit-general-conditions-of-sales-header .adv-new-general-conditions-of-sales-description,
.adv-edit-general-conditions-of-sales-header .adv-edit-general-conditions-of-sales-description {
  font-size: 0.8rem;
  color: #e8e8e8;
  margin-bottom: 0;
}

/* line 47, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.lightmode .adv-new-general-conditions-of-sales-header .adv-new-general-conditions-of-sales-description, .lightmode .adv-new-general-conditions-of-sales-header .adv-edit-general-conditions-of-sales-description, .lightmode .adv-edit-general-conditions-of-sales-header .adv-new-general-conditions-of-sales-description, .lightmode .adv-edit-general-conditions-of-sales-header .adv-edit-general-conditions-of-sales-description {
  color: #140D23;
}

/* line 50, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.nightmode .adv-new-general-conditions-of-sales-header .adv-new-general-conditions-of-sales-description, .nightmode .adv-new-general-conditions-of-sales-header .adv-edit-general-conditions-of-sales-description, .nightmode .adv-edit-general-conditions-of-sales-header .adv-new-general-conditions-of-sales-description, .nightmode .adv-edit-general-conditions-of-sales-header .adv-edit-general-conditions-of-sales-description {
  color: #FFFFFF;
}

/* line 56, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-form,
.adv-edit-general-conditions-of-sales-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}

/* line 67, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-form-group,
.adv-edit-general-conditions-of-sales-form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* line 75, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-label,
.adv-edit-general-conditions-of-sales-label {
  display: block;
  font-weight: 600;
  color: inherit;
  font-size: 0.9rem;
  opacity: 1;
  margin-bottom: 0.25rem;
}

/* line 84, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.lightmode .adv-new-general-conditions-of-sales-label, .lightmode .adv-edit-general-conditions-of-sales-label {
  color: #140D23;
}

/* line 88, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.nightmode .adv-new-general-conditions-of-sales-label, .nightmode .adv-edit-general-conditions-of-sales-label {
  color: #FFFFFF;
}

/* line 93, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-input,
.adv-edit-general-conditions-of-sales-input {
  width: 100%;
  border-radius: 14px;
  border: 1.5px solid rgba(232, 232, 232, 0.7);
  background: transparent;
  font-size: 0.8rem;
  color: inherit;
  padding: 14px 16px;
  margin: 0 auto;
  box-sizing: border-box;
  font-family: inherit;
  text-align: left;
  transition: border-color 0.2s, box-shadow 0.2s;
}

/* line 107, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-input:focus,
.adv-edit-general-conditions-of-sales-input:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.15);
}

/* line 112, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-input::placeholder,
.adv-edit-general-conditions-of-sales-input::placeholder {
  color: #e8e8e8;
  opacity: 1;
  font-size: 0.7rem;
  font-family: inherit;
}

/* line 118, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.lightmode .adv-new-general-conditions-of-sales-input, .lightmode .adv-edit-general-conditions-of-sales-input {
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.3);
  background: rgba(255, 255, 255, 0.7);
}

/* line 122, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.lightmode .adv-new-general-conditions-of-sales-input::placeholder, .lightmode .adv-edit-general-conditions-of-sales-input::placeholder {
  color: rgba(20, 13, 35, 0.5);
}

/* line 126, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.nightmode .adv-new-general-conditions-of-sales-input, .nightmode .adv-edit-general-conditions-of-sales-input {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(20, 13, 35, 0.2);
}

/* line 130, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.nightmode .adv-new-general-conditions-of-sales-input::placeholder, .nightmode .adv-edit-general-conditions-of-sales-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

/* line 136, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-input-with-border,
.adv-edit-general-conditions-of-sales-input-with-border {
  border: 2px solid rgba(195, 135, 97, 0.3) !important;
}

/* line 140, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-input-with-border:focus,
.adv-edit-general-conditions-of-sales-input-with-border:focus {
  border-color: #C38761 !important;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.2) !important;
}

/* line 145, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.lightmode .adv-new-general-conditions-of-sales-input-with-border, .lightmode .adv-edit-general-conditions-of-sales-input-with-border {
  border-color: rgba(20, 13, 35, 0.4) !important;
}

/* line 148, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.lightmode .adv-new-general-conditions-of-sales-input-with-border:focus, .lightmode .adv-edit-general-conditions-of-sales-input-with-border:focus {
  border-color: #140D23 !important;
  box-shadow: 0 0 0 3px rgba(20, 13, 35, 0.2) !important;
}

/* line 155, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-select,
.adv-edit-general-conditions-of-sales-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  cursor: pointer;
}

/* line 164, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-select-small,
.adv-edit-general-conditions-of-sales-select-small {
  font-size: 0.75rem !important;
}

/* line 168, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-select-small::placeholder,
.adv-edit-general-conditions-of-sales-select-small::placeholder {
  font-size: 0.7rem !important;
}

/* line 172, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-select-small option,
.adv-edit-general-conditions-of-sales-select-small option {
  font-size: 0.75rem;
}

/* line 177, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-file-label,
.adv-edit-general-conditions-of-sales-file-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: inherit;
  font-size: 0.9rem;
}

/* line 186, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-file,
.adv-edit-general-conditions-of-sales-file {
  cursor: pointer;
}

/* line 189, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-file::-webkit-file-upload-button,
.adv-edit-general-conditions-of-sales-file::-webkit-file-upload-button {
  background: #C38761;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.8rem;
  cursor: pointer;
  margin-right: 10px;
}

/* line 198, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-file::-webkit-file-upload-button:hover,
.adv-edit-general-conditions-of-sales-file::-webkit-file-upload-button:hover {
  background: #C38761;
}

/* line 202, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.lightmode .adv-new-general-conditions-of-sales-file::-webkit-file-upload-button, .lightmode .adv-edit-general-conditions-of-sales-file::-webkit-file-upload-button {
  background: #140D23;
}

/* line 204, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.lightmode .adv-new-general-conditions-of-sales-file::-webkit-file-upload-button:hover, .lightmode .adv-edit-general-conditions-of-sales-file::-webkit-file-upload-button:hover {
  background: #C38761;
}

/* line 210, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-file-info,
.adv-edit-general-conditions-of-sales-file-info {
  margin-top: 0.5rem;
  padding: 0.5rem;
  background: rgba(195, 135, 97, 0.1);
  border-radius: 6px;
  border-left: 3px solid #C38761;
}

/* line 218, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-file-info p,
.adv-edit-general-conditions-of-sales-file-info p {
  margin: 0;
  font-size: 0.75rem;
  color: #C38761;
  font-style: italic;
}

/* line 225, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.lightmode .adv-new-general-conditions-of-sales-file-info, .lightmode .adv-edit-general-conditions-of-sales-file-info {
  background: rgba(20, 13, 35, 0.1);
  border-left-color: #140D23;
}

/* line 229, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.lightmode .adv-new-general-conditions-of-sales-file-info p, .lightmode .adv-edit-general-conditions-of-sales-file-info p {
  color: #140D23;
}

/* line 235, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.adv-edit-general-conditions-of-sales-current-files {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(195, 135, 97, 0.1);
  border-radius: 8px;
  border-left: 4px solid #C38761;
}

/* line 242, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.adv-edit-general-conditions-of-sales-current-files h4, .adv-edit-general-conditions-of-sales-current-files .h4 {
  margin: 0 0 0.75rem 0;
  font-size: 0.9rem;
  color: #C38761;
  font-weight: 600;
}

/* line 249, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.lightmode .adv-edit-general-conditions-of-sales-current-files {
  background: rgba(20, 13, 35, 0.1);
  border-left-color: #140D23;
}

/* line 253, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.lightmode .adv-edit-general-conditions-of-sales-current-files h4, .lightmode .adv-edit-general-conditions-of-sales-current-files .h4 {
  color: #140D23;
}

/* line 259, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.adv-edit-general-conditions-of-sales-files-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* line 265, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.adv-edit-general-conditions-of-sales-file-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

/* line 274, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.lightmode .adv-edit-general-conditions-of-sales-file-item {
  background: rgba(255, 255, 255, 0.3);
}

/* line 279, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.adv-edit-general-conditions-of-sales-file-name {
  font-size: 0.8rem;
  color: inherit;
  font-weight: 500;
}

/* line 285, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.adv-edit-general-conditions-of-sales-file-download {
  color: #C38761;
  text-decoration: none;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

/* line 293, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.adv-edit-general-conditions-of-sales-file-download:hover {
  background: rgba(195, 135, 97, 0.2);
  color: #C38761;
}

/* line 298, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.lightmode .adv-edit-general-conditions-of-sales-file-download {
  color: #140D23;
}

/* line 301, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.lightmode .adv-edit-general-conditions-of-sales-file-download:hover {
  background: rgba(20, 13, 35, 0.2);
}

/* line 307, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-actions,
.adv-edit-general-conditions-of-sales-actions {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
}

/* line 317, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.form-button, .crm-action-button, .users-management-container .users-header .add-user-btn {
  border-radius: 8px;
  border: none;
  background: #C38761;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 22px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 6px rgba(195, 135, 97, 0.08);
  text-decoration: none;
  display: inline-block;
}

/* line 330, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.form-button:hover, .crm-action-button:hover, .users-management-container .users-header .add-user-btn:hover {
  background: #C38761;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(195, 135, 97, 0.12);
}

/* line 337, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.form-button-cancel {
  background: #FFFFFF;
  color: #e8e8e8;
  border: 1.5px solid #e8e8e8;
}

/* line 341, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.form-button-cancel:hover {
  background: #e8e8e8;
  color: #FFFFFF;
}

/* line 347, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 353, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-capsule span {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 359, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-capsule.lightmode span {
  color: #C38761;
}

/* line 363, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-capsule.nightmode span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 367, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-capsule.lightmode p {
  color: #140D23;
}

/* line 371, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-capsule.nightmode p {
  color: #FFFFFF;
}

/* line 375, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-capsule.lightmode i {
  color: #140D23;
}

/* line 379, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-capsule.nightmode i {
  color: #FFFFFF;
}

/* Responsive design */
@media (max-width: 768px) {
  /* line 385, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
  .adv-new-general-conditions-of-sales-capsule,
.adv-edit-general-conditions-of-sales-capsule {
    width: 95%;
    padding: 20px 15px;
  }
  /* line 391, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
  .adv-new-general-conditions-of-sales-form,
.adv-edit-general-conditions-of-sales-form {
    width: 100%;
  }
  /* line 396, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
  .adv-new-general-conditions-of-sales-actions,
.adv-edit-general-conditions-of-sales-actions {
    flex-direction: column;
    width: initial;
    gap: 8px;
  }
  /* line 403, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_new_general_conditions_of_sales.scss */
  .form-button, .crm-action-button, .users-management-container .users-header .add-user-btn {
    width: 100%;
    text-align: center;
  }
}

/* ==========================================================================
   GENERAL CONDITIONS OF SALES LIST - MODULE ADV (Harmonisé avec SHOW CATEGORY)
   ========================================================================== */
/* line 5, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-capsule {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  font-size: 0.8rem;
  gap: 10px;
  color: #FFFFFF;
  overflow-x: hidden;
}

/* line 17, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-capsule h1, .adv-general-conditions-of-sales-list-capsule .h1 {
  all: unset;
  font-size: 1.5rem;
  color: #FFFFFF;
}

/* line 23, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-capsule.lightmode {
  color: #140D23;
}

/* line 25, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-capsule.lightmode h1, .adv-general-conditions-of-sales-list-capsule.lightmode .h1 {
  color: #140D23;
}

/* line 32, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 40, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.lightmode .adv-general-conditions-of-sales-list-header {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 46, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-title h1, .adv-general-conditions-of-sales-list-title .h1 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
  text-align: center;
}

/* line 53, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.lightmode .adv-general-conditions-of-sales-list-title h1, .lightmode .adv-general-conditions-of-sales-list-title .h1 {
  color: #140D23;
}

/* line 60, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-grid-capsule {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  overflow-y: auto;
  margin-bottom: 0;
}

/* line 68, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-grid-capsule::-webkit-scrollbar {
  width: 4px;
}

/* line 71, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-grid-capsule::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

/* line 74, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.lightmode .adv-general-conditions-of-sales-list-grid-capsule::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 78, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-grid-capsule::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 2px;
}

/* line 82, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-grid-capsule::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 84, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.lightmode .adv-general-conditions-of-sales-list-grid-capsule::-webkit-scrollbar-thumb:hover {
  background: #140D23;
}

/* line 90, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-grid {
  width: 80%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 20px;
  padding: 15px;
}

/* line 99, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-card-create {
  background-color: rgba(195, 135, 97, 0.1);
  border: 2px dashed rgba(195, 135, 97, 0.3);
  text-decoration: none;
  cursor: pointer;
}

/* line 105, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-card-create:hover {
  background-color: rgba(195, 135, 97, 0.15);
  border-color: rgba(195, 135, 97, 0.5);
  text-decoration: none;
}

/* line 111, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.lightmode .adv-general-conditions-of-sales-list-card-create {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 115, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.lightmode .adv-general-conditions-of-sales-list-card-create:hover {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 122, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-card-create-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 20px 0;
}

/* line 131, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-card-create-content i {
  font-size: 2.5rem;
  color: #C38761;
  opacity: 0.8;
  transition: transform 0.2s ease-in-out;
}

/* line 137, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.lightmode .adv-general-conditions-of-sales-list-card-create-content i {
  color: #140D23;
}

/* line 142, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-card-create-content p {
  margin: 0;
  font-size: 0.8rem;
  color: #FFFFFF;
  text-align: center;
  line-height: 1.4;
}

/* line 149, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.lightmode .adv-general-conditions-of-sales-list-card-create-content p {
  color: #140D23;
}

/* line 158, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-card-create:hover .adv-general-conditions-of-sales-list-card-create-content i {
  transform: scale(1.1);
}

/* line 165, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

/* line 173, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* line 178, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.lightmode .adv-general-conditions-of-sales-list-card {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 185, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 15px 20px 10px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 193, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.lightmode .adv-general-conditions-of-sales-list-card-header {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 198, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-card-title {
  flex: 1;
}

/* line 201, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-card-title h3, .adv-general-conditions-of-sales-list-card-title .h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
  text-align: center;
}

/* line 208, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.lightmode .adv-general-conditions-of-sales-list-card-title h3, .lightmode .adv-general-conditions-of-sales-list-card-title .h3 {
  color: #140D23;
}

/* line 214, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-card-badge {
  display: inline-block;
  background: rgba(195, 135, 97, 0.2);
  border-radius: 20px;
  padding: 0.25rem 0.75rem;
}

/* line 220, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-card-badge .adv-general-conditions-of-sales-list-card-badge-text {
  font-size: 0.8rem;
  font-weight: 500;
  color: #C38761;
}

/* line 225, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.lightmode .adv-general-conditions-of-sales-list-card-badge .adv-general-conditions-of-sales-list-card-badge-text {
  color: #140D23;
}

/* line 231, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-card-actions {
  display: flex;
  gap: 0.5rem;
}

/* line 236, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-card-action {
  color: #FFFFFF;
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 6px;
  transition: background-color 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  cursor: pointer;
}

/* line 249, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-card-action:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

/* line 254, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-card-action.adv-general-conditions-of-sales-list-card-action-delete:hover {
  background: rgba(195, 135, 97, 0.8);
}

/* line 258, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-card-action i {
  font-size: 0.9rem;
}

/* line 262, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.lightmode .adv-general-conditions-of-sales-list-card-action {
  color: #140D23;
}

/* line 265, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.lightmode .adv-general-conditions-of-sales-list-card-action:hover {
  background: rgba(20, 13, 35, 0.1);
}

/* line 272, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 15px 20px;
  gap: 15px;
  height: 70%;
  overflow-y: auto;
}

/* line 280, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-card-content::-webkit-scrollbar {
  width: 4px;
}

/* line 283, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-card-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

/* line 286, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.lightmode .adv-general-conditions-of-sales-list-card-content::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 290, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-card-content::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 2px;
}

/* line 294, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-card-content::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 296, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.lightmode .adv-general-conditions-of-sales-list-card-content::-webkit-scrollbar-thumb:hover {
  background: #140D23;
}

/* line 302, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-new-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 15px 20px;
  gap: 15px;
  height: 70%;
}

/* line 312, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-card-main-info {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

/* line 319, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-card-category,
.adv-general-conditions-of-sales-list-card-files-count {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* line 330, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-card-category i,
.adv-general-conditions-of-sales-list-card-files-count i {
  color: #C38761;
  font-size: 0.8rem;
}

/* line 334, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.lightmode .adv-general-conditions-of-sales-list-card-category i, .lightmode .adv-general-conditions-of-sales-list-card-files-count i {
  color: #140D23;
}

/* line 339, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-card-category span,
.adv-general-conditions-of-sales-list-card-files-count span {
  color: #FFFFFF;
}

/* line 342, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.lightmode .adv-general-conditions-of-sales-list-card-category span, .lightmode .adv-general-conditions-of-sales-list-card-files-count span {
  color: #140D23;
}

/* line 347, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.lightmode .adv-general-conditions-of-sales-list-card-category, .lightmode .adv-general-conditions-of-sales-list-card-files-count {
  background: rgba(20, 13, 35, 0.1);
}

/* line 353, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-card-files-section {
  margin-bottom: 1rem;
}

/* line 356, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-card-files-section h4, .adv-general-conditions-of-sales-list-card-files-section .h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 365, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.lightmode .adv-general-conditions-of-sales-list-card-files-section h4, .lightmode .adv-general-conditions-of-sales-list-card-files-section .h4 {
  color: #140D23;
}

/* line 369, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-card-files-section h4::before, .adv-general-conditions-of-sales-list-card-files-section .h4::before {
  content: '';
  width: 4px;
  height: 16px;
  background: #C38761;
  border-radius: 2px;
}

/* line 376, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.lightmode .adv-general-conditions-of-sales-list-card-files-section h4::before, .lightmode .adv-general-conditions-of-sales-list-card-files-section .h4::before {
  background: #140D23;
}

/* line 383, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-card-files {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* line 389, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-card-file {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: background-color 0.2s ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 399, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-card-file:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* line 403, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.lightmode .adv-general-conditions-of-sales-list-card-file {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 407, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.lightmode .adv-general-conditions-of-sales-list-card-file:hover {
  background: rgba(20, 13, 35, 0.1);
}

/* line 413, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-card-file-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

/* line 419, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-card-file-info i {
  color: #C38761;
  font-size: 0.9rem;
}

/* line 423, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.lightmode .adv-general-conditions-of-sales-list-card-file-info i {
  color: #140D23;
}

/* line 428, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-card-file-info .adv-general-conditions-of-sales-list-card-file-name {
  font-size: 0.85rem;
  color: #FFFFFF;
  font-weight: 500;
  word-break: break-word;
}

/* line 434, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.lightmode .adv-general-conditions-of-sales-list-card-file-info .adv-general-conditions-of-sales-list-card-file-name {
  color: #140D23;
}

/* line 440, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-card-file-download {
  color: #C38761;
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 6px;
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

/* line 453, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-card-file-download:hover {
  background: #C38761;
  color: #FFFFFF;
  transform: scale(1.1);
}

/* line 459, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-card-file-download i {
  font-size: 0.8rem;
}

/* line 463, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.lightmode .adv-general-conditions-of-sales-list-card-file-download {
  color: #140D23;
}

/* line 466, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.lightmode .adv-general-conditions-of-sales-list-card-file-download:hover {
  background: #140D23;
  color: #FFFFFF;
}

/* line 474, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-card-metadata {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 481, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.lightmode .adv-general-conditions-of-sales-list-card-metadata {
  border-top-color: rgba(20, 13, 35, 0.1);
}

/* line 486, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-card-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 493, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-card-date i {
  font-size: 0.75rem;
  width: 12px;
  color: #C38761;
}

/* line 498, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.lightmode .adv-general-conditions-of-sales-list-card-date i {
  color: #140D23;
}

/* line 503, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.adv-general-conditions-of-sales-list-card-date span {
  font-weight: 400;
}

/* line 506, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
.lightmode .adv-general-conditions-of-sales-list-card-date span {
  color: rgba(20, 13, 35, 0.7);
}

@media (max-width: 1024px) {
  /* line 514, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
  .adv-general-conditions-of-sales-list-header {
    text-align: center;
  }
}

@media (max-width: 768px) {
  /* line 520, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
  .adv-general-conditions-of-sales-list-capsule {
    padding: 1rem;
  }
  /* line 524, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
  .adv-general-conditions-of-sales-list-grid {
    width: 95%;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  /* line 530, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
  .adv-general-conditions-of-sales-list-title h1, .adv-general-conditions-of-sales-list-title .h1 {
    font-size: 1.5rem;
  }
  /* line 534, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
  .adv-general-conditions-of-sales-list-card-main-info {
    flex-direction: column;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  /* line 541, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
  .adv-general-conditions-of-sales-list-card-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  /* line 547, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
  .adv-general-conditions-of-sales-list-card-actions {
    align-self: flex-end;
  }
  /* line 551, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
  .adv-general-conditions-of-sales-list-card-file {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
  /* line 557, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales_list.scss */
  .adv-general-conditions-of-sales-list-card-file-download {
    align-self: flex-end;
  }
}

/* line 2, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
.adv-general-conditions-of-sales-list-capsule {
  background: var(--background-color);
  color: var(--text-color);
}

/* line 6, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
.adv-general-conditions-of-sales-list-capsule .adv-general-conditions-of-sales-list-row0 {
  margin-bottom: 2rem;
  text-align: center;
}

/* line 10, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
.adv-general-conditions-of-sales-list-capsule .adv-general-conditions-of-sales-list-row0 h1, .adv-general-conditions-of-sales-list-capsule .adv-general-conditions-of-sales-list-row0 .h1 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
}

/* line 18, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
.adv-general-conditions-of-sales-list-capsule .adv-general-conditions-of-sales-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* line 26, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
.adv-general-conditions-of-sales-list-capsule .adv-general-conditions-of-sales-list-card {
  height: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

/* line 34, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
.adv-general-conditions-of-sales-list-capsule .adv-general-conditions-of-sales-list-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* line 39, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
.adv-general-conditions-of-sales-list-capsule .adv-general-conditions-of-sales-list-card.adv-general-conditions-of-sales-list-card-create {
  background-color: rgba(195, 135, 97, 0.1);
  border: 2px dashed rgba(195, 135, 97, 0.3);
}

/* line 43, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
.adv-general-conditions-of-sales-list-capsule .adv-general-conditions-of-sales-list-card.adv-general-conditions-of-sales-list-card-create:hover {
  background-color: rgba(195, 135, 97, 0.15);
  border-color: rgba(195, 135, 97, 0.5);
}

/* line 48, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
.adv-general-conditions-of-sales-list-capsule .adv-general-conditions-of-sales-list-card.adv-general-conditions-of-sales-list-card-create .adv-general-conditions-of-sales-list-card-create-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  color: var(--primary-color);
}

/* line 57, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
.adv-general-conditions-of-sales-list-capsule .adv-general-conditions-of-sales-list-card.adv-general-conditions-of-sales-list-card-create .adv-general-conditions-of-sales-list-card-create-content i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* line 62, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
.adv-general-conditions-of-sales-list-capsule .adv-general-conditions-of-sales-list-card.adv-general-conditions-of-sales-list-card-create .adv-general-conditions-of-sales-list-card-create-content p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}

/* line 71, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
.adv-general-conditions-of-sales-list-capsule .adv-general-conditions-of-sales-list-card-header {
  background: var(--primary-color);
  color: white;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* line 79, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
.adv-general-conditions-of-sales-list-capsule .adv-general-conditions-of-sales-list-card-header h3, .adv-general-conditions-of-sales-list-capsule .adv-general-conditions-of-sales-list-card-header .h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

/* line 85, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
.adv-general-conditions-of-sales-list-capsule .adv-general-conditions-of-sales-list-card-header .adv-general-conditions-of-sales-list-card-actions {
  display: flex;
  gap: 0.5rem;
}

/* line 90, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
.adv-general-conditions-of-sales-list-capsule .adv-general-conditions-of-sales-list-card-header .adv-general-conditions-of-sales-list-card-action {
  color: white;
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

/* line 97, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
.adv-general-conditions-of-sales-list-capsule .adv-general-conditions-of-sales-list-card-header .adv-general-conditions-of-sales-list-card-action:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* line 101, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
.adv-general-conditions-of-sales-list-capsule .adv-general-conditions-of-sales-list-card-header .adv-general-conditions-of-sales-list-card-action.adv-general-conditions-of-sales-list-card-action-delete:hover {
  background: rgba(220, 53, 69, 0.8);
}

/* line 105, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
.adv-general-conditions-of-sales-list-capsule .adv-general-conditions-of-sales-list-card-header .adv-general-conditions-of-sales-list-card-action i {
  font-size: 0.9rem;
}

/* line 111, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
.adv-general-conditions-of-sales-list-capsule .adv-general-conditions-of-sales-list-card-content {
  padding: 1.5rem;
}

/* line 115, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
.adv-general-conditions-of-sales-list-capsule .adv-general-conditions-of-sales-list-card-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* line 121, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
.adv-general-conditions-of-sales-list-capsule .adv-general-conditions-of-sales-list-card-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light-color);
}

/* line 128, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
.adv-general-conditions-of-sales-list-capsule .adv-general-conditions-of-sales-list-card-detail:last-child {
  border-bottom: none;
}

/* line 132, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
.adv-general-conditions-of-sales-list-capsule .adv-general-conditions-of-sales-list-card-detail .adv-general-conditions-of-sales-list-card-detail-label {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* line 138, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
.adv-general-conditions-of-sales-list-capsule .adv-general-conditions-of-sales-list-card-detail .adv-general-conditions-of-sales-list-card-detail-value {
  font-weight: 500;
  color: var(--text-color);
  font-size: 0.9rem;
}

/* line 145, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
.adv-general-conditions-of-sales-list-capsule .adv-general-conditions-of-sales-list-row2 {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* line 151, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
.adv-general-conditions-of-sales-list-capsule .adv-general-conditions-of-sales-list-row2 .form-button, .adv-general-conditions-of-sales-list-capsule .adv-general-conditions-of-sales-list-row2 .crm-action-button, .adv-general-conditions-of-sales-list-capsule .adv-general-conditions-of-sales-list-row2 .users-management-container .users-header .add-user-btn, .users-management-container .users-header .adv-general-conditions-of-sales-list-capsule .adv-general-conditions-of-sales-list-row2 .add-user-btn {
  padding: 0.75rem 1.5rem;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

/* line 160, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
.adv-general-conditions-of-sales-list-capsule .adv-general-conditions-of-sales-list-row2 .form-button:hover, .adv-general-conditions-of-sales-list-capsule .adv-general-conditions-of-sales-list-row2 .crm-action-button:hover, .adv-general-conditions-of-sales-list-capsule .adv-general-conditions-of-sales-list-row2 .users-management-container .users-header .add-user-btn:hover, .users-management-container .users-header .adv-general-conditions-of-sales-list-capsule .adv-general-conditions-of-sales-list-row2 .add-user-btn:hover {
  background: var(--primary-hover);
}

@media (max-width: 768px) {
  /* line 169, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
  .adv-general-conditions-of-sales-list-capsule {
    padding: 1rem;
  }
  /* line 172, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
  .adv-general-conditions-of-sales-list-capsule .adv-general-conditions-of-sales-list-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  /* line 177, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
  .adv-general-conditions-of-sales-list-capsule .adv-general-conditions-of-sales-list-row0 h1, .adv-general-conditions-of-sales-list-capsule .adv-general-conditions-of-sales-list-row0 .h1 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  /* line 185, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
  .adv-general-conditions-of-sales-list-capsule .adv-general-conditions-of-sales-list-card-header {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  /* line 190, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
  .adv-general-conditions-of-sales-list-capsule .adv-general-conditions-of-sales-list-card-header .adv-general-conditions-of-sales-list-card-actions {
    justify-content: center;
  }
  /* line 195, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
  .adv-general-conditions-of-sales-list-capsule .adv-general-conditions-of-sales-list-card-detail {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}

/* line 204, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-capsule,
.adv-edit-general-conditions-of-sales-capsule {
  padding: 2rem;
  min-height: 100vh;
  color: var(--text-color);
}

/* line 210, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-row0,
.adv-new-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-row0,
.adv-edit-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-row0,
.adv-edit-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-row0 {
  margin-bottom: 2rem;
  text-align: center;
}

/* line 215, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-row0 h1, .adv-new-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-row0 .h1,
.adv-new-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-row0 h1,
.adv-new-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-row0 .h1,
.adv-edit-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-row0 h1,
.adv-edit-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-row0 .h1,
.adv-edit-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-row0 h1,
.adv-edit-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-row0 .h1 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
}

/* line 223, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-capsule,
.adv-new-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-capsule,
.adv-edit-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-capsule,
.adv-edit-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-capsule {
  max-width: 600px;
  margin: 0 auto;
}

/* line 229, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form,
.adv-new-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form,
.adv-edit-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form,
.adv-edit-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form {
  background: var(--card-background);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
}

/* line 238, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-group,
.adv-new-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-group,
.adv-edit-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-group,
.adv-edit-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-group {
  margin-bottom: 1.5rem;
}

/* line 242, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-group label,
.adv-new-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-group label,
.adv-edit-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-group label,
.adv-edit-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-color);
}

/* line 249, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-group .adv-new-general-conditions-of-sales-input,
.adv-new-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-group .adv-edit-general-conditions-of-sales-input,
.adv-new-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-group .adv-new-general-conditions-of-sales-select,
.adv-new-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-group .adv-edit-general-conditions-of-sales-select,
.adv-new-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-group .adv-new-general-conditions-of-sales-input,
.adv-new-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-group .adv-edit-general-conditions-of-sales-input,
.adv-new-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-group .adv-new-general-conditions-of-sales-select,
.adv-new-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-group .adv-edit-general-conditions-of-sales-select,
.adv-edit-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-group .adv-new-general-conditions-of-sales-input,
.adv-edit-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-group .adv-edit-general-conditions-of-sales-input,
.adv-edit-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-group .adv-new-general-conditions-of-sales-select,
.adv-edit-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-group .adv-edit-general-conditions-of-sales-select,
.adv-edit-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-group .adv-new-general-conditions-of-sales-input,
.adv-edit-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-group .adv-edit-general-conditions-of-sales-input,
.adv-edit-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-group .adv-new-general-conditions-of-sales-select,
.adv-edit-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-group .adv-edit-general-conditions-of-sales-select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--input-background);
  color: var(--text-color);
  font-size: 1rem;
}

/* line 261, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-group .adv-new-general-conditions-of-sales-input:focus,
.adv-new-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-group .adv-edit-general-conditions-of-sales-input:focus,
.adv-new-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-group .adv-new-general-conditions-of-sales-select:focus,
.adv-new-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-group .adv-edit-general-conditions-of-sales-select:focus,
.adv-new-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-group .adv-new-general-conditions-of-sales-input:focus,
.adv-new-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-group .adv-edit-general-conditions-of-sales-input:focus,
.adv-new-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-group .adv-new-general-conditions-of-sales-select:focus,
.adv-new-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-group .adv-edit-general-conditions-of-sales-select:focus,
.adv-edit-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-group .adv-new-general-conditions-of-sales-input:focus,
.adv-edit-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-group .adv-edit-general-conditions-of-sales-input:focus,
.adv-edit-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-group .adv-new-general-conditions-of-sales-select:focus,
.adv-edit-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-group .adv-edit-general-conditions-of-sales-select:focus,
.adv-edit-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-group .adv-new-general-conditions-of-sales-input:focus,
.adv-edit-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-group .adv-edit-general-conditions-of-sales-input:focus,
.adv-edit-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-group .adv-new-general-conditions-of-sales-select:focus,
.adv-edit-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-group .adv-edit-general-conditions-of-sales-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(var(--primary-color-rgb), 0.2);
}

/* line 268, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-group .adv-new-general-conditions-of-sales-file,
.adv-new-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-group .adv-edit-general-conditions-of-sales-file,
.adv-new-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-group .adv-new-general-conditions-of-sales-file,
.adv-new-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-group .adv-edit-general-conditions-of-sales-file,
.adv-edit-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-group .adv-new-general-conditions-of-sales-file,
.adv-edit-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-group .adv-edit-general-conditions-of-sales-file,
.adv-edit-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-group .adv-new-general-conditions-of-sales-file,
.adv-edit-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-group .adv-edit-general-conditions-of-sales-file {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--input-background);
  color: var(--text-color);
}

/* line 278, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-group .adv-edit-general-conditions-of-sales-current-file,
.adv-new-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-group .adv-edit-general-conditions-of-sales-current-file,
.adv-edit-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-group .adv-edit-general-conditions-of-sales-current-file,
.adv-edit-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-group .adv-edit-general-conditions-of-sales-current-file {
  margin-top: 0.5rem;
  padding: 0.5rem;
  background: var(--info-background);
  border-radius: 6px;
  border-left: 4px solid var(--info-color);
}

/* line 285, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-group .adv-edit-general-conditions-of-sales-current-file p,
.adv-new-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-group .adv-edit-general-conditions-of-sales-current-file p,
.adv-edit-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-group .adv-edit-general-conditions-of-sales-current-file p,
.adv-edit-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-group .adv-edit-general-conditions-of-sales-current-file p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--info-color);
}

/* line 293, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-actions,
.adv-new-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-actions,
.adv-edit-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-actions,
.adv-edit-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* line 300, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-actions .adv-new-general-conditions-of-sales-submit,
.adv-new-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-actions .adv-edit-general-conditions-of-sales-submit,
.adv-new-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-actions .adv-new-general-conditions-of-sales-submit,
.adv-new-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-actions .adv-edit-general-conditions-of-sales-submit,
.adv-edit-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-actions .adv-new-general-conditions-of-sales-submit,
.adv-edit-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-actions .adv-edit-general-conditions-of-sales-submit,
.adv-edit-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-actions .adv-new-general-conditions-of-sales-submit,
.adv-edit-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-actions .adv-edit-general-conditions-of-sales-submit {
  padding: 0.75rem 1.5rem;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

/* line 311, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-actions .adv-new-general-conditions-of-sales-submit:hover,
.adv-new-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-actions .adv-edit-general-conditions-of-sales-submit:hover,
.adv-new-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-actions .adv-new-general-conditions-of-sales-submit:hover,
.adv-new-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-actions .adv-edit-general-conditions-of-sales-submit:hover,
.adv-edit-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-actions .adv-new-general-conditions-of-sales-submit:hover,
.adv-edit-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-actions .adv-edit-general-conditions-of-sales-submit:hover,
.adv-edit-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-actions .adv-new-general-conditions-of-sales-submit:hover,
.adv-edit-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-actions .adv-edit-general-conditions-of-sales-submit:hover {
  background: var(--primary-hover);
}

/* line 316, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-actions .adv-new-general-conditions-of-sales-cancel,
.adv-new-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-actions .adv-edit-general-conditions-of-sales-cancel,
.adv-new-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-actions .adv-new-general-conditions-of-sales-cancel,
.adv-new-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-actions .adv-edit-general-conditions-of-sales-cancel,
.adv-edit-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-actions .adv-new-general-conditions-of-sales-cancel,
.adv-edit-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-actions .adv-edit-general-conditions-of-sales-cancel,
.adv-edit-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-actions .adv-new-general-conditions-of-sales-cancel,
.adv-edit-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-actions .adv-edit-general-conditions-of-sales-cancel {
  padding: 0.75rem 1.5rem;
  background: var(--secondary-color);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

/* line 326, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
.adv-new-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-actions .adv-new-general-conditions-of-sales-cancel:hover,
.adv-new-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-actions .adv-edit-general-conditions-of-sales-cancel:hover,
.adv-new-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-actions .adv-new-general-conditions-of-sales-cancel:hover,
.adv-new-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-actions .adv-edit-general-conditions-of-sales-cancel:hover,
.adv-edit-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-actions .adv-new-general-conditions-of-sales-cancel:hover,
.adv-edit-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-actions .adv-edit-general-conditions-of-sales-cancel:hover,
.adv-edit-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-actions .adv-new-general-conditions-of-sales-cancel:hover,
.adv-edit-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-actions .adv-edit-general-conditions-of-sales-cancel:hover {
  background: var(--secondary-hover);
}

@media (max-width: 768px) {
  /* line 335, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
  .adv-new-general-conditions-of-sales-capsule,
.adv-edit-general-conditions-of-sales-capsule {
    padding: 1rem;
  }
  /* line 339, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
  .adv-new-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-row0 h1, .adv-new-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-row0 .h1,
.adv-new-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-row0 h1,
.adv-new-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-row0 .h1,
.adv-edit-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-row0 h1,
.adv-edit-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-row0 .h1,
.adv-edit-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-row0 h1,
.adv-edit-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-row0 .h1 {
    font-size: 1.5rem;
  }
  /* line 344, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
  .adv-new-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form,
.adv-new-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form,
.adv-edit-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form,
.adv-edit-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form {
    padding: 1.5rem;
  }
  /* line 349, app/assets/stylesheets/pages/servicespace/back-office/adv/general_conditions_of_sales/_general_conditions_of_sales.scss */
  .adv-new-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-actions,
.adv-new-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-actions,
.adv-edit-general-conditions-of-sales-capsule .adv-new-general-conditions-of-sales-form-actions,
.adv-edit-general-conditions-of-sales-capsule .adv-edit-general-conditions-of-sales-form-actions {
    flex-direction: column;
  }
}

/* line 2, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
}

/* line 12, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-header {
  text-align: center;
  margin-bottom: 30px;
}

/* line 17, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-header .adv-guide-title h1, .adv-guide-header .adv-guide-title .h1 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 8px;
  background: linear-gradient(45deg, #C38761, #E5A82E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* line 27, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-header .adv-guide-title .adv-guide-subtitle {
  font-size: 1rem;
  opacity: 0.8;
  margin: 0;
}

/* line 35, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-section {
  margin-bottom: 30px;
}

/* line 39, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 46, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-card .adv-guide-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

/* line 51, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-card .adv-guide-card-header .adv-guide-icon {
  font-size: 1.2rem;
  color: #C38761;
  margin-right: 12px;
}

/* line 57, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-card .adv-guide-card-header h2, .adv-guide-card .adv-guide-card-header .h2 {
  font-size: 1.3rem;
  margin: 0;
  color: #FFFFFF;
}

/* line 65, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-card .adv-guide-card-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 15px;
  opacity: 0.9;
}

/* line 75, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

/* line 81, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-features .adv-guide-feature {
  display: flex;
  align-items: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

/* line 88, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-features .adv-guide-feature i {
  font-size: 1rem;
  color: #C38761;
  margin-right: 8px;
}

/* line 94, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-features .adv-guide-feature span {
  font-weight: 500;
  font-size: 0.9rem;
}

/* line 102, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* line 108, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-benefits .adv-guide-benefit {
  display: flex;
  align-items: flex-start;
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

/* line 115, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-benefits .adv-guide-benefit .adv-guide-benefit-icon {
  margin-right: 12px;
}

/* line 118, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-benefits .adv-guide-benefit .adv-guide-benefit-icon i {
  font-size: 1.4rem;
  color: #C38761;
}

/* line 125, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-benefits .adv-guide-benefit .adv-guide-benefit-content h3, .adv-guide-benefits .adv-guide-benefit .adv-guide-benefit-content .h3 {
  font-size: 1.1rem;
  margin: 0 0 6px 0;
  color: #FFFFFF;
}

/* line 131, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-benefits .adv-guide-benefit .adv-guide-benefit-content p {
  font-size: 0.85rem;
  margin: 0;
  opacity: 0.8;
  line-height: 1.4;
}

/* line 142, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-video-container {
  margin-top: 20px;
}

/* line 145, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-video-container .adv-guide-video-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
}

/* line 153, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-video-container .adv-guide-video-wrapper .adv-guide-video {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

/* line 163, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-resources {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* line 169, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-resources .adv-guide-resource {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 177, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-resources .adv-guide-resource .adv-guide-resource-icon {
  margin-right: 15px;
}

/* line 180, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-resources .adv-guide-resource .adv-guide-resource-icon i {
  font-size: 1.6rem;
  color: #ff0000;
}

/* line 186, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-resources .adv-guide-resource .adv-guide-resource-content {
  flex: 1;
}

/* line 189, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-resources .adv-guide-resource .adv-guide-resource-content h3, .adv-guide-resources .adv-guide-resource .adv-guide-resource-content .h3 {
  font-size: 1.1rem;
  margin: 0 0 8px 0;
  color: #FFFFFF;
}

/* line 195, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-resources .adv-guide-resource .adv-guide-resource-content p {
  font-size: 0.85rem;
  margin: 0 0 12px 0;
  opacity: 0.8;
  line-height: 1.4;
}

/* line 202, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-resources .adv-guide-resource .adv-guide-resource-content .adv-guide-resource-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #C38761;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
}

/* line 211, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-resources .adv-guide-resource .adv-guide-resource-content .adv-guide-resource-link i {
  font-size: 0.8rem;
}

/* line 220, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

/* line 226, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-actions .adv-guide-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  text-decoration: none;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 237, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-actions .adv-guide-action:hover {
  text-decoration: none;
  color: #FFFFFF;
}

/* line 242, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-actions .adv-guide-action i {
  font-size: 1.6rem;
  color: #C38761;
  margin-bottom: 8px;
}

/* line 248, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-actions .adv-guide-action span {
  font-weight: 500;
  text-align: center;
  font-size: 0.9rem;
}

/* line 257, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-error-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

/* line 269, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-error-modal .adv-guide-error-content {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 25px;
  max-width: 450px;
  width: 90%;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 278, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-error-modal .adv-guide-error-content .adv-guide-error-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

/* line 283, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-error-modal .adv-guide-error-content .adv-guide-error-header i {
  font-size: 1.3rem;
  color: #ff6b6b;
  margin-right: 12px;
}

/* line 289, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-error-modal .adv-guide-error-content .adv-guide-error-header h3, .adv-guide-error-modal .adv-guide-error-content .adv-guide-error-header .h3 {
  font-size: 1.3rem;
  margin: 0;
  color: #FFFFFF;
}

/* line 296, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-error-modal .adv-guide-error-content .adv-guide-error-body {
  margin-bottom: 20px;
}

/* line 299, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-error-modal .adv-guide-error-content .adv-guide-error-body p {
  color: #FFFFFF;
  opacity: 0.9;
  line-height: 1.4;
  margin: 0;
  font-size: 0.9rem;
}

/* line 308, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-error-modal .adv-guide-error-content .adv-guide-error-footer {
  text-align: right;
}

/* line 311, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-error-modal .adv-guide-error-content .adv-guide-error-footer .adv-guide-error-btn {
  background: #C38761;
  color: #FFFFFF;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

/* line 322, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
.adv-guide-error-modal .adv-guide-error-content .adv-guide-error-footer .adv-guide-error-btn:hover {
  background: #E5A82E;
}

@media (max-width: 768px) {
  /* line 332, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
  .adv-guide-container {
    padding: 15px;
  }
  /* line 336, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
  .adv-guide-header .adv-guide-title h1, .adv-guide-header .adv-guide-title .h1 {
    font-size: 2rem;
  }
  /* line 340, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
  .adv-guide-card {
    padding: 20px;
  }
  /* line 344, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
  .adv-guide-features {
    grid-template-columns: 1fr;
  }
  /* line 348, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
  .adv-guide-benefits {
    grid-template-columns: 1fr;
  }
  /* line 352, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
  .adv-guide-resources {
    grid-template-columns: 1fr;
  }
  /* line 356, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
  .adv-guide-actions {
    grid-template-columns: repeat(2, 1fr);
  }
  /* line 360, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
  .adv-guide-video-container .adv-guide-video-wrapper {
    height: 250px;
  }
}

@media (max-width: 480px) {
  /* line 366, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
  .adv-guide-actions {
    grid-template-columns: 1fr;
  }
  /* line 370, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
  .adv-guide-resource {
    flex-direction: column;
    text-align: center;
  }
  /* line 374, app/assets/stylesheets/pages/servicespace/_adv_guide.scss */
  .adv-guide-resource .adv-guide-resource-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/* line 2, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
}

/* line 12, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-header {
  text-align: center;
  margin-bottom: 30px;
}

/* line 17, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-header .crm-guide-title h1, .crm-guide-header .crm-guide-title .h1 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 8px;
  background: linear-gradient(45deg, #C38761, #E5A82E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* line 27, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-header .crm-guide-title .crm-guide-subtitle {
  font-size: 1rem;
  opacity: 0.8;
  margin: 0;
}

/* line 35, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-section {
  margin-bottom: 30px;
}

/* line 39, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 46, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-card .crm-guide-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

/* line 51, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-card .crm-guide-card-header .crm-guide-icon {
  font-size: 1.2rem;
  color: #C38761;
  margin-right: 12px;
}

/* line 57, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-card .crm-guide-card-header h2, .crm-guide-card .crm-guide-card-header .h2 {
  font-size: 1.3rem;
  margin: 0;
  color: #FFFFFF;
}

/* line 65, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-card .crm-guide-card-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 15px;
  opacity: 0.9;
}

/* line 75, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

/* line 81, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-features .crm-guide-feature {
  display: flex;
  align-items: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

/* line 88, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-features .crm-guide-feature i {
  font-size: 1rem;
  color: #C38761;
  margin-right: 8px;
}

/* line 94, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-features .crm-guide-feature span {
  font-weight: 500;
  font-size: 0.9rem;
}

/* line 102, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* line 108, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-benefits .crm-guide-benefit {
  display: flex;
  align-items: flex-start;
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

/* line 115, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-benefits .crm-guide-benefit .crm-guide-benefit-icon {
  margin-right: 12px;
}

/* line 118, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-benefits .crm-guide-benefit .crm-guide-benefit-icon i {
  font-size: 1.4rem;
  color: #C38761;
}

/* line 125, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-benefits .crm-guide-benefit .crm-guide-benefit-content h3, .crm-guide-benefits .crm-guide-benefit .crm-guide-benefit-content .h3 {
  font-size: 1.1rem;
  margin: 0 0 6px 0;
  color: #FFFFFF;
}

/* line 131, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-benefits .crm-guide-benefit .crm-guide-benefit-content p {
  font-size: 0.85rem;
  margin: 0;
  opacity: 0.8;
  line-height: 1.4;
}

/* line 142, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-video-container {
  margin-top: 20px;
}

/* line 145, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-video-container .crm-guide-video-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
}

/* line 153, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-video-container .crm-guide-video-wrapper .crm-guide-video {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

/* line 163, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-resources {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* line 169, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-resources .crm-guide-resource {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 177, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-resources .crm-guide-resource .crm-guide-resource-icon {
  margin-right: 15px;
}

/* line 180, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-resources .crm-guide-resource .crm-guide-resource-icon i {
  font-size: 1.6rem;
  color: #ff0000;
}

/* line 186, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-resources .crm-guide-resource .crm-guide-resource-content {
  flex: 1;
}

/* line 189, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-resources .crm-guide-resource .crm-guide-resource-content h3, .crm-guide-resources .crm-guide-resource .crm-guide-resource-content .h3 {
  font-size: 1.1rem;
  margin: 0 0 8px 0;
  color: #FFFFFF;
}

/* line 195, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-resources .crm-guide-resource .crm-guide-resource-content p {
  font-size: 0.85rem;
  margin: 0 0 12px 0;
  opacity: 0.8;
  line-height: 1.4;
}

/* line 202, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-resources .crm-guide-resource .crm-guide-resource-content .crm-guide-resource-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #C38761;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
}

/* line 211, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-resources .crm-guide-resource .crm-guide-resource-content .crm-guide-resource-link i {
  font-size: 0.8rem;
}

/* line 220, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

/* line 226, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-actions .crm-guide-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  text-decoration: none;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 237, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-actions .crm-guide-action:hover {
  text-decoration: none;
  color: #FFFFFF;
}

/* line 242, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-actions .crm-guide-action i {
  font-size: 1.6rem;
  color: #C38761;
  margin-bottom: 8px;
}

/* line 248, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-actions .crm-guide-action span {
  font-weight: 500;
  text-align: center;
  font-size: 0.9rem;
}

/* line 257, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-error-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

/* line 269, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-error-modal .crm-guide-error-content {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 25px;
  max-width: 450px;
  width: 90%;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 278, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-error-modal .crm-guide-error-content .crm-guide-error-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

/* line 283, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-error-modal .crm-guide-error-content .crm-guide-error-header i {
  font-size: 1.3rem;
  color: #ff6b6b;
  margin-right: 12px;
}

/* line 289, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-error-modal .crm-guide-error-content .crm-guide-error-header h3, .crm-guide-error-modal .crm-guide-error-content .crm-guide-error-header .h3 {
  font-size: 1.3rem;
  margin: 0;
  color: #FFFFFF;
}

/* line 296, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-error-modal .crm-guide-error-content .crm-guide-error-body {
  margin-bottom: 20px;
}

/* line 299, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-error-modal .crm-guide-error-content .crm-guide-error-body p {
  color: #FFFFFF;
  opacity: 0.9;
  line-height: 1.4;
  margin: 0;
  font-size: 0.9rem;
}

/* line 308, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-error-modal .crm-guide-error-content .crm-guide-error-footer {
  text-align: right;
}

/* line 311, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-error-modal .crm-guide-error-content .crm-guide-error-footer .crm-guide-error-btn {
  background: #C38761;
  color: #FFFFFF;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

/* line 322, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
.crm-guide-error-modal .crm-guide-error-content .crm-guide-error-footer .crm-guide-error-btn:hover {
  background: #E5A82E;
}

@media (max-width: 768px) {
  /* line 332, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
  .crm-guide-container {
    padding: 15px;
  }
  /* line 336, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
  .crm-guide-header .crm-guide-title h1, .crm-guide-header .crm-guide-title .h1 {
    font-size: 2rem;
  }
  /* line 340, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
  .crm-guide-card {
    padding: 20px;
  }
  /* line 344, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
  .crm-guide-features {
    grid-template-columns: 1fr;
  }
  /* line 348, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
  .crm-guide-benefits {
    grid-template-columns: 1fr;
  }
  /* line 352, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
  .crm-guide-resources {
    grid-template-columns: 1fr;
  }
  /* line 356, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
  .crm-guide-actions {
    grid-template-columns: repeat(2, 1fr);
  }
  /* line 360, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
  .crm-guide-video-container .crm-guide-video-wrapper {
    height: 250px;
  }
}

@media (max-width: 480px) {
  /* line 366, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
  .crm-guide-actions {
    grid-template-columns: 1fr;
  }
  /* line 370, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
  .crm-guide-resource {
    flex-direction: column;
    text-align: center;
  }
  /* line 374, app/assets/stylesheets/pages/servicespace/_crm_guide.scss */
  .crm-guide-resource .crm-guide-resource-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/* line 2, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
}

/* line 12, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-header {
  text-align: center;
  margin-bottom: 30px;
}

/* line 17, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-header .identite-graphique-guide-title h1, .identite-graphique-guide-header .identite-graphique-guide-title .h1 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 8px;
  background: linear-gradient(45deg, #C38761, #E5A82E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* line 27, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-header .identite-graphique-guide-title .identite-graphique-guide-subtitle {
  font-size: 1rem;
  opacity: 0.8;
  margin: 0;
}

/* line 35, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-section {
  margin-bottom: 30px;
}

/* line 39, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 46, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-card .identite-graphique-guide-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

/* line 51, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-card .identite-graphique-guide-card-header .identite-graphique-guide-icon {
  font-size: 1.2rem;
  color: #C38761;
  margin-right: 12px;
}

/* line 57, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-card .identite-graphique-guide-card-header h2, .identite-graphique-guide-card .identite-graphique-guide-card-header .h2 {
  font-size: 1.3rem;
  margin: 0;
  color: #FFFFFF;
}

/* line 65, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-card .identite-graphique-guide-card-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 15px;
  opacity: 0.9;
}

/* line 75, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

/* line 81, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-features .identite-graphique-guide-feature {
  display: flex;
  align-items: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

/* line 88, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-features .identite-graphique-guide-feature i {
  font-size: 1rem;
  color: #C38761;
  margin-right: 8px;
}

/* line 94, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-features .identite-graphique-guide-feature span {
  font-weight: 500;
  font-size: 0.9rem;
}

/* line 102, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* line 108, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-benefits .identite-graphique-guide-benefit {
  display: flex;
  align-items: flex-start;
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

/* line 115, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-benefits .identite-graphique-guide-benefit .identite-graphique-guide-benefit-icon {
  margin-right: 12px;
}

/* line 118, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-benefits .identite-graphique-guide-benefit .identite-graphique-guide-benefit-icon i {
  font-size: 1.4rem;
  color: #C38761;
}

/* line 125, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-benefits .identite-graphique-guide-benefit .identite-graphique-guide-benefit-content h3, .identite-graphique-guide-benefits .identite-graphique-guide-benefit .identite-graphique-guide-benefit-content .h3 {
  font-size: 1.1rem;
  margin: 0 0 6px 0;
  color: #FFFFFF;
}

/* line 131, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-benefits .identite-graphique-guide-benefit .identite-graphique-guide-benefit-content p {
  font-size: 0.85rem;
  margin: 0;
  opacity: 0.8;
  line-height: 1.4;
}

/* line 142, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-video-container {
  margin-top: 20px;
}

/* line 145, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-video-container .identite-graphique-guide-video-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
}

/* line 153, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-video-container .identite-graphique-guide-video-wrapper .identite-graphique-guide-video {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

/* line 163, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-resources {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* line 169, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-resources .identite-graphique-guide-resource {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 177, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-resources .identite-graphique-guide-resource .identite-graphique-guide-resource-icon {
  margin-right: 15px;
}

/* line 180, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-resources .identite-graphique-guide-resource .identite-graphique-guide-resource-icon i {
  font-size: 1.6rem;
  color: #ff0000;
}

/* line 186, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-resources .identite-graphique-guide-resource .identite-graphique-guide-resource-content {
  flex: 1;
}

/* line 189, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-resources .identite-graphique-guide-resource .identite-graphique-guide-resource-content h3, .identite-graphique-guide-resources .identite-graphique-guide-resource .identite-graphique-guide-resource-content .h3 {
  font-size: 1.1rem;
  margin: 0 0 8px 0;
  color: #FFFFFF;
}

/* line 195, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-resources .identite-graphique-guide-resource .identite-graphique-guide-resource-content p {
  font-size: 0.85rem;
  margin: 0 0 12px 0;
  opacity: 0.8;
  line-height: 1.4;
}

/* line 202, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-resources .identite-graphique-guide-resource .identite-graphique-guide-resource-content .identite-graphique-guide-resource-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #C38761;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
}

/* line 211, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-resources .identite-graphique-guide-resource .identite-graphique-guide-resource-content .identite-graphique-guide-resource-link i {
  font-size: 0.8rem;
}

/* line 220, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

/* line 226, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-actions .identite-graphique-guide-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  text-decoration: none;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 237, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-actions .identite-graphique-guide-action:hover {
  text-decoration: none;
  color: #FFFFFF;
}

/* line 242, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-actions .identite-graphique-guide-action i {
  font-size: 1.6rem;
  color: #C38761;
  margin-bottom: 8px;
}

/* line 248, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-actions .identite-graphique-guide-action span {
  font-weight: 500;
  text-align: center;
  font-size: 0.9rem;
}

/* line 257, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-error-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

/* line 269, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-error-modal .identite-graphique-guide-error-content {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 25px;
  max-width: 450px;
  width: 90%;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 278, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-error-modal .identite-graphique-guide-error-content .identite-graphique-guide-error-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

/* line 283, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-error-modal .identite-graphique-guide-error-content .identite-graphique-guide-error-header i {
  font-size: 1.3rem;
  color: #ff6b6b;
  margin-right: 12px;
}

/* line 289, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-error-modal .identite-graphique-guide-error-content .identite-graphique-guide-error-header h3, .identite-graphique-guide-error-modal .identite-graphique-guide-error-content .identite-graphique-guide-error-header .h3 {
  font-size: 1.3rem;
  margin: 0;
  color: #FFFFFF;
}

/* line 296, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-error-modal .identite-graphique-guide-error-content .identite-graphique-guide-error-body {
  margin-bottom: 20px;
}

/* line 299, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-error-modal .identite-graphique-guide-error-content .identite-graphique-guide-error-body p {
  color: #FFFFFF;
  opacity: 0.9;
  line-height: 1.4;
  margin: 0;
  font-size: 0.9rem;
}

/* line 308, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-error-modal .identite-graphique-guide-error-content .identite-graphique-guide-error-footer {
  text-align: right;
}

/* line 311, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-error-modal .identite-graphique-guide-error-content .identite-graphique-guide-error-footer .identite-graphique-guide-error-btn {
  background: #C38761;
  color: #FFFFFF;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

/* line 322, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
.identite-graphique-guide-error-modal .identite-graphique-guide-error-content .identite-graphique-guide-error-footer .identite-graphique-guide-error-btn:hover {
  background: #E5A82E;
}

@media (max-width: 768px) {
  /* line 332, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
  .identite-graphique-guide-container {
    padding: 15px;
  }
  /* line 336, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
  .identite-graphique-guide-header .identite-graphique-guide-title h1, .identite-graphique-guide-header .identite-graphique-guide-title .h1 {
    font-size: 2rem;
  }
  /* line 340, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
  .identite-graphique-guide-card {
    padding: 20px;
  }
  /* line 344, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
  .identite-graphique-guide-features {
    grid-template-columns: 1fr;
  }
  /* line 348, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
  .identite-graphique-guide-benefits {
    grid-template-columns: 1fr;
  }
  /* line 352, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
  .identite-graphique-guide-resources {
    grid-template-columns: 1fr;
  }
  /* line 356, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
  .identite-graphique-guide-actions {
    grid-template-columns: repeat(2, 1fr);
  }
  /* line 360, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
  .identite-graphique-guide-video-container .identite-graphique-guide-video-wrapper {
    height: 250px;
  }
}

@media (max-width: 480px) {
  /* line 366, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
  .identite-graphique-guide-actions {
    grid-template-columns: 1fr;
  }
  /* line 370, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
  .identite-graphique-guide-resource {
    flex-direction: column;
    text-align: center;
  }
  /* line 374, app/assets/stylesheets/pages/servicespace/_identite_graphique_guide.scss */
  .identite-graphique-guide-resource .identite-graphique-guide-resource-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/* line 2, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
}

/* line 12, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-header {
  text-align: center;
  margin-bottom: 30px;
}

/* line 17, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-header .projets-guide-title h1, .projets-guide-header .projets-guide-title .h1 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 8px;
  background: linear-gradient(45deg, #C38761, #E5A82E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* line 27, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-header .projets-guide-title .projets-guide-subtitle {
  font-size: 1rem;
  opacity: 0.8;
  margin: 0;
}

/* line 35, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-section {
  margin-bottom: 30px;
}

/* line 39, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 46, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-card .projets-guide-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

/* line 51, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-card .projets-guide-card-header .projets-guide-icon {
  font-size: 1.2rem;
  color: #C38761;
  margin-right: 12px;
}

/* line 57, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-card .projets-guide-card-header h2, .projets-guide-card .projets-guide-card-header .h2 {
  font-size: 1.3rem;
  margin: 0;
  color: #FFFFFF;
}

/* line 65, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-card .projets-guide-card-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 15px;
  opacity: 0.9;
}

/* line 75, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

/* line 81, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-features .projets-guide-feature {
  display: flex;
  align-items: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

/* line 88, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-features .projets-guide-feature i {
  font-size: 1rem;
  color: #C38761;
  margin-right: 8px;
}

/* line 94, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-features .projets-guide-feature span {
  font-weight: 500;
  font-size: 0.9rem;
}

/* line 102, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* line 108, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-benefits .projets-guide-benefit {
  display: flex;
  align-items: flex-start;
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

/* line 115, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-benefits .projets-guide-benefit .projets-guide-benefit-icon {
  margin-right: 12px;
}

/* line 118, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-benefits .projets-guide-benefit .projets-guide-benefit-icon i {
  font-size: 1.4rem;
  color: #C38761;
}

/* line 125, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-benefits .projets-guide-benefit .projets-guide-benefit-content h3, .projets-guide-benefits .projets-guide-benefit .projets-guide-benefit-content .h3 {
  font-size: 1.1rem;
  margin: 0 0 6px 0;
  color: #FFFFFF;
}

/* line 131, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-benefits .projets-guide-benefit .projets-guide-benefit-content p {
  font-size: 0.85rem;
  margin: 0;
  opacity: 0.8;
  line-height: 1.4;
}

/* line 142, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-video-container {
  margin-top: 20px;
}

/* line 145, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-video-container .projets-guide-video-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
}

/* line 153, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-video-container .projets-guide-video-wrapper .projets-guide-video {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

/* line 163, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-resources {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* line 169, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-resources .projets-guide-resource {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 177, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-resources .projets-guide-resource .projets-guide-resource-icon {
  margin-right: 15px;
}

/* line 180, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-resources .projets-guide-resource .projets-guide-resource-icon i {
  font-size: 1.6rem;
  color: #ff0000;
}

/* line 186, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-resources .projets-guide-resource .projets-guide-resource-content {
  flex: 1;
}

/* line 189, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-resources .projets-guide-resource .projets-guide-resource-content h3, .projets-guide-resources .projets-guide-resource .projets-guide-resource-content .h3 {
  font-size: 1.1rem;
  margin: 0 0 8px 0;
  color: #FFFFFF;
}

/* line 195, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-resources .projets-guide-resource .projets-guide-resource-content p {
  font-size: 0.85rem;
  margin: 0 0 12px 0;
  opacity: 0.8;
  line-height: 1.4;
}

/* line 202, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-resources .projets-guide-resource .projets-guide-resource-content .projets-guide-resource-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #C38761;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
}

/* line 211, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-resources .projets-guide-resource .projets-guide-resource-content .projets-guide-resource-link i {
  font-size: 0.8rem;
}

/* line 220, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

/* line 226, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-actions .projets-guide-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  text-decoration: none;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 237, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-actions .projets-guide-action:hover {
  text-decoration: none;
  color: #FFFFFF;
}

/* line 242, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-actions .projets-guide-action i {
  font-size: 1.6rem;
  color: #C38761;
  margin-bottom: 8px;
}

/* line 248, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-actions .projets-guide-action span {
  font-weight: 500;
  text-align: center;
  font-size: 0.9rem;
}

/* line 257, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-error-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

/* line 269, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-error-modal .projets-guide-error-content {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 25px;
  max-width: 450px;
  width: 90%;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 278, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-error-modal .projets-guide-error-content .projets-guide-error-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

/* line 283, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-error-modal .projets-guide-error-content .projets-guide-error-header i {
  font-size: 1.3rem;
  color: #ff6b6b;
  margin-right: 12px;
}

/* line 289, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-error-modal .projets-guide-error-content .projets-guide-error-header h3, .projets-guide-error-modal .projets-guide-error-content .projets-guide-error-header .h3 {
  font-size: 1.3rem;
  margin: 0;
  color: #FFFFFF;
}

/* line 296, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-error-modal .projets-guide-error-content .projets-guide-error-body {
  margin-bottom: 20px;
}

/* line 299, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-error-modal .projets-guide-error-content .projets-guide-error-body p {
  color: #FFFFFF;
  opacity: 0.9;
  line-height: 1.4;
  margin: 0;
  font-size: 0.9rem;
}

/* line 308, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-error-modal .projets-guide-error-content .projets-guide-error-footer {
  text-align: right;
}

/* line 311, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-error-modal .projets-guide-error-content .projets-guide-error-footer .projets-guide-error-btn {
  background: #C38761;
  color: #FFFFFF;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

/* line 322, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
.projets-guide-error-modal .projets-guide-error-content .projets-guide-error-footer .projets-guide-error-btn:hover {
  background: #E5A82E;
}

@media (max-width: 768px) {
  /* line 332, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
  .projets-guide-container {
    padding: 15px;
  }
  /* line 336, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
  .projets-guide-header .projets-guide-title h1, .projets-guide-header .projets-guide-title .h1 {
    font-size: 2rem;
  }
  /* line 340, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
  .projets-guide-card {
    padding: 20px;
  }
  /* line 344, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
  .projets-guide-features {
    grid-template-columns: 1fr;
  }
  /* line 348, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
  .projets-guide-benefits {
    grid-template-columns: 1fr;
  }
  /* line 352, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
  .projets-guide-resources {
    grid-template-columns: 1fr;
  }
  /* line 356, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
  .projets-guide-actions {
    grid-template-columns: repeat(2, 1fr);
  }
  /* line 360, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
  .projets-guide-video-container .projets-guide-video-wrapper {
    height: 250px;
  }
}

@media (max-width: 480px) {
  /* line 366, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
  .projets-guide-actions {
    grid-template-columns: 1fr;
  }
  /* line 370, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
  .projets-guide-resource {
    flex-direction: column;
    text-align: center;
  }
  /* line 374, app/assets/stylesheets/pages/servicespace/_projets_guide.scss */
  .projets-guide-resource .projets-guide-resource-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/* line 2, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
}

/* line 12, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-header {
  text-align: center;
  margin-bottom: 30px;
}

/* line 17, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-header .sav-guide-title h1, .sav-guide-header .sav-guide-title .h1 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 8px;
  background: linear-gradient(45deg, #C38761, #E5A82E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* line 27, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-header .sav-guide-title .sav-guide-subtitle {
  font-size: 1rem;
  opacity: 0.8;
  margin: 0;
}

/* line 35, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-section {
  margin-bottom: 30px;
}

/* line 39, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 46, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-card .sav-guide-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

/* line 51, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-card .sav-guide-card-header .sav-guide-icon {
  font-size: 1.2rem;
  color: #C38761;
  margin-right: 12px;
}

/* line 57, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-card .sav-guide-card-header h2, .sav-guide-card .sav-guide-card-header .h2 {
  font-size: 1.3rem;
  margin: 0;
  color: #FFFFFF;
}

/* line 65, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-card .sav-guide-card-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 15px;
  opacity: 0.9;
}

/* line 75, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

/* line 81, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-features .sav-guide-feature {
  display: flex;
  align-items: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

/* line 88, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-features .sav-guide-feature i {
  font-size: 1rem;
  color: #C38761;
  margin-right: 8px;
}

/* line 94, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-features .sav-guide-feature span {
  font-weight: 500;
  font-size: 0.9rem;
}

/* line 102, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* line 108, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-benefits .sav-guide-benefit {
  display: flex;
  align-items: flex-start;
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

/* line 115, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-benefits .sav-guide-benefit .sav-guide-benefit-icon {
  margin-right: 12px;
}

/* line 118, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-benefits .sav-guide-benefit .sav-guide-benefit-icon i {
  font-size: 1.4rem;
  color: #C38761;
}

/* line 125, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-benefits .sav-guide-benefit .sav-guide-benefit-content h3, .sav-guide-benefits .sav-guide-benefit .sav-guide-benefit-content .h3 {
  font-size: 1.1rem;
  margin: 0 0 6px 0;
  color: #FFFFFF;
}

/* line 131, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-benefits .sav-guide-benefit .sav-guide-benefit-content p {
  font-size: 0.85rem;
  margin: 0;
  opacity: 0.8;
  line-height: 1.4;
}

/* line 142, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-video-container {
  margin-top: 20px;
}

/* line 145, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-video-container .sav-guide-video-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
}

/* line 153, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-video-container .sav-guide-video-wrapper .sav-guide-video {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

/* line 163, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-resources {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* line 169, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-resources .sav-guide-resource {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 177, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-resources .sav-guide-resource .sav-guide-resource-icon {
  margin-right: 15px;
}

/* line 180, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-resources .sav-guide-resource .sav-guide-resource-icon i {
  font-size: 1.6rem;
  color: #ff0000;
}

/* line 186, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-resources .sav-guide-resource .sav-guide-resource-content {
  flex: 1;
}

/* line 189, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-resources .sav-guide-resource .sav-guide-resource-content h3, .sav-guide-resources .sav-guide-resource .sav-guide-resource-content .h3 {
  font-size: 1.1rem;
  margin: 0 0 8px 0;
  color: #FFFFFF;
}

/* line 195, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-resources .sav-guide-resource .sav-guide-resource-content p {
  font-size: 0.85rem;
  margin: 0 0 12px 0;
  opacity: 0.8;
  line-height: 1.4;
}

/* line 202, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-resources .sav-guide-resource .sav-guide-resource-content .sav-guide-resource-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #C38761;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
}

/* line 211, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-resources .sav-guide-resource .sav-guide-resource-content .sav-guide-resource-link i {
  font-size: 0.8rem;
}

/* line 220, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

/* line 226, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-actions .sav-guide-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  text-decoration: none;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 237, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-actions .sav-guide-action:hover {
  text-decoration: none;
  color: #FFFFFF;
}

/* line 242, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-actions .sav-guide-action i {
  font-size: 1.6rem;
  color: #C38761;
  margin-bottom: 8px;
}

/* line 248, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-actions .sav-guide-action span {
  font-weight: 500;
  text-align: center;
  font-size: 0.9rem;
}

/* line 257, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-error-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

/* line 269, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-error-modal .sav-guide-error-content {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 25px;
  max-width: 450px;
  width: 90%;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 278, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-error-modal .sav-guide-error-content .sav-guide-error-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

/* line 283, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-error-modal .sav-guide-error-content .sav-guide-error-header i {
  font-size: 1.3rem;
  color: #ff6b6b;
  margin-right: 12px;
}

/* line 289, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-error-modal .sav-guide-error-content .sav-guide-error-header h3, .sav-guide-error-modal .sav-guide-error-content .sav-guide-error-header .h3 {
  font-size: 1.3rem;
  margin: 0;
  color: #FFFFFF;
}

/* line 296, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-error-modal .sav-guide-error-content .sav-guide-error-body {
  margin-bottom: 20px;
}

/* line 299, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-error-modal .sav-guide-error-content .sav-guide-error-body p {
  color: #FFFFFF;
  opacity: 0.9;
  line-height: 1.4;
  margin: 0;
  font-size: 0.9rem;
}

/* line 308, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-error-modal .sav-guide-error-content .sav-guide-error-footer {
  text-align: right;
}

/* line 311, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-error-modal .sav-guide-error-content .sav-guide-error-footer .sav-guide-error-btn {
  background: #C38761;
  color: #FFFFFF;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

/* line 322, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
.sav-guide-error-modal .sav-guide-error-content .sav-guide-error-footer .sav-guide-error-btn:hover {
  background: #E5A82E;
}

@media (max-width: 768px) {
  /* line 332, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
  .sav-guide-container {
    padding: 15px;
  }
  /* line 336, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
  .sav-guide-header .sav-guide-title h1, .sav-guide-header .sav-guide-title .h1 {
    font-size: 2rem;
  }
  /* line 340, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
  .sav-guide-card {
    padding: 20px;
  }
  /* line 344, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
  .sav-guide-features {
    grid-template-columns: 1fr;
  }
  /* line 348, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
  .sav-guide-benefits {
    grid-template-columns: 1fr;
  }
  /* line 352, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
  .sav-guide-resources {
    grid-template-columns: 1fr;
  }
  /* line 356, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
  .sav-guide-actions {
    grid-template-columns: repeat(2, 1fr);
  }
  /* line 360, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
  .sav-guide-video-container .sav-guide-video-wrapper {
    height: 250px;
  }
}

@media (max-width: 480px) {
  /* line 366, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
  .sav-guide-actions {
    grid-template-columns: 1fr;
  }
  /* line 370, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
  .sav-guide-resource {
    flex-direction: column;
    text-align: center;
  }
  /* line 374, app/assets/stylesheets/pages/servicespace/_sav_guide.scss */
  .sav-guide-resource .sav-guide-resource-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/* line 2, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
}

/* line 12, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-header {
  text-align: center;
  margin-bottom: 30px;
}

/* line 17, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-header .commandes-frs-guide-title h1, .commandes-frs-guide-header .commandes-frs-guide-title .h1 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 8px;
  background: linear-gradient(45deg, #C38761, #E5A82E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* line 27, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-header .commandes-frs-guide-title .commandes-frs-guide-subtitle {
  font-size: 1rem;
  opacity: 0.8;
  margin: 0;
}

/* line 35, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-section {
  margin-bottom: 30px;
}

/* line 39, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 46, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-card .commandes-frs-guide-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

/* line 51, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-card .commandes-frs-guide-card-header .commandes-frs-guide-icon {
  font-size: 1.2rem;
  color: #C38761;
  margin-right: 12px;
}

/* line 57, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-card .commandes-frs-guide-card-header h2, .commandes-frs-guide-card .commandes-frs-guide-card-header .h2 {
  font-size: 1.3rem;
  margin: 0;
  color: #FFFFFF;
}

/* line 65, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-card .commandes-frs-guide-card-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 15px;
  opacity: 0.9;
}

/* line 75, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

/* line 81, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-features .commandes-frs-guide-feature {
  display: flex;
  align-items: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

/* line 88, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-features .commandes-frs-guide-feature i {
  font-size: 1rem;
  color: #C38761;
  margin-right: 8px;
}

/* line 94, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-features .commandes-frs-guide-feature span {
  font-weight: 500;
  font-size: 0.9rem;
}

/* line 102, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

/* line 108, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-benefits .commandes-frs-guide-benefit {
  display: flex;
  align-items: flex-start;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

/* line 115, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-benefits .commandes-frs-guide-benefit .commandes-frs-guide-benefit-icon {
  margin-right: 12px;
}

/* line 118, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-benefits .commandes-frs-guide-benefit .commandes-frs-guide-benefit-icon i {
  font-size: 1.3rem;
  color: #C38761;
}

/* line 125, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-benefits .commandes-frs-guide-benefit .commandes-frs-guide-benefit-content h3, .commandes-frs-guide-benefits .commandes-frs-guide-benefit .commandes-frs-guide-benefit-content .h3 {
  font-size: 1rem;
  margin: 0 0 5px 0;
  color: #FFFFFF;
}

/* line 131, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-benefits .commandes-frs-guide-benefit .commandes-frs-guide-benefit-content p {
  font-size: 0.8rem;
  margin: 0;
  opacity: 0.8;
  line-height: 1.3;
}

/* line 142, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-video-container {
  margin-top: 20px;
}

/* line 145, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-video-container .commandes-frs-guide-video-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
}

/* line 153, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-video-container .commandes-frs-guide-video-wrapper .commandes-frs-guide-video {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

/* line 163, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-resources {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* line 169, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-resources .commandes-frs-guide-resource {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 177, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-resources .commandes-frs-guide-resource .commandes-frs-guide-resource-icon {
  margin-right: 15px;
}

/* line 180, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-resources .commandes-frs-guide-resource .commandes-frs-guide-resource-icon i {
  font-size: 1.6rem;
  color: #ff0000;
}

/* line 186, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-resources .commandes-frs-guide-resource .commandes-frs-guide-resource-content {
  flex: 1;
}

/* line 189, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-resources .commandes-frs-guide-resource .commandes-frs-guide-resource-content h3, .commandes-frs-guide-resources .commandes-frs-guide-resource .commandes-frs-guide-resource-content .h3 {
  font-size: 1.1rem;
  margin: 0 0 8px 0;
  color: #FFFFFF;
}

/* line 195, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-resources .commandes-frs-guide-resource .commandes-frs-guide-resource-content p {
  font-size: 0.85rem;
  margin: 0 0 12px 0;
  opacity: 0.8;
  line-height: 1.4;
}

/* line 202, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-resources .commandes-frs-guide-resource .commandes-frs-guide-resource-content .commandes-frs-guide-resource-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #C38761;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
}

/* line 211, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-resources .commandes-frs-guide-resource .commandes-frs-guide-resource-content .commandes-frs-guide-resource-link i {
  font-size: 0.8rem;
}

/* line 220, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

/* line 226, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-actions .commandes-frs-guide-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  text-decoration: none;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 237, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-actions .commandes-frs-guide-action:hover {
  text-decoration: none;
  color: #FFFFFF;
}

/* line 242, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-actions .commandes-frs-guide-action i {
  font-size: 1.6rem;
  color: #C38761;
  margin-bottom: 8px;
}

/* line 248, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-actions .commandes-frs-guide-action span {
  font-weight: 500;
  text-align: center;
  font-size: 0.9rem;
}

/* line 257, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-error-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

/* line 269, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-error-modal .commandes-frs-guide-error-content {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 25px;
  max-width: 450px;
  width: 90%;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 278, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-error-modal .commandes-frs-guide-error-content .commandes-frs-guide-error-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

/* line 283, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-error-modal .commandes-frs-guide-error-content .commandes-frs-guide-error-header i {
  font-size: 1.3rem;
  color: #ff6b6b;
  margin-right: 12px;
}

/* line 289, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-error-modal .commandes-frs-guide-error-content .commandes-frs-guide-error-header h3, .commandes-frs-guide-error-modal .commandes-frs-guide-error-content .commandes-frs-guide-error-header .h3 {
  font-size: 1.3rem;
  margin: 0;
  color: #FFFFFF;
}

/* line 296, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-error-modal .commandes-frs-guide-error-content .commandes-frs-guide-error-body {
  margin-bottom: 20px;
}

/* line 299, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-error-modal .commandes-frs-guide-error-content .commandes-frs-guide-error-body p {
  color: #FFFFFF;
  opacity: 0.9;
  line-height: 1.4;
  margin: 0;
  font-size: 0.9rem;
}

/* line 308, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-error-modal .commandes-frs-guide-error-content .commandes-frs-guide-error-footer {
  text-align: right;
}

/* line 311, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-error-modal .commandes-frs-guide-error-content .commandes-frs-guide-error-footer .commandes-frs-guide-error-btn {
  background: #C38761;
  color: #FFFFFF;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

/* line 322, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
.commandes-frs-guide-error-modal .commandes-frs-guide-error-content .commandes-frs-guide-error-footer .commandes-frs-guide-error-btn:hover {
  background: #E5A82E;
}

@media (max-width: 768px) {
  /* line 332, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
  .commandes-frs-guide-container {
    padding: 15px;
  }
  /* line 336, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
  .commandes-frs-guide-header .commandes-frs-guide-title h1, .commandes-frs-guide-header .commandes-frs-guide-title .h1 {
    font-size: 2rem;
  }
  /* line 340, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
  .commandes-frs-guide-card {
    padding: 20px;
  }
  /* line 344, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
  .commandes-frs-guide-features {
    grid-template-columns: 1fr;
  }
  /* line 348, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
  .commandes-frs-guide-benefits {
    grid-template-columns: 1fr;
  }
  /* line 352, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
  .commandes-frs-guide-resources {
    grid-template-columns: 1fr;
  }
  /* line 356, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
  .commandes-frs-guide-actions {
    grid-template-columns: repeat(2, 1fr);
  }
  /* line 360, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
  .commandes-frs-guide-video-container .commandes-frs-guide-video-wrapper {
    height: 250px;
  }
}

@media (max-width: 480px) {
  /* line 366, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
  .commandes-frs-guide-actions {
    grid-template-columns: 1fr;
  }
  /* line 370, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
  .commandes-frs-guide-resource {
    flex-direction: column;
    text-align: center;
  }
  /* line 374, app/assets/stylesheets/pages/servicespace/_commandes_frs_guide.scss */
  .commandes-frs-guide-resource .commandes-frs-guide-resource-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/* line 18, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-right: 1rem;
  color: #fff;
}

@media (max-width: 768px) {
  /* line 18, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
  .guide-container {
    padding: 1rem;
  }
}

/* line 32, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-hero {
  position: relative;
  padding: 3rem 2.5rem;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  overflow: hidden;
}

/* line 43, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* line 54, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(246, 229, 179, 0.15);
  border: 1px solid rgba(246, 229, 179, 0.3);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #F6E5B3;
  margin-bottom: 1rem;
}

/* line 67, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-hero__badge i {
  font-size: 0.75rem;
}

/* line 72, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-hero__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  /* line 72, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
  .guide-hero__title {
    font-size: 1.75rem;
  }
}

/* line 83, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  line-height: 1.6;
}

/* line 90, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-hero__meta {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 97, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-hero__meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* line 102, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-hero__meta span i {
  color: #F6E5B3;
}

/* line 112, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-section {
  margin-bottom: 2rem;
}

/* line 115, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-section__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

/* line 122, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-section__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(139, 69, 89, 0.2) 100%);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 12px;
  font-size: 1.25rem;
  color: #FF6B35;
}

/* line 135, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-section__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

/* line 145, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-glossary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 1.5rem;
  backdrop-filter: blur(12px);
}

/* line 152, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-glossary__search {
  position: relative;
  margin-bottom: 1.5rem;
}

/* line 156, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-glossary__search input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 3rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

/* line 166, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-glossary__search input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

/* line 170, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-glossary__search input:focus {
  outline: none;
  border-color: rgba(255, 107, 53, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

/* line 177, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-glossary__search i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.7);
}

/* line 186, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-glossary__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

@media (max-width: 640px) {
  /* line 186, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
  .guide-glossary__grid {
    grid-template-columns: 1fr;
  }
}

/* line 196, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-glossary__item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1rem 1.25rem;
}

/* line 202, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-glossary__item.hidden {
  display: none;
}

/* line 207, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-glossary__term {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: #F6E5B3;
}

/* line 216, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-glossary__term i {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* line 222, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-glossary__definition {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* line 232, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-map {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(12px);
}

/* line 239, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-map__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* line 246, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-map__center {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #FF6B35 0%, #8B4559 100%);
  border-radius: 50%;
  font-size: 2.5rem;
  color: #fff;
  box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
  position: relative;
  z-index: 2;
}

/* line 260, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-map__center::after {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  border: 2px dashed rgba(246, 229, 179, 0.3);
  border-radius: 50%;
  animation: pulse-ring 3s ease-in-out infinite;
}

/* line 271, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-map__branches {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 100%;
}

@media (max-width: 768px) {
  /* line 271, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
  .guide-map__branches {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* line 282, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-map__branch {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.25rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

/* line 295, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-map__branch:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* line 302, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-map__branch-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(139, 69, 89, 0.15) 100%);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  color: #FF6B35;
}

/* line 316, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-map__branch-title {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

/* line 322, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-map__branch-count {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

@keyframes pulse-ring {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.2;
  }
}

/* line 343, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-usecases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
}

@media (max-width: 768px) {
  /* line 343, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
  .guide-usecases {
    grid-template-columns: 1fr;
  }
}

/* line 353, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-persona {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 1.75rem;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

/* line 361, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-persona:hover {
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* line 367, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-persona__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 376, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-persona__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #FF6B35 0%, #8B4559 100%);
  border-radius: 50%;
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* line 388, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-persona__info {
  flex: 1;
}

/* line 392, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-persona__name {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

/* line 398, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-persona__role {
  font-size: 0.85rem;
  color: #F6E5B3;
}

/* line 403, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-persona__scenario {
  font-style: italic;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.25rem;
  padding-left: 1rem;
  border-left: 3px solid rgba(255, 107, 53, 0.5);
  line-height: 1.5;
}

/* line 413, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-persona__steps {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* line 419, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-persona__step {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
}

/* line 427, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-persona__step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #FF6B35;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* line 440, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-persona__step-text {
  font-size: 0.9rem;
  line-height: 1.4;
}

/* line 446, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-persona__result {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding: 1rem;
  background: rgba(246, 229, 179, 0.1);
  border: 1px solid rgba(246, 229, 179, 0.2);
  border-radius: 12px;
}

/* line 456, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-persona__result i {
  font-size: 1.25rem;
  color: #F6E5B3;
}

/* line 461, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-persona__result span {
  font-size: 0.9rem;
  font-weight: 500;
}

/* line 471, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-workflow {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(12px);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* line 481, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-workflow__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-width: fit-content;
  padding: 1rem 0;
}

@media (max-width: 768px) {
  /* line 481, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
  .guide-workflow__container {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* line 495, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-workflow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 120px;
}

/* line 502, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-workflow__step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(139, 69, 89, 0.15) 100%);
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 16px;
  font-size: 1.5rem;
  color: #FF6B35;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

/* line 517, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-workflow__step-label {
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

/* line 523, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-workflow__step-status {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 528, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-workflow__step:hover .guide-workflow__step-icon {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.25) 0%, rgba(139, 69, 89, 0.25) 100%);
  transform: scale(1.05);
}

/* line 535, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-workflow__step--active .guide-workflow__step-icon {
  background: linear-gradient(135deg, #FF6B35 0%, #8B4559 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

/* line 543, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-workflow__arrow {
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
  color: rgba(246, 229, 179, 0.5);
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  /* line 543, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
  .guide-workflow__arrow {
    transform: rotate(90deg);
    padding: 0.25rem 0;
  }
}

/* line 560, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-faq {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 1.5rem;
  backdrop-filter: blur(12px);
}

/* line 567, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* line 573, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-faq__item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* line 580, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-faq__item.active {
  border-color: rgba(255, 107, 53, 0.3);
}

/* line 583, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-faq__item.active .guide-faq__question {
  background: rgba(255, 107, 53, 0.1);
}

/* line 587, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-faq__item.active .guide-faq__icon {
  transform: rotate(180deg);
}

/* line 591, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-faq__item.active .guide-faq__answer {
  max-height: 500px;
  padding: 1rem 1.25rem;
}

/* line 598, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

/* line 606, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-faq__question:hover {
  background: rgba(255, 255, 255, 0.03);
}

/* line 610, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-faq__question span {
  font-weight: 600;
  font-size: 0.95rem;
  padding-right: 1rem;
}

/* line 617, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-faq__icon {
  color: #F6E5B3;
  transition: transform 0.3s ease;
}

/* line 622, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-faq__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.25rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  transition: all 0.3s ease;
  border-top: 1px solid transparent;
}

/* line 632, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-faq__answer.show {
  border-top-color: rgba(255, 255, 255, 0.08);
}

/* line 636, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-faq__answer a {
  color: #F6E5B3;
  text-decoration: underline;
}

/* line 640, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-faq__answer a:hover {
  color: #FF6B35;
}

/* line 650, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-quickwins {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(139, 69, 89, 0.1) 100%);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 20px;
  padding: 2rem;
}

/* line 656, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-quickwins__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  /* line 656, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
  .guide-quickwins__grid {
    grid-template-columns: 1fr;
  }
}

/* line 666, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-quickwins__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* line 679, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-quickwins__item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 53, 0.4);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* line 684, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-quickwins__item:hover .guide-quickwins__icon {
  background: linear-gradient(135deg, #FF6B35 0%, #8B4559 100%);
  color: #fff;
}

/* line 691, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-quickwins__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #F6E5B3;
  color: #1a1a2e;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* line 705, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-quickwins__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 14px;
  font-size: 1.5rem;
  color: #FF6B35;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

/* line 720, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-quickwins__title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

/* line 726, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-quickwins__desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* line 736, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* line 742, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-feature-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1.5rem;
  backdrop-filter: blur(12px);
}

/* line 749, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-feature-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

/* line 756, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-feature-card__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #FF6B35 0%, #8B4559 100%);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* line 769, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.25);
  border-radius: 12px;
  font-size: 1.1rem;
  color: #FF6B35;
  flex-shrink: 0;
}

/* line 783, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-feature-card__title-wrapper {
  flex: 1;
}

/* line 787, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-feature-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: #fff;
}

/* line 794, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-feature-card__content {
  padding-left: calc(32px + 44px + 2rem);
}

@media (max-width: 640px) {
  /* line 794, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
  .guide-feature-card__content {
    padding-left: 0;
  }
}

/* line 802, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-feature-card__description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* line 809, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-feature-card__details {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* line 817, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-feature-card__details li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #fff;
}

/* line 824, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-feature-card__details li i {
  color: #F6E5B3;
  font-size: 0.75rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* line 833, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-feature-card__tip {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: rgba(246, 229, 179, 0.1);
  border: 1px solid rgba(246, 229, 179, 0.2);
  border-radius: 10px;
  font-size: 0.85rem;
  color: #F6E5B3;
}

/* line 844, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-feature-card__tip i {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* line 855, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  margin: 2rem 0;
}

/* line 862, app/assets/stylesheets/pages/servicespace/../../services_space/components/_guide_system.scss */
.guide-section__intro {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

/* line 17, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-page {
  color: rgba(255, 255, 255, 0.95);
}

/* line 20, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.lightmode .engagement-page {
  color: #140D23;
}

/* line 24, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-page h2, .engagement-page .h2, .engagement-page h5, .engagement-page .h5, .engagement-page h6, .engagement-page .h6 {
  color: inherit;
}

/* line 28, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-page .text-muted {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* line 31, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.lightmode .engagement-page .text-muted {
  color: rgba(20, 13, 35, 0.5) !important;
}

/* line 40, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 47, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.lightmode .engagement-card {
  background: rgba(20, 13, 35, 0.04);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 52, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-card:hover {
  border-color: rgba(195, 135, 97, 0.3);
}

/* line 55, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.lightmode .engagement-card:hover {
  border-color: rgba(195, 135, 97, 0.4);
}

/* line 61, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

/* line 69, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.lightmode .engagement-card-header {
  border-bottom-color: rgba(20, 13, 35, 0.06);
  background: rgba(20, 13, 35, 0.02);
}

/* line 74, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-card-header h5, .engagement-card-header .h5 {
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 600;
}

/* line 81, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-card-body {
  padding: 16px 20px;
}

/* line 84, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-card-body.p-0 {
  padding: 0;
}

/* line 89, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-card-footer {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

/* line 97, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.lightmode .engagement-card-footer {
  border-top-color: rgba(20, 13, 35, 0.06);
  background: rgba(20, 13, 35, 0.02);
}

/* line 106, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-kpi-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  height: 100%;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 115, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.lightmode .engagement-kpi-card {
  background: rgba(20, 13, 35, 0.04);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 120, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-kpi-card:hover {
  border-color: rgba(195, 135, 97, 0.25);
}

/* line 123, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.lightmode .engagement-kpi-card:hover {
  border-color: rgba(195, 135, 97, 0.35);
}

/* line 129, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-kpi-value {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.95);
}

/* line 135, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.lightmode .engagement-kpi-value {
  color: #140D23;
}

/* line 140, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-kpi-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

/* line 145, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.lightmode .engagement-kpi-label {
  color: rgba(20, 13, 35, 0.5);
}

/* line 149, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-kpi-label i {
  margin-right: 4px;
}

/* line 157, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-table {
  width: 100%;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  border-collapse: collapse;
}

/* line 163, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.lightmode .engagement-table {
  color: #140D23;
}

/* line 167, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-table thead th {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
}

/* line 176, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.lightmode .engagement-table thead th {
  color: rgba(20, 13, 35, 0.5);
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 182, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.2s;
}

/* line 186, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.lightmode .engagement-table tbody tr {
  border-bottom-color: rgba(20, 13, 35, 0.04);
}

/* line 190, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.04);
}

/* line 193, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.lightmode .engagement-table tbody tr:hover {
  background: rgba(20, 13, 35, 0.04);
}

/* line 198, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-table tbody tr:last-child {
  border-bottom: none;
}

/* line 203, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-table td {
  padding: 12px 16px;
  vertical-align: middle;
  font-size: 0.85rem;
}

/* line 214, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-form .form-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

/* line 219, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.lightmode .engagement-form .form-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 224, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-form .form-control,
.engagement-form .form-select {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.95);
  transition: all 0.2s ease;
}

/* line 232, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.lightmode .engagement-form .form-control, .lightmode .engagement-form .form-select {
  background: rgba(20, 13, 35, 0.04);
  border-color: rgba(20, 13, 35, 0.15);
  color: #140D23;
}

/* line 238, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-form .form-control::placeholder,
.engagement-form .form-select::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

/* line 241, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.lightmode .engagement-form .form-control::placeholder, .lightmode .engagement-form .form-select::placeholder {
  color: rgba(20, 13, 35, 0.35);
}

/* line 246, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-form .form-control:focus,
.engagement-form .form-select:focus {
  border-color: #E5A82E;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 2px rgba(229, 168, 46, 0.2);
}

/* line 251, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.lightmode .engagement-form .form-control:focus, .lightmode .engagement-form .form-select:focus {
  background: rgba(20, 13, 35, 0.06);
}

/* line 256, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-form .form-control option,
.engagement-form .form-select option {
  background: #140D23;
  color: white;
}

/* line 260, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.lightmode .engagement-form .form-control option, .lightmode .engagement-form .form-select option {
  background: white;
  color: #140D23;
}

/* line 267, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-form .form-check-input {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

/* line 271, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.lightmode .engagement-form .form-check-input {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 276, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-form .form-check-input:checked {
  background-color: #E5A82E;
  border-color: #E5A82E;
}

/* line 286, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

/* line 293, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

/* line 303, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-page .btn-primary, .engagement-page .crm-action-button.crm-action-button-primary {
  background-color: #E5A82E;
  border-color: #E5A82E;
  color: #140D23;
  font-weight: 600;
}

/* line 309, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-page .btn-primary:hover, .engagement-page .crm-action-button.crm-action-button-primary:hover {
  background-color: #d0931a;
  border-color: #d0931a;
  color: #140D23;
}

/* line 316, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-page .btn-outline-primary {
  color: #E5A82E;
  border-color: rgba(229, 168, 46, 0.5);
}

/* line 320, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-page .btn-outline-primary:hover {
  background-color: rgba(229, 168, 46, 0.15);
  border-color: #E5A82E;
  color: #E5A82E;
}

/* line 326, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.lightmode .engagement-page .btn-outline-primary {
  color: #c78d19;
  border-color: rgba(229, 168, 46, 0.4);
}

/* line 330, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.lightmode .engagement-page .btn-outline-primary:hover {
  background-color: rgba(229, 168, 46, 0.1);
  color: #c78d19;
}

/* line 337, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-page .btn-outline-secondary {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.2);
}

/* line 341, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-page .btn-outline-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
}

/* line 347, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.lightmode .engagement-page .btn-outline-secondary {
  color: rgba(20, 13, 35, 0.7);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 351, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.lightmode .engagement-page .btn-outline-secondary:hover {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 359, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-page .btn-outline-success {
  color: #10b981;
  border-color: rgba(16, 185, 129, 0.4);
}

/* line 363, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-page .btn-outline-success:hover {
  background-color: rgba(16, 185, 129, 0.15);
  border-color: #10b981;
  color: #10b981;
}

/* line 370, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-page .btn-outline-danger {
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.4);
}

/* line 374, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-page .btn-outline-danger:hover {
  background-color: rgba(239, 68, 68, 0.15);
  border-color: #ef4444;
  color: #ef4444;
}

/* line 385, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-empty-state {
  text-align: center;
  padding: 3rem 1rem;
}

/* line 389, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-empty-state i {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 1rem;
  display: block;
}

/* line 395, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.lightmode .engagement-empty-state i {
  color: rgba(20, 13, 35, 0.2);
}

/* line 400, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-empty-state p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* line 404, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.lightmode .engagement-empty-state p {
  color: rgba(20, 13, 35, 0.5);
}

/* line 414, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-page .badge {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 8px;
}

/* line 421, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-page .badge.bg-primary {
  background-color: rgba(59, 130, 246, 0.25) !important;
  color: #84b1f9;
}

/* line 425, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.lightmode .engagement-page .badge.bg-primary {
  background-color: rgba(59, 130, 246, 0.15) !important;
  color: #3b82f6;
}

/* line 431, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-page .badge.bg-success {
  background-color: rgba(16, 185, 129, 0.25) !important;
  color: #29ecac;
}

/* line 435, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.lightmode .engagement-page .badge.bg-success {
  background-color: rgba(16, 185, 129, 0.15) !important;
  color: #0c8a60;
}

/* line 441, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-page .badge.bg-danger {
  background-color: rgba(239, 68, 68, 0.25) !important;
  color: #f58a8a;
}

/* line 445, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.lightmode .engagement-page .badge.bg-danger {
  background-color: rgba(239, 68, 68, 0.15) !important;
  color: #eb1515;
}

/* line 451, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-page .badge.bg-secondary {
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: rgba(255, 255, 255, 0.7);
}

/* line 455, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.lightmode .engagement-page .badge.bg-secondary {
  background-color: rgba(20, 13, 35, 0.08) !important;
  color: rgba(20, 13, 35, 0.6);
}

/* line 461, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-page .badge.bg-warning {
  background-color: rgba(245, 158, 11, 0.25) !important;
  color: #f8bb54;
}

/* line 465, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.lightmode .engagement-page .badge.bg-warning {
  background-color: rgba(245, 158, 11, 0.15) !important;
  color: #c57f08;
}

/* line 475, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-progress {
  height: 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

/* line 481, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.lightmode .engagement-progress {
  background: rgba(20, 13, 35, 0.08);
}

/* line 485, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-progress .progress-bar {
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 600;
}

/* line 492, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-progress--lg {
  height: 24px;
}

/* line 495, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-progress--lg .progress-bar {
  font-size: 0.75rem;
}

/* line 504, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-page .breadcrumb {
  background: none;
  padding: 0;
}

/* line 509, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-page .breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

/* line 513, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-page .breadcrumb .breadcrumb-item a:hover {
  color: #E5A82E;
}

/* line 517, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.lightmode .engagement-page .breadcrumb .breadcrumb-item a {
  color: rgba(20, 13, 35, 0.5);
}

/* line 520, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.lightmode .engagement-page .breadcrumb .breadcrumb-item a:hover {
  color: #c78d19;
}

/* line 526, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-page .breadcrumb .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.7);
}

/* line 529, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.lightmode .engagement-page .breadcrumb .breadcrumb-item.active {
  color: rgba(20, 13, 35, 0.7);
}

/* line 534, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-page .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.3);
}

/* line 537, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.lightmode .engagement-page .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(20, 13, 35, 0.3);
}

/* line 549, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-page .alert-danger {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.3);
  color: #f7a2a2;
  border-radius: 12px;
}

/* line 555, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.lightmode .engagement-page .alert-danger {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.2);
  color: #eb1515;
}

/* line 568, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-page .input-group .input-group-text {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-right: none;
  color: rgba(255, 255, 255, 0.5);
  border-radius: 8px 0 0 8px;
}

/* line 575, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.lightmode .engagement-page .input-group .input-group-text {
  background: rgba(20, 13, 35, 0.04);
  border-color: rgba(20, 13, 35, 0.15);
  color: rgba(20, 13, 35, 0.5);
}

/* line 582, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-page .input-group .form-control {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: none;
  color: rgba(255, 255, 255, 0.95);
  border-radius: 0 8px 8px 0;
}

/* line 589, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.lightmode .engagement-page .input-group .form-control {
  background: rgba(20, 13, 35, 0.04);
  border-color: rgba(20, 13, 35, 0.15);
  color: #140D23;
}

/* line 595, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-page .input-group .form-control::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

/* line 598, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.lightmode .engagement-page .input-group .form-control::placeholder {
  color: rgba(20, 13, 35, 0.35);
}

/* line 603, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-page .input-group .form-control:focus {
  border-color: #E5A82E;
  box-shadow: none;
}

/* line 615, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-page .list-group-item {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  transition: background 0.2s;
}

/* line 621, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.lightmode .engagement-page .list-group-item {
  border-color: rgba(20, 13, 35, 0.06);
  color: #140D23;
}

/* line 626, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-page .list-group-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

/* line 629, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.lightmode .engagement-page .list-group-item:hover {
  background: rgba(20, 13, 35, 0.04);
}

/* line 640, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-page .table-responsive::-webkit-scrollbar {
  height: 6px;
}

/* line 644, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-page .table-responsive::-webkit-scrollbar-track {
  background: transparent;
}

/* line 648, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-page .table-responsive::-webkit-scrollbar-thumb {
  background: rgba(195, 135, 97, 0.4);
  border-radius: 3px;
}

/* line 652, app/assets/stylesheets/pages/servicespace/../../services_space/components/_engagement.scss */
.engagement-page .table-responsive::-webkit-scrollbar-thumb:hover {
  background: rgba(195, 135, 97, 0.6);
}

/* line 10, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-general {
  display: flex;
  height: 100vh;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(151deg, #140d23 25%, #640127 100%);
}

/* line 18, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-general.lightmode {
  background: linear-gradient(170deg, #e8e8e8 45%, rgba(229, 168, 46, 0.8) 135%);
}

/* line 26, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-general.nightmode {
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
}

/* line 30, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-general-bloc {
  width: 100%;
  height: 86%;
  display: flex;
  flex-direction: row;
  gap: 10px;
  transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
  overflow: hidden;
  position: relative;
}

/* line 42, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-general:has(.navbar-retracted) .services-general-bloc {
  height: 100%;
  border-top: none;
}

/* line 47, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-general-menu {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  height: 98%;
  width: 230px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  z-index: 200;
  position: relative;
  opacity: 1;
  margin-left: 15px;
  background: rgba(254, 254, 254, 0.08);
  backdrop-filter: blur(12px);
  transition: margin-left 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), border 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* line 70, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-general-menu::-webkit-scrollbar {
  display: none;
}

/* line 74, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-general-menu::-webkit-scrollbar-track {
  background: transparent;
}

/* line 78, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-general-menu::-webkit-scrollbar-thumb {
  background: transparent;
}

/* line 83, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-general-menu.lightmode {
  color: #140D23;
}

/* line 87, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-general-menu.nightmode {
  color: #FFFFFF;
}

/* line 91, app/assets/stylesheets/pages/servicespace/_layout.scss */
.hidden-menu {
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  border-right: none;
  margin-left: -230px !important;
}

/* line 102, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-general-menu-top {
  margin-top: 16px;
  padding-left: 8%;
  padding-right: 8%;
  height: 6%;
  width: 100%;
  display: flex;
  flex-direction: row;
  color: rgba(255, 254, 254, 0.5);
  align-items: center;
  justify-content: space-between;
}

/* line 115, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-general-menu-top.lightmode {
  color: #140D23;
}

/* line 119, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-general-menu-top.nightmode {
  color: #FFFFFF;
}

/* line 123, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-general-menu-text {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

/* line 129, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-general-menu-text .menu-title-icon {
  font-size: 1.1rem;
  background: linear-gradient(135deg, #C38761, #A60240);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* line 137, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-general-menu-text span {
  font-weight: 600;
}

/* line 142, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-general-menu-top-text {
  height: 100%;
  width: 70%;
  align-items: center;
}

/* line 148, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-general-menu-top-icon {
  height: 100%;
  width: 30%;
  align-items: center;
}

/* line 155, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-menu-toggle-btn {
  position: fixed;
  top: 95%;
  left: calc(230px - 26px);
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 500;
  transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

/* line 176, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-menu-toggle-btn::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
  pointer-events: none;
}

/* line 188, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-menu-toggle-btn i {
  font-size: 1.3rem;
  color: #FFFFFF;
  transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
  position: relative;
  z-index: 1;
}

/* line 197, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-menu-toggle-btn:hover {
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 4px 16px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.7);
}

/* line 204, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-menu-toggle-btn:hover i {
  transform: translateX(-3px);
}

/* line 209, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-menu-toggle-btn:active {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* line 216, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-menu-toggle-btn.menu-retracted {
  left: 20px;
}

/* line 219, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-menu-toggle-btn.menu-retracted:hover i {
  transform: translateX(3px);
}

/* line 227, app/assets/stylesheets/pages/servicespace/_layout.scss */
.picking_render_menu {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  /* Personnalisation de la barre de défilement */
}

/* line 234, app/assets/stylesheets/pages/servicespace/_layout.scss */
.picking_render_menu::-webkit-scrollbar {
  width: 6px;
}

/* line 238, app/assets/stylesheets/pages/servicespace/_layout.scss */
.picking_render_menu::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 243, app/assets/stylesheets/pages/servicespace/_layout.scss */
.picking_render_menu::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 248, app/assets/stylesheets/pages/servicespace/_layout.scss */
.picking_render_menu::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 253, app/assets/stylesheets/pages/servicespace/_layout.scss */
.menu-scroll-chevron {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  z-index: 300;
  transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 0 2px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

/* line 273, app/assets/stylesheets/pages/servicespace/_layout.scss */
.menu-scroll-chevron::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  pointer-events: none;
}

/* line 285, app/assets/stylesheets/pages/servicespace/_layout.scss */
.menu-scroll-chevron i {
  font-size: 1.1rem;
  color: #FFFFFF;
  animation: bounce 2s infinite;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  position: relative;
  z-index: 1;
}

/* line 294, app/assets/stylesheets/pages/servicespace/_layout.scss */
.menu-scroll-chevron:hover {
  transform: translateX(-50%) scale(1.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 0 3px rgba(255, 255, 255, 0.2), 0 0 20px rgba(195, 135, 97, 0.4);
}

/* line 301, app/assets/stylesheets/pages/servicespace/_layout.scss */
.menu-scroll-chevron:hover i {
  animation-play-state: paused;
  transform: translateY(2px);
}

/* line 307, app/assets/stylesheets/pages/servicespace/_layout.scss */
.menu-scroll-chevron:active {
  transform: translateX(-50%) scale(1.05);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 0 2px rgba(255, 255, 255, 0.15);
}

/* line 314, app/assets/stylesheets/pages/servicespace/_layout.scss */
.menu-scroll-chevron.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(20px);
}

/* line 321, app/assets/stylesheets/pages/servicespace/_layout.scss */
.menu-scroll-chevron.lightmode {
  background: linear-gradient(135deg, #C38761 0%, #A60240 100%);
}

/* line 324, app/assets/stylesheets/pages/servicespace/_layout.scss */
.menu-scroll-chevron.lightmode:hover {
  background: linear-gradient(135deg, #ca9573 0%, #bf024a 100%);
}

/* line 329, app/assets/stylesheets/pages/servicespace/_layout.scss */
.menu-scroll-chevron.nightmode {
  background: linear-gradient(135deg, #640127 0%, #C38761 100%);
}

/* line 332, app/assets/stylesheets/pages/servicespace/_layout.scss */
.menu-scroll-chevron.nightmode:hover {
  background: linear-gradient(135deg, #8c0137 0%, #ca9573 100%);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

/* line 349, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-details-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  width: 100%;
  padding: 8px;
  padding-top: 16px;
  gap: 4px;
}

/* line 361, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-details-menu .btn.btn-menu {
  font-size: 0.77rem;
  padding: 6px 10px;
  line-height: 1.3;
}

/* line 367, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-details-menu.lightmode a {
  color: #140D23;
}

/* line 370, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-details-menu.nightmode a {
  color: #FFFFFF;
}

/* line 374, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-general-content {
  height: 100%;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  overflow: auto;
  transition: flex 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), width 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), padding 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
  /* Personnalisation de la barre de défilement */
}

/* line 392, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-general-content::-webkit-scrollbar {
  width: 8px;
  /* Largeur de la barre de défilement */
}

/* line 396, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-general-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  /* Couleur de l'arrière-plan de la barre */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 406, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-general-content::-webkit-scrollbar-thumb {
  background: #C38761;
  /* Couleur de la barre de défilement */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 411, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-general-content::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
  /* Couleur de la barre au survol */
}

/* line 415, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-general-content.big-capsule-content {
  width: 95%;
}

/* line 420, app/assets/stylesheets/pages/servicespace/_layout.scss */
.crm-section .services-general-content {
  transition: all 0.3s ease;
}

/* line 423, app/assets/stylesheets/pages/servicespace/_layout.scss */
.crm-section .services-general-content.wide-margins {
  width: 95%;
  padding-left: 40px;
  padding-right: 40px;
}

/* line 431, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-general-return {
  width: 10%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 0.8rem;
  margin-bottom: 15px;
  gap: 5px;
}

/* line 443, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-general-title {
  width: 90%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 5px;
}

/* line 453, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-general-title span {
  margin-top: auto;
  margin-bottom: auto;
  font-size: 1.4rem;
}

/* line 460, app/assets/stylesheets/pages/servicespace/_layout.scss */
.flex-1 {
  flex: 1 !important;
}

/* line 464, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-menu {
  width: 100%;
  height: 16%;
  display: flex;
  flex-direction: row;
  gap: 20px;
  transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
  overflow: hidden;
}

/* line 474, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-menu.navbar-retracted {
  height: 0%;
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  margin-bottom: 0;
}

/* line 482, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-menu-logo {
  width: 30%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

/* line 491, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-menu-logo a {
  all: unset;
  font-family: "Font Awesome 5 Free";
  color: white;
  cursor: pointer;
}

/* line 498, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-menu-logo.lightmode a {
  color: #A60240;
}

/* line 502, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-menu-logo.nightmode a {
  color: white;
}

/* line 506, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-menu-logo-title {
  position: absolute;
  /* Positionne le lien par rapport à la fenêtre */
  top: 4%;
  /* Ajuste la position verticale */
  left: 4%;
  /* Ajuste la position horizontale */
  z-index: 9999;
  font-size: 1.8rem;
  font-weight: bold;
  overflow: hidden;
}

/* line 516, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-menu-logo-title.lightmode {
  color: #140D23;
}

/* line 520, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-menu-logo-title.nightmode {
  color: #FFFFFF;
}

/* line 524, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-menu-logo-websitelink {
  font-size: 0.8rem;
  padding-left: 20px;
  font-weight: bold;
  overflow: hidden;
}

/* line 531, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-menu-toggle {
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* line 540, app/assets/stylesheets/pages/servicespace/_layout.scss */
.cross-exit {
  margin-right: 5%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* line 550, app/assets/stylesheets/pages/servicespace/_layout.scss */
.cross-exit a {
  all: unset;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* line 559, app/assets/stylesheets/pages/servicespace/_layout.scss */
.cross-exit a:hover {
  transform: rotate(90deg);
}

/* line 566, app/assets/stylesheets/pages/servicespace/_layout.scss */
.btn-menu-start {
  padding: 10px 20px;
  font-size: 1.1rem;
  border-radius: 10px;
}

/* line 572, app/assets/stylesheets/pages/servicespace/_layout.scss */
.btn-menu {
  padding: 6px 10px;
  font-size: 0.7rem;
  line-height: 1.3;
  border-radius: 8px;
  background-color: transparent;
  color: #FFFFFF;
  transition: all 0.2s ease;
  position: relative;
  text-align: left;
  width: 100%;
  justify-content: flex-start;
  display: flex;
  align-items: center;
  border: none;
  text-decoration: none;
}

/* line 589, app/assets/stylesheets/pages/servicespace/_layout.scss */
.btn-menu .menu-icon {
  width: 16px;
  text-align: center;
  margin-right: 8px;
  font-size: 0.7rem;
  opacity: 0.6;
  flex-shrink: 0;
  transition: opacity 0.2s ease, color 0.2s ease;
}

/* line 599, app/assets/stylesheets/pages/servicespace/_layout.scss */
.btn-menu:hover {
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

/* line 603, app/assets/stylesheets/pages/servicespace/_layout.scss */
.btn-menu:hover .menu-icon {
  opacity: 0.9;
}

/* line 608, app/assets/stylesheets/pages/servicespace/_layout.scss */
.btn-menu:active {
  background: rgba(255, 255, 255, 0.12);
}

/* État actif du bouton de menu */
/* line 614, app/assets/stylesheets/pages/servicespace/_layout.scss */
.btn-menu.active {
  font-weight: 600;
  background: #E5A82E;
  color: #140D23;
  border-radius: 8px;
}

/* line 620, app/assets/stylesheets/pages/servicespace/_layout.scss */
.btn-menu.active .menu-icon {
  opacity: 1;
  color: #140D23;
}

/* line 625, app/assets/stylesheets/pages/servicespace/_layout.scss */
.btn-menu.active:hover {
  background: linear-gradient(135deg, #ca9573, #e8b145);
}

/* Styles pour les thèmes clair et sombre */
/* line 631, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-details-menu.lightmode .btn-menu {
  color: #140D23;
}

/* line 634, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-details-menu.lightmode .btn-menu:hover {
  background: rgba(20, 13, 35, 0.06);
}

/* line 638, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-details-menu.lightmode .btn-menu:active {
  background: rgba(20, 13, 35, 0.1);
}

/* line 643, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-details-menu.lightmode .btn-menu.active {
  color: #140D23;
  background: #E5A82E;
}

/* line 647, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-details-menu.lightmode .btn-menu.active .menu-icon {
  color: #140D23;
}

/* line 652, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-details-menu.nightmode .btn-menu {
  color: #FFFFFF;
}

/* line 656, app/assets/stylesheets/pages/servicespace/_layout.scss */
.services-details-menu.nightmode .btn-menu.active {
  color: #140D23;
}

/* Styles partagés pour tout le module CRM */
/* ==========================================================================
   BOUTONS D'ACTION POUR LE CRM
   ========================================================================== */
/* line 5, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_action_buttons.scss */
.form-button, .crm-action-button, .users-management-container .users-header .add-user-btn {
  padding: 8px 15px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  font-size: 0.7rem;
  cursor: pointer;
  transition: all 0.2s ease;
  /* Mode clair - Adaptation pour le thème lightmode */
}

/* line 16, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_action_buttons.scss */
.form-button:hover, .crm-action-button:hover, .users-management-container .users-header .add-user-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 20, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_action_buttons.scss */
.form-button.btn-secondary, .btn-secondary.crm-action-button, .crm-action-button.crm-action-button-secondary, .users-management-container .users-header .btn-secondary.add-user-btn, .users-management-container .users-header .add-user-btn.crm-action-button.crm-action-button-secondary {
  background-color: rgba(155, 155, 155, 0.2);
}

/* line 23, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_action_buttons.scss */
.form-button.btn-secondary:hover, .btn-secondary.crm-action-button:hover, .crm-action-button.crm-action-button-secondary:hover, .users-management-container .users-header .btn-secondary.add-user-btn:hover {
  background-color: rgba(155, 155, 155, 0.3);
  color: white !important;
}

/* line 29, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_action_buttons.scss */
.form-button.btn-primary, .btn-primary.crm-action-button, .crm-action-button.crm-action-button-primary, .users-management-container .users-header .btn-primary.add-user-btn, .users-management-container .users-header .add-user-btn.crm-action-button.crm-action-button-primary {
  background-color: #E5A82E !important;
  border: 1px solid #E5A82E !important;
  color: #140D23 !important;
}

/* line 34, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_action_buttons.scss */
.form-button.btn-primary:hover, .btn-primary.crm-action-button:hover, .crm-action-button.crm-action-button-primary:hover, .users-management-container .users-header .btn-primary.add-user-btn:hover {
  background-color: #c78d19 !important;
  border-color: #c78d19 !important;
}

/* line 40, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_action_buttons.scss */
.form-button.btn-danger, .btn-danger.crm-action-button, .users-management-container .users-header .btn-danger.add-user-btn {
  background-color: rgba(231, 76, 60, 0.3);
  border-color: rgba(231, 76, 60, 0.5);
}

/* line 44, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_action_buttons.scss */
.form-button.btn-danger:hover, .btn-danger.crm-action-button:hover, .users-management-container .users-header .btn-danger.add-user-btn:hover {
  background-color: rgba(231, 76, 60, 0.5);
}

/* line 49, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_action_buttons.scss */
.form-button.btn-success, .btn-success.crm-action-button, .users-management-container .users-header .btn-success.add-user-btn {
  background-color: rgba(40, 167, 69, 0.3);
  border-color: rgba(40, 167, 69, 0.5);
}

/* line 53, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_action_buttons.scss */
.form-button.btn-success:hover, .btn-success.crm-action-button:hover, .users-management-container .users-header .btn-success.add-user-btn:hover {
  background-color: rgba(40, 167, 69, 0.5);
}

/* line 58, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_action_buttons.scss */
.lightmode .form-button, .lightmode .crm-action-button, .lightmode .users-management-container .users-header .add-user-btn, .users-management-container .users-header .lightmode .add-user-btn {
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 62, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_action_buttons.scss */
.lightmode .form-button:hover, .lightmode .crm-action-button:hover, .lightmode .users-management-container .users-header .add-user-btn:hover, .users-management-container .users-header .lightmode .add-user-btn:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 66, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_action_buttons.scss */
.lightmode .form-button.btn-secondary, .lightmode .btn-secondary.crm-action-button, .lightmode .crm-action-button.crm-action-button-secondary, .lightmode .users-management-container .users-header .btn-secondary.add-user-btn, .users-management-container .users-header .lightmode .btn-secondary.add-user-btn {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 69, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_action_buttons.scss */
.lightmode .form-button.btn-secondary:hover, .lightmode .btn-secondary.crm-action-button:hover, .lightmode .crm-action-button.crm-action-button-secondary:hover, .lightmode .users-management-container .users-header .btn-secondary.add-user-btn:hover, .users-management-container .users-header .lightmode .btn-secondary.add-user-btn:hover {
  background-color: rgba(20, 13, 35, 0.2);
  color: #140D23 !important;
}

/* line 75, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_action_buttons.scss */
.lightmode .form-button.btn-primary, .lightmode .btn-primary.crm-action-button, .lightmode .crm-action-button.crm-action-button-primary, .lightmode .users-management-container .users-header .btn-primary.add-user-btn, .users-management-container .users-header .lightmode .btn-primary.add-user-btn {
  background-color: #E5A82E !important;
  border-color: #E5A82E !important;
  color: #140D23 !important;
}

/* line 80, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_action_buttons.scss */
.lightmode .form-button.btn-primary:hover, .lightmode .btn-primary.crm-action-button:hover, .lightmode .crm-action-button.crm-action-button-primary:hover, .lightmode .users-management-container .users-header .btn-primary.add-user-btn:hover, .users-management-container .users-header .lightmode .btn-primary.add-user-btn:hover {
  background-color: #c78d19 !important;
  border-color: #c78d19 !important;
}

/* line 86, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_action_buttons.scss */
.lightmode .form-button.btn-danger, .lightmode .btn-danger.crm-action-button, .lightmode .users-management-container .users-header .btn-danger.add-user-btn, .users-management-container .users-header .lightmode .btn-danger.add-user-btn {
  color: #a82315;
  background-color: rgba(231, 76, 60, 0.1);
  border-color: rgba(231, 76, 60, 0.3);
}

/* line 91, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_action_buttons.scss */
.lightmode .form-button.btn-danger:hover, .lightmode .btn-danger.crm-action-button:hover, .lightmode .users-management-container .users-header .btn-danger.add-user-btn:hover, .users-management-container .users-header .lightmode .btn-danger.add-user-btn:hover {
  background-color: rgba(231, 76, 60, 0.2);
}

/* line 96, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_action_buttons.scss */
.lightmode .form-button.btn-success, .lightmode .btn-success.crm-action-button, .lightmode .users-management-container .users-header .btn-success.add-user-btn, .users-management-container .users-header .lightmode .btn-success.add-user-btn {
  color: #155724;
  background-color: rgba(40, 167, 69, 0.15);
  border-color: rgba(40, 167, 69, 0.3);
}

/* line 101, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_action_buttons.scss */
.lightmode .form-button.btn-success:hover, .lightmode .btn-success.crm-action-button:hover, .lightmode .users-management-container .users-header .btn-success.add-user-btn:hover, .users-management-container .users-header .lightmode .btn-success.add-user-btn:hover {
  background-color: rgba(40, 167, 69, 0.25);
}

/* Groupe de boutons d'action alignés horizontalement */
/* line 109, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_action_buttons.scss */
.action-buttons-group {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Harmonisation des boutons avec d'autres classes utilisées dans le CRM */
/* line 116, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_action_buttons.scss */
.crm-action-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  /* Alignement spécifique pour les icônes dans les boutons */
}

/* line 123, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_action_buttons.scss */
.crm-action-button i {
  margin-left: 2px;
  line-height: 1;
  vertical-align: middle;
  font-size: 0.75em;
}

/* ==========================================================================
   CONTENEURS D'ACTIONS POUR L'ALIGNEMENT DES BOUTONS - STYLES ORIGINAUX
   ========================================================================== */
/* Conteneurs d'actions pour l'alignement des boutons - alignement à droite comme l'original */
/* line 144, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_action_buttons.scss */
.prospect-actions,
.customer-actions,
.quote-actions,
.contact-actions,
.crm-quote-actions,
.action-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 10px;
  transition: padding 0.3s ease;
  /* Pour les conteneurs avec marges larges */
  /* Turbo-frame doit afficher ses enfants en ligne */
}

/* line 157, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_action_buttons.scss */
.prospect-actions.wide-margins,
.customer-actions.wide-margins,
.quote-actions.wide-margins,
.contact-actions.wide-margins,
.crm-quote-actions.wide-margins,
.action-buttons.wide-margins {
  padding-left: 40px;
  padding-right: 40px;
}

/* line 163, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_action_buttons.scss */
.prospect-actions turbo-frame,
.customer-actions turbo-frame,
.quote-actions turbo-frame,
.contact-actions turbo-frame,
.crm-quote-actions turbo-frame,
.action-buttons turbo-frame {
  display: contents;
}

/* Styles pour les sections de nouvelles entités */
/* line 169, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_action_buttons.scss */
.adv-quote-row2,
.adv-new-customer-row2,
.adv-new-order-form-row2,
.adv-new-invoice-row2 {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* ==========================================================================
   STYLES POUR LES ICÔNES DE TOOLTIP DANS LES EN-TÊTES DE TABLEAUX CRM
   Harmonisation de l'affichage des tooltips dans le module CRM
   ========================================================================== */
/* line 184, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_action_buttons.scss */
.sort-link .fa-circle-question {
  margin-left: 4px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

/* line 189, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_action_buttons.scss */
.sort-link .fa-circle-question:hover {
  opacity: 1;
}

/* Styles spécifiques pour les en-têtes de colonnes avec tooltips */
/* line 199, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_action_buttons.scss */
.contacts-board-row2-list-head .sort-link,
.leads-board-row2-list-head .sort-link,
.quotes-board-row2-list-head .sort-link {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* line 204, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_action_buttons.scss */
.contacts-board-row2-list-head .sort-link .fa-circle-question,
.leads-board-row2-list-head .sort-link .fa-circle-question,
.quotes-board-row2-list-head .sort-link .fa-circle-question {
  font-size: 0.5rem !important;
  margin-left: 2px;
  opacity: 0.6;
  transition: all 0.2s ease;
}

/* line 210, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_action_buttons.scss */
.contacts-board-capsule.lightmode .contacts-board-row2-list-head .sort-link .fa-circle-question, .leads-board-capsule.lightmode .contacts-board-row2-list-head .sort-link .fa-circle-question, .quotes-board-capsule.lightmode .contacts-board-row2-list-head .sort-link .fa-circle-question, .contacts-board-capsule.lightmode .leads-board-row2-list-head .sort-link .fa-circle-question, .leads-board-capsule.lightmode .leads-board-row2-list-head .sort-link .fa-circle-question, .quotes-board-capsule.lightmode .leads-board-row2-list-head .sort-link .fa-circle-question, .contacts-board-capsule.lightmode .quotes-board-row2-list-head .sort-link .fa-circle-question, .leads-board-capsule.lightmode .quotes-board-row2-list-head .sort-link .fa-circle-question, .quotes-board-capsule.lightmode .quotes-board-row2-list-head .sort-link .fa-circle-question {
  color: rgba(20, 13, 35, 0.6);
}

/* line 216, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_action_buttons.scss */
.contacts-board-row2-list-head .sort-link .fa-circle-question:hover,
.leads-board-row2-list-head .sort-link .fa-circle-question:hover,
.quotes-board-row2-list-head .sort-link .fa-circle-question:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* line 220, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_action_buttons.scss */
.contacts-board-capsule.lightmode .contacts-board-row2-list-head .sort-link .fa-circle-question:hover, .leads-board-capsule.lightmode .contacts-board-row2-list-head .sort-link .fa-circle-question:hover, .quotes-board-capsule.lightmode .contacts-board-row2-list-head .sort-link .fa-circle-question:hover, .contacts-board-capsule.lightmode .leads-board-row2-list-head .sort-link .fa-circle-question:hover, .leads-board-capsule.lightmode .leads-board-row2-list-head .sort-link .fa-circle-question:hover, .quotes-board-capsule.lightmode .leads-board-row2-list-head .sort-link .fa-circle-question:hover, .contacts-board-capsule.lightmode .quotes-board-row2-list-head .sort-link .fa-circle-question:hover, .leads-board-capsule.lightmode .quotes-board-row2-list-head .sort-link .fa-circle-question:hover, .quotes-board-capsule.lightmode .quotes-board-row2-list-head .sort-link .fa-circle-question:hover {
  color: #140D23;
}

/* Icône d’aide dans les en-têtes de cartes/formulaires CRM (création, édition, show) */
/* line 231, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_action_buttons.scss */
.crm-card .card-header .fa-circle-question,
.grid-section .section-label .fa-circle-question {
  font-size: 0.5rem !important;
  margin-left: 2px;
  opacity: 0.6;
  transition: all 0.2s ease;
  cursor: help;
}

/* line 239, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_action_buttons.scss */
.crm-card .card-header .fa-circle-question:hover,
.grid-section .section-label .fa-circle-question:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
  /* line 250, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_action_buttons.scss */
  .prospect-actions,
.customer-actions,
.quote-actions,
.contact-actions,
.crm-quote-actions,
.action-buttons,
.adv-quote-row2,
.adv-new-customer-row2,
.adv-new-order-form-row2,
.adv-new-invoice-row2 {
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
  }
  /* line 264, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_action_buttons.scss */
  .prospect-actions .form-button, .prospect-actions .users-management-container .users-header .add-user-btn, .users-management-container .users-header .prospect-actions .add-user-btn, .prospect-actions .crm-action-button,
.customer-actions .form-button,
.customer-actions .users-management-container .users-header .add-user-btn,
.users-management-container .users-header .customer-actions .add-user-btn,
.customer-actions .crm-action-button,
.quote-actions .form-button,
.quote-actions .users-management-container .users-header .add-user-btn,
.users-management-container .users-header .quote-actions .add-user-btn,
.quote-actions .crm-action-button,
.contact-actions .form-button,
.contact-actions .users-management-container .users-header .add-user-btn,
.users-management-container .users-header .contact-actions .add-user-btn,
.contact-actions .crm-action-button,
.crm-quote-actions .form-button,
.crm-quote-actions .users-management-container .users-header .add-user-btn,
.users-management-container .users-header .crm-quote-actions .add-user-btn,
.crm-quote-actions .crm-action-button,
.action-buttons .form-button,
.action-buttons .users-management-container .users-header .add-user-btn,
.users-management-container .users-header .action-buttons .add-user-btn,
.action-buttons .crm-action-button,
.adv-quote-row2 .form-button,
.adv-quote-row2 .users-management-container .users-header .add-user-btn,
.users-management-container .users-header .adv-quote-row2 .add-user-btn,
.adv-quote-row2 .crm-action-button,
.adv-new-customer-row2 .form-button,
.adv-new-customer-row2 .users-management-container .users-header .add-user-btn,
.users-management-container .users-header .adv-new-customer-row2 .add-user-btn,
.adv-new-customer-row2 .crm-action-button,
.adv-new-order-form-row2 .form-button,
.adv-new-order-form-row2 .users-management-container .users-header .add-user-btn,
.users-management-container .users-header .adv-new-order-form-row2 .add-user-btn,
.adv-new-order-form-row2 .crm-action-button,
.adv-new-invoice-row2 .form-button,
.adv-new-invoice-row2 .users-management-container .users-header .add-user-btn,
.users-management-container .users-header .adv-new-invoice-row2 .add-user-btn,
.adv-new-invoice-row2 .crm-action-button {
    text-align: center;
  }
}

/* ==========================================================================
   AUTOCOMPLETE V2 - Styles partagés pour l'autocomplétion des searchbars
   Utilisé par les modules CRM et ADV
   Design inspiré des modales de l'application
   ========================================================================== */
/* Container de la searchbar - nécessite position relative pour le dropdown */
/* line 8, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.leads-board-row1-searchbar,
.quotes-board-row1-searchbar,
.adv-searchbar-container {
  position: relative;
}

/* Liste des suggestions - classes CRM et ADV (alias générique) */
/* line 15, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.crm-autocomplete-list,
.adv-autocomplete-list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  max-height: 380px;
  background: #fff;
  border: 1px solid rgba(20, 13, 35, 0.15);
  border-radius: 12px;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  margin: 0;
  padding: 8px 0;
  list-style: none;
  overflow-y: auto;
  display: none;
  /* Personnalisation scrollbar */
}

/* line 34, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.crm-autocomplete-list::-webkit-scrollbar,
.adv-autocomplete-list::-webkit-scrollbar {
  width: 6px;
}

/* line 38, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.crm-autocomplete-list::-webkit-scrollbar-track,
.adv-autocomplete-list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
}

/* line 43, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.crm-autocomplete-list::-webkit-scrollbar-thumb,
.adv-autocomplete-list::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 3px;
}

/* line 48, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.crm-autocomplete-list.is-open,
.adv-autocomplete-list.is-open {
  display: block;
}

/* Élément de suggestion - nouvelle structure */
/* line 54, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.autocomplete-suggestion {
  padding: 12px 16px;
  margin: 4px 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 8px;
  color: #140D23;
  background: rgba(20, 13, 35, 0.02);
  /* Structure du contenu */
  /* Header : Nom + Statut */
  /* Référence/Code avec style monospace */
  /* Grille de détails (chips) */
  /* Ancien format - rétrocompatibilité */
}

/* line 63, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.autocomplete-suggestion:hover, .autocomplete-suggestion.is-selected {
  background: rgba(195, 135, 97, 0.1);
  transform: translateX(4px);
}

/* line 69, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.autocomplete-suggestion.is-selected {
  background: rgba(195, 135, 97, 0.15);
}

/* line 74, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.autocomplete-suggestion .suggestion-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* line 81, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.autocomplete-suggestion .suggestion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* line 88, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.autocomplete-suggestion .suggestion-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: #140D23;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 99, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.autocomplete-suggestion .suggestion-reference {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Monaco', 'Consolas', 'Courier New', monospace;
  font-size: 0.72rem;
  color: #af6c42;
  padding: 4px 8px;
  background: rgba(195, 135, 97, 0.1);
  border-radius: 4px;
  width: fit-content;
}

/* line 111, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.autocomplete-suggestion .suggestion-reference i {
  font-size: 0.6rem;
  opacity: 0.7;
}

/* line 118, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.autocomplete-suggestion .suggestion-details-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

/* line 125, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.autocomplete-suggestion .detail-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  background: rgba(20, 13, 35, 0.05);
  border-radius: 4px;
  font-size: 0.7rem;
  color: rgba(20, 13, 35, 0.8);
  /* Mise en avant du prix */
}

/* line 135, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.autocomplete-suggestion .detail-chip i {
  font-size: 0.6rem;
  opacity: 0.6;
  color: rgba(20, 13, 35, 0.5);
}

/* line 142, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.autocomplete-suggestion .detail-chip.chip-price {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
  font-weight: 500;
}

/* line 150, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.autocomplete-suggestion .suggestion-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 4px;
}

/* line 158, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.autocomplete-suggestion .suggestion-subtitle {
  font-family: 'Monaco', 'Consolas', 'Courier New', monospace;
  font-size: 0.72rem;
  color: #af6c42;
  padding: 4px 8px;
  background: rgba(195, 135, 97, 0.1);
  border-radius: 4px;
  width: fit-content;
  margin-bottom: 6px;
}

/* line 169, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.autocomplete-suggestion .suggestion-status {
  flex-shrink: 0;
  font-size: 0.65rem;
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  background: rgba(20, 13, 35, 0.1);
  color: #140D23;
  /* Statuts prospects */
  /* Statuts contacts/clients */
  /* Statuts rendez-vous */
  /* Statuts devis/factures */
  /* Statuts contrats */
}

/* line 181, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.autocomplete-suggestion .suggestion-status.status-qualified {
  background: rgba(40, 167, 69, 0.15);
  color: #28a745;
}

/* line 186, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.autocomplete-suggestion .suggestion-status.status-unqualified {
  background: rgba(220, 53, 69, 0.15);
  color: #dc3545;
}

/* line 191, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.autocomplete-suggestion .suggestion-status.status-quote-sent {
  background: rgba(195, 135, 97, 0.2);
  color: #af6c42;
}

/* line 196, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.autocomplete-suggestion .suggestion-status.status-archived {
  background: rgba(232, 232, 232, 0.2);
  color: #e8e8e8;
}

/* line 202, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.autocomplete-suggestion .suggestion-status.status-active {
  background: rgba(40, 167, 69, 0.15);
  color: #28a745;
}

/* line 208, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.autocomplete-suggestion .suggestion-status.status-upcoming {
  background: rgba(23, 162, 184, 0.15);
  color: #17a2b8;
}

/* line 213, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.autocomplete-suggestion .suggestion-status.status-completed {
  background: rgba(40, 167, 69, 0.15);
  color: #28a745;
}

/* line 218, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.autocomplete-suggestion .suggestion-status.status-abandoned {
  background: rgba(232, 232, 232, 0.2);
  color: #e8e8e8;
}

/* line 224, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.autocomplete-suggestion .suggestion-status.status-draft {
  background: rgba(232, 232, 232, 0.15);
  color: #e8e8e8;
}

/* line 229, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.autocomplete-suggestion .suggestion-status.status-sent {
  background: rgba(23, 162, 184, 0.15);
  color: #17a2b8;
}

/* line 234, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.autocomplete-suggestion .suggestion-status.status-validated, .autocomplete-suggestion .suggestion-status.status-approved {
  background: rgba(40, 167, 69, 0.15);
  color: #28a745;
}

/* line 240, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.autocomplete-suggestion .suggestion-status.status-rejected {
  background: rgba(220, 53, 69, 0.15);
  color: #dc3545;
}

/* line 245, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.autocomplete-suggestion .suggestion-status.status-expired {
  background: rgba(232, 232, 232, 0.2);
  color: #e8e8e8;
}

/* line 250, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.autocomplete-suggestion .suggestion-status.status-paid {
  background: rgba(40, 167, 69, 0.2);
  color: #28a745;
}

/* line 255, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.autocomplete-suggestion .suggestion-status.status-overdue {
  background: rgba(220, 53, 69, 0.2);
  color: #dc3545;
}

/* line 261, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.autocomplete-suggestion .suggestion-status.status-contract, .autocomplete-suggestion .suggestion-status.status-signed {
  background: rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 267, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.autocomplete-suggestion .suggestion-status.status-cancelled {
  background: rgba(220, 53, 69, 0.15);
  color: #dc3545;
}

/* line 273, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.autocomplete-suggestion .suggestion-secondary {
  font-size: 0.7rem;
  color: rgba(20, 13, 35, 0.6);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin-top: 4px;
}

/* line 282, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.autocomplete-suggestion .suggestion-secondary .detail-item {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  background: rgba(20, 13, 35, 0.05);
  border-radius: 4px;
}

/* line 290, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.autocomplete-suggestion .suggestion-secondary i {
  font-size: 0.6rem;
  margin-right: 4px;
  color: #C38761 !important;
  opacity: 0.8;
}

/* line 297, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.autocomplete-suggestion .suggestion-secondary .separator {
  display: none;
}

/* Messages "aucun résultat" et erreur */
/* line 304, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.autocomplete-no-results,
.autocomplete-error {
  padding: 24px 16px;
  margin: 8px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(20, 13, 35, 0.6);
  font-style: italic;
  background: rgba(20, 13, 35, 0.02);
  border-radius: 8px;
  border: 1px dashed rgba(20, 13, 35, 0.1);
}

/* line 317, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.autocomplete-error {
  color: #dc3545;
  background: rgba(220, 53, 69, 0.05);
  border-color: rgba(220, 53, 69, 0.2);
}

/* Indicateur de chargement - classes CRM et ADV (alias générique) */
/* line 324, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.crm-search-loading,
.adv-search-loading {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
}

/* line 331, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.crm-search-loading i,
.adv-search-loading i {
  font-size: 0.8rem !important;
  color: #C38761 !important;
}

/* ==========================================================================
   BOUTON D'AJOUT RAPIDE D'ARTICLE
   Remplace la loupe par un "+" pour créer un article personnalisé à la volée
   ========================================================================== */
/* line 341, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.crm-search-add-button,
.adv-search-add-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #C38761, #af6c42);
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(195, 135, 97, 0.3);
  /* Mode Light */
}

/* line 357, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.crm-search-add-button i,
.adv-search-add-button i {
  font-size: 0.9rem;
}

/* line 361, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.crm-search-add-button:hover,
.adv-search-add-button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(195, 135, 97, 0.4);
  background: linear-gradient(135deg, #ca9573, #C38761);
}

/* line 367, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.crm-search-add-button:active,
.adv-search-add-button:active {
  transform: scale(0.98);
}

/* line 372, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.lightmode .crm-search-add-button, .lightmode .adv-search-add-button {
  background: linear-gradient(135deg, #140D23, #090610);
  box-shadow: 0 2px 8px rgba(20, 13, 35, 0.2);
}

/* line 376, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.lightmode .crm-search-add-button:hover, .lightmode .adv-search-add-button:hover {
  box-shadow: 0 4px 12px rgba(20, 13, 35, 0.3);
  background: linear-gradient(135deg, #1f1436, #140D23);
}

/* ==========================================================================
   AFFICHAGE DES RÉSULTATS D'ARTICLES - Style sobre
   ========================================================================== */
/* line 386, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.search-results-articles .articles {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 8px 10px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

/* line 395, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.search-results-articles .articles:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 398, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.lightmode .search-results-articles .articles:hover {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 404, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.article-reference,
.article-price {
  font-size: 0.8rem;
  font-weight: normal;
  color: #FFFFFF;
}

/* line 410, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.lightmode .article-reference, .lightmode .article-price {
  color: #140D23;
}

/* Message aucun résultat pour les articles */
/* line 416, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.no-results {
  padding: 16px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* line 423, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.lightmode .no-results {
  color: rgba(20, 13, 35, 0.5);
}

/* ==========================================================================
   NIGHT MODE - Style inspiré des modales avec gradient
   ========================================================================== */
/* Sélecteurs pour les différents containers en mode nuit (CRM et ADV) */
/* line 449, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.leads-board-capsule:not(.lightmode) .crm-autocomplete-list,
.leads-board-capsule:not(.lightmode) .adv-autocomplete-list,
.appointments-board-capsule:not(.lightmode) .crm-autocomplete-list,
.appointments-board-capsule:not(.lightmode) .adv-autocomplete-list,
.quotes-board-capsule:not(.lightmode) .crm-autocomplete-list,
.quotes-board-capsule:not(.lightmode) .adv-autocomplete-list,
.crm-contract-list-capsule:not(.lightmode) .crm-autocomplete-list,
.crm-contract-list-capsule:not(.lightmode) .adv-autocomplete-list,
.customers-board-capsule:not(.lightmode) .crm-autocomplete-list,
.customers-board-capsule:not(.lightmode) .adv-autocomplete-list,
.contacts-board-capsule:not(.lightmode) .crm-autocomplete-list,
.contacts-board-capsule:not(.lightmode) .adv-autocomplete-list,
.adv-quote-list-capsule:not(.lightmode) .crm-autocomplete-list,
.adv-quote-list-capsule:not(.lightmode) .adv-autocomplete-list,
.adv-quote-capsule:not(.lightmode) .crm-autocomplete-list,
.adv-quote-capsule:not(.lightmode) .adv-autocomplete-list,
.adv-edit-quote-capsule:not(.lightmode) .crm-autocomplete-list,
.adv-edit-quote-capsule:not(.lightmode) .adv-autocomplete-list,
.adv-invoice-list-capsule:not(.lightmode) .crm-autocomplete-list,
.adv-invoice-list-capsule:not(.lightmode) .adv-autocomplete-list,
.adv-new-invoice-capsule:not(.lightmode) .crm-autocomplete-list,
.adv-new-invoice-capsule:not(.lightmode) .adv-autocomplete-list,
.adv-edit-invoice-capsule:not(.lightmode) .crm-autocomplete-list,
.adv-edit-invoice-capsule:not(.lightmode) .adv-autocomplete-list,
.adv-category-list-capsule:not(.lightmode) .crm-autocomplete-list,
.adv-category-list-capsule:not(.lightmode) .adv-autocomplete-list,
.adv-customer-list-capsule:not(.lightmode) .crm-autocomplete-list,
.adv-customer-list-capsule:not(.lightmode) .adv-autocomplete-list,
.adv-contract-list-capsule:not(.lightmode) .crm-autocomplete-list,
.adv-contract-list-capsule:not(.lightmode) .adv-autocomplete-list,
.adv-order-form-list-capsule:not(.lightmode) .crm-autocomplete-list,
.adv-order-form-list-capsule:not(.lightmode) .adv-autocomplete-list {
  /* Fond avec gradient harmonisé avec le background de la page */
  background: linear-gradient(151deg, #140d23b8 25%, #6401276e 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(195, 135, 97, 0.3);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 8px 0;
  /* Barre dorée en haut */
  /* Scrollbar mode nuit */
}

/* line 461, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.leads-board-capsule:not(.lightmode) .crm-autocomplete-list::before,
.leads-board-capsule:not(.lightmode) .adv-autocomplete-list::before,
.appointments-board-capsule:not(.lightmode) .crm-autocomplete-list::before,
.appointments-board-capsule:not(.lightmode) .adv-autocomplete-list::before,
.quotes-board-capsule:not(.lightmode) .crm-autocomplete-list::before,
.quotes-board-capsule:not(.lightmode) .adv-autocomplete-list::before,
.crm-contract-list-capsule:not(.lightmode) .crm-autocomplete-list::before,
.crm-contract-list-capsule:not(.lightmode) .adv-autocomplete-list::before,
.customers-board-capsule:not(.lightmode) .crm-autocomplete-list::before,
.customers-board-capsule:not(.lightmode) .adv-autocomplete-list::before,
.contacts-board-capsule:not(.lightmode) .crm-autocomplete-list::before,
.contacts-board-capsule:not(.lightmode) .adv-autocomplete-list::before,
.adv-quote-list-capsule:not(.lightmode) .crm-autocomplete-list::before,
.adv-quote-list-capsule:not(.lightmode) .adv-autocomplete-list::before,
.adv-quote-capsule:not(.lightmode) .crm-autocomplete-list::before,
.adv-quote-capsule:not(.lightmode) .adv-autocomplete-list::before,
.adv-edit-quote-capsule:not(.lightmode) .crm-autocomplete-list::before,
.adv-edit-quote-capsule:not(.lightmode) .adv-autocomplete-list::before,
.adv-invoice-list-capsule:not(.lightmode) .crm-autocomplete-list::before,
.adv-invoice-list-capsule:not(.lightmode) .adv-autocomplete-list::before,
.adv-new-invoice-capsule:not(.lightmode) .crm-autocomplete-list::before,
.adv-new-invoice-capsule:not(.lightmode) .adv-autocomplete-list::before,
.adv-edit-invoice-capsule:not(.lightmode) .crm-autocomplete-list::before,
.adv-edit-invoice-capsule:not(.lightmode) .adv-autocomplete-list::before,
.adv-category-list-capsule:not(.lightmode) .crm-autocomplete-list::before,
.adv-category-list-capsule:not(.lightmode) .adv-autocomplete-list::before,
.adv-customer-list-capsule:not(.lightmode) .crm-autocomplete-list::before,
.adv-customer-list-capsule:not(.lightmode) .adv-autocomplete-list::before,
.adv-contract-list-capsule:not(.lightmode) .crm-autocomplete-list::before,
.adv-contract-list-capsule:not(.lightmode) .adv-autocomplete-list::before,
.adv-order-form-list-capsule:not(.lightmode) .crm-autocomplete-list::before,
.adv-order-form-list-capsule:not(.lightmode) .adv-autocomplete-list::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, #C38761, rgba(195, 135, 97, 0.3), transparent);
  border-radius: 12px 12px 0 0;
  margin: -8px 0 8px 0;
}

/* line 471, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.leads-board-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-track,
.leads-board-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-track,
.appointments-board-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-track,
.appointments-board-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-track,
.quotes-board-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-track,
.quotes-board-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-track,
.crm-contract-list-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-track,
.crm-contract-list-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-track,
.customers-board-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-track,
.customers-board-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-track,
.contacts-board-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-track,
.contacts-board-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-track,
.adv-quote-list-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-track,
.adv-quote-list-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-track,
.adv-quote-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-track,
.adv-quote-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-track,
.adv-edit-quote-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-track,
.adv-edit-quote-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-track,
.adv-invoice-list-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-track,
.adv-invoice-list-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-track,
.adv-new-invoice-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-track,
.adv-new-invoice-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-track,
.adv-edit-invoice-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-track,
.adv-edit-invoice-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-track,
.adv-category-list-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-track,
.adv-category-list-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-track,
.adv-customer-list-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-track,
.adv-customer-list-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-track,
.adv-contract-list-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-track,
.adv-contract-list-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-track,
.adv-order-form-list-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-track,
.adv-order-form-list-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

/* line 475, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.leads-board-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-thumb,
.leads-board-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-thumb,
.appointments-board-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-thumb,
.appointments-board-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-thumb,
.quotes-board-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-thumb,
.quotes-board-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-thumb,
.crm-contract-list-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-thumb,
.crm-contract-list-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-thumb,
.customers-board-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-thumb,
.customers-board-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-thumb,
.contacts-board-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-thumb,
.contacts-board-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-thumb,
.adv-quote-list-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-thumb,
.adv-quote-list-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-thumb,
.adv-quote-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-thumb,
.adv-quote-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-thumb,
.adv-edit-quote-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-thumb,
.adv-edit-quote-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-thumb,
.adv-invoice-list-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-thumb,
.adv-invoice-list-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-thumb,
.adv-new-invoice-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-thumb,
.adv-new-invoice-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-thumb,
.adv-edit-invoice-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-thumb,
.adv-edit-invoice-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-thumb,
.adv-category-list-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-thumb,
.adv-category-list-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-thumb,
.adv-customer-list-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-thumb,
.adv-customer-list-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-thumb,
.adv-contract-list-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-thumb,
.adv-contract-list-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-thumb,
.adv-order-form-list-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-thumb,
.adv-order-form-list-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-thumb {
  background: rgba(195, 135, 97, 0.5);
}

/* line 478, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.leads-board-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-thumb:hover,
.leads-board-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-thumb:hover,
.appointments-board-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-thumb:hover,
.appointments-board-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-thumb:hover,
.quotes-board-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-thumb:hover,
.quotes-board-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-thumb:hover,
.crm-contract-list-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-thumb:hover,
.crm-contract-list-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-thumb:hover,
.customers-board-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-thumb:hover,
.customers-board-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-thumb:hover,
.contacts-board-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-thumb:hover,
.contacts-board-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-thumb:hover,
.adv-quote-list-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-thumb:hover,
.adv-quote-list-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-thumb:hover,
.adv-quote-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-thumb:hover,
.adv-quote-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-thumb:hover,
.adv-edit-quote-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-thumb:hover,
.adv-edit-quote-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-thumb:hover,
.adv-invoice-list-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-thumb:hover,
.adv-invoice-list-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-thumb:hover,
.adv-new-invoice-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-thumb:hover,
.adv-new-invoice-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-thumb:hover,
.adv-edit-invoice-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-thumb:hover,
.adv-edit-invoice-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-thumb:hover,
.adv-category-list-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-thumb:hover,
.adv-category-list-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-thumb:hover,
.adv-customer-list-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-thumb:hover,
.adv-customer-list-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-thumb:hover,
.adv-contract-list-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-thumb:hover,
.adv-contract-list-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-thumb:hover,
.adv-order-form-list-capsule:not(.lightmode) .crm-autocomplete-list::-webkit-scrollbar-thumb:hover,
.adv-order-form-list-capsule:not(.lightmode) .adv-autocomplete-list::-webkit-scrollbar-thumb:hover {
  background: rgba(195, 135, 97, 0.7);
}

/* line 484, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.leads-board-capsule:not(.lightmode) .autocomplete-suggestion,
.appointments-board-capsule:not(.lightmode) .autocomplete-suggestion,
.quotes-board-capsule:not(.lightmode) .autocomplete-suggestion,
.crm-contract-list-capsule:not(.lightmode) .autocomplete-suggestion,
.customers-board-capsule:not(.lightmode) .autocomplete-suggestion,
.contacts-board-capsule:not(.lightmode) .autocomplete-suggestion,
.adv-quote-list-capsule:not(.lightmode) .autocomplete-suggestion,
.adv-quote-capsule:not(.lightmode) .autocomplete-suggestion,
.adv-edit-quote-capsule:not(.lightmode) .autocomplete-suggestion,
.adv-invoice-list-capsule:not(.lightmode) .autocomplete-suggestion,
.adv-new-invoice-capsule:not(.lightmode) .autocomplete-suggestion,
.adv-edit-invoice-capsule:not(.lightmode) .autocomplete-suggestion,
.adv-category-list-capsule:not(.lightmode) .autocomplete-suggestion,
.adv-customer-list-capsule:not(.lightmode) .autocomplete-suggestion,
.adv-contract-list-capsule:not(.lightmode) .autocomplete-suggestion,
.adv-order-form-list-capsule:not(.lightmode) .autocomplete-suggestion {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
}

/* line 489, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.leads-board-capsule:not(.lightmode) .autocomplete-suggestion:hover, .leads-board-capsule:not(.lightmode) .autocomplete-suggestion.is-selected,
.appointments-board-capsule:not(.lightmode) .autocomplete-suggestion:hover,
.appointments-board-capsule:not(.lightmode) .autocomplete-suggestion.is-selected,
.quotes-board-capsule:not(.lightmode) .autocomplete-suggestion:hover,
.quotes-board-capsule:not(.lightmode) .autocomplete-suggestion.is-selected,
.crm-contract-list-capsule:not(.lightmode) .autocomplete-suggestion:hover,
.crm-contract-list-capsule:not(.lightmode) .autocomplete-suggestion.is-selected,
.customers-board-capsule:not(.lightmode) .autocomplete-suggestion:hover,
.customers-board-capsule:not(.lightmode) .autocomplete-suggestion.is-selected,
.contacts-board-capsule:not(.lightmode) .autocomplete-suggestion:hover,
.contacts-board-capsule:not(.lightmode) .autocomplete-suggestion.is-selected,
.adv-quote-list-capsule:not(.lightmode) .autocomplete-suggestion:hover,
.adv-quote-list-capsule:not(.lightmode) .autocomplete-suggestion.is-selected,
.adv-quote-capsule:not(.lightmode) .autocomplete-suggestion:hover,
.adv-quote-capsule:not(.lightmode) .autocomplete-suggestion.is-selected,
.adv-edit-quote-capsule:not(.lightmode) .autocomplete-suggestion:hover,
.adv-edit-quote-capsule:not(.lightmode) .autocomplete-suggestion.is-selected,
.adv-invoice-list-capsule:not(.lightmode) .autocomplete-suggestion:hover,
.adv-invoice-list-capsule:not(.lightmode) .autocomplete-suggestion.is-selected,
.adv-new-invoice-capsule:not(.lightmode) .autocomplete-suggestion:hover,
.adv-new-invoice-capsule:not(.lightmode) .autocomplete-suggestion.is-selected,
.adv-edit-invoice-capsule:not(.lightmode) .autocomplete-suggestion:hover,
.adv-edit-invoice-capsule:not(.lightmode) .autocomplete-suggestion.is-selected,
.adv-category-list-capsule:not(.lightmode) .autocomplete-suggestion:hover,
.adv-category-list-capsule:not(.lightmode) .autocomplete-suggestion.is-selected,
.adv-customer-list-capsule:not(.lightmode) .autocomplete-suggestion:hover,
.adv-customer-list-capsule:not(.lightmode) .autocomplete-suggestion.is-selected,
.adv-contract-list-capsule:not(.lightmode) .autocomplete-suggestion:hover,
.adv-contract-list-capsule:not(.lightmode) .autocomplete-suggestion.is-selected,
.adv-order-form-list-capsule:not(.lightmode) .autocomplete-suggestion:hover,
.adv-order-form-list-capsule:not(.lightmode) .autocomplete-suggestion.is-selected {
  background: rgba(195, 135, 97, 0.15);
  border-color: rgba(195, 135, 97, 0.2);
  transform: translateX(4px);
}

/* line 496, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.leads-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-name,
.appointments-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-name,
.quotes-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-name,
.crm-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-name,
.customers-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-name,
.contacts-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-name,
.adv-quote-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-name,
.adv-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-name,
.adv-edit-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-name,
.adv-invoice-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-name,
.adv-new-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-name,
.adv-edit-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-name,
.adv-category-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-name,
.adv-customer-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-name,
.adv-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-name,
.adv-order-form-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-name {
  color: rgba(255, 255, 255, 0.95);
}

/* line 500, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.leads-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-reference,
.leads-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-subtitle,
.appointments-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-reference,
.appointments-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-subtitle,
.quotes-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-reference,
.quotes-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-subtitle,
.crm-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-reference,
.crm-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-subtitle,
.customers-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-reference,
.customers-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-subtitle,
.contacts-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-reference,
.contacts-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-subtitle,
.adv-quote-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-reference,
.adv-quote-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-subtitle,
.adv-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-reference,
.adv-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-subtitle,
.adv-edit-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-reference,
.adv-edit-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-subtitle,
.adv-invoice-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-reference,
.adv-invoice-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-subtitle,
.adv-new-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-reference,
.adv-new-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-subtitle,
.adv-edit-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-reference,
.adv-edit-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-subtitle,
.adv-category-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-reference,
.adv-category-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-subtitle,
.adv-customer-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-reference,
.adv-customer-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-subtitle,
.adv-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-reference,
.adv-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-subtitle,
.adv-order-form-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-reference,
.adv-order-form-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-subtitle {
  background: rgba(195, 135, 97, 0.15);
  color: #C38761;
}

/* line 506, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.leads-board-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip,
.appointments-board-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip,
.quotes-board-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip,
.crm-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip,
.customers-board-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip,
.contacts-board-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip,
.adv-quote-list-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip,
.adv-quote-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip,
.adv-edit-quote-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip,
.adv-invoice-list-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip,
.adv-new-invoice-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip,
.adv-edit-invoice-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip,
.adv-category-list-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip,
.adv-customer-list-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip,
.adv-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip,
.adv-order-form-list-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* line 511, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.leads-board-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip i,
.appointments-board-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip i,
.quotes-board-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip i,
.crm-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip i,
.customers-board-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip i,
.contacts-board-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip i,
.adv-quote-list-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip i,
.adv-quote-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip i,
.adv-edit-quote-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip i,
.adv-invoice-list-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip i,
.adv-new-invoice-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip i,
.adv-edit-invoice-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip i,
.adv-category-list-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip i,
.adv-customer-list-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip i,
.adv-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip i,
.adv-order-form-list-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip i {
  color: #C38761 !important;
  opacity: 0.9;
}

/* line 516, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.leads-board-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip.chip-price,
.appointments-board-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip.chip-price,
.quotes-board-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip.chip-price,
.crm-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip.chip-price,
.customers-board-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip.chip-price,
.contacts-board-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip.chip-price,
.adv-quote-list-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip.chip-price,
.adv-quote-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip.chip-price,
.adv-edit-quote-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip.chip-price,
.adv-invoice-list-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip.chip-price,
.adv-new-invoice-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip.chip-price,
.adv-edit-invoice-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip.chip-price,
.adv-category-list-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip.chip-price,
.adv-customer-list-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip.chip-price,
.adv-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip.chip-price,
.adv-order-form-list-capsule:not(.lightmode) .autocomplete-suggestion .detail-chip.chip-price {
  background: rgba(40, 167, 69, 0.2);
  color: #5dd879;
}

/* line 522, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.leads-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status,
.appointments-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status,
.quotes-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status,
.crm-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status,
.customers-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status,
.contacts-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status,
.adv-quote-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status,
.adv-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status,
.adv-edit-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status,
.adv-invoice-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status,
.adv-new-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status,
.adv-edit-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status,
.adv-category-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status,
.adv-customer-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status,
.adv-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status,
.adv-order-form-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

/* line 526, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.leads-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-qualified, .leads-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-active, .leads-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-completed, .leads-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-approved, .leads-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-validated, .leads-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-paid,
.appointments-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-qualified,
.appointments-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-active,
.appointments-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-completed,
.appointments-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-approved,
.appointments-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-validated,
.appointments-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-paid,
.quotes-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-qualified,
.quotes-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-active,
.quotes-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-completed,
.quotes-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-approved,
.quotes-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-validated,
.quotes-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-paid,
.crm-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-qualified,
.crm-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-active,
.crm-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-completed,
.crm-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-approved,
.crm-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-validated,
.crm-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-paid,
.customers-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-qualified,
.customers-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-active,
.customers-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-completed,
.customers-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-approved,
.customers-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-validated,
.customers-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-paid,
.contacts-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-qualified,
.contacts-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-active,
.contacts-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-completed,
.contacts-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-approved,
.contacts-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-validated,
.contacts-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-paid,
.adv-quote-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-qualified,
.adv-quote-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-active,
.adv-quote-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-completed,
.adv-quote-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-approved,
.adv-quote-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-validated,
.adv-quote-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-paid,
.adv-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-qualified,
.adv-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-active,
.adv-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-completed,
.adv-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-approved,
.adv-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-validated,
.adv-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-paid,
.adv-edit-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-qualified,
.adv-edit-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-active,
.adv-edit-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-completed,
.adv-edit-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-approved,
.adv-edit-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-validated,
.adv-edit-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-paid,
.adv-invoice-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-qualified,
.adv-invoice-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-active,
.adv-invoice-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-completed,
.adv-invoice-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-approved,
.adv-invoice-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-validated,
.adv-invoice-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-paid,
.adv-new-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-qualified,
.adv-new-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-active,
.adv-new-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-completed,
.adv-new-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-approved,
.adv-new-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-validated,
.adv-new-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-paid,
.adv-edit-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-qualified,
.adv-edit-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-active,
.adv-edit-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-completed,
.adv-edit-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-approved,
.adv-edit-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-validated,
.adv-edit-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-paid,
.adv-category-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-qualified,
.adv-category-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-active,
.adv-category-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-completed,
.adv-category-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-approved,
.adv-category-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-validated,
.adv-category-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-paid,
.adv-customer-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-qualified,
.adv-customer-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-active,
.adv-customer-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-completed,
.adv-customer-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-approved,
.adv-customer-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-validated,
.adv-customer-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-paid,
.adv-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-qualified,
.adv-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-active,
.adv-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-completed,
.adv-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-approved,
.adv-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-validated,
.adv-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-paid,
.adv-order-form-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-qualified,
.adv-order-form-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-active,
.adv-order-form-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-completed,
.adv-order-form-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-approved,
.adv-order-form-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-validated,
.adv-order-form-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-paid {
  background: rgba(40, 167, 69, 0.25);
  color: #5dd879;
}

/* line 536, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.leads-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-unqualified, .leads-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-rejected, .leads-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-overdue, .leads-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-cancelled,
.appointments-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-unqualified,
.appointments-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-rejected,
.appointments-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-overdue,
.appointments-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-cancelled,
.quotes-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-unqualified,
.quotes-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-rejected,
.quotes-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-overdue,
.quotes-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-cancelled,
.crm-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-unqualified,
.crm-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-rejected,
.crm-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-overdue,
.crm-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-cancelled,
.customers-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-unqualified,
.customers-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-rejected,
.customers-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-overdue,
.customers-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-cancelled,
.contacts-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-unqualified,
.contacts-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-rejected,
.contacts-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-overdue,
.contacts-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-cancelled,
.adv-quote-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-unqualified,
.adv-quote-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-rejected,
.adv-quote-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-overdue,
.adv-quote-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-cancelled,
.adv-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-unqualified,
.adv-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-rejected,
.adv-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-overdue,
.adv-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-cancelled,
.adv-edit-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-unqualified,
.adv-edit-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-rejected,
.adv-edit-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-overdue,
.adv-edit-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-cancelled,
.adv-invoice-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-unqualified,
.adv-invoice-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-rejected,
.adv-invoice-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-overdue,
.adv-invoice-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-cancelled,
.adv-new-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-unqualified,
.adv-new-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-rejected,
.adv-new-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-overdue,
.adv-new-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-cancelled,
.adv-edit-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-unqualified,
.adv-edit-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-rejected,
.adv-edit-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-overdue,
.adv-edit-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-cancelled,
.adv-category-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-unqualified,
.adv-category-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-rejected,
.adv-category-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-overdue,
.adv-category-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-cancelled,
.adv-customer-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-unqualified,
.adv-customer-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-rejected,
.adv-customer-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-overdue,
.adv-customer-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-cancelled,
.adv-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-unqualified,
.adv-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-rejected,
.adv-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-overdue,
.adv-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-cancelled,
.adv-order-form-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-unqualified,
.adv-order-form-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-rejected,
.adv-order-form-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-overdue,
.adv-order-form-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-cancelled {
  background: rgba(220, 53, 69, 0.25);
  color: #e77681;
}

/* line 544, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.leads-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-quote-sent,
.appointments-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-quote-sent,
.quotes-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-quote-sent,
.crm-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-quote-sent,
.customers-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-quote-sent,
.contacts-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-quote-sent,
.adv-quote-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-quote-sent,
.adv-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-quote-sent,
.adv-edit-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-quote-sent,
.adv-invoice-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-quote-sent,
.adv-new-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-quote-sent,
.adv-edit-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-quote-sent,
.adv-category-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-quote-sent,
.adv-customer-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-quote-sent,
.adv-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-quote-sent,
.adv-order-form-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-quote-sent {
  background: rgba(195, 135, 97, 0.3);
  color: #C38761;
}

/* line 549, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.leads-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-archived, .leads-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-abandoned, .leads-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-expired, .leads-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-draft,
.appointments-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-archived,
.appointments-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-abandoned,
.appointments-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-expired,
.appointments-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-draft,
.quotes-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-archived,
.quotes-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-abandoned,
.quotes-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-expired,
.quotes-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-draft,
.crm-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-archived,
.crm-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-abandoned,
.crm-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-expired,
.crm-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-draft,
.customers-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-archived,
.customers-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-abandoned,
.customers-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-expired,
.customers-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-draft,
.contacts-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-archived,
.contacts-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-abandoned,
.contacts-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-expired,
.contacts-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-draft,
.adv-quote-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-archived,
.adv-quote-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-abandoned,
.adv-quote-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-expired,
.adv-quote-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-draft,
.adv-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-archived,
.adv-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-abandoned,
.adv-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-expired,
.adv-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-draft,
.adv-edit-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-archived,
.adv-edit-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-abandoned,
.adv-edit-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-expired,
.adv-edit-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-draft,
.adv-invoice-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-archived,
.adv-invoice-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-abandoned,
.adv-invoice-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-expired,
.adv-invoice-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-draft,
.adv-new-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-archived,
.adv-new-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-abandoned,
.adv-new-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-expired,
.adv-new-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-draft,
.adv-edit-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-archived,
.adv-edit-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-abandoned,
.adv-edit-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-expired,
.adv-edit-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-draft,
.adv-category-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-archived,
.adv-category-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-abandoned,
.adv-category-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-expired,
.adv-category-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-draft,
.adv-customer-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-archived,
.adv-customer-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-abandoned,
.adv-customer-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-expired,
.adv-customer-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-draft,
.adv-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-archived,
.adv-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-abandoned,
.adv-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-expired,
.adv-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-draft,
.adv-order-form-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-archived,
.adv-order-form-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-abandoned,
.adv-order-form-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-expired,
.adv-order-form-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-draft {
  background: rgba(232, 232, 232, 0.3);
  color: white;
}

/* line 557, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.leads-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-upcoming, .leads-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-sent,
.appointments-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-upcoming,
.appointments-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-sent,
.quotes-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-upcoming,
.quotes-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-sent,
.crm-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-upcoming,
.crm-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-sent,
.customers-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-upcoming,
.customers-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-sent,
.contacts-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-upcoming,
.contacts-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-sent,
.adv-quote-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-upcoming,
.adv-quote-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-sent,
.adv-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-upcoming,
.adv-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-sent,
.adv-edit-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-upcoming,
.adv-edit-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-sent,
.adv-invoice-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-upcoming,
.adv-invoice-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-sent,
.adv-new-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-upcoming,
.adv-new-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-sent,
.adv-edit-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-upcoming,
.adv-edit-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-sent,
.adv-category-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-upcoming,
.adv-category-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-sent,
.adv-customer-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-upcoming,
.adv-customer-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-sent,
.adv-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-upcoming,
.adv-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-sent,
.adv-order-form-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-upcoming,
.adv-order-form-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-sent {
  background: rgba(23, 162, 184, 0.25);
  color: #4cd3e9;
}

/* line 563, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.leads-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-signed, .leads-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-contract,
.appointments-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-signed,
.appointments-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-contract,
.quotes-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-signed,
.quotes-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-contract,
.crm-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-signed,
.crm-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-contract,
.customers-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-signed,
.customers-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-contract,
.contacts-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-signed,
.contacts-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-contract,
.adv-quote-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-signed,
.adv-quote-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-contract,
.adv-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-signed,
.adv-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-contract,
.adv-edit-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-signed,
.adv-edit-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-contract,
.adv-invoice-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-signed,
.adv-invoice-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-contract,
.adv-new-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-signed,
.adv-new-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-contract,
.adv-edit-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-signed,
.adv-edit-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-contract,
.adv-category-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-signed,
.adv-category-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-contract,
.adv-customer-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-signed,
.adv-customer-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-contract,
.adv-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-signed,
.adv-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-contract,
.adv-order-form-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-signed,
.adv-order-form-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-status.status-contract {
  background: rgba(195, 135, 97, 0.2);
  color: #C38761;
}

/* line 570, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.leads-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary,
.appointments-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary,
.quotes-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary,
.crm-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary,
.customers-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary,
.contacts-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary,
.adv-quote-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary,
.adv-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary,
.adv-edit-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary,
.adv-invoice-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary,
.adv-new-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary,
.adv-edit-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary,
.adv-category-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary,
.adv-customer-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary,
.adv-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary,
.adv-order-form-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary {
  color: rgba(255, 255, 255, 0.7);
}

/* line 573, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.leads-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary .detail-item,
.appointments-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary .detail-item,
.quotes-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary .detail-item,
.crm-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary .detail-item,
.customers-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary .detail-item,
.contacts-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary .detail-item,
.adv-quote-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary .detail-item,
.adv-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary .detail-item,
.adv-edit-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary .detail-item,
.adv-invoice-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary .detail-item,
.adv-new-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary .detail-item,
.adv-edit-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary .detail-item,
.adv-category-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary .detail-item,
.adv-customer-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary .detail-item,
.adv-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary .detail-item,
.adv-order-form-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary .detail-item {
  background: rgba(255, 255, 255, 0.08);
}

/* line 577, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.leads-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary i,
.appointments-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary i,
.quotes-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary i,
.crm-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary i,
.customers-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary i,
.contacts-board-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary i,
.adv-quote-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary i,
.adv-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary i,
.adv-edit-quote-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary i,
.adv-invoice-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary i,
.adv-new-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary i,
.adv-edit-invoice-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary i,
.adv-category-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary i,
.adv-customer-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary i,
.adv-contract-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary i,
.adv-order-form-list-capsule:not(.lightmode) .autocomplete-suggestion .suggestion-secondary i {
  color: #C38761 !important;
}

/* line 583, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.leads-board-capsule:not(.lightmode) .autocomplete-no-results,
.leads-board-capsule:not(.lightmode) .autocomplete-error,
.appointments-board-capsule:not(.lightmode) .autocomplete-no-results,
.appointments-board-capsule:not(.lightmode) .autocomplete-error,
.quotes-board-capsule:not(.lightmode) .autocomplete-no-results,
.quotes-board-capsule:not(.lightmode) .autocomplete-error,
.crm-contract-list-capsule:not(.lightmode) .autocomplete-no-results,
.crm-contract-list-capsule:not(.lightmode) .autocomplete-error,
.customers-board-capsule:not(.lightmode) .autocomplete-no-results,
.customers-board-capsule:not(.lightmode) .autocomplete-error,
.contacts-board-capsule:not(.lightmode) .autocomplete-no-results,
.contacts-board-capsule:not(.lightmode) .autocomplete-error,
.adv-quote-list-capsule:not(.lightmode) .autocomplete-no-results,
.adv-quote-list-capsule:not(.lightmode) .autocomplete-error,
.adv-quote-capsule:not(.lightmode) .autocomplete-no-results,
.adv-quote-capsule:not(.lightmode) .autocomplete-error,
.adv-edit-quote-capsule:not(.lightmode) .autocomplete-no-results,
.adv-edit-quote-capsule:not(.lightmode) .autocomplete-error,
.adv-invoice-list-capsule:not(.lightmode) .autocomplete-no-results,
.adv-invoice-list-capsule:not(.lightmode) .autocomplete-error,
.adv-new-invoice-capsule:not(.lightmode) .autocomplete-no-results,
.adv-new-invoice-capsule:not(.lightmode) .autocomplete-error,
.adv-edit-invoice-capsule:not(.lightmode) .autocomplete-no-results,
.adv-edit-invoice-capsule:not(.lightmode) .autocomplete-error,
.adv-category-list-capsule:not(.lightmode) .autocomplete-no-results,
.adv-category-list-capsule:not(.lightmode) .autocomplete-error,
.adv-customer-list-capsule:not(.lightmode) .autocomplete-no-results,
.adv-customer-list-capsule:not(.lightmode) .autocomplete-error,
.adv-contract-list-capsule:not(.lightmode) .autocomplete-no-results,
.adv-contract-list-capsule:not(.lightmode) .autocomplete-error,
.adv-order-form-list-capsule:not(.lightmode) .autocomplete-no-results,
.adv-order-form-list-capsule:not(.lightmode) .autocomplete-error {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}

/* line 590, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_autocomplete.scss */
.leads-board-capsule:not(.lightmode) .autocomplete-error,
.appointments-board-capsule:not(.lightmode) .autocomplete-error,
.quotes-board-capsule:not(.lightmode) .autocomplete-error,
.crm-contract-list-capsule:not(.lightmode) .autocomplete-error,
.customers-board-capsule:not(.lightmode) .autocomplete-error,
.contacts-board-capsule:not(.lightmode) .autocomplete-error,
.adv-quote-list-capsule:not(.lightmode) .autocomplete-error,
.adv-quote-capsule:not(.lightmode) .autocomplete-error,
.adv-edit-quote-capsule:not(.lightmode) .autocomplete-error,
.adv-invoice-list-capsule:not(.lightmode) .autocomplete-error,
.adv-new-invoice-capsule:not(.lightmode) .autocomplete-error,
.adv-edit-invoice-capsule:not(.lightmode) .autocomplete-error,
.adv-category-list-capsule:not(.lightmode) .autocomplete-error,
.adv-customer-list-capsule:not(.lightmode) .autocomplete-error,
.adv-contract-list-capsule:not(.lightmode) .autocomplete-error,
.adv-order-form-list-capsule:not(.lightmode) .autocomplete-error {
  color: #eb8c95;
  background: rgba(220, 53, 69, 0.15);
  border-color: rgba(220, 53, 69, 0.25);
}

/* ==========================================================================
   CRM BENTO UI SYSTEM
   Composants réutilisables pour l'interface style "Bento" du CRM
   ========================================================================== */
/* line 21, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-page-container {
  flex: 1;
  max-width: 1600px;
  margin: 0 auto;
  padding: 24px;
  color: white;
  min-height: calc(100vh - 100px);
}

/* line 29, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-page-container.lightmode {
  color: #140D23;
}

@media (max-width: 768px) {
  /* line 21, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
  .crm-page-container {
    padding: 16px;
  }
}

/* line 39, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-page-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 10px;
}

@media (max-width: 1200px) {
  /* line 39, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
  .crm-page-layout {
    grid-template-columns: 1fr;
  }
}

/* line 49, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-main-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

/* line 56, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-bento-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (max-width: 900px) {
  /* line 56, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
  .crm-bento-row {
    grid-template-columns: 1fr;
  }
}

/* line 67, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-page-layout .crm-main-content .crm-bento-row {
  gap: 10px;
}

/* line 72, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-sidebar {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

@media (min-width: 1201px) {
  /* line 72, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
  .crm-sidebar {
    height: 100%;
  }
  /* line 81, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
  .crm-sidebar .crm-bento-card {
    height: 100%;
    max-height: none;
  }
  /* line 86, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
  .crm-sidebar .crm-card-body {
    max-height: none;
  }
}

/* line 96, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-profile-header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

/* line 110, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-profile-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* line 120, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-profile-header.lightmode {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.04) 0%, rgba(20, 13, 35, 0.02) 100%);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 124, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-profile-header.lightmode::before {
  background: linear-gradient(90deg, transparent, rgba(20, 13, 35, 0.1), transparent);
}

@media (max-width: 768px) {
  /* line 96, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
  .crm-profile-header {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
}

/* line 136, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-header-photo {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.3) 0%, rgba(195, 135, 97, 0.15) 100%);
  border: 2px solid rgba(195, 135, 97, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: #C38761;
  text-transform: uppercase;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* line 153, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-header-photo.lightmode {
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.2) 0%, rgba(195, 135, 97, 0.1) 100%);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* line 159, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-header-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 166, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-header-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  color: white;
}

/* line 173, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-header-title.lightmode {
  color: #140D23;
}

/* line 178, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-header-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 186, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-header-meta.lightmode {
  color: rgba(20, 13, 35, 0.7);
}

@media (max-width: 768px) {
  /* line 178, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
  .crm-header-meta {
    justify-content: center;
  }
}

/* line 195, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-header-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  /* line 195, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
  .crm-header-actions {
    width: 100%;
    justify-content: center;
    margin-top: 12px;
  }
}

/* line 211, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-bento-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

/* line 221, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-bento-card.lightmode {
  background: rgba(20, 13, 35, 0.04);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 226, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-bento-card:hover {
  border-color: rgba(195, 135, 97, 0.3);
}

/* line 229, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-bento-card.lightmode:hover {
  border-color: rgba(195, 135, 97, 0.4);
}

/* line 235, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

/* line 243, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-card-header.lightmode {
  border-bottom-color: rgba(20, 13, 35, 0.06);
  background: rgba(20, 13, 35, 0.02);
}

/* line 249, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-card-title {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 260, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-card-title.lightmode {
  color: #140D23;
}

/* line 264, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-card-title i {
  color: #C38761;
}

/* line 269, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-card-body {
  padding: 16px 20px;
  flex: 1;
  overflow-y: auto;
  min-height: 200px;
  max-height: 400px;
}

/* line 279, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-card-body::-webkit-scrollbar {
  width: 6px;
}

/* line 282, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-card-body::-webkit-scrollbar-track {
  background: transparent;
}

/* line 285, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-card-body::-webkit-scrollbar-thumb {
  background: rgba(195, 135, 97, 0.4);
  border-radius: 3px;
}

/* line 288, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-card-body::-webkit-scrollbar-thumb:hover {
  background: rgba(195, 135, 97, 0.6);
}

/* line 292, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-card-add-btn {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.8rem;
}

/* line 306, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-card-add-btn:hover {
  border-color: #C38761;
  color: #C38761;
  background: rgba(195, 135, 97, 0.1);
}

/* line 312, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-card-add-btn.lightmode {
  border-color: rgba(20, 13, 35, 0.2);
  color: rgba(20, 13, 35, 0.7);
}

/* line 316, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-card-add-btn.lightmode:hover {
  border-color: #C38761;
  color: #C38761;
}

/* line 327, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
}

/* line 338, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-list-item.lightmode {
  border-bottom-color: rgba(20, 13, 35, 0.06);
}

/* line 342, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-list-item:last-child {
  border-bottom: none;
}

/* line 346, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-list-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

/* line 349, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-list-item.lightmode:hover {
  background: rgba(20, 13, 35, 0.04);
}

/* line 353, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-list-item:hover .crm-item-menu {
  opacity: 1;
}

/* line 357, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-item-avatar {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(195, 135, 97, 0.2);
  color: #C38761;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
}

/* line 371, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-item-info {
  flex: 1;
  min-width: 0;
}

/* line 376, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-item-primary {
  font-weight: 500;
  font-size: 0.9rem;
  color: white;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 385, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-item-primary.lightmode {
  color: #140D23;
}

/* line 390, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-item-secondary {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 397, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-item-secondary.lightmode {
  color: rgba(20, 13, 35, 0.5);
}

/* line 402, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-item-menu {
  opacity: 0;
  transition: opacity 0.2s;
  padding: 4px;
  cursor: pointer;
}

/* line 413, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  text-align: center;
  height: 100%;
}

/* line 423, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-empty-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
  font-style: italic;
}

/* line 429, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-empty-text.lightmode {
  color: rgba(20, 13, 35, 0.4);
}

/* line 434, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-empty-action {
  font-size: 0.8rem;
  color: #C38761;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 12px;
  border: 1px dashed rgba(195, 135, 97, 0.4);
  border-radius: 6px;
  transition: all 0.2s;
}

/* line 444, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-empty-action:hover {
  background: rgba(195, 135, 97, 0.1);
  border-style: solid;
}

/* line 454, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-timeline-list {
  display: flex;
  flex-direction: column;
  padding-left: 8px;
}

/* line 460, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-timeline-item {
  position: relative;
  padding-left: 24px;
  padding-bottom: 24px;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
}

/* line 466, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-timeline-item.lightmode {
  border-left-color: rgba(20, 13, 35, 0.1);
}

/* line 471, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-timeline-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #C38761;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.06);
}

/* line 482, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.lightmode .crm-timeline-item::before {
  box-shadow: 0 0 0 4px white;
}

/* line 487, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-timeline-item:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}

/* line 493, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-timeline-content {
  font-size: 0.85rem;
  color: white;
  margin-bottom: 4px;
  line-height: 1.4;
}

/* line 499, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-timeline-content.lightmode {
  color: #140D23;
}

/* line 503, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-timeline-content a {
  color: #C38761;
  text-decoration: none;
}

/* line 506, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-timeline-content a:hover {
  text-decoration: underline;
}

/* line 510, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-timeline-date {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* line 514, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-timeline-date.lightmode {
  color: rgba(20, 13, 35, 0.4);
}

/* line 523, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

/* line 537, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-btn--primary {
  background: #C38761;
  color: white;
  box-shadow: 0 4px 12px rgba(195, 135, 97, 0.3);
}

/* line 542, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-btn--primary:hover {
  background: #bc794f;
  transform: translateY(-1px);
}

/* line 548, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 553, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-btn--secondary.lightmode {
  background: rgba(20, 13, 35, 0.05);
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 559, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* line 561, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.crm-btn--secondary.lightmode:hover {
  background: rgba(20, 13, 35, 0.1);
}

/* line 574, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.show-prospect-capsule a:not(.btn):not(.form-button):not(.crm-action-button):not(.crm-btn):not(.crm-btn--primary):not(.crm-btn--secondary),
.contact-show-capsule a:not(.btn):not(.form-button):not(.crm-action-button):not(.crm-btn):not(.crm-btn--primary):not(.crm-btn--secondary),
.crm-page-container a:not(.btn):not(.form-button):not(.crm-action-button):not(.crm-btn):not(.crm-btn--primary):not(.crm-btn--secondary) {
  color: inherit;
  text-decoration: none;
}

/* line 578, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.show-prospect-capsule a:not(.btn):not(.form-button):not(.crm-action-button):not(.crm-btn):not(.crm-btn--primary):not(.crm-btn--secondary):hover,
.contact-show-capsule a:not(.btn):not(.form-button):not(.crm-action-button):not(.crm-btn):not(.crm-btn--primary):not(.crm-btn--secondary):hover,
.crm-page-container a:not(.btn):not(.form-button):not(.crm-action-button):not(.crm-btn):not(.crm-btn--primary):not(.crm-btn--secondary):hover {
  color: #C38761;
}

/* line 582, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_bento_ui.scss */
.show-prospect-capsule a:not(.btn):not(.form-button):not(.crm-action-button):not(.crm-btn):not(.crm-btn--primary):not(.crm-btn--secondary):focus-visible,
.contact-show-capsule a:not(.btn):not(.form-button):not(.crm-action-button):not(.crm-btn):not(.crm-btn--primary):not(.crm-btn--secondary):focus-visible,
.crm-page-container a:not(.btn):not(.form-button):not(.crm-action-button):not(.crm-btn):not(.crm-btn--primary):not(.crm-btn--secondary):focus-visible {
  outline: 2px solid #C38761;
  outline-offset: 2px;
  border-radius: 4px;
}

/* ==========================================================================
   NEW ACCOUNT FORM - Shared styles for new_customer & new_prospect
   (via _new_account_form.html.erb partial)
   ========================================================================== */
/* line 6, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_new_account.scss */
.crm-new-account-capsule {
  width: 98%;
  height: 97%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  box-shadow: 0 2px 16px 0 rgba(20, 13, 35, 0.08);
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.8rem;
  gap: 0;
  min-height: auto;
}

/* line 23, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_new_account.scss */
.crm-new-account-capsule .crm-new-account-capsule-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 32px 28px 24px 28px;
}

/* line 33, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_new_account.scss */
.lightmode .crm-new-account-capsule {
  background-color: rgba(240, 242, 245, 0.7);
  border-color: rgba(20, 13, 35, 0.12);
  color: #140D23;
}

/* line 40, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_new_account.scss */
.crm-new-account-form {
  width: 100%;
}

/* line 44, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_new_account.scss */
.crm-new-account-header {
  width: 100%;
  text-align: left;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 51, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_new_account.scss */
.crm-new-account-header h2, .crm-new-account-header .h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: inherit;
  letter-spacing: -0.01em;
}

/* line 58, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_new_account.scss */
.crm-new-account-header .crm-new-account-description {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

/* line 62, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_new_account.scss */
.lightmode .crm-new-account-header .crm-new-account-description {
  color: rgba(20, 13, 35, 0.5);
}

/* line 67, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_new_account.scss */
.lightmode .crm-new-account-header {
  border-bottom-color: rgba(20, 13, 35, 0.08);
}

/* line 72, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_new_account.scss */
.crm-new-account-form-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 10px;
}

/* line 80, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_new_account.scss */
.crm-new-account-section-group {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

/* line 84, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_new_account.scss */
.crm-new-account-section-group:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  /* line 80, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_new_account.scss */
  .crm-new-account-section-group {
    flex-direction: column;
  }
}

/* line 92, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_new_account.scss */
.crm-new-account-card {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* line 100, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_new_account.scss */
.crm-new-account-card.crm-new-account-card-full-width {
  width: 100%;
}

/* line 104, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_new_account.scss */
.lightmode .crm-new-account-card {
  background-color: rgba(255, 255, 255, 0.65);
  border-color: rgba(20, 13, 35, 0.12);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* line 111, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_new_account.scss */
.crm-new-account-card-header,
.crm-new-account-card-header-with-action {
  padding: 8px 14px;
  font-size: 0.65rem;
  font-weight: 700;
  color: #C38761;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background-color: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
}

/* line 123, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_new_account.scss */
.lightmode .crm-new-account-card-header, .lightmode .crm-new-account-card-header-with-action {
  color: #C38761;
  background-color: rgba(20, 13, 35, 0.03);
  border-bottom-color: rgba(20, 13, 35, 0.08);
}

/* line 130, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_new_account.scss */
.crm-new-account-card-header-with-action {
  justify-content: space-between;
  align-items: center;
}

/* line 135, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_new_account.scss */
.crm-new-account-card-title {
  font-size: 0.65rem;
  font-weight: 700;
  color: #C38761;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* line 143, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_new_account.scss */
.crm-new-account-card-content {
  padding: 14px;
}

/* line 147, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_new_account.scss */
.crm-new-account-input {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
  color: #FFFFFF;
  padding: 10px 14px;
  margin: 0 auto;
  box-sizing: border-box;
  font-family: inherit;
  text-align: left;
  transition: border-color 0.2s, box-shadow 0.2s;
}

/* line 161, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_new_account.scss */
.crm-new-account-input:focus {
  outline: none;
  border-color: rgba(195, 135, 97, 0.5);
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

/* line 167, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_new_account.scss */
.crm-new-account-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.72rem;
  font-family: inherit;
}

/* line 172, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_new_account.scss */
.lightmode .crm-new-account-input {
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.12);
  background: rgba(255, 255, 255, 0.6);
}

/* line 176, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_new_account.scss */
.lightmode .crm-new-account-input:focus {
  border-color: rgba(195, 135, 97, 0.5);
  background: #FFFFFF;
}

/* line 180, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_new_account.scss */
.lightmode .crm-new-account-input::placeholder {
  color: rgba(20, 13, 35, 0.3);
}

/* line 186, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_new_account.scss */
.crm-new-account-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='4' viewBox='0 0 8 4'%3E%3Cpath fill='rgba(255,255,255,0.4)' d='M8 0H0l4 4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 8px 4px;
  padding-right: 30px;
}

/* line 197, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_new_account.scss */
.lightmode .crm-new-account-select {
  background-color: rgba(255, 255, 255, 0.6);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='4' viewBox='0 0 8 4'%3E%3Cpath fill='rgba(20,13,35,0.4)' d='M8 0H0l4 4z'/%3E%3C/svg%3E");
}

/* line 203, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_new_account.scss */
.crm-new-account-circular-add-btn {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(195, 135, 97, 0.15);
  border: 1px solid rgba(195, 135, 97, 0.3);
  color: #C38761;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  margin: 0;
  outline: none;
  transition: all 0.2s ease;
}

/* line 222, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_new_account.scss */
.crm-new-account-circular-add-btn:hover {
  background-color: rgba(195, 135, 97, 0.3);
  color: white;
}

/* line 227, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_new_account.scss */
.lightmode .crm-new-account-circular-add-btn {
  background-color: rgba(195, 135, 97, 0.1);
  border-color: rgba(195, 135, 97, 0.25);
  color: #C38761;
}

/* line 232, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_new_account.scss */
.lightmode .crm-new-account-circular-add-btn:hover {
  background-color: rgba(195, 135, 97, 0.2);
}

/* line 238, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_new_account.scss */
.crm-new-account-empty-state {
  padding: 20px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* line 243, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_new_account.scss */
.lightmode .crm-new-account-empty-state {
  color: rgba(20, 13, 35, 0.6);
}

/* line 248, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_new_account.scss */
.crm-new-account-actions {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

/* line 259, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_new_account.scss */
.lightmode .crm-new-account-actions {
  border-top-color: rgba(20, 13, 35, 0.08);
}

@media (max-width: 768px) {
  /* line 266, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_new_account.scss */
  .crm-new-account-capsule {
    width: 95%;
    padding: 20px 16px;
  }
  /* line 271, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_new_account.scss */
  .crm-new-account-actions {
    flex-direction: column;
    gap: 10px;
  }
  /* line 275, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_new_account.scss */
  .crm-new-account-actions .form-button, .crm-new-account-actions .users-management-container .users-header .add-user-btn, .users-management-container .users-header .crm-new-account-actions .add-user-btn, .crm-new-account-actions .crm-action-button {
    width: 100%;
  }
}

/* line 5, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-label-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 0.65rem;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: all 0.2s ease-in-out;
}

/* line 17, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.leads-board-capsule.lightmode .crm-label-badge {
  font-weight: 600;
}

/* line 22, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-label-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}

/* line 31, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-label-filter-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* line 38, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-label-filter-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

/* line 53, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-label-filter-trigger:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

/* line 58, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.leads-board-capsule.lightmode .crm-label-filter-trigger {
  color: #140D23;
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 63, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.leads-board-capsule.lightmode .crm-label-filter-trigger:hover {
  background: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.25);
}

/* line 70, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-label-filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  font-size: 0.6rem;
  font-weight: 600;
  background: #C38761;
  color: #FFFFFF;
}

/* line 84, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-label-filter-arrow {
  font-size: 0.55rem;
  opacity: 0.6;
}

/* line 89, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-label-filter-active-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}

/* line 96, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-label-filter-active-chip {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 8px;
  font-size: 0.65rem;
  font-weight: 500;
  border: 1px solid transparent;
  white-space: nowrap;
}

/* line 107, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-label-filter-clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.15s;
}

/* line 120, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-label-filter-clear:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  text-decoration: none;
}

/* line 126, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.leads-board-capsule.lightmode .crm-label-filter-clear {
  background: rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.6);
}

/* line 130, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.leads-board-capsule.lightmode .crm-label-filter-clear:hover {
  background: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 137, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-label-filter-menu {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 50;
  width: 260px;
  max-height: 350px;
  margin-top: 4px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(17px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

/* line 153, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.leads-board-capsule.lightmode .crm-label-filter-menu {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(20, 13, 35, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* line 160, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-label-filter-search {
  width: 100%;
  padding: 8px 12px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: #FFFFFF;
  font-size: 0.75rem;
  outline: none;
}

/* line 170, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-label-filter-search::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* line 174, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.leads-board-capsule.lightmode .crm-label-filter-search {
  color: #140D23;
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 178, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.leads-board-capsule.lightmode .crm-label-filter-search::placeholder {
  color: rgba(20, 13, 35, 0.4);
}

/* line 184, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-label-filter-list {
  overflow-y: auto;
  max-height: 240px;
  padding: 4px 0;
}

/* line 189, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-label-filter-list::-webkit-scrollbar {
  width: 4px;
}

/* line 193, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-label-filter-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

/* line 199, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-label-filter-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  cursor: pointer;
  transition: background 0.1s;
  font-size: 0.75rem;
  color: #FFFFFF;
}

/* line 209, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-label-filter-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* line 213, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.leads-board-capsule.lightmode .crm-label-filter-item {
  color: #140D23;
}

/* line 216, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.leads-board-capsule.lightmode .crm-label-filter-item:hover {
  background: rgba(20, 13, 35, 0.05);
}

/* line 221, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-label-filter-item input[type="checkbox"] {
  accent-color: #E5A82E;
  width: 14px;
  height: 14px;
}

/* line 229, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-label-filter-footer {
  display: flex;
  gap: 8px;
  padding: 8px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 235, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.leads-board-capsule.lightmode .crm-label-filter-footer {
  border-top-color: rgba(20, 13, 35, 0.1);
}

/* line 240, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-label-filter-apply {
  flex: 1;
  padding: 6px 12px;
  border-radius: 6px;
  border: none;
  background: #E5A82E;
  color: #140D23;
  font-size: 0.72rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.15s;
}

/* line 252, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-label-filter-apply:hover {
  opacity: 0.85;
}

/* line 257, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-label-filter-reset-btn {
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  cursor: pointer;
  transition: all 0.15s;
}

/* line 267, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-label-filter-reset-btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
}

/* line 272, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.leads-board-capsule.lightmode .crm-label-filter-reset-btn {
  border-color: rgba(20, 13, 35, 0.15);
  color: rgba(20, 13, 35, 0.6);
}

/* line 276, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.leads-board-capsule.lightmode .crm-label-filter-reset-btn:hover {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 285, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-label-picker-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* line 291, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-label-picker-anchor {
  position: relative;
}

/* line 295, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-label-picker-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 255, 255, 0.3);
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  font-size: 0.65rem;
  transition: all 0.15s ease;
}

/* line 309, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-label-picker-btn:hover {
  border-color: #C38761;
  color: #C38761;
  background: rgba(195, 135, 97, 0.08);
}

/* line 315, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.leads-board-capsule.lightmode .crm-label-picker-btn {
  border-color: rgba(20, 13, 35, 0.25);
  color: rgba(20, 13, 35, 0.4);
}

/* line 319, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.leads-board-capsule.lightmode .crm-label-picker-btn:hover {
  border-color: #C38761;
  color: #C38761;
  background: rgba(195, 135, 97, 0.08);
}

/* line 327, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-label-picker-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 50;
  width: 260px;
  max-height: 300px;
  margin-top: 4px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(17px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

/* line 343, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.leads-board-capsule.lightmode .crm-label-picker-dropdown {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(20, 13, 35, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* line 350, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-label-picker-search {
  width: 100%;
  padding: 8px 12px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: #FFFFFF;
  font-size: 0.75rem;
  outline: none;
}

/* line 360, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-label-picker-search::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* line 364, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.leads-board-capsule.lightmode .crm-label-picker-search {
  color: #140D23;
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 368, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.leads-board-capsule.lightmode .crm-label-picker-search::placeholder {
  color: rgba(20, 13, 35, 0.4);
}

/* line 374, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-label-picker-list {
  overflow-y: auto;
  max-height: 240px;
  padding: 4px 0;
}

/* line 379, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-label-picker-list::-webkit-scrollbar {
  width: 4px;
}

/* line 383, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-label-picker-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

/* line 389, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-label-picker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  cursor: pointer;
  transition: background 0.1s;
  font-size: 0.75rem;
  color: #FFFFFF;
}

/* line 399, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-label-picker-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* line 403, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.leads-board-capsule.lightmode .crm-label-picker-item {
  color: #140D23;
}

/* line 406, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.leads-board-capsule.lightmode .crm-label-picker-item:hover {
  background: rgba(20, 13, 35, 0.05);
}

/* line 411, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-label-picker-item input[type="checkbox"] {
  accent-color: #C38761;
  width: 14px;
  height: 14px;
}

/* line 420, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-labels-management {
  padding: 0;
  color: #FFFFFF;
  width: 100%;
  margin-right: 15px;
}

/* line 428, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-labels-header {
  margin-bottom: 1.5rem;
}

/* line 431, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-labels-header h4, .crm-labels-header .h4 {
  margin-bottom: 0.25rem;
  color: #FFFFFF;
}

/* line 436, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-labels-header p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  margin-bottom: 0;
}

/* line 443, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-labels-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  text-decoration: none;
  transition: color 0.15s;
}

/* line 453, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-labels-back-link:hover {
  color: #C38761;
}

/* line 459, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-labels-create-section {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

/* line 466, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-labels-create-section h6, .crm-labels-create-section .h6 {
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  margin: 0;
  background-color: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #C38761;
}

/* line 478, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-labels-create-section .crm-labels-form {
  padding: 14px;
}

/* line 482, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-labels-create-section .form-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

/* line 490, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-labels-create-section .form-control {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  font-size: 0.8rem;
}

/* line 496, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-labels-create-section .form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

/* line 500, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-labels-create-section .form-control:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(195, 135, 97, 0.4);
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.1);
  color: #FFFFFF;
}

/* line 508, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-labels-create-section .form-control-color {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  height: 38px;
}

/* line 514, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-labels-create-section .btn-primary, .crm-labels-create-section .crm-action-button.crm-action-button-primary {
  background: #C38761;
  border-color: #C38761;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.8rem;
  white-space: nowrap;
}

/* line 522, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-labels-create-section .btn-primary:hover, .crm-labels-create-section .crm-action-button.crm-action-button-primary:hover {
  background: #bc794f;
}

/* line 527, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-labels-create-section .btn-outline-secondary {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.15);
}

/* line 531, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-labels-create-section .btn-outline-secondary:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}

/* line 538, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-labels-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
}

/* line 545, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-labels-form-field {
  flex: 1;
  min-width: 150px;
}

/* line 550, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-labels-form-color {
  flex: 0 0 80px;
  min-width: 80px;
}

/* line 555, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-labels-form-desc {
  flex: 2;
}

/* line 559, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-labels-form-actions {
  display: flex;
  gap: 6px;
  align-items: flex-end;
}

/* line 565, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-labels-form-preview {
  margin-top: 8px;
}

/* line 570, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-labels-list {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

/* line 576, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-labels-list h6, .crm-labels-list .h6 {
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  margin: 0;
  background-color: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #C38761;
}

/* line 589, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-labels-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.15s;
}

/* line 597, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-labels-row:last-child {
  border-bottom: none;
}

/* line 601, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-labels-row:hover {
  background: rgba(255, 255, 255, 0.04);
}

/* line 606, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-labels-row-badge {
  flex: 0 0 auto;
}

/* line 610, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-labels-row-desc {
  flex: 1;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}

/* line 616, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-labels-row-count {
  flex: 0 0 auto;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
}

/* line 622, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-labels-row-actions {
  display: flex;
  gap: 6px;
  flex: 0 0 auto;
}

/* line 627, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-labels-row-actions .btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.35);
  padding: 4px 6px;
  font-size: 0.75rem;
  transition: color 0.15s;
}

/* line 635, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-labels-row-actions .btn:hover {
  color: #FFFFFF;
}

/* line 640, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-labels-row-actions .btn-outline-danger:hover {
  color: #e74c3c;
}

/* line 645, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-labels-empty {
  text-align: center;
  padding: 2rem;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
}

/* line 652, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-labels-delete-section {
  margin-top: 1rem;
}

/* line 655, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-labels-delete-section .crm-labels-delete-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(231, 76, 60, 0.25);
  background: transparent;
  color: rgba(231, 76, 60, 0.7);
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.15s;
}

/* line 668, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_labels.scss */
.crm-labels-delete-section .crm-labels-delete-btn:hover {
  background: rgba(231, 76, 60, 0.08);
  border-color: rgba(231, 76, 60, 0.4);
  color: #e74c3c;
}

/* line 14, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
.document-link-container {
  position: relative;
  margin-top: 12px;
}

/* line 20, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
.document-link-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 26, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
.document-link-search input {
  flex: 1;
  padding: 10px 40px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

/* line 36, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
.document-link-search input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 40, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
.document-link-search input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

/* line 47, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
.lightmode .document-link-search input {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.1);
  color: #1a1d29;
}

/* line 52, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
.lightmode .document-link-search input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

/* line 56, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
.lightmode .document-link-search input:focus {
  border-color: rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.04);
}

/* line 65, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
.document-link-loader {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
}

/* line 72, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
.lightmode .document-link-loader {
  color: rgba(0, 0, 0, 0.4);
}

/* line 78, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
.document-link-results {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 100;
  max-height: 320px;
  overflow-y: auto;
  background: rgba(26, 29, 41, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* line 91, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
.lightmode .document-link-results {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* line 99, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
.document-link-result-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.15s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* line 108, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
.document-link-result-item:last-child {
  border-bottom: none;
}

/* line 112, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
.document-link-result-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* line 116, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
.lightmode .document-link-result-item {
  border-bottom-color: rgba(0, 0, 0, 0.05);
}

/* line 119, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
.lightmode .document-link-result-item:hover {
  background: rgba(0, 0, 0, 0.04);
}

/* line 124, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
.document-link-result-item .document-chrono {
  font-weight: 500;
  color: #fff;
  font-size: 0.9rem;
}

/* line 129, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
.lightmode .document-link-result-item .document-chrono {
  color: #1a1d29;
}

/* line 134, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
.document-link-result-item .document-client {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  flex: 1;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 143, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
.lightmode .document-link-result-item .document-client {
  color: rgba(0, 0, 0, 0.5);
}

/* line 150, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
.document-type-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* line 162, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
.document-type-badge.badge-quote {
  background: #17a2b8;
  color: white;
}

/* line 167, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
.document-type-badge.badge-invoice {
  background: #28a745;
  color: white;
}

/* line 172, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
.document-type-badge.badge-contract {
  background: #6f42c1;
  color: white;
}

/* line 177, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
.document-type-badge.badge-orderForm {
  background: #20c997;
  color: white;
}

/* line 182, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
.document-type-badge.badge-depositInvoice {
  background: #fd7e14;
  color: white;
}

/* line 187, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
.document-type-badge.badge-creditNote {
  background: #dc3545;
  color: white;
}

/* line 192, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
.document-type-badge.badge-clientAcceptanceReport {
  background: #6c757d;
  color: white;
}

/* line 199, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
.document-link-no-results,
.document-link-error {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* line 209, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
.lightmode .document-link-no-results, .lightmode .document-link-error {
  color: rgba(0, 0, 0, 0.4);
}

/* line 213, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
.document-link-no-results i,
.document-link-error i {
  font-size: 1.1rem;
}

/* line 218, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
.document-link-error {
  color: #dc3545;
}

/* line 221, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
.lightmode .document-link-error {
  color: #dc3545;
}

/* line 227, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
.document-link-selected {
  margin-top: 12px;
}

/* line 231, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
.document-link-selected-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: rgba(40, 167, 69, 0.15);
  border: 1px solid rgba(40, 167, 69, 0.3);
  border-radius: 8px;
}

/* line 240, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
.lightmode .document-link-selected-item {
  background: rgba(40, 167, 69, 0.1);
  border-color: rgba(40, 167, 69, 0.2);
}

/* line 246, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
.document-link-selected-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 251, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
.document-link-selected-info .document-link {
  color: #28a745;
  font-weight: 500;
  text-decoration: none;
}

/* line 256, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
.document-link-selected-info .document-link:hover {
  text-decoration: underline;
}

/* line 262, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
.document-link-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(220, 53, 69, 0.2);
  color: #dc3545;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 276, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
.document-link-remove:hover {
  background: rgba(220, 53, 69, 0.3);
  transform: scale(1.1);
}

/* line 283, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
.document-link-no-selection {
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  font-style: italic;
}

/* line 289, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
.lightmode .document-link-no-selection {
  color: rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
  /* line 296, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
  .document-link-result-item {
    flex-wrap: wrap;
  }
  /* line 299, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_autocomplete.scss */
  .document-link-result-item .document-client {
    flex: 100%;
    text-align: left;
    margin-top: 4px;
  }
}

/* line 11, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(40, 167, 69, 0.15);
  border: 1px solid rgba(40, 167, 69, 0.3);
  border-radius: 8px;
  max-width: 100%;
}

/* line 21, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-chip {
  background: rgba(40, 167, 69, 0.1);
  border-color: rgba(40, 167, 69, 0.2);
}

/* line 26, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-chip-info {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1;
}

/* line 34, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-chip-link {
  color: #28a745;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 43, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-chip-link:hover {
  text-decoration: underline;
}

/* line 48, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-chip-client {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 55, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-chip-client {
  color: rgba(0, 0, 0, 0.5);
}

/* line 60, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-chip-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(220, 53, 69, 0.2);
  color: #dc3545;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

/* line 75, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-chip-remove:hover {
  background: rgba(220, 53, 69, 0.3);
  transform: scale(1.1);
}

/* line 82, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-no-selection-text {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  font-style: italic;
}

/* line 88, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-no-selection-text {
  color: rgba(0, 0, 0, 0.35);
}

/* line 93, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-open-drawer-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 107, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-open-drawer-btn:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

/* line 113, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-open-drawer-btn {
  border-color: rgba(0, 0, 0, 0.15);
  color: rgba(0, 0, 0, 0.6);
}

/* line 117, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-open-drawer-btn:hover {
  border-color: rgba(0, 0, 0, 0.3);
  color: rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.03);
}

/* line 124, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-open-drawer-btn i {
  font-size: 0.8rem;
}

/* line 133, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* line 147, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-drawer-overlay.active {
  opacity: 1;
}

/* line 152, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-drawer-panel {
  width: 700px;
  max-width: 90%;
  max-height: 85vh;
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
  color: white;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.95);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* line 170, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-drawer-overlay.active .document-link-drawer-panel {
  transform: scale(1);
  opacity: 1;
}

/* line 175, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-panel {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(20, 13, 35, 0.15);
  color: #140D23;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* line 184, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* line 192, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-header {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

/* line 196, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-drawer-header h3, .document-link-drawer-header .h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

/* line 202, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-header h3, .lightmode .document-link-drawer-header .h3 {
  color: #140D23;
}

/* line 208, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 221, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-drawer-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* line 226, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-close {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.5);
}

/* line 230, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-close:hover {
  background: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.8);
}

/* line 238, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-drawer-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

/* line 246, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-filters {
  border-bottom-color: rgba(0, 0, 0, 0.05);
}

/* line 251, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-filter-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 263, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-filter-pill:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
}

/* line 268, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-filter-pill.active {
  background: rgba(195, 135, 97, 0.25);
  border-color: rgba(195, 135, 97, 0.5);
  color: #C38761;
  font-weight: 500;
}

/* line 275, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-filter-pill {
  border-color: rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.5);
}

/* line 279, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-filter-pill:hover {
  border-color: rgba(0, 0, 0, 0.25);
  color: rgba(0, 0, 0, 0.8);
}

/* line 284, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-filter-pill.active {
  background: rgba(195, 135, 97, 0.12);
  border-color: rgba(195, 135, 97, 0.4);
  color: #af6c42;
}

/* line 293, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-drawer-search {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

/* line 298, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-search {
  border-bottom-color: rgba(0, 0, 0, 0.05);
}

/* line 302, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-drawer-search input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(195, 135, 97, 0.4);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

/* line 312, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-drawer-search input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* line 316, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-drawer-search input:focus {
  outline: none;
  border-color: rgba(195, 135, 97, 0.7);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.15);
}

/* line 323, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-search input {
  background: #e8e8e8;
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 328, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-search input::placeholder {
  color: rgba(0, 0, 0, 0.35);
}

/* line 332, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-search input:focus {
  border-color: rgba(20, 13, 35, 0.4);
  background: #e3e3e3;
  box-shadow: 0 0 0 2px rgba(20, 13, 35, 0.1);
}

/* line 342, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-drawer-results {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
}

/* line 348, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-drawer-results::-webkit-scrollbar {
  width: 6px;
}

/* line 352, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-drawer-results::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

/* line 357, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-drawer-results::-webkit-scrollbar-thumb {
  background: rgba(195, 135, 97, 0.5);
  border-radius: 3px;
}

/* line 361, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-drawer-results::-webkit-scrollbar-thumb:hover {
  background: rgba(195, 135, 97, 0.7);
}

/* line 368, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-drawer-result-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  cursor: pointer;
  transition: background 0.15s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* line 377, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-drawer-result-item:last-child {
  border-bottom: none;
}

/* line 381, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-drawer-result-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* line 385, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-result-item {
  border-bottom-color: rgba(0, 0, 0, 0.03);
}

/* line 388, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-result-item:hover {
  background: rgba(0, 0, 0, 0.03);
}

/* line 394, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-drawer-result-chrono {
  font-weight: 500;
  color: #fff;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* line 400, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-result-chrono {
  color: #140D23;
}

/* line 405, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-drawer-result-client {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  flex: 1;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 414, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-result-client {
  color: rgba(0, 0, 0, 0.45);
}

/* line 419, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-drawer-result-date {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
  white-space: nowrap;
}

/* line 424, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-result-date {
  color: rgba(0, 0, 0, 0.35);
}

/* line 430, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-drawer-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 40px 24px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  text-align: center;
}

/* line 441, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-empty {
  color: rgba(0, 0, 0, 0.35);
}

/* line 445, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-drawer-empty i {
  font-size: 1.5rem;
  opacity: 0.6;
}

/* line 452, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-drawer-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  color: rgba(255, 255, 255, 0.5);
}

/* line 459, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-drawer-loading {
  color: rgba(0, 0, 0, 0.4);
}

/* line 468, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-display {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

/* line 475, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-display-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* line 486, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-display-chip:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

/* line 491, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-display-chip {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.08);
}

/* line 495, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-display-chip:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.15);
}

/* line 501, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.document-link-display-chip .document-link-display-chrono {
  color: #fff;
  font-weight: 500;
  font-size: 0.85rem;
}

/* line 506, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.lightmode .document-link-display-chip .document-link-display-chrono {
  color: #140D23;
}

/* line 516, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.adv-document-link--linked {
  border-left: 3px solid #C38761;
}

/* line 520, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.adv-document-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
}

/* line 527, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.adv-document-link-indicator {
  color: #C38761;
  font-size: 0.7rem;
  opacity: 0.8;
}

/* line 533, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.adv-document-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* line 539, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.adv-document-separator {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
}

/* line 543, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.lightmode .adv-document-separator {
  color: rgba(20, 13, 35, 0.3);
}

/* line 548, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.adv-document-card-actions {
  display: flex;
  gap: 4px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 554, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.lightmode .adv-document-card-actions {
  border-top-color: rgba(20, 13, 35, 0.08);
}

/* line 559, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.adv-card-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border: none;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

/* line 574, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.adv-card-action-btn i {
  font-size: 0.65rem;
}

/* line 578, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.adv-card-action-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* line 583, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.lightmode .adv-card-action-btn {
  background: rgba(20, 13, 35, 0.05);
  color: rgba(20, 13, 35, 0.6);
}

/* line 587, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.lightmode .adv-card-action-btn:hover {
  background: rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 593, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.adv-card-action-btn--link:hover {
  background: rgba(195, 135, 97, 0.15);
  color: #C38761;
}

/* line 598, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
.adv-card-action-btn--danger:hover {
  background: rgba(220, 53, 69, 0.15);
  color: #dc3545;
}

@media (max-width: 768px) {
  /* line 609, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
  .document-link-drawer-panel {
    width: 95%;
    max-height: 90vh;
  }
  /* line 614, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
  .document-link-chip {
    flex-wrap: wrap;
  }
  /* line 617, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
  .document-link-chip-client {
    flex: 100%;
  }
  /* line 622, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
  .document-link-drawer-result-item {
    flex-wrap: wrap;
  }
  /* line 625, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_document_link_drawer.scss */
  .document-link-drawer-result-item .document-link-drawer-result-client {
    flex: 100%;
    text-align: left;
    margin-top: 2px;
  }
}

/* Styles spécifiques par section */
/* ==========================================================================
   LEADS BOARD - MODULE CRM
   Structure principale et composants pour la gestion des prospects
   ========================================================================== */
/* ==========================================================================
   LAYOUT PRINCIPAL - Structure générale du module
   ========================================================================== */
/* line 10, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-right: 15px;
  font-size: 1rem;
  gap: 5px;
  overflow: hidden;
}

/* line 22, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode {
  color: #140D23;
}

/* line 26, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.nightmode {
  color: #FFFFFF;
}

/* line 31, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 37, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule span:not(.crm-label-badge):not(.crm-label-filter-active-chip) {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* Variations de thème clair/sombre */
/* line 44, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode span:not(.crm-label-badge):not(.crm-label-filter-active-chip) {
  color: #C38761;
}

/* line 48, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.nightmode span:not(.crm-label-badge):not(.crm-label-filter-active-chip) {
  color: rgba(232, 232, 232, 0.7);
}

/* line 52, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode p {
  color: #140D23;
}

/* line 56, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.nightmode p {
  color: #FFFFFF;
}

/* line 60, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode i {
  color: #140D23;
}

/* line 64, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.nightmode i {
  color: #FFFFFF;
}

/* ==========================================================================
   BARRE SUPÉRIEURE - Recherche et bouton création
   ========================================================================== */
/* line 72, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row1 {
  width: 100%;
  height: 50px;
  /* Hauteur réduite */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  /* Empêche la compression */
  margin-bottom: 5px;
  /* Ajoute un peu d'espace en bas */
}

/* line 83, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row1 form {
  width: 100%;
  display: flex;
}

/* ==========================================================================
   BARRE DE RECHERCHE - Composants et fonctionnalités
   ========================================================================== */
/* line 93, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row1-searchbar {
  width: 100%;
  background-color: rgba(254, 254, 254, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 106, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row1-searchbar {
  border-color: rgba(20, 13, 35, 0.5);
  color: #140D23;
}

/* line 111, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row1-searchbar .crm-search-form {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 118, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row1-searchbar .crm-search-input-wrapper {
  position: relative;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

/* line 125, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row1-searchbar .crm-search-input {
  width: 100%;
  background: transparent;
  border: none;
  color: #FFFFFF;
  outline: none;
  padding-right: 25px;
  /* Espace pour l'icône de suppression */
}

/* line 133, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row1-searchbar .crm-search-input {
  color: #140D23;
}

/* line 136, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row1-searchbar .crm-search-input::placeholder {
  color: rgba(20, 13, 35, 0.6);
}

/* line 142, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row1-searchbar .crm-clear-search-button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 0.6rem;
  text-decoration: none;
}

/* line 157, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row1-searchbar .crm-clear-search-button {
  color: #140D23;
}

/* line 161, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row1-searchbar .crm-clear-search-button:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* line 164, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row1-searchbar .crm-clear-search-button:hover {
  color: rgba(20, 13, 35, 0.7);
}

/* line 170, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row1-searchbar button {
  all: unset;
  cursor: pointer;
}

/* line 175, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row1-searchbar .crm-search-button {
  padding: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 183, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row1-searchbar i {
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 188, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row1-searchbar i {
  color: #140D23 !important;
}

/* line 193, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row1-searchbar span {
  font-weight: normal !important;
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 199, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row1-searchbar span {
  color: #140D23 !important;
}

/* Bannière d'information sur la recherche en cours */
/* line 206, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.crm-search-info {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: #FFFFFF;
  margin-bottom: -10px;
  z-index: 5;
}

/* line 216, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .crm-search-info {
  color: #140D23;
}

/* line 220, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.crm-search-info span {
  opacity: 0.8;
}

/* line 224, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.crm-search-info .crm-reset-search-link {
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s ease;
}

/* line 235, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .crm-search-info .crm-reset-search-link {
  color: #140D23;
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 240, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.crm-search-info .crm-reset-search-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 243, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .crm-search-info .crm-reset-search-link:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* ==========================================================================
   ONGLETS DE NAVIGATION - Entre prospects actifs et archivés
   ========================================================================== */
/* line 254, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-tabs {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
  z-index: 10;
  position: relative;
  flex-shrink: 0;
  min-height: 35px;
}

/* line 265, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.tab-link {
  padding: 10px 20px;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  margin-right: 5px;
  font-size: 0.8rem;
  transition: background-color 0.3s ease;
  background-color: rgba(255, 255, 255, 0.05);
}

/* line 275, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .tab-link {
  color: #140D23;
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 280, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.tab-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

/* line 284, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .tab-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #140D23;
}

/* line 290, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.tab-link.active {
  background-color: rgba(255, 255, 255, 0.1);
  font-weight: bold;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 296, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .tab-link.active {
  background-color: rgba(20, 13, 35, 0.1);
  border: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 301, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.tab-link.active:after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
}

/* ==========================================================================
   CONTENEUR PRINCIPAL DES DONNÉES - Structure du tableau des prospects
   ========================================================================== */
/* line 316, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2 {
  width: 100%;
  flex: 1;
  /* Prend le reste de l'espace disponible */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  /* Aligne au sommet au lieu du centre */
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  /* Réduit le rayon pour gagner de l'espace */
  padding: 15px;
  /* Réduit le padding */
  overflow: hidden;
  /* Empêche le scroll sur ce conteneur */
}

/* line 329, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row2 {
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 334, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  /* Cache tout débordement */
}

/* ==========================================================================
   EN-TÊTE DU TABLEAU - Titres des colonnes et tri
   ========================================================================== */
/* line 347, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-head {
  width: 97%;
  display: flex;
  padding-right: 8px;
  flex-direction: row;
  font-weight: bold;
  font-size: 0.75rem;
  /* Taille réduite */
  margin-bottom: 5px;
  color: #FFFFFF;
}

/* line 357, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row2-list-head {
  color: #140D23;
}

/* line 362, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-head .leads-board-row2-list-column {
  width: calc(80% / 3);
  text-align: center;
  justify-content: center;
}

/* line 367, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-head .leads-board-row2-list-column:first-child {
  text-align: left;
  justify-content: flex-start;
  padding-left: 20px;
}

/* line 373, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-head .leads-board-row2-list-column:last-child {
  width: 20%;
  text-align: right;
  justify-content: flex-end;
  padding-right: 15px;
}

/* line 380, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-head .leads-board-row2-list-column.sortable {
  cursor: pointer;
  transition: background-color 0.2s ease;
}

/* line 384, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-head .leads-board-row2-list-column.sortable:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

/* line 387, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row2-list-head .leads-board-row2-list-column.sortable:hover {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 392, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-head .leads-board-row2-list-column.sortable .sort-link {
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 100%;
  height: 100%;
}

/* line 402, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row2-list-head .leads-board-row2-list-column.sortable .sort-link {
  color: #140D23;
}

/* line 406, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-head .leads-board-row2-list-column.sortable .sort-link i {
  font-size: 0.6rem !important;
}

/* line 409, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row2-list-head .leads-board-row2-list-column.sortable .sort-link i {
  color: #140D23 !important;
}

/* line 415, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-head .leads-board-row2-list-column.sortable:first-child .sort-link {
  justify-content: flex-start;
}

/* line 419, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-head .leads-board-row2-list-column.sortable:last-child .sort-link {
  justify-content: flex-end;
}

/* Styles communs pour les colonnes */
/* line 426, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-column {
  display: flex;
  align-items: center;
  font-size: 0.7rem;
  padding: 5px 10px;
}

/* ==========================================================================
   CORPS DU TABLEAU - Liste des prospects avec défilement
   ========================================================================== */
/* line 437, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-entries {
  width: 100%;
  height: calc(100% - 30px);
  /* Hauteur calculée en fonction de l'en-tête réduit */
  display: flex;
  gap: 5px;
  /* Espace réduit entre les lignes */
  flex-direction: column;
  overflow-y: auto;
  /* Permet le scroll vertical uniquement dans cette section */
  /* Personnalisation de la barre de défilement */
}

/* line 445, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-entries::-webkit-scrollbar {
  width: 8px;
  /* Largeur de la barre de défilement */
}

/* line 449, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-entries::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  /* Couleur de l'arrière-plan de la barre */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 453, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row2-list-entries::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 458, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-entries::-webkit-scrollbar-thumb {
  background: #C38761;
  /* Couleur de la barre de défilement */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 463, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-entries::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
  /* Couleur de la barre au survol */
}

/* line 466, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row2-list-entries::-webkit-scrollbar-thumb:hover {
  background: #140D23;
}

/* Lignes du tableau des prospects */
/* line 473, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-entry {
  width: 97%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  font-size: 0.7rem;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 2px;
  /* Ombre plus légère */
  cursor: pointer;
  transition: 0.3s ease-in-out;
  position: relative;
  border-radius: 6px;
  /* Réduit le rayon */
  overflow: hidden;
  min-height: 40px;
  /* Hauteur réduite */
  padding: 3px 0;
  /* Padding réduit */
  margin-bottom: 2px;
  /* Ajoute une petite marge en bas */
  color: #FFFFFF;
}

/* line 491, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row2-list-entry {
  color: #140D23;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 2px;
}

/* line 496, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-entry:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 501, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row2-list-entry:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 506, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-entry .leads-board-row2-list-column {
  text-align: center;
  justify-content: center;
}

/* line 510, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-entry .leads-board-row2-list-column:first-child {
  text-align: left;
  justify-content: flex-start;
  padding-left: 20px;
}

/* line 517, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-entry .leads-board-row2-list-column:last-child {
  width: 20%;
  justify-content: flex-end;
  display: flex;
  gap: 10px;
  padding-right: 15px;
  z-index: 10;
}

/* line 526, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-entry .leads-board-row2-list-column:not(:last-child) {
  width: calc(80% / 3);
}

/* ==========================================================================
   BADGES DE STATUT - Styles pour les différents types de statuts
   ========================================================================== */
/* line 535, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.status-badge {
  padding: 4px 8px;
  border-radius: 8px !important;
  font-size: 0.65rem;
  font-weight: 500;
  display: inline-block;
  min-width: 70px;
  text-align: center;
  transition: all 0.2s ease-in-out;
}

/* line 545, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .status-badge {
  padding: 4px 10px !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* line 549, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .status-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* line 555, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.status-badge.qualifié {
  background-color: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
}

/* line 560, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.status-badge.non-qualifié {
  background-color: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
}

/* line 565, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.status-badge.archivé {
  background-color: rgba(149, 165, 166, 0.2);
  color: #95a5a6;
}

/* line 570, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.status-badge.devis\ envoyé, .status-badge.devis-envoyé {
  background-color: rgba(52, 152, 219, 0.2);
  color: #3498db;
}

/* line 575, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.status-badge.non-defini {
  background-color: rgba(241, 196, 15, 0.2);
  color: #f1c40f;
}

/* line 581, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.status-badge[class*="devis"] {
  background-color: rgba(52, 152, 219, 0.2);
  color: #3498db;
}

/* line 588, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .status-badge {
  /* Important: Ces styles complètent mais ne remplacent pas les styles de base */
}

/* line 590, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .status-badge.qualifié {
  background-color: rgba(46, 204, 113, 0.4);
  color: #1e8449;
  font-weight: 600;
  border: 1px solid rgba(46, 204, 113, 0.2);
}

/* line 597, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .status-badge.non-qualifié {
  background-color: rgba(231, 76, 60, 0.4);
  color: #a93226;
  font-weight: 600;
  border: 1px solid rgba(231, 76, 60, 0.2);
}

/* line 604, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .status-badge.archivé {
  background-color: rgba(149, 165, 166, 0.4);
  color: #616a6b;
  font-weight: 600;
  border: 1px solid rgba(149, 165, 166, 0.2);
}

/* line 611, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .status-badge.devis\ envoyé, .leads-board-capsule.lightmode .status-badge.devis-envoyé {
  background-color: rgba(52, 152, 219, 0.4);
  color: #1a5276;
  font-weight: 600;
  border: 1px solid rgba(52, 152, 219, 0.2);
}

/* line 618, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .status-badge.non-defini {
  background-color: rgba(241, 196, 15, 0.4);
  color: #b7950b;
  font-weight: 600;
  border: 1px solid rgba(241, 196, 15, 0.2);
}

/* line 626, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .status-badge[class*="devis"] {
  background-color: rgba(52, 152, 219, 0.4);
  color: #1a5276;
  font-weight: 600;
  border: 1px solid rgba(52, 152, 219, 0.2);
}

/* Assurez-vous que le padding des badges est toujours appliqué */
/* line 635, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-column .status-badge {
  padding: 4px 8px !important;
}

/* line 638, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row2-list-column .status-badge {
  padding: 4px 10px !important;
}

/* Message quand aucun prospect n'est trouvé */
/* line 644, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.no-results {
  width: 100%;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-top: 10px;
}

/* line 654, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .no-results {
  color: #140D23;
  background-color: rgba(20, 13, 35, 0.05);
}

/* ==========================================================================
   BOUTONS D'ACTION - Édition et archivage des prospects
   ========================================================================== */
/* line 664, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.action-btn {
  padding: 5px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px;
  width: 25px;
  height: 25px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s ease;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 20;
}

/* line 680, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .action-btn {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 684, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.action-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* line 687, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .action-btn:hover {
  background-color: rgba(20, 13, 35, 0.3);
}

/* line 692, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.action-btn i {
  font-size: 0.8rem;
  color: #FFFFFF;
}

/* line 696, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .action-btn i {
  color: #140D23;
}

/* Styles pour les boutons de formulaire */
/* line 703, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
form.button_to {
  margin: 0;
  padding: 0;
  display: inline-block;
  background: none;
}

/* line 709, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
form.button_to button.action-btn {
  all: unset;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 720, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode form.button_to button.action-btn {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 724, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
form.button_to button.action-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* line 727, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode form.button_to button.action-btn:hover {
  background-color: rgba(20, 13, 35, 0.3);
}

/* ==========================================================================
   FORMULAIRES - Styles pour les écrans de création/édition de prospects
   ========================================================================== */
/* Styles pour les pages new, edit et show prospect */
/* line 739, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.new-prospect-capsule,
.edit-prospect-capsule,
.show-prospect-capsule {
  width: 80%;
  margin: 0 auto;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
}

/* line 749, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .new-prospect-capsule, .leads-board-capsule.lightmode .edit-prospect-capsule, .leads-board-capsule.lightmode .show-prospect-capsule {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 754, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.new-prospect-capsule h2, .new-prospect-capsule .h2,
.edit-prospect-capsule h2,
.edit-prospect-capsule .h2,
.show-prospect-capsule h2,
.show-prospect-capsule .h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: #FFFFFF;
}

/* line 762, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .new-prospect-capsule h2, .leads-board-capsule.lightmode .new-prospect-capsule .h2, .leads-board-capsule.lightmode .edit-prospect-capsule h2, .leads-board-capsule.lightmode .edit-prospect-capsule .h2, .leads-board-capsule.lightmode .show-prospect-capsule h2, .leads-board-capsule.lightmode .show-prospect-capsule .h2 {
  color: #140D23;
}

/* line 767, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.form-group {
  margin-bottom: 15px;
}

/* line 770, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.form-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.8rem;
  color: #FFFFFF;
}

/* line 776, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .form-group label {
  color: #140D23;
}

/* line 781, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.form-group .form-control {
  width: 100%;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-size: 0.8rem;
}

/* line 790, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .form-group .form-control {
  border: 1px solid rgba(20, 13, 35, 0.3);
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 798, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.form-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

/* line 804, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.btn-secondary, .crm-action-button.crm-action-button-secondary {
  background-color: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

/* line 808, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .btn-secondary, .leads-board-capsule.lightmode .crm-action-button.crm-action-button-secondary {
  background-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 814, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.btn-danger {
  background-color: #dc3545;
  color: #FFFFFF;
}

/* ==========================================================================
   DÉTAILS DU PROSPECT - Affichage des informations détaillées
   ========================================================================== */
/* line 823, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-details {
  margin-bottom: 25px;
}

/* line 827, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.detail-row {
  display: flex;
  margin-bottom: 10px;
  padding: 8px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

/* line 834, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .detail-row {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 839, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.detail-label {
  width: 40%;
  font-weight: bold;
  font-size: 0.8rem;
  color: #FFFFFF;
}

/* line 845, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .detail-label {
  color: #140D23;
}

/* line 850, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.detail-value {
  width: 60%;
  font-size: 0.8rem;
  color: #FFFFFF;
}

/* line 855, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .detail-value {
  color: #140D23;
}

/* line 860, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* ==========================================================================
   TOGGLE VUE - Bascule entre vue par prospect et vue par société
   ========================================================================== */
/* line 870, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-view-toggle {
  display: flex;
  gap: 8px;
  width: 80%;
  margin-bottom: 10px;
  flex-shrink: 0;
}

/* line 877, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-view-toggle .view-toggle-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.75rem;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: all 0.2s;
}

/* line 890, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-view-toggle .view-toggle-btn {
  color: #140D23;
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 896, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-view-toggle .view-toggle-btn:hover {
  background: rgba(195, 135, 97, 0.1);
  border-color: rgba(195, 135, 97, 0.3);
}

/* line 901, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-view-toggle .view-toggle-btn.active {
  background: rgba(195, 135, 97, 0.15);
  border-color: #C38761;
  color: #C38761;
}

/* line 906, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-view-toggle .view-toggle-btn.active {
  background: rgba(195, 135, 97, 0.2);
  color: #af6c42;
}

/* line 912, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-view-toggle .view-toggle-btn i {
  font-size: 0.8rem !important;
}

/* ==========================================================================
   VUE PAR SOCIÉTÉ - Affichage groupé par organisation
   ========================================================================== */
/* line 922, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-by-organization {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  /* Personnalisation de la barre de défilement */
}

/* line 931, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-by-organization::-webkit-scrollbar {
  width: 8px;
}

/* line 935, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-by-organization::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 939, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-by-organization::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 944, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-by-organization::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 949, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-by-organization::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 952, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-by-organization::-webkit-scrollbar-thumb:hover {
  background: #140D23;
}

/* line 958, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.organization-group {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

/* line 964, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .organization-group {
  background: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 969, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.organization-group.no-organization {
  border-left: 3px solid rgba(195, 135, 97, 0.5);
}

/* line 972, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.organization-group.no-organization .organization-header {
  background: rgba(195, 135, 97, 0.03);
}

/* line 978, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.organization-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(195, 135, 97, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 986, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .organization-header {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 990, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.organization-header .organization-name {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 995, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.organization-header .organization-name i {
  color: #C38761 !important;
  font-size: 1rem !important;
}

/* line 1000, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.organization-header .organization-name h3, .organization-header .organization-name .h3 {
  all: unset;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* line 1007, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .organization-header .organization-name h3, .leads-board-capsule.lightmode .organization-header .organization-name .h3 {
  color: #140D23;
}

/* line 1013, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.organization-header .organization-meta {
  display: flex;
  gap: 16px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  align-items: center;
}

/* line 1020, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .organization-header .organization-meta {
  color: rgba(20, 13, 35, 0.6);
}

/* line 1024, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.organization-header .organization-meta .prospect-count {
  background: rgba(195, 135, 97, 0.15);
  padding: 3px 10px;
  border-radius: 10px;
  color: #C38761;
  font-weight: 500;
}

/* line 1032, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.organization-header .organization-meta .org-email {
  font-size: 0.65rem;
}

/* line 1038, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.organization-prospects {
  padding: 8px;
}

/* line 1042, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-row {
  display: grid;
  grid-template-columns: 1fr 120px 100px 50px;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  align-items: center;
}

/* line 1052, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-row:hover {
  background: rgba(195, 135, 97, 0.08);
}

/* line 1056, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-row .prospect-name {
  font-weight: 500;
  font-size: 0.75rem;
  color: #FFFFFF;
}

/* line 1061, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .prospect-row .prospect-name {
  color: #140D23;
}

/* line 1066, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-row .prospect-status {
  display: flex;
  justify-content: center;
}

/* line 1071, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-row .prospect-date {
  text-align: right;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
}

/* line 1076, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .prospect-row .prospect-date {
  color: rgba(20, 13, 35, 0.5);
}

/* line 1081, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-row .prospect-actions {
  display: flex;
  justify-content: flex-end;
}

/* line 1087, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.no-prospects {
  padding: 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
  font-size: 0.75rem;
}

/* line 1094, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .no-prospects {
  color: rgba(20, 13, 35, 0.4);
}

/* ==========================================================================
   VUE PROSPECTS/CLIENTS AVEC ORGANISATIONS - Affichage hierarchique
   ========================================================================== */
/* line 1103, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-prospects-with-orgs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  /* Personnalisation de la barre de defilement */
}

/* line 1112, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-prospects-with-orgs::-webkit-scrollbar {
  width: 8px;
}

/* line 1116, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-prospects-with-orgs::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 1120, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-prospects-with-orgs::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 1125, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-prospects-with-orgs::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 1130, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-prospects-with-orgs::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 1133, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-prospects-with-orgs::-webkit-scrollbar-thumb:hover {
  background: #140D23;
}

/* line 1139, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

/* line 1146, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .prospect-card {
  background: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 1152, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: rgba(195, 135, 97, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background 0.2s;
}

/* line 1162, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-card-header:hover {
  background: rgba(195, 135, 97, 0.1);
}

/* line 1166, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .prospect-card-header {
  border-bottom-color: rgba(20, 13, 35, 0.08);
}

/* line 1171, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-card-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

/* line 1178, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-card-name {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 1183, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-card-name i {
  color: #C38761 !important;
  font-size: 1rem !important;
}

/* line 1188, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-card-name span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* line 1193, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .prospect-card-name span {
  color: #140D23;
}

/* line 1199, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 1205, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-card-date {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
}

/* line 1209, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .prospect-card-date {
  color: rgba(20, 13, 35, 0.5);
}

/* line 1214, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-card-actions {
  display: flex;
  gap: 8px;
}

/* line 1219, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-card-organizations {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.01);
}

/* line 1223, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .prospect-card-organizations {
  background: rgba(20, 13, 35, 0.01);
}

/* line 1228, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.org-child-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  margin-left: 20px;
  border-left: 2px solid rgba(195, 135, 97, 0.3);
  border-radius: 0 6px 6px 0;
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 4px;
  transition: background 0.2s;
}

/* line 1240, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.org-child-row:hover {
  background: rgba(195, 135, 97, 0.05);
}

/* line 1244, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.org-child-row:last-child {
  margin-bottom: 0;
}

/* line 1248, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .org-child-row {
  background: rgba(20, 13, 35, 0.02);
}

/* line 1251, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .org-child-row:hover {
  background: rgba(195, 135, 97, 0.08);
}

/* line 1257, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.org-child-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 1262, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.org-child-info i {
  color: rgba(195, 135, 97, 0.7) !important;
  font-size: 0.75rem !important;
}

/* line 1268, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.org-child-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: #FFFFFF;
}

/* line 1273, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .org-child-name {
  color: #140D23;
}

/* line 1278, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.org-child-details {
  display: flex;
  gap: 16px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
}

/* line 1284, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .org-child-details {
  color: rgba(20, 13, 35, 0.5);
}

/* line 1289, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.org-child-email,
.org-child-siret {
  font-size: 0.65rem;
}

/* line 1294, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.org-child-empty {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  margin-left: 20px;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
  font-size: 0.75rem;
}

/* line 1305, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.org-child-empty i {
  font-size: 0.8rem !important;
  color: rgba(255, 255, 255, 0.3) !important;
}

/* line 1310, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .org-child-empty {
  border-left-color: rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.4);
}

/* line 1314, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .org-child-empty i {
  color: rgba(20, 13, 35, 0.3) !important;
}

/* ==========================================================================
   AFFICHAGE COMPACT - Pour 0 ou 1 organisation
   ========================================================================== */
/* line 1325, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-card.compact .prospect-card-header {
  border-bottom: none;
}

/* line 1330, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-card.no-org {
  border-left: 3px solid rgba(195, 135, 97, 0.3);
}

/* line 1334, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-card-org-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
}

/* line 1342, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-card-org-inline i {
  color: rgba(195, 135, 97, 0.7) !important;
  font-size: 0.75rem !important;
}

/* line 1347, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .prospect-card-org-inline {
  background: rgba(20, 13, 35, 0.05);
}

/* line 1351, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-card-org-inline.empty {
  background: transparent;
  border: 1px dashed rgba(255, 255, 255, 0.15);
}

/* line 1355, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-card-org-inline.empty i {
  color: rgba(255, 255, 255, 0.4) !important;
}

/* line 1359, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .prospect-card-org-inline.empty {
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 1362, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .prospect-card-org-inline.empty i {
  color: rgba(20, 13, 35, 0.4) !important;
}

/* line 1369, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.org-inline-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: #FFFFFF;
}

/* line 1374, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .org-inline-name {
  color: #140D23;
}

/* line 1379, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.org-inline-siret {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  padding-left: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

/* line 1385, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .org-inline-siret {
  color: rgba(20, 13, 35, 0.5);
  border-left-color: rgba(20, 13, 35, 0.15);
}

/* line 1391, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.org-inline-empty {
  font-size: 0.75rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.4);
}

/* line 1396, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .org-inline-empty {
  color: rgba(20, 13, 35, 0.4);
}

/* line 1401, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.org-count-badge {
  background: rgba(195, 135, 97, 0.15);
  padding: 3px 8px;
  border-radius: 10px;
  color: #C38761;
  font-size: 0.65rem;
  font-weight: 500;
}

/* ==========================================================================
   CLASSES UTILITAIRES - Classes d'aide diverses
   ========================================================================== */
/* line 1414, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.d-none {
  display: none !important;
}

/* ==========================================================================
   FICHE PROSPECT - AFFICHAGE DÉTAILLÉ
   Styles pour la page de visualisation détaillée d'un prospect
   ========================================================================== */
/* Importe les styles des commentaires depuis show_contact */
/* ==========================================================================
   CONTACT SHOW - MODERN BENTO DESIGN
   Design inspiré des meilleures pratiques UX (Notion, Linear, Apple)
   ========================================================================== */
/* line 22, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: white;
  font-size: 0.875rem;
  min-height: calc(100vh - 120px);
}

/* line 34, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode {
  color: #140D23;
}

@media (max-width: 768px) {
  /* line 22, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
  .contact-show-capsule {
    padding: 16px;
    gap: 16px;
  }
}

/* line 48, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.profile-header, .account-page-profile-header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

/* line 61, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.profile-header::before, .account-page-profile-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* line 71, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .profile-header, .contact-show-capsule.lightmode .account-page-profile-header {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.04) 0%, rgba(20, 13, 35, 0.02) 100%);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 75, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .profile-header::before, .contact-show-capsule.lightmode .account-page-profile-header::before {
  background: linear-gradient(90deg, transparent, rgba(20, 13, 35, 0.1), transparent);
}

@media (max-width: 768px) {
  /* line 48, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
  .profile-header, .account-page-profile-header {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 16px;
  }
}

/* line 89, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.profile-header__photo {
  position: relative;
  flex-shrink: 0;
}

/* line 94, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.profile-header__image {
  width: 100px;
  height: 100px;
  border-radius: 16px;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 103, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.profile-header__image:hover {
  transform: scale(1.02);
  border-color: #C38761;
}

/* line 108, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .profile-header__image {
  border-color: rgba(20, 13, 35, 0.15);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* line 114, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.profile-header__placeholder {
  width: 100px;
  height: 100px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.3) 0%, rgba(195, 135, 97, 0.15) 100%);
  border: 3px solid rgba(195, 135, 97, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* line 125, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .profile-header__placeholder {
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.2) 0%, rgba(195, 135, 97, 0.1) 100%);
}

/* line 130, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.profile-header__initials {
  font-size: 2rem;
  font-weight: 700;
  color: #C38761;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* line 138, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.profile-header__photo-btn {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #C38761;
  border: 2px solid white;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* line 156, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.profile-header__photo-btn:hover {
  transform: scale(1.1);
  background: #b67145;
}

/* line 163, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.profile-header__info {
  flex: 1;
  min-width: 0;
}

/* line 168, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.profile-header__name {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 4px 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

/* line 175, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .profile-header__name {
  color: #140D23;
}

/* line 180, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.profile-header__role {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* line 189, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .profile-header__role {
  color: rgba(20, 13, 35, 0.7);
}

@media (max-width: 768px) {
  /* line 180, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
  .profile-header__role {
    justify-content: center;
  }
}

/* line 198, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.profile-header__company {
  font-weight: 600;
  color: #C38761;
}

/* line 203, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.profile-header__separator {
  color: rgba(255, 255, 255, 0.3);
}

/* line 206, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .profile-header__separator {
  color: rgba(20, 13, 35, 0.3);
}

/* line 211, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.profile-header__job {
  font-weight: 500;
}

/* line 216, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.profile-header__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  /* line 216, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
  .profile-header__actions {
    justify-content: center;
  }
}

/* line 226, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.action-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: 0.2s ease;
  white-space: nowrap;
}

/* line 240, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.action-pill i {
  font-size: 0.9rem;
}

/* line 244, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.action-pill--email {
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.25) 0%, rgba(52, 152, 219, 0.15) 100%);
  color: #3498db;
  border: 1px solid rgba(52, 152, 219, 0.3);
}

/* line 249, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.action-pill--email:hover {
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.35) 0%, rgba(52, 152, 219, 0.25) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.25);
}

/* line 256, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.action-pill--phone {
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.25) 0%, rgba(46, 204, 113, 0.15) 100%);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.3);
}

/* line 261, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.action-pill--phone:hover {
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.35) 0%, rgba(46, 204, 113, 0.25) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 204, 113, 0.25);
}

/* line 268, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.action-pill--linkedin {
  background: linear-gradient(135deg, rgba(0, 119, 181, 0.25) 0%, rgba(0, 119, 181, 0.15) 100%);
  color: #0077b5;
  border: 1px solid rgba(0, 119, 181, 0.3);
}

/* line 273, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.action-pill--linkedin:hover {
  background: linear-gradient(135deg, rgba(0, 119, 181, 0.35) 0%, rgba(0, 119, 181, 0.25) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 119, 181, 0.25);
}

/* line 280, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.action-pill--muted {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  border: 1px dashed rgba(255, 255, 255, 0.2);
}

/* line 285, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .action-pill--muted {
  background: rgba(20, 13, 35, 0.05);
  color: rgba(20, 13, 35, 0.5);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 291, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.action-pill--muted:hover {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  border-style: solid;
}

/* line 296, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .action-pill--muted:hover {
  background: rgba(20, 13, 35, 0.08);
  color: rgba(20, 13, 35, 0.8);
}

/* line 308, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  /* line 308, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
  .bento-grid {
    grid-template-columns: 1fr;
  }
}

/* line 322, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.bento-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

/* line 331, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .bento-card {
  background: rgba(20, 13, 35, 0.04);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 336, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.bento-card:hover {
  border-color: rgba(195, 135, 97, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* line 340, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .bento-card:hover {
  border-color: rgba(195, 135, 97, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* line 347, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.bento-card--organizations {
  grid-column: span 2;
}

@media (max-width: 900px) {
  /* line 347, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
  .bento-card--organizations {
    grid-column: span 1;
  }
}

/* line 355, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.bento-card--linkedin {
  grid-row: span 2;
}

@media (max-width: 900px) {
  /* line 355, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
  .bento-card--linkedin {
    grid-row: span 1;
  }
}

/* line 364, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.bento-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* line 372, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .bento-card__header {
  background: rgba(20, 13, 35, 0.03);
  border-bottom-color: rgba(20, 13, 35, 0.06);
}

/* line 378, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.bento-card__title {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 383, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.bento-card__title i {
  font-size: 1rem;
  color: #C38761;
}

/* line 388, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.bento-card__title h2, .bento-card__title .h2 {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 397, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.bento-card__count {
  background: rgba(195, 135, 97, 0.2);
  color: #C38761;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 700;
}

/* line 406, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.bento-card__add {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #C38761 0%, #af6c42 100%);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: 0.2s ease;
  box-shadow: 0 2px 8px rgba(195, 135, 97, 0.3);
}

/* line 421, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.bento-card__add:hover {
  transform: scale(1.1) rotate(90deg);
}

/* line 425, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.bento-card__add:active {
  transform: scale(0.95);
}

/* line 430, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.bento-card__content {
  padding: 16px 20px;
  flex: 1;
  overflow-y: auto;
  max-height: 350px;
}

/* line 437, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.bento-card__content::-webkit-scrollbar {
  width: 6px;
}

/* line 441, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.bento-card__content::-webkit-scrollbar-track {
  background: transparent;
}

/* line 445, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.bento-card__content::-webkit-scrollbar-thumb {
  background: rgba(195, 135, 97, 0.4);
  border-radius: 3px;
}

/* line 449, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.bento-card__content::-webkit-scrollbar-thumb:hover {
  background: rgba(195, 135, 97, 0.6);
}

/* line 459, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.org-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* line 465, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.org-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  flex: 1;
  min-width: 280px;
  transition: 0.2s ease;
}

/* line 477, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .org-item {
  background: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.08);
}

/* line 482, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.org-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(195, 135, 97, 0.3);
}

/* line 486, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .org-item:hover {
  background: rgba(20, 13, 35, 0.06);
}

/* line 490, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.org-item:hover .org-item__actions {
  opacity: 1;
}

/* line 496, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.org-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.2) 0%, rgba(195, 135, 97, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* line 506, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.org-item__icon i {
  color: #C38761;
  font-size: 1rem;
}

/* line 512, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.org-item__info {
  flex: 1;
  min-width: 0;
}

/* line 517, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.org-item__name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 526, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.org-item__meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

/* line 532, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.org-item__tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
}

/* line 540, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.org-item__tag--job {
  background: rgba(195, 135, 97, 0.15);
  color: #C38761;
  border: 1px solid rgba(195, 135, 97, 0.25);
}

/* line 546, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.org-item__tag--role {
  background: rgba(52, 152, 219, 0.15);
  color: #3498db;
  border: 1px solid rgba(52, 152, 219, 0.25);
}

/* line 553, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.org-item__actions {
  display: flex;
  gap: 4px;
  opacity: 0.5;
  transition: 0.2s ease;
}

/* line 564, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.crm-linkedin-sections {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 570, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.crm-linkedin-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  overflow: hidden;
}

/* line 576, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .crm-linkedin-section {
  background: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.06);
}

/* line 582, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.crm-linkedin-section__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* line 595, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .crm-linkedin-section__header {
  color: rgba(20, 13, 35, 0.7);
  background: rgba(20, 13, 35, 0.02);
  border-bottom-color: rgba(20, 13, 35, 0.04);
}

/* line 601, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.crm-linkedin-section__header i {
  font-size: 0.8rem;
  color: #C38761;
}

/* line 607, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.crm-linkedin-section__content {
  padding: 12px 14px;
}

/* line 611, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.crm-linkedin-section__placeholder {
  text-align: center;
}

/* line 614, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.crm-linkedin-section__placeholder p {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

/* line 620, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .crm-linkedin-section__placeholder p {
  color: rgba(20, 13, 35, 0.4);
}

/* line 630, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 636, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-field {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  transition: 0.2s ease;
}

/* line 646, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .contact-field {
  background: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.06);
}

/* line 651, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-field:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* line 654, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .contact-field:hover {
  background: rgba(20, 13, 35, 0.04);
}

/* line 660, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-field__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.15) 0%, rgba(195, 135, 97, 0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* line 670, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-field__icon i {
  color: #C38761;
  font-size: 0.9rem;
}

/* line 676, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-field__content {
  flex: 1;
  min-width: 0;
}

/* line 681, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-field__label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2px;
}

/* line 689, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .contact-field__label {
  color: rgba(20, 13, 35, 0.5);
}

/* line 694, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-field__value {
  font-size: 0.9rem;
  font-weight: 500;
}

/* line 698, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-field__value--link {
  color: #C38761;
  text-decoration: none;
  transition: 0.2s ease;
}

/* line 703, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-field__value--link:hover {
  text-decoration: underline;
}

/* line 708, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-field__value--empty {
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

/* line 712, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .contact-field__value--empty {
  color: rgba(20, 13, 35, 0.4);
}

/* line 722, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.comments-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 728, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.comment-item {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  border-left: 3px solid #C38761;
}

/* line 735, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .comment-item {
  background: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.06);
  border-left-color: #C38761;
}

/* line 742, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.comment-item__content {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 8px;
  word-break: break-word;
}

/* line 749, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.comment-item__date {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* line 756, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .comment-item__date {
  color: rgba(20, 13, 35, 0.4);
}

/* line 760, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.comment-item__date i {
  font-size: 0.65rem;
}

/* line 769, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.appointments-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 775, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.appointment-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  transition: 0.2s ease;
}

/* line 785, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .appointment-item {
  background: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.06);
}

/* line 790, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.appointment-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* line 793, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .appointment-item:hover {
  background: rgba(20, 13, 35, 0.04);
}

/* line 799, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.appointment-item__date {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.2) 0%, rgba(195, 135, 97, 0.1) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* line 811, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.appointment-item__day {
  font-size: 1.1rem;
  font-weight: 700;
  color: #C38761;
  line-height: 1;
}

/* line 818, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.appointment-item__month {
  font-size: 0.6rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
}

/* line 824, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .appointment-item__month {
  color: rgba(20, 13, 35, 0.6);
}

/* line 829, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.appointment-item__info {
  flex: 1;
  min-width: 0;
}

/* line 834, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.appointment-item__title {
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 843, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.appointment-item__meta {
  display: flex;
  gap: 12px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* line 849, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .appointment-item__meta {
  color: rgba(20, 13, 35, 0.5);
}

/* line 853, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.appointment-item__meta i {
  margin-right: 4px;
  font-size: 0.7rem;
}

/* line 859, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.appointment-item__status {
  flex-shrink: 0;
}

/* line 864, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 874, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.status-badge--a_venir {
  background: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.3);
}

/* line 880, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.status-badge--termine {
  background: rgba(52, 152, 219, 0.2);
  color: #3498db;
  border: 1px solid rgba(52, 152, 219, 0.3);
}

/* line 886, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.status-badge--abandonne {
  background: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.3);
}

/* line 897, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.crm-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

/* line 905, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.crm-empty-state--compact {
  padding: 24px 16px;
}

/* line 910, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.empty-state__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

/* line 921, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .empty-state__icon {
  background: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 926, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.empty-state__icon--linkedin {
  background: rgba(0, 119, 181, 0.1);
  border-color: rgba(0, 119, 181, 0.2);
}

/* line 931, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.empty-state__icon i {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.3);
}

/* line 935, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .empty-state__icon i {
  color: rgba(20, 13, 35, 0.3);
}

/* line 941, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.empty-state__text {
  margin: 0 0 16px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* line 946, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .empty-state__text {
  color: rgba(20, 13, 35, 0.5);
}

/* line 951, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.empty-state__action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.2) 0%, rgba(195, 135, 97, 0.1) 100%);
  border: 1px solid rgba(195, 135, 97, 0.3);
  color: #C38761;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

/* line 965, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.empty-state__action:hover {
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.3) 0%, rgba(195, 135, 97, 0.2) 100%);
  transform: translateY(-1px);
}

/* line 970, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.empty-state__action i {
  font-size: 0.7rem;
}

/* line 979, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.icon-btn {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  transition: 0.2s ease;
  text-decoration: none;
}

/* line 994, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .icon-btn {
  background: rgba(20, 13, 35, 0.06);
  border-color: rgba(20, 13, 35, 0.12);
  color: rgba(20, 13, 35, 0.7);
}

/* line 1000, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.icon-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

/* line 1004, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .icon-btn:hover {
  background: rgba(20, 13, 35, 0.12);
  color: #140D23;
}

/* line 1010, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.icon-btn--edit:hover {
  color: #C38761;
  border-color: rgba(195, 135, 97, 0.3);
}

/* line 1016, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.icon-btn--delete:hover {
  background: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
  border-color: rgba(231, 76, 60, 0.3);
}

/* line 1028, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.see-more-btn {
  width: 100%;
  margin-top: 12px;
  padding: 10px;
  background: transparent;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  font-size: 0.75rem;
  cursor: pointer;
  transition: 0.2s ease;
}

/* line 1040, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .see-more-btn {
  border-color: rgba(20, 13, 35, 0.15);
  color: rgba(20, 13, 35, 0.6);
}

/* line 1045, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.see-more-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(195, 135, 97, 0.3);
  color: #C38761;
}

/* line 1050, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .see-more-btn:hover {
  background: rgba(20, 13, 35, 0.03);
}

/* line 1060, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.page-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
}

/* line 1068, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .page-actions {
  border-top-color: rgba(20, 13, 35, 0.08);
}

@media (max-width: 480px) {
  /* line 1060, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
  .page-actions {
    flex-direction: column;
  }
  /* line 1075, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
  .page-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* line 1082, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.inline-form {
  display: inline;
}

/* line 1090, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
  border: none;
  text-decoration: none;
}

/* line 1103, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.btn i {
  font-size: 0.8rem;
}

/* line 1107, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.btn--primary {
  background: linear-gradient(135deg, #C38761 0%, #af6c42 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(195, 135, 97, 0.3);
}

/* line 1112, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(195, 135, 97, 0.4);
}

/* line 1118, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* line 1123, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .btn--secondary {
  background: rgba(20, 13, 35, 0.06);
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 1129, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* line 1132, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .btn--secondary:hover {
  background: rgba(20, 13, 35, 0.1);
}

/* line 1138, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.btn--success {
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  color: white;
}

/* line 1142, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.btn--success:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

/* line 1148, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.btn--danger {
  background: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.25);
}

/* line 1153, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.btn--danger:hover {
  background: rgba(231, 76, 60, 0.25);
}

/* line 1158, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.btn--small {
  padding: 6px 12px;
  font-size: 0.75rem;
}

/* line 1168, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 20px;
}

/* line 1182, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.modal-overlay.active {
  display: flex;
  animation: fadeIn 0.2s ease;
}

/* line 1188, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.modal-overlay .modal-content {
  background: linear-gradient(180deg, rgba(50, 50, 55, 0.98) 0%, rgba(40, 40, 45, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  opacity: 0;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 1202, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.modal-overlay.active .modal-content {
  transform: translateY(0);
  opacity: 1;
}

/* line 1207, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 1215, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.modal-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
}

/* line 1222, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.modal-close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}

/* line 1236, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.modal-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

/* line 1242, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.modal-body {
  padding: 24px;
}

/* line 1250, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.form-field {
  margin-bottom: 20px;
}

/* line 1253, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.form-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 1264, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.form-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: white;
  font-size: 0.9rem;
  transition: 0.2s ease;
  box-sizing: border-box;
}

/* line 1275, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.form-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

/* line 1279, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.form-input:focus {
  outline: none;
  border-color: #C38761;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.15);
}

/* line 1286, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.form-input--textarea {
  min-height: 100px;
  resize: vertical;
}

/* line 1291, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.form-input--file {
  padding: 10px;
}

/* line 1296, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.form-hint {
  display: block;
  margin-top: 6px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
}

/* line 1303, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.form-error {
  margin-top: 8px;
  padding: 10px 12px;
  background: rgba(231, 76, 60, 0.15);
  border: 1px solid rgba(231, 76, 60, 0.25);
  border-radius: 8px;
  color: #e74c3c;
  font-size: 0.8rem;
}

/* line 1313, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 1322, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.photo-preview {
  margin-top: 12px;
  border-radius: 10px;
  overflow: hidden;
}

/* line 1327, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/../contacts_management/_show_contact.scss */
.photo-preview img {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.05);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ==========================================================================
   CONTENEUR PRINCIPAL
   ========================================================================== */
/* line 13, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.prospect-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  max-width: 1280px;
  margin-right: 15px;
  font-size: 0.8rem;
  max-height: calc( 100vh - 100px);
  /* Limite la hauteur pour éviter le scroll global */
  overflow: hidden;
  /* Empêche le scroll sur le conteneur principal */
}

/* line 26, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.prospect-main-content {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  /* Étire les enfants sur la même hauteur */
  gap: 15px;
  overflow: hidden;
  /* Lorsque l'historique est masqué et que le menu est ouvert */
}

/* line 35, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.prospect-main-content.wide-margins {
  padding-left: 40px;
  padding-right: 40px;
}

/* line 41, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule,
.new-prospect-capsule {
  flex: 1;
  display: flex;
  flex-direction: column;
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 15px;
  height: 76vh;
}

/* line 52, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode,
.new-prospect-capsule.lightmode {
  color: #140D23;
  background-color: rgba(240, 242, 245, 0.7);
}

/* ==========================================================================
   GRILLE DE MISE EN PAGE
   Structure en grille pour organiser les différentes sections d'information
   ========================================================================== */
/* line 63, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.prospect-grid-layout {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr;
  grid-template-rows: auto 1fr 1fr;
  /* Lignes 2 et 3 se partagent l'espace restant */
  gap: 12px;
  flex: 1;
  /* Remplit l'espace de la capsule */
  min-height: 0;
  /* Permet le scroll interne des sections */
}

/* Positionnement des sections selon le schéma */
/* line 73, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-grid-societes {
  grid-column: 1;
  grid-row: 2;
}

/* line 78, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-grid-contacts {
  grid-column: 2 / span 2;
  grid-row: 2;
}

/* Ligne 3 */
/* line 84, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-grid-commentaires {
  grid-column: 1 / span 2;
  grid-row: 3;
}

/* line 89, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-grid-rendezvous {
  grid-column: 3;
  grid-row: 3;
}

/* Mode mono-organisation : nouveau layout 3 rows (hero, détails, activité) */
/* line 95, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.prospect-grid-layout--mono {
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto 1fr 1fr;
  /* Row 1 - Hero Zone */
  /* Row 2 - Detail Zone */
  /* Row 3 - Activity Zone */
}

/* line 100, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.prospect-grid-layout--mono .crm-grid-hero {
  grid-column: 1 / span 2;
  grid-row: 1;
}

/* line 105, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.prospect-grid-layout--mono .crm-grid-contacts {
  grid-column: 3;
  grid-row: 1;
}

/* line 111, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.prospect-grid-layout--mono .crm-grid-coordonnees {
  grid-column: 1;
  grid-row: 2;
}

/* line 116, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.prospect-grid-layout--mono .crm-grid-pipeline {
  grid-column: 2;
  grid-row: 2;
}

/* line 121, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.prospect-grid-layout--mono .crm-grid-legal-detail {
  grid-column: 2;
  grid-row: 2;
}

/* line 126, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.prospect-grid-layout--mono .crm-grid-rendezvous {
  grid-column: 3;
  grid-row: 2;
}

/* line 132, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.prospect-grid-layout--mono .crm-grid-historique {
  grid-column: 1 / span 2;
  grid-row: 3;
}

/* line 137, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.prospect-grid-layout--mono .crm-grid-commentaires {
  grid-column: 3;
  grid-row: 3;
}

/* ==========================================================================
   SECTIONS DE LA GRILLE
   Styles communs et variations pour les cellules de la grille
   ========================================================================== */
/* Style de base pour chaque section */
/* line 149, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-grid-section {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  /* Sections contenant un dropdown (label picker) : overflow visible */
  /* Mode multi-orga : fixer le dropdown au coin droit de la section */
  /* Sections de la première ligne (plus petites) */
  /* Sections des lignes 2 et 3 - hauteur flexible */
}

/* line 159, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-grid-section.crm-grid-hero, .crm-grid-section.crm-grid-status {
  overflow: visible;
}

/* line 166, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-grid-section.crm-grid-status .crm-section-content {
  position: relative;
}

/* line 170, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-grid-section.crm-grid-status .crm-label-picker-anchor {
  position: static;
}

/* line 174, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-grid-section.crm-grid-status .crm-label-picker-dropdown {
  right: 0;
  left: auto;
}

/* line 181, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-grid-section.crm-grid-nom, .crm-grid-section.crm-grid-organisation, .crm-grid-section.crm-grid-status {
  height: auto;
}

/* line 188, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-grid-section.crm-grid-societes, .crm-grid-section.crm-grid-contacts, .crm-grid-section.crm-grid-commentaires, .crm-grid-section.crm-grid-rendezvous, .crm-grid-section.crm-grid-coordonnees, .crm-grid-section.crm-grid-pipeline, .crm-grid-section.crm-grid-legal-detail, .crm-grid-section.crm-grid-historique {
  min-height: 0;
  /* Permet le scroll interne */
  /* Contenu des sections avec défilement interne */
}

/* line 199, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-grid-section.crm-grid-societes .crm-section-content, .crm-grid-section.crm-grid-contacts .crm-section-content, .crm-grid-section.crm-grid-commentaires .crm-section-content, .crm-grid-section.crm-grid-rendezvous .crm-section-content, .crm-grid-section.crm-grid-coordonnees .crm-section-content, .crm-grid-section.crm-grid-pipeline .crm-section-content, .crm-grid-section.crm-grid-legal-detail .crm-section-content, .crm-grid-section.crm-grid-historique .crm-section-content {
  overflow-y: auto;
  flex: 1;
  min-height: 0;
  /* Permet le scroll */
  /* Personnalisation de la barre de défilement */
}

/* line 205, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-grid-section.crm-grid-societes .crm-section-content::-webkit-scrollbar, .crm-grid-section.crm-grid-contacts .crm-section-content::-webkit-scrollbar, .crm-grid-section.crm-grid-commentaires .crm-section-content::-webkit-scrollbar, .crm-grid-section.crm-grid-rendezvous .crm-section-content::-webkit-scrollbar, .crm-grid-section.crm-grid-coordonnees .crm-section-content::-webkit-scrollbar, .crm-grid-section.crm-grid-pipeline .crm-section-content::-webkit-scrollbar, .crm-grid-section.crm-grid-legal-detail .crm-section-content::-webkit-scrollbar, .crm-grid-section.crm-grid-historique .crm-section-content::-webkit-scrollbar {
  width: 6px;
  /* Barre plus fine */
}

/* line 209, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-grid-section.crm-grid-societes .crm-section-content::-webkit-scrollbar-track, .crm-grid-section.crm-grid-contacts .crm-section-content::-webkit-scrollbar-track, .crm-grid-section.crm-grid-commentaires .crm-section-content::-webkit-scrollbar-track, .crm-grid-section.crm-grid-rendezvous .crm-section-content::-webkit-scrollbar-track, .crm-grid-section.crm-grid-coordonnees .crm-section-content::-webkit-scrollbar-track, .crm-grid-section.crm-grid-pipeline .crm-section-content::-webkit-scrollbar-track, .crm-grid-section.crm-grid-legal-detail .crm-section-content::-webkit-scrollbar-track, .crm-grid-section.crm-grid-historique .crm-section-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 213, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-grid-section.crm-grid-societes .crm-section-content::-webkit-scrollbar-track, .new-prospect-capsule.lightmode .crm-grid-section.crm-grid-societes .crm-section-content::-webkit-scrollbar-track, .show-prospect-capsule.lightmode .crm-grid-section.crm-grid-contacts .crm-section-content::-webkit-scrollbar-track, .new-prospect-capsule.lightmode .crm-grid-section.crm-grid-contacts .crm-section-content::-webkit-scrollbar-track, .show-prospect-capsule.lightmode .crm-grid-section.crm-grid-commentaires .crm-section-content::-webkit-scrollbar-track, .new-prospect-capsule.lightmode .crm-grid-section.crm-grid-commentaires .crm-section-content::-webkit-scrollbar-track, .show-prospect-capsule.lightmode .crm-grid-section.crm-grid-rendezvous .crm-section-content::-webkit-scrollbar-track, .new-prospect-capsule.lightmode .crm-grid-section.crm-grid-rendezvous .crm-section-content::-webkit-scrollbar-track, .show-prospect-capsule.lightmode .crm-grid-section.crm-grid-coordonnees .crm-section-content::-webkit-scrollbar-track, .new-prospect-capsule.lightmode .crm-grid-section.crm-grid-coordonnees .crm-section-content::-webkit-scrollbar-track, .show-prospect-capsule.lightmode .crm-grid-section.crm-grid-pipeline .crm-section-content::-webkit-scrollbar-track, .new-prospect-capsule.lightmode .crm-grid-section.crm-grid-pipeline .crm-section-content::-webkit-scrollbar-track, .show-prospect-capsule.lightmode .crm-grid-section.crm-grid-legal-detail .crm-section-content::-webkit-scrollbar-track, .new-prospect-capsule.lightmode .crm-grid-section.crm-grid-legal-detail .crm-section-content::-webkit-scrollbar-track, .show-prospect-capsule.lightmode .crm-grid-section.crm-grid-historique .crm-section-content::-webkit-scrollbar-track, .new-prospect-capsule.lightmode .crm-grid-section.crm-grid-historique .crm-section-content::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 219, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-grid-section.crm-grid-societes .crm-section-content::-webkit-scrollbar-thumb, .crm-grid-section.crm-grid-contacts .crm-section-content::-webkit-scrollbar-thumb, .crm-grid-section.crm-grid-commentaires .crm-section-content::-webkit-scrollbar-thumb, .crm-grid-section.crm-grid-rendezvous .crm-section-content::-webkit-scrollbar-thumb, .crm-grid-section.crm-grid-coordonnees .crm-section-content::-webkit-scrollbar-thumb, .crm-grid-section.crm-grid-pipeline .crm-section-content::-webkit-scrollbar-thumb, .crm-grid-section.crm-grid-legal-detail .crm-section-content::-webkit-scrollbar-thumb, .crm-grid-section.crm-grid-historique .crm-section-content::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 224, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-grid-section.crm-grid-societes .crm-section-content::-webkit-scrollbar-thumb:hover, .crm-grid-section.crm-grid-contacts .crm-section-content::-webkit-scrollbar-thumb:hover, .crm-grid-section.crm-grid-commentaires .crm-section-content::-webkit-scrollbar-thumb:hover, .crm-grid-section.crm-grid-rendezvous .crm-section-content::-webkit-scrollbar-thumb:hover, .crm-grid-section.crm-grid-coordonnees .crm-section-content::-webkit-scrollbar-thumb:hover, .crm-grid-section.crm-grid-pipeline .crm-section-content::-webkit-scrollbar-thumb:hover, .crm-grid-section.crm-grid-legal-detail .crm-section-content::-webkit-scrollbar-thumb:hover, .crm-grid-section.crm-grid-historique .crm-section-content::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 227, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-grid-section.crm-grid-societes .crm-section-content::-webkit-scrollbar-thumb:hover, .new-prospect-capsule.lightmode .crm-grid-section.crm-grid-societes .crm-section-content::-webkit-scrollbar-thumb:hover, .show-prospect-capsule.lightmode .crm-grid-section.crm-grid-contacts .crm-section-content::-webkit-scrollbar-thumb:hover, .new-prospect-capsule.lightmode .crm-grid-section.crm-grid-contacts .crm-section-content::-webkit-scrollbar-thumb:hover, .show-prospect-capsule.lightmode .crm-grid-section.crm-grid-commentaires .crm-section-content::-webkit-scrollbar-thumb:hover, .new-prospect-capsule.lightmode .crm-grid-section.crm-grid-commentaires .crm-section-content::-webkit-scrollbar-thumb:hover, .show-prospect-capsule.lightmode .crm-grid-section.crm-grid-rendezvous .crm-section-content::-webkit-scrollbar-thumb:hover, .new-prospect-capsule.lightmode .crm-grid-section.crm-grid-rendezvous .crm-section-content::-webkit-scrollbar-thumb:hover, .show-prospect-capsule.lightmode .crm-grid-section.crm-grid-coordonnees .crm-section-content::-webkit-scrollbar-thumb:hover, .new-prospect-capsule.lightmode .crm-grid-section.crm-grid-coordonnees .crm-section-content::-webkit-scrollbar-thumb:hover, .show-prospect-capsule.lightmode .crm-grid-section.crm-grid-pipeline .crm-section-content::-webkit-scrollbar-thumb:hover, .new-prospect-capsule.lightmode .crm-grid-section.crm-grid-pipeline .crm-section-content::-webkit-scrollbar-thumb:hover, .show-prospect-capsule.lightmode .crm-grid-section.crm-grid-legal-detail .crm-section-content::-webkit-scrollbar-thumb:hover, .new-prospect-capsule.lightmode .crm-grid-section.crm-grid-legal-detail .crm-section-content::-webkit-scrollbar-thumb:hover, .show-prospect-capsule.lightmode .crm-grid-section.crm-grid-historique .crm-section-content::-webkit-scrollbar-thumb:hover, .new-prospect-capsule.lightmode .crm-grid-section.crm-grid-historique .crm-section-content::-webkit-scrollbar-thumb:hover {
  background: #140D23;
}

/* Titre de chaque section */
/* line 237, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-section-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  background-color: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #C38761;
}

/* line 247, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-section-label, .new-prospect-capsule.lightmode .crm-section-label {
  background-color: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.08);
  color: #C38761;
}

/* En-tête de section avec bouton d'ajout */
/* line 256, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  background-color: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #C38761;
}

/* line 269, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-section-header .crm-section-label {
  border-bottom: none;
  flex-grow: 1;
  padding: 0;
  background-color: transparent;
}

/* line 275, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-section-header .crm-section-label, .new-prospect-capsule.lightmode .crm-section-header .crm-section-label {
  background-color: transparent;
}

/* line 281, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-section-header .crm-add-btn {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(195, 135, 97, 0.15);
  border: 1px solid rgba(195, 135, 97, 0.3);
  color: #C38761;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  margin: 0;
  outline: none;
}

/* line 297, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-section-header .crm-add-btn:hover {
  background-color: rgba(195, 135, 97, 0.3);
  color: white;
}

/* line 303, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-section-header, .new-prospect-capsule.lightmode .crm-section-header {
  background-color: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.08);
  color: #C38761;
}

/* line 309, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-section-header .crm-add-btn, .new-prospect-capsule.lightmode .crm-section-header .crm-add-btn {
  background-color: rgba(195, 135, 97, 0.1);
  border-color: rgba(195, 135, 97, 0.25);
  color: #C38761;
}

/* line 314, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-section-header .crm-add-btn:hover, .new-prospect-capsule.lightmode .crm-section-header .crm-add-btn:hover {
  background-color: rgba(195, 135, 97, 0.2);
}

/* Contenu de chaque section */
/* line 322, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-section-content {
  padding: 12px;
  color: #ffffff;
  font-size: 0.7rem;
}

/* Message affiché quand une section est vide */
/* line 329, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-no-content {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  font-size: 0.7rem;
}

/* ==========================================================================
   MODE CLAIR (LIGHTMODE)
   Adaptation des styles pour le thème clair
   ========================================================================== */
/* line 340, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode,
.new-prospect-capsule.lightmode {
  color: #140D23;
  /* Styles pour les sections en mode clair */
  /* Titres des sections en mode clair */
  /* Contenu des sections en mode clair */
  /* Message pour contenu vide en mode clair */
}

/* line 345, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-grid-section,
.new-prospect-capsule.lightmode .crm-grid-section {
  border-color: rgba(20, 13, 35, 0.12);
  background-color: rgba(255, 255, 255, 0.65);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* line 352, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-section-label,
.new-prospect-capsule.lightmode .crm-section-label {
  background-color: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.08);
  color: #C38761;
}

/* line 359, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-section-content,
.new-prospect-capsule.lightmode .crm-section-content {
  color: #140D23;
}

/* line 364, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-no-content,
.new-prospect-capsule.lightmode .crm-no-content {
  color: rgba(20, 13, 35, 0.6);
}

/* ==========================================================================
   HERO CARD (Company Overview)
   Styles pour la carte héros en mode mono
   ========================================================================== */
/* line 375, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-grid-hero .crm-hero-header {
  padding: 14px 16px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 380, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-grid-hero .crm-hero-name-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 6px;
}

/* line 388, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-grid-hero .crm-hero-name {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex: 1;
  min-width: 0;
}

/* line 396, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-grid-hero .crm-hero-badges {
  flex-shrink: 0;
}

/* line 400, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-grid-hero .crm-hero-rattachement {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* line 407, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-grid-hero .crm-hero-rattachement .crm-hero-rattachement-label {
  font-weight: 600;
}

/* line 412, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-grid-hero .crm-hero-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px 16px;
}

/* line 419, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-grid-hero .crm-hero-detail-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 426, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-grid-hero .crm-hero-detail-item .crm-hero-detail-label {
  font-size: 0.7rem;
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

/* line 433, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-grid-hero .crm-hero-detail-item .crm-hero-detail-label i {
  color: #C38761;
  width: 14px;
  text-align: center;
  flex-shrink: 0;
}

/* line 440, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-grid-hero .crm-hero-detail-item .crm-hero-detail-label strong {
  font-weight: 600;
  white-space: nowrap;
}

/* line 445, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-grid-hero .crm-hero-detail-item .crm-hero-detail-label .no-data {
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

/* Hero card en mode clair */
/* line 455, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-grid-hero .crm-hero-header {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 459, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-grid-hero .crm-hero-rattachement {
  color: rgba(20, 13, 35, 0.6);
}

/* line 465, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-grid-hero .crm-hero-detail-item .crm-hero-detail-label i {
  color: #af6c42;
}

/* line 469, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-grid-hero .crm-hero-detail-item .crm-hero-detail-label .no-data {
  color: rgba(20, 13, 35, 0.4);
}

/* ==========================================================================
   ORGANISATION DETAILS (sections coordonnées, adresses, juridique)
   Styles pour les listes de détails des sections organisation
   ========================================================================== */
/* line 481, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-org-details-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 488, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-org-detail-item .crm-org-detail-label {
  font-size: 0.7rem;
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

/* line 495, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-org-detail-item .crm-org-detail-label i {
  color: #C38761;
  width: 14px;
  text-align: center;
  flex-shrink: 0;
}

/* line 502, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-org-detail-item .crm-org-detail-label strong {
  font-weight: 600;
  white-space: nowrap;
}

/* line 507, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-org-detail-item .crm-org-detail-label .no-data {
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

/* line 512, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-org-detail-item .crm-org-detail-label .phone-link,
.crm-org-detail-item .crm-org-detail-label .email-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

/* line 518, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-org-detail-item .crm-org-detail-label .phone-link:hover,
.crm-org-detail-item .crm-org-detail-label .email-link:hover {
  color: #C38761;
}

/* Organisation details en mode clair */
/* line 528, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-org-detail-item .crm-org-detail-label i {
  color: #af6c42;
}

/* line 532, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-org-detail-item .crm-org-detail-label .no-data {
  color: rgba(20, 13, 35, 0.4);
}

/* line 538, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-org-detail-item .crm-org-detail-label .phone-link:hover,
.show-prospect-capsule.lightmode .crm-org-detail-item .crm-org-detail-label .email-link:hover {
  color: #af6c42;
}

/* ==========================================================================
   CONTACTS CARDS (mode mono)
   Styles pour les cartes contacts avec initiales
   ========================================================================== */
/* line 550, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-contacts-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* line 556, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-contact-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  border-radius: 6px;
  text-decoration: none;
  color: inherit !important;
  transition: background-color 0.2s;
}

/* line 566, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-contact-card:hover {
  background-color: rgba(255, 255, 255, 0.08);
  text-decoration: none;
  color: inherit !important;
}

/* line 573, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-contact-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C38761, #E5A82E);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* line 583, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-contact-avatar span {
  font-size: 0.6rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.5px;
}

/* line 591, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-contact-info {
  min-width: 0;
  flex: 1;
}

/* line 596, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-contact-name {
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 604, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-contact-detail {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Contact cards en mode clair */
/* line 614, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-contact-card:hover {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 618, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-contact-detail {
  color: rgba(20, 13, 35, 0.5);
}

/* line 622, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-contact-avatar span {
  color: white;
}

/* ==========================================================================
   PIPELINE (progression des stages)
   Composant visuel de progression du lifecycle
   ========================================================================== */
/* line 632, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.pipeline-stages {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 4px 0;
}

/* line 639, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.pipeline-stage {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 8px;
  position: relative;
  /* Ligne connectrice entre les dots */
}

/* line 646, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.pipeline-stage .pipeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

/* line 658, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.pipeline-stage .pipeline-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

/* line 665, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.pipeline-stage:not(:first-child)::before {
  content: '';
  position: absolute;
  left: 13px;
  top: 0;
  width: 2px;
  height: 10px;
  background: rgba(255, 255, 255, 0.12);
}

/* line 676, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.pipeline-stage.completed .pipeline-dot {
  background: #C38761;
  border-color: #C38761;
}

/* line 681, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.pipeline-stage.completed .pipeline-label {
  color: rgba(255, 255, 255, 0.7);
}

/* line 685, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.pipeline-stage.completed:not(:first-child)::before {
  background: #C38761;
}

/* line 691, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.pipeline-stage.active .pipeline-dot {
  background: #E5A82E;
  border-color: #E5A82E;
  box-shadow: 0 0 10px rgba(229, 168, 46, 0.5);
}

/* line 697, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.pipeline-stage.active .pipeline-label {
  color: white;
  font-weight: 600;
}

/* line 702, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.pipeline-stage.active:not(:first-child)::before {
  background: #C38761;
}

/* Pipeline en mode clair */
/* line 710, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .pipeline-stage .pipeline-dot {
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 714, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .pipeline-stage .pipeline-label {
  color: rgba(20, 13, 35, 0.4);
}

/* line 718, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .pipeline-stage:not(:first-child)::before {
  background: rgba(20, 13, 35, 0.1);
}

/* line 723, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .pipeline-stage.completed .pipeline-dot {
  background: #C38761;
  border-color: #C38761;
}

/* line 728, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .pipeline-stage.completed .pipeline-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 732, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .pipeline-stage.completed:not(:first-child)::before {
  background: #C38761;
}

/* line 738, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .pipeline-stage.active .pipeline-dot {
  background: #E5A82E;
  border-color: #E5A82E;
}

/* line 743, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .pipeline-stage.active .pipeline-label {
  color: #140D23;
  font-weight: 600;
}

/* line 748, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .pipeline-stage.active:not(:first-child)::before {
  background: #C38761;
}

/* ==========================================================================
   COORDONNÉES DIVIDER
   Séparateur visuel entre coordonnées et adresses
   ========================================================================== */
/* line 759, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-coordonnees-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 6px 0;
}

/* line 764, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-coordonnees-divider {
  background: rgba(20, 13, 35, 0.1);
}

/* ==========================================================================
   BADGES DE STATUT
   Styles pour les indicateurs visuels de statut des prospects
   ========================================================================== */
/* Style de base pour tous les badges de statut */
/* line 775, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.status-badge {
  padding: 4px 8px;
  border-radius: 8px !important;
  font-size: 0.65rem;
  font-weight: 500;
  display: inline-block;
  min-width: 70px;
  text-align: center;
  transition: all 0.2s ease-in-out;
  /* Styles spécifiques selon le statut */
  /* Gestion des variantes pour "Devis Envoyé" */
}

/* line 786, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.status-badge.qualifié {
  background-color: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
}

/* line 791, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.status-badge.non-qualifié {
  background-color: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
}

/* line 796, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.status-badge.archivé {
  background-color: rgba(149, 165, 166, 0.2);
  color: #95a5a6;
}

/* line 801, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.status-badge.devis\ envoyé, .status-badge.devis-envoyé {
  background-color: rgba(52, 152, 219, 0.2);
  color: #3498db;
}

/* line 807, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.status-badge.non-defini {
  background-color: rgba(241, 196, 15, 0.2);
  color: #f1c40f;
}

/* line 813, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.status-badge[class*="devis"] {
  background-color: rgba(52, 152, 219, 0.2);
  color: #3498db;
}

/* Badges de statut en mode clair */
/* line 820, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .status-badge {
  padding: 4px 10px !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  /* Animation au survol */
  /* Styles spécifiques selon le statut en mode clair */
  /* Gestion des variantes pour "Devis Envoyé" en mode clair */
}

/* line 825, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .status-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* line 831, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .status-badge.qualifié {
  background-color: rgba(46, 204, 113, 0.4);
  color: #1e8449;
  font-weight: 600;
  border: 1px solid rgba(46, 204, 113, 0.2);
}

/* line 838, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .status-badge.non-qualifié {
  background-color: rgba(231, 76, 60, 0.4);
  color: #a93226;
  font-weight: 600;
  border: 1px solid rgba(231, 76, 60, 0.2);
}

/* line 845, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .status-badge.archivé {
  background-color: rgba(149, 165, 166, 0.4);
  color: #616a6b;
  font-weight: 600;
  border: 1px solid rgba(149, 165, 166, 0.2);
}

/* line 852, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .status-badge.devis\ envoyé, .show-prospect-capsule.lightmode .status-badge.devis-envoyé {
  background-color: rgba(52, 152, 219, 0.4);
  color: #1a5276;
  font-weight: 600;
  border: 1px solid rgba(52, 152, 219, 0.2);
}

/* line 860, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .status-badge.non-defini {
  background-color: rgba(241, 196, 15, 0.4);
  color: #b7950b;
  font-weight: 600;
  border: 1px solid rgba(241, 196, 15, 0.2);
}

/* line 868, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .status-badge[class*="devis"] {
  background-color: rgba(52, 152, 219, 0.4);
  color: #1a5276;
  font-weight: 600;
  border: 1px solid rgba(52, 152, 219, 0.2);
}

/* ==========================================================================
   LISTES D'INFORMATIONS
   Styles pour les listes de sociétés, contacts et rendez-vous
   ========================================================================== */
/* Style commun pour toutes les listes */
/* line 882, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.related-companies-list,
.contacts-list,
.appointments-list {
  padding-left: 20px;
  margin: 0;
}

/* line 888, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.related-companies-list li,
.contacts-list li,
.appointments-list li {
  margin-bottom: 8px;
  font-size: 0.7rem;
}

/* ==========================================================================
   BADGES DE STATUT DES RENDEZ-VOUS
   Styles pour les indicateurs visuels de statut des rendez-vous
   ========================================================================== */
/* Style de base pour les badges de statut des rendez-vous */
/* line 900, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.appointment-status {
  font-size: 0.65rem;
  padding: 3px 8px;
  border-radius: 4px;
  margin-left: 10px;
  /* Styles spécifiques selon le statut */
}

/* line 907, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.appointment-status.a_venir {
  background-color: rgba(23, 162, 184, 0.2);
  color: #17a2b8;
}

/* line 912, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.appointment-status.termine {
  background-color: rgba(40, 167, 69, 0.2);
  color: #28a745;
}

/* line 917, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.appointment-status.abandonne {
  background-color: rgba(220, 53, 69, 0.2);
  color: #dc3545;
}

/* Badges de statut des rendez-vous en mode clair */
/* line 924, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .appointment-status {
  font-weight: 600;
  border: 1px solid transparent;
  /* Styles spécifiques selon le statut en mode clair */
}

/* line 929, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .appointment-status.a_venir {
  background-color: rgba(23, 162, 184, 0.3);
  color: #0f6674;
  border-color: rgba(23, 162, 184, 0.2);
}

/* line 935, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .appointment-status.termine {
  background-color: rgba(40, 167, 69, 0.3);
  color: #19692c;
  border-color: rgba(40, 167, 69, 0.2);
}

/* line 941, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .appointment-status.abandonne {
  background-color: rgba(220, 53, 69, 0.3);
  color: #a71d2a;
  border-color: rgba(220, 53, 69, 0.2);
}

/* ==========================================================================
   BOUTONS D'ACTION
   Styles pour les boutons d'action en bas de la fiche prospect
   ========================================================================== */
/* line 953, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.prospect-actions {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 10px;
  transition: padding 0.3s ease;
  /* Lorsque l'historique est masqué et que le menu est ouvert */
  /* Styles pour le bouton "Créer un devis" */
}

/* line 961, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.prospect-actions.wide-margins {
  padding-left: 40px;
  padding-right: 40px;
}

/* line 967, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.prospect-actions .btn-primary, .prospect-actions .crm-action-button.crm-action-button-primary {
  background-color: #E5A82E;
  border: 1px solid #E5A82E;
  color: #140D23;
}

/* line 972, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.prospect-actions .btn-primary:hover, .prospect-actions .crm-action-button.crm-action-button-primary:hover {
  background-color: #c78d19;
  border-color: #c78d19;
}

/* line 977, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .prospect-actions .btn-primary, .show-prospect-capsule.lightmode .prospect-actions .crm-action-button.crm-action-button-primary {
  background-color: #E5A82E;
  border-color: #E5A82E;
}

/* line 981, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .prospect-actions .btn-primary:hover, .show-prospect-capsule.lightmode .prospect-actions .crm-action-button.crm-action-button-primary:hover {
  background-color: #c78d19;
  border-color: #c78d19;
}

/* line 989, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.form-button, .users-management-container .users-header .add-user-btn, .crm-action-button {
  padding: 8px 15px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  font-size: 0.7rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 1000, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.form-button:hover, .users-management-container .users-header .add-user-btn:hover, .crm-action-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 1004, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.form-button.btn-secondary, .users-management-container .users-header .btn-secondary.add-user-btn, .btn-secondary.crm-action-button, .users-management-container .users-header .add-user-btn.crm-action-button.crm-action-button-secondary, .crm-action-button.crm-action-button-secondary {
  background-color: rgba(155, 155, 155, 0.2);
}

/* line 1008, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.form-button.btn-danger, .users-management-container .users-header .btn-danger.add-user-btn, .btn-danger.crm-action-button {
  background-color: rgba(231, 76, 60, 0.3);
  border-color: rgba(231, 76, 60, 0.5);
}

/* line 1012, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.form-button.btn-danger:hover, .users-management-container .users-header .btn-danger.add-user-btn:hover, .btn-danger.crm-action-button:hover {
  background-color: rgba(231, 76, 60, 0.5);
}

/* line 1017, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode + .prospect-actions .form-button, .show-prospect-capsule.lightmode + .prospect-actions .users-management-container .users-header .add-user-btn, .users-management-container .users-header .show-prospect-capsule.lightmode + .prospect-actions .add-user-btn, .show-prospect-capsule.lightmode + .prospect-actions .crm-action-button {
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 1021, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode + .prospect-actions .form-button:hover, .show-prospect-capsule.lightmode + .prospect-actions .users-management-container .users-header .add-user-btn:hover, .users-management-container .users-header .show-prospect-capsule.lightmode + .prospect-actions .add-user-btn:hover, .show-prospect-capsule.lightmode + .prospect-actions .crm-action-button:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 1025, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode + .prospect-actions .form-button.btn-secondary, .show-prospect-capsule.lightmode + .prospect-actions .users-management-container .users-header .btn-secondary.add-user-btn, .users-management-container .users-header .show-prospect-capsule.lightmode + .prospect-actions .btn-secondary.add-user-btn, .show-prospect-capsule.lightmode + .prospect-actions .btn-secondary.crm-action-button, .show-prospect-capsule.lightmode + .prospect-actions .crm-action-button.crm-action-button-secondary {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 1029, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode + .prospect-actions .form-button.btn-danger, .show-prospect-capsule.lightmode + .prospect-actions .users-management-container .users-header .btn-danger.add-user-btn, .users-management-container .users-header .show-prospect-capsule.lightmode + .prospect-actions .btn-danger.add-user-btn, .show-prospect-capsule.lightmode + .prospect-actions .btn-danger.crm-action-button {
  color: #a82315;
  background-color: rgba(231, 76, 60, 0.1);
  border-color: rgba(231, 76, 60, 0.3);
}

/* line 1034, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode + .prospect-actions .form-button.btn-danger:hover, .show-prospect-capsule.lightmode + .prospect-actions .users-management-container .users-header .btn-danger.add-user-btn:hover, .users-management-container .users-header .show-prospect-capsule.lightmode + .prospect-actions .btn-danger.add-user-btn:hover, .show-prospect-capsule.lightmode + .prospect-actions .btn-danger.crm-action-button:hover {
  background-color: rgba(231, 76, 60, 0.2);
}

/* ==========================================================================
   BARRE HISTORIQUE
   Styles pour la barre latérale d'historique
   ========================================================================== */
/* line 1046, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.prospect-history-sidebar {
  flex: 0 0 300px;
  min-width: 240px;
  max-width: 300px;
  height: 100%;
  align-self: stretch;
  /* S'étire pour matcher la hauteur de la capsule */
  display: flex;
  /* Permet au contenu interne de s'étirer verticalement */
  transition: all 1s ease;
  opacity: 1;
  overflow: hidden;
  /* Cache tout débordement */
  /* Comportement quand la barre est masquée */
}

/* line 1058, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.prospect-history-sidebar.hidden {
  opacity: 0;
  visibility: hidden;
  max-width: 0;
  min-width: 0;
  flex: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

/* line 1070, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.history-section {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 70vh !important;
  flex: 1;
  padding: 20px;
}

/* line 1081, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode + .history-section {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 1086, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.history-section .crm-section-label {
  background-color: transparent;
  border-bottom: none;
  padding: 0 0 10px 0;
  font-size: 0.9rem;
  text-transform: capitalize;
  font-weight: normal;
  height: 10%;
}

/* line 1094, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode + .prospect-history-sidebar .history-section .crm-section-label {
  color: #140D23;
}

/* line 1099, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.history-section .crm-section-content {
  color: white;
}

/* line 1102, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode + .prospect-history-sidebar .history-section .crm-section-content {
  color: #140D23;
}

/* line 1106, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.history-section .crm-section-content p {
  margin-bottom: 15px;
  font-size: 0.7rem;
}

/* line 1110, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.history-section .crm-section-content p strong {
  font-weight: 600;
  opacity: 0.8;
}

/* ==========================================================================
   RESPONSIVE
   Adaptations pour différentes tailles d'écran
   ========================================================================== */
/* Tablettes et écrans moyens */
@media (max-width: 992px) {
  /* line 1125, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
  .prospect-main-content {
    flex-direction: column;
    max-height: none;
  }
  /* line 1129, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
  .prospect-main-content.wide-margins {
    padding-left: 30px;
    padding-right: 30px;
  }
  /* line 1136, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
  .prospect-actions.wide-margins {
    padding-left: 30px;
    padding-right: 30px;
  }
  /* Mode groupe : tablette */
  /* line 1143, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
  .prospect-grid-layout {
    grid-template-columns: 1fr 1fr;
  }
  /* line 1147, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
  .crm-grid-organisation {
    margin-left: 0;
    grid-column: 2;
  }
  /* line 1152, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
  .crm-grid-status {
    grid-column: 1 / 3;
    grid-row: 2;
  }
  /* line 1157, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
  .crm-grid-societes {
    grid-row: 3;
  }
  /* line 1161, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
  .crm-grid-contacts {
    grid-row: 3;
  }
  /* line 1165, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
  .crm-grid-commentaires {
    grid-row: 4;
  }
  /* line 1169, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
  .crm-grid-rendezvous {
    grid-row: 4;
  }
  /* Mode mono : tablette - 2 colonnes */
  /* line 1174, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
  .prospect-grid-layout--mono {
    grid-template-columns: 1fr 1fr;
  }
  /* line 1177, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
  .prospect-grid-layout--mono .crm-grid-hero {
    grid-column: 1 / span 2;
    grid-row: 1;
  }
  /* line 1182, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
  .prospect-grid-layout--mono .crm-grid-contacts {
    grid-column: 1 / span 2;
    grid-row: 2;
  }
  /* line 1187, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
  .prospect-grid-layout--mono .crm-grid-coordonnees {
    grid-column: 1;
    grid-row: 3;
  }
  /* line 1192, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
  .prospect-grid-layout--mono .crm-grid-pipeline,
.prospect-grid-layout--mono .crm-grid-legal-detail {
    grid-column: 2;
    grid-row: 3;
  }
  /* line 1198, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
  .prospect-grid-layout--mono .crm-grid-rendezvous {
    grid-column: 1 / span 2;
    grid-row: 4;
  }
  /* line 1203, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
  .prospect-grid-layout--mono .crm-grid-historique {
    grid-column: 1 / span 2;
    grid-row: 5;
  }
  /* line 1208, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
  .prospect-grid-layout--mono .crm-grid-commentaires {
    grid-column: 1 / span 2;
    grid-row: 6;
  }
  /* line 1214, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
  .prospect-history-sidebar {
    width: 100%;
    flex: 0 0 auto;
    min-width: 100%;
    max-width: 100%;
    margin-top: 20px;
    height: 300px;
    max-height: 300px;
  }
  /* line 1223, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
  .prospect-history-sidebar.hidden {
    max-height: 0;
    height: 0;
    margin-top: 0;
    padding: 0;
  }
  /* Hero card responsive */
  /* line 1232, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
  .crm-grid-hero .crm-hero-details {
    grid-template-columns: 1fr;
  }
}

/* Mobiles et petits écrans */
@media (max-width: 576px) {
  /* line 1240, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
  .prospect-main-content.wide-margins {
    padding-left: 20px;
    padding-right: 20px;
  }
  /* line 1246, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
  .prospect-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  /* line 1247, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
  .prospect-actions.wide-margins {
    padding-left: 20px;
    padding-right: 20px;
  }
  /* Mode groupe : mobile */
  /* line 1258, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
  .prospect-grid-layout {
    grid-template-columns: 1fr;
    padding: 10px;
  }
  /* line 1263, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
  .crm-grid-organisation,
.crm-grid-status,
.crm-grid-contacts,
.crm-grid-rendezvous {
    grid-column: 1;
  }
  /* line 1270, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
  .crm-grid-organisation {
    grid-row: 2;
  }
  /* line 1271, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
  .crm-grid-status {
    grid-row: 3;
  }
  /* line 1272, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
  .crm-grid-societes {
    grid-row: 4;
  }
  /* line 1273, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
  .crm-grid-contacts {
    grid-row: 5;
  }
  /* line 1274, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
  .crm-grid-commentaires {
    grid-row: 6;
  }
  /* line 1275, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
  .crm-grid-rendezvous {
    grid-row: 7;
  }
  /* Mode mono : mobile - 1 colonne */
  /* line 1278, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
  .prospect-grid-layout--mono {
    grid-template-columns: 1fr;
  }
  /* line 1281, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
  .prospect-grid-layout--mono .crm-grid-hero,
.prospect-grid-layout--mono .crm-grid-contacts,
.prospect-grid-layout--mono .crm-grid-coordonnees,
.prospect-grid-layout--mono .crm-grid-pipeline,
.prospect-grid-layout--mono .crm-grid-legal-detail,
.prospect-grid-layout--mono .crm-grid-rendezvous,
.prospect-grid-layout--mono .crm-grid-historique,
.prospect-grid-layout--mono .crm-grid-commentaires {
    grid-column: 1;
  }
  /* Hero name responsive */
  /* line 1295, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
  .crm-grid-hero .crm-hero-name-row {
    flex-direction: column;
    gap: 6px;
  }
  /* line 1300, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
  .crm-grid-hero .crm-hero-details {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   INSTANCES INDEX
   Styles pour l'affichage des données sous forme de tableau (sociétés, contacts, commentaires)
   ========================================================================== */
/* line 1311, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-instance-index {
  width: 100%;
  overflow: auto;
  margin-bottom: 0.5rem;
  /* Personnalisation de la barre de défilement */
}

/* line 1317, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-instance-index::-webkit-scrollbar {
  width: 8px;
  /* Largeur de la barre de défilement */
  height: 8px;
  /* Hauteur pour le défilement horizontal */
}

/* line 1322, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-instance-index::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  /* Couleur de l'arrière-plan de la barre */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 1331, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-instance-index::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 1336, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-instance-index::-webkit-scrollbar-thumb {
  background: #C38761;
  /* Couleur de la barre de défilement */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 1341, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-instance-index::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
  /* Couleur de la barre au survol */
}

/* line 1344, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-instance-index::-webkit-scrollbar-thumb:hover {
  background: #140D23;
}

/* line 1350, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-instance-header {
  display: flex;
  background-color: rgba(255, 255, 255, 0.1);
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 1357, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-instance-row {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 1361, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-instance-row:last-child {
  border-bottom: none;
}

/* line 1370, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-instance-column {
  flex: 1;
  padding: 6px 8px;
  font-size: 0.7rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  min-width: 0;
  /* Permet le shrinking de la flex box */
}

/* line 1380, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-instance-column-large {
  flex: 3;
  padding: 6px 8px;
  font-size: 0.7rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  min-width: 0;
  /* Permet le shrinking de la flex box */
}

/* Styles en mode clair */
/* line 1392, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-instance-index {
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 1396, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-instance-header {
  background-color: rgba(20, 13, 35, 0.05);
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 1402, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-instance-row {
  border-color: rgba(20, 13, 35, 0.1);
}

/* Responsive design pour les index d'instances */
@media (max-width: 768px) {
  /* line 1413, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
  .crm-instance-header,
.crm-instance-row {
    flex-direction: column;
  }
  /* line 1418, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
  .crm-instance-column,
.crm-instance-column-large {
    width: 100%;
    flex: none;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  }
  /* line 1424, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
  .crm-instance-column:last-child,
.crm-instance-column-large:last-child {
    border-bottom: none;
  }
  /* line 1429, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
  .crm-instance-header .crm-instance-column {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
  }
  /* Adaptations en mode clair */
  /* line 1436, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
  .show-prospect-capsule.lightmode .crm-instance-column,
.show-prospect-capsule.lightmode .crm-instance-column-large {
    border-color: rgba(20, 13, 35, 0.1);
  }
  /* line 1441, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
  .show-prospect-capsule.lightmode .crm-instance-header .crm-instance-column {
    border-color: rgba(20, 13, 35, 0.2);
  }
}

/* Liens vers les contacts et organisations */
/* line 1448, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.contact-link,
.organization-link {
  text-decoration: none;
  color: inherit !important;
  display: flex;
  width: 100%;
}

/* line 1455, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.contact-link:hover,
.organization-link:hover {
  text-decoration: none;
  color: inherit !important;
}

/* line 1459, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.contact-link:hover .crm-instance-column,
.organization-link:hover .crm-instance-column {
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 1465, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .contact-link:hover .crm-instance-column, .new-prospect-capsule.lightmode .contact-link:hover .crm-instance-column, .show-prospect-capsule.lightmode .organization-link:hover .crm-instance-column, .new-prospect-capsule.lightmode .organization-link:hover .crm-instance-column {
  background-color: rgba(20, 13, 35, 0.1);
}

/* ==========================================================================
   FORMULAIRE D'ÉDITION PROSPECT / CUSTOMER
   Layout propre, regroupé par sections logiques
   ========================================================================== */
/* line 1477, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-edit-container {
  width: 100%;
  max-width: 1200px;
  padding: 0 15px 0 0;
}

/* line 1483, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-edit-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 1491, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-edit-header .crm-edit-back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.2s;
  flex-shrink: 0;
}

/* line 1504, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-edit-header .crm-edit-back:hover {
  background: rgba(195, 135, 97, 0.15);
  color: #C38761;
}

/* line 1510, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-edit-header h2, .crm-edit-header .h2 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

/* line 1518, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.lightmode .crm-edit-header {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 1521, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.lightmode .crm-edit-header .crm-edit-back {
  background: rgba(20, 13, 35, 0.06);
  color: rgba(20, 13, 35, 0.4);
}

/* line 1524, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.lightmode .crm-edit-header .crm-edit-back:hover {
  background: rgba(195, 135, 97, 0.15);
  color: #C38761;
}

/* line 1529, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.lightmode .crm-edit-header h2, .lightmode .crm-edit-header .h2 {
  color: #140D23;
}

/* line 1533, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-edit-section {
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

/* line 1540, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.lightmode .crm-edit-section {
  background: rgba(20, 13, 35, 0.04);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 1546, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-edit-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #C38761;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 1559, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-edit-section-title i {
  font-size: 0.7rem;
  opacity: 0.8;
}

/* line 1564, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.lightmode .crm-edit-section-title {
  color: #C38761;
  background: rgba(20, 13, 35, 0.03);
  border-bottom-color: rgba(20, 13, 35, 0.08);
}

/* line 1571, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-edit-section-body {
  padding: 16px 20px;
}

/* line 1575, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-edit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* line 1580, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-edit-grid.crm-edit-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
  /* line 1575, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
  .crm-edit-grid {
    grid-template-columns: 1fr;
  }
}

/* line 1589, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-edit-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* line 1595, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-edit-label {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.8);
  padding-left: 2px;
}

/* line 1603, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.lightmode .crm-edit-label {
  color: rgba(20, 13, 35, 0.5);
}

/* line 1608, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-edit-input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
  color: #FFFFFF;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  resize: vertical;
}

/* line 1621, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-edit-input:focus {
  outline: none;
  border-color: rgba(195, 135, 97, 0.5);
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

/* line 1628, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-edit-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.72rem;
}

/* line 1633, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.lightmode .crm-edit-input {
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.12);
  background: rgba(255, 255, 255, 0.6);
}

/* line 1638, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.lightmode .crm-edit-input:focus {
  border-color: rgba(195, 135, 97, 0.5);
  background: #FFFFFF;
}

/* line 1643, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.lightmode .crm-edit-input::placeholder {
  color: rgba(20, 13, 35, 0.3);
}

/* line 1649, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
select.crm-edit-input {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='4' viewBox='0 0 8 4'%3E%3Cpath fill='rgba(255,255,255,0.4)' d='M8 0H0l4 4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 30px;
}

/* line 1657, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.lightmode select.crm-edit-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='4' viewBox='0 0 8 4'%3E%3Cpath fill='rgba(20,13,35,0.4)' d='M8 0H0l4 4z'/%3E%3C/svg%3E");
}

/* line 1662, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
textarea.crm-edit-input {
  min-height: 56px;
  line-height: 1.5;
}

/* line 1667, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-edit-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* line 1675, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.lightmode .crm-edit-actions {
  border-top-color: rgba(20, 13, 35, 0.08);
}

/* line 1680, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-edit-btn {
  padding: 9px 22px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

/* line 1690, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-edit-btn--primary {
  background: #E5A82E;
  color: #140D23;
}

/* line 1694, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-edit-btn--primary:hover {
  background: #d0931a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(229, 168, 46, 0.3);
}

/* line 1701, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-edit-btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 1706, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-edit-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
}

/* line 1711, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.lightmode .crm-edit-btn--secondary {
  background: rgba(20, 13, 35, 0.05);
  color: rgba(20, 13, 35, 0.6);
  border-color: rgba(20, 13, 35, 0.12);
}

/* line 1716, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.lightmode .crm-edit-btn--secondary:hover {
  background: rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 1724, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-edit-error-messages {
  margin-bottom: 20px;
  padding: 12px 16px;
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.2);
  border-radius: 8px;
  color: #e74c3c;
  font-size: 0.75rem;
}

/* line 1733, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-edit-error-messages ul {
  margin: 0;
  padding-left: 16px;
}

/* line 1736, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_lead_show.scss */
.crm-edit-error-messages ul li {
  margin-bottom: 2px;
}

/* line 8, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_prospect_show_v2.scss */
.inline-edit-input {
  font-size: inherit;
  font-weight: inherit;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 4px 12px;
  color: white;
  min-width: 200px;
}

/* line 18, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_prospect_show_v2.scss */
.inline-edit-input:focus {
  outline: none;
  border-color: #C38761;
}

/* line 24, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_prospect_show_v2.scss */
.inline-edit-select {
  font-size: 0.875rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  padding: 4px 28px 4px 10px;
  color: white;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
}

/* line 37, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_prospect_show_v2.scss */
.inline-edit-select option {
  background: #140D23;
  color: white;
}

/* line 43, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_prospect_show_v2.scss */
.inline-edit-btn {
  background: transparent;
  border: none;
  color: white;
  opacity: 0.4;
  font-size: 0.6em;
  padding: 4px 8px;
  cursor: pointer;
}

/* line 52, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_prospect_show_v2.scss */
.inline-edit-btn:hover {
  opacity: 1;
}

/* line 59, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_prospect_show_v2.scss */
.crm-page-container.lightmode .inline-edit-input {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 64, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_prospect_show_v2.scss */
.crm-page-container.lightmode .inline-edit-input:focus {
  border-color: #C38761;
}

/* line 69, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_prospect_show_v2.scss */
.crm-page-container.lightmode .inline-edit-select {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23140D23' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}

/* line 75, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_prospect_show_v2.scss */
.crm-page-container.lightmode .inline-edit-select option {
  background: white;
  color: #140D23;
}

/* line 81, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_prospect_show_v2.scss */
.crm-page-container.lightmode .inline-edit-btn {
  color: #140D23;
}

/* line 87, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_prospect_show_v2.scss */
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* line 95, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_prospect_show_v2.scss */
.status-badge.nouveau {
  background: rgba(52, 152, 219, 0.2);
  color: #3498db;
  border: 1px solid rgba(52, 152, 219, 0.3);
}

/* line 96, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_prospect_show_v2.scss */
.status-badge.qualifié {
  background: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.3);
}

/* line 97, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_prospect_show_v2.scss */
.status-badge.proposition {
  background: rgba(241, 196, 15, 0.2);
  color: #f1c40f;
  border: 1px solid rgba(241, 196, 15, 0.3);
}

/* line 98, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_prospect_show_v2.scss */
.status-badge.négociation {
  background: rgba(230, 126, 34, 0.2);
  color: #e67e22;
  border: 1px solid rgba(230, 126, 34, 0.3);
}

/* line 99, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_prospect_show_v2.scss */
.status-badge.gagné {
  background: rgba(39, 174, 96, 0.2);
  color: #27ae60;
  border: 1px solid rgba(39, 174, 96, 0.3);
}

/* line 100, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_prospect_show_v2.scss */
.status-badge.perdu {
  background: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.3);
}

/* line 101, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_prospect_show_v2.scss */
.status-badge.archivé {
  background: rgba(149, 165, 166, 0.2);
  color: #95a5a6;
  border: 1px solid rgba(149, 165, 166, 0.3);
}

/* line 102, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_prospect_show_v2.scss */
.status-badge.non-defini {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   MODIFICATION PROSPECT
   Styles pour la page de modification d'un prospect
   ========================================================================== */
/* line 5, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_edit_lead.scss */
.prospect-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  max-width: 1280px;
  font-size: 0.8rem;
}

/* line 12, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_edit_lead.scss */
.prospect-main-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 15px;
  overflow: hidden;
  transition: padding 0.3s ease;
}

/* line 21, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_edit_lead.scss */
.edit-prospect-capsule {
  flex: 1;
  display: flex;
  flex-direction: column;
  color: white;
  --bs-body-color: white;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 15px;
  height: 100%;
}

/* line 32, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_edit_lead.scss */
.edit-prospect-capsule.lightmode {
  color: #140D23;
  --bs-body-color: $deepblue;
}

/* line 37, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_edit_lead.scss */
.edit-prospect-capsule .prospect-grid-layout {
  margin-bottom: 20px;
}

/* line 42, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_edit_lead.scss */
.edit-prospect-capsule .grid-section .section-content {
  padding: 10px;
  /* Style pour les select avec class form-control */
}

/* line 45, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_edit_lead.scss */
.edit-prospect-capsule .grid-section .section-content .form-control {
  width: 100%;
  padding: 8px 12px;
  background-color: rgba(255, 255, 255, 0.01);
  border-radius: 8px;
  color: white;
  -webkit-text-fill-color: white !important;
  caret-color: white;
  font-size: 0.8rem;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  box-sizing: border-box;
  max-width: 100%;
  /* Style spécifique pour les éléments select */
}

/* line 59, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_edit_lead.scss */
.edit-prospect-capsule .grid-section .section-content .form-control[type="select"], .edit-prospect-capsule .grid-section .section-content .form-control[multiple] {
  width: 100%;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='4' viewBox='0 0 8 4'%3E%3Cpath fill='rgba(255,255,255,0.6)' d='M8 0H0l4 4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 8px 4px;
  padding-right: 30px;
}

/* line 70, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_edit_lead.scss */
.edit-prospect-capsule .grid-section .section-content .form-control:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.1);
  color: white !important;
  -webkit-text-fill-color: white !important;
  caret-color: white !important;
}

/* line 79, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_edit_lead.scss */
.edit-prospect-capsule .grid-section .section-content .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 85, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_edit_lead.scss */
.edit-prospect-capsule .grid-section .section-content select.form-control {
  width: 100%;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='4' viewBox='0 0 8 4'%3E%3Cpath fill='rgba(255,255,255,0.6)' d='M8 0H0l4 4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 8px 4px;
  padding-right: 30px;
  box-sizing: border-box;
  max-width: 100%;
  text-transform: capitalize;
}

/* line 97, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_edit_lead.scss */
.edit-prospect-capsule .grid-section .section-content select.form-control option {
  text-transform: capitalize;
}

/* Message d'erreur */
/* line 106, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_edit_lead.scss */
.error-messages {
  padding: 10px 15px;
  margin-bottom: 20px;
  background-color: rgba(231, 76, 60, 0.2);
  border: 1px solid rgba(231, 76, 60, 0.3);
  border-radius: 8px;
}

/* line 113, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_edit_lead.scss */
.error-messages ul {
  margin: 0;
  padding-left: 20px;
}

/* line 117, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_edit_lead.scss */
.error-messages ul li {
  color: #e74c3c;
  font-size: 0.75rem;
}

/* line 123, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_edit_lead.scss */
.edit-prospect-capsule.lightmode .error-messages {
  background-color: rgba(231, 76, 60, 0.1);
  border-color: rgba(231, 76, 60, 0.2);
}

/* line 127, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_edit_lead.scss */
.edit-prospect-capsule.lightmode .error-messages ul li {
  color: #a82315;
}

/* Mode clair pour les champs de formulaire */
/* line 137, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_edit_lead.scss */
.edit-prospect-capsule.lightmode .grid-section .section-content .form-control {
  background-color: rgba(255, 255, 255, 0.6);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
  -webkit-text-fill-color: #140D23;
  caret-color: #140D23;
}

/* line 144, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_edit_lead.scss */
.edit-prospect-capsule.lightmode .grid-section .section-content .form-control:focus {
  border-color: rgba(20, 13, 35, 0.4);
  background-color: rgba(255, 255, 255, 0.8);
  color: #140D23;
  -webkit-text-fill-color: #140D23;
  caret-color: #140D23;
}

/* line 152, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_edit_lead.scss */
.edit-prospect-capsule.lightmode .grid-section .section-content .form-control::placeholder {
  color: rgba(20, 13, 35, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  /* line 163, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_edit_lead.scss */
  .edit-prospect-capsule .prospect-grid-layout {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  /* line 169, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_edit_lead.scss */
  .edit-prospect-capsule .form-actions {
    flex-direction: column;
    align-items: stretch;
  }
  /* line 173, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_edit_lead.scss */
  .edit-prospect-capsule .form-actions .form-button, .edit-prospect-capsule .form-actions .users-management-container .users-header .add-user-btn, .users-management-container .users-header .edit-prospect-capsule .form-actions .add-user-btn, .edit-prospect-capsule .form-actions .crm-action-button {
    text-align: center;
  }
}

/* ==========================================================================
   NEW PROSPECT - MODULE CRM (Harmonisé avec NEW CUSTOMER)
   ========================================================================== */
/* line 5, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.crm-new-prospect-capsule {
  width: 98%;
  height: 97%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  box-shadow: 0 2px 16px 0 rgba(20, 13, 35, 0.08);
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.8rem;
  gap: 0;
  min-height: auto;
}

/* line 22, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.crm-new-prospect-capsule .crm-new-prospect-capsule-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 32px 28px 24px 28px;
}

/* line 32, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.lightmode .crm-new-prospect-capsule {
  background-color: rgba(240, 242, 245, 0.7);
  border-color: rgba(20, 13, 35, 0.12);
  color: #140D23;
}

/* line 39, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.crm-new-prospect-form {
  width: 100%;
}

/* line 43, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.crm-new-prospect-header {
  width: 100%;
  text-align: left;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 50, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.crm-new-prospect-header h2, .crm-new-prospect-header .h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: inherit;
  letter-spacing: -0.01em;
}

/* line 57, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.crm-new-prospect-header .crm-new-prospect-description {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

/* line 61, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.lightmode .crm-new-prospect-header .crm-new-prospect-description {
  color: rgba(20, 13, 35, 0.5);
}

/* line 66, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.lightmode .crm-new-prospect-header {
  border-bottom-color: rgba(20, 13, 35, 0.08);
}

/* line 71, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.crm-new-prospect-form-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 10px;
}

/* line 79, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.crm-new-prospect-section-group {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

/* line 83, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.crm-new-prospect-section-group:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  /* line 79, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
  .crm-new-prospect-section-group {
    flex-direction: column;
  }
}

/* line 91, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.crm-new-prospect-card {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* line 99, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.crm-new-prospect-card.crm-new-prospect-card-full-width {
  width: 100%;
}

/* line 103, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.lightmode .crm-new-prospect-card {
  background-color: rgba(255, 255, 255, 0.65);
  border-color: rgba(20, 13, 35, 0.12);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* line 110, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.crm-new-prospect-card-header,
.crm-new-prospect-card-header-with-action {
  padding: 8px 14px;
  font-size: 0.65rem;
  font-weight: 700;
  color: #C38761;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background-color: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
}

/* line 122, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.lightmode .crm-new-prospect-card-header, .lightmode .crm-new-prospect-card-header-with-action {
  color: #C38761;
  background-color: rgba(20, 13, 35, 0.03);
  border-bottom-color: rgba(20, 13, 35, 0.08);
}

/* line 129, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.crm-new-prospect-card-header-with-action {
  justify-content: space-between;
  align-items: center;
}

/* line 134, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.crm-new-prospect-card-title {
  font-size: 0.65rem;
  font-weight: 700;
  color: #C38761;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* line 142, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.crm-new-prospect-card-content {
  padding: 14px;
}

/* line 146, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.crm-new-prospect-input {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
  color: #FFFFFF;
  padding: 10px 14px;
  margin: 0 auto;
  box-sizing: border-box;
  font-family: inherit;
  text-align: left;
  transition: border-color 0.2s, box-shadow 0.2s;
}

/* line 160, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.crm-new-prospect-input:focus {
  outline: none;
  border-color: rgba(195, 135, 97, 0.5);
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

/* line 166, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.crm-new-prospect-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.72rem;
  font-family: inherit;
}

/* line 171, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.lightmode .crm-new-prospect-input {
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.12);
  background: rgba(255, 255, 255, 0.6);
}

/* line 175, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.lightmode .crm-new-prospect-input:focus {
  border-color: rgba(195, 135, 97, 0.5);
  background: #FFFFFF;
}

/* line 179, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.lightmode .crm-new-prospect-input::placeholder {
  color: rgba(20, 13, 35, 0.3);
}

/* line 185, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.crm-new-prospect-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='4' viewBox='0 0 8 4'%3E%3Cpath fill='rgba(255,255,255,0.6)' d='M8 0H0l4 4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 8px 4px;
  padding-right: 30px;
}

/* line 196, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.lightmode .crm-new-prospect-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='4' viewBox='0 0 8 4'%3E%3Cpath fill='rgba(51,51,51,0.6)' d='M8 0H0l4 4z'/%3E%3C/svg%3E");
}

/* line 201, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.crm-new-prospect-circular-add-btn {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(195, 135, 97, 0.15);
  border: 1px solid rgba(195, 135, 97, 0.3);
  color: #C38761;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  margin: 0;
  outline: none;
  transition: all 0.2s ease;
}

/* line 220, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.crm-new-prospect-circular-add-btn:hover {
  background-color: rgba(195, 135, 97, 0.3);
  color: white;
}

/* line 225, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.lightmode .crm-new-prospect-circular-add-btn {
  background-color: rgba(195, 135, 97, 0.1);
  border-color: rgba(195, 135, 97, 0.25);
  color: #C38761;
}

/* line 230, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.lightmode .crm-new-prospect-circular-add-btn:hover {
  background-color: rgba(195, 135, 97, 0.2);
}

/* line 236, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.crm-new-prospect-organizations-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-height: 300px;
  overflow-y: auto;
}

/* line 245, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.crm-new-prospect-empty-state {
  padding: 20px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* line 250, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.lightmode .crm-new-prospect-empty-state {
  color: rgba(20, 13, 35, 0.6);
}

/* line 255, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
#organizations-table-container {
  max-height: 250px;
  overflow-y: auto;
  width: 100%;
}

/* line 261, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
#organizations-table-container::-webkit-scrollbar {
  width: 6px;
}

/* line 265, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
#organizations-table-container::-webkit-scrollbar-track {
  background: rgba(232, 232, 232, 0.1);
  border-radius: 10px;
}

/* line 268, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.lightmode #organizations-table-container::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 273, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
#organizations-table-container::-webkit-scrollbar-thumb {
  background: rgba(195, 135, 97, 0.5);
  border-radius: 10px;
}

/* line 276, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
#organizations-table-container::-webkit-scrollbar-thumb:hover {
  background: #C38761;
}

/* line 282, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.crm-new-prospect-actions {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

/* line 293, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.lightmode .crm-new-prospect-actions {
  border-top-color: rgba(20, 13, 35, 0.08);
}

/* line 298, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.hidden {
  display: none;
}

/* line 303, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.instance-index {
  width: 100%;
}

/* line 305, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.instance-index .instance-header {
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid rgba(232, 232, 232, 0.2);
}

/* line 309, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.instance-index .instance-header .instance-column {
  flex: 1;
  font-weight: 500;
  font-size: 0.85rem;
  color: #FFFFFF;
  text-transform: capitalize;
}

/* line 315, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.lightmode .instance-index .instance-header .instance-column {
  color: #140D23;
}

/* line 320, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.instance-index .instance-row {
  display: flex;
  padding: 8px 0;
  border-bottom: 1px solid rgba(232, 232, 232, 0.1);
}

/* line 324, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.instance-index .instance-row .instance-column {
  flex: 1;
  padding: 2px 10px;
  font-size: 0.75rem;
  color: #FFFFFF;
}

/* line 329, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.lightmode .instance-index .instance-row .instance-column {
  color: #140D23;
}

/* line 336, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.delete-btn {
  background-color: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.2s;
  padding: 4px 8px;
  font-size: 0.8rem;
  border-radius: 4px;
}

/* line 345, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.delete-btn:hover {
  color: #C38761;
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 349, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.lightmode .delete-btn {
  color: rgba(20, 13, 35, 0.7);
}

/* line 351, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.lightmode .delete-btn:hover {
  color: #C38761;
  background-color: rgba(20, 13, 35, 0.1);
}

/* ==========================================================================
   MODAL WIZARD ORGANIZATION - MODULE CRM
   ========================================================================== */
/* line 363, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
#organizationModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto;
  padding: 50px 0;
}

/* Ouverture/fermeture via utilitaires utilisés par Stimulus */
/* line 379, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
#organizationModal.modal.d-flex {
  display: flex !important;
}

/* line 383, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
#organizationModal.modal.d-none {
  display: none !important;
}

/* line 388, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.modal-content {
  background-color: rgba(20, 13, 35, 0.65);
  height: auto;
  width: 700px;
  max-width: 90%;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(232, 232, 232, 0.31);
}

/* line 402, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.lightmode .modal-content {
  background-color: rgba(255, 255, 255, 0.85);
  border-color: rgba(20, 13, 35, 0.31);
}

/* line 409, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.crm-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #FFFFFF;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 418, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.lightmode .crm-modal-header {
  color: #140D23;
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 423, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.crm-modal-header h2, .crm-modal-header .h2 {
  color: #FFFFFF !important;
  font-size: 1.2rem;
  margin: 0;
  font-weight: 600;
}

/* line 428, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.lightmode .crm-modal-header h2, .lightmode .crm-modal-header .h2 {
  color: #140D23 !important;
}

/* line 434, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.modal-close {
  color: #FFFFFF !important;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease, color 0.2s;
}

/* line 441, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.lightmode .modal-close {
  color: #140D23 !important;
}

/* line 445, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.modal-close:hover {
  opacity: 1;
  color: #C38761 !important;
}

/* line 452, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.progress-bar {
  height: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 20px;
  /* Largeurs prédéfinies pour éviter les styles inline bloqués par la CSP */
  /* Couleur active (anciennement définie en inline) */
}

/* line 459, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.lightmode .progress-bar {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 463, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.progress-bar .progress-fill {
  height: 100%;
  background-color: #C38761;
  transition: width 0.3s ease;
  border-radius: 2px;
}

/* line 471, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.progress-bar .progress-fill.progress-20 {
  width: 20%;
}

/* line 472, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.progress-bar .progress-fill.progress-40 {
  width: 40%;
}

/* line 473, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.progress-bar .progress-fill.progress-60 {
  width: 60%;
}

/* line 474, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.progress-bar .progress-fill.progress-80 {
  width: 80%;
}

/* line 475, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.progress-bar .progress-fill.progress-100 {
  width: 100%;
}

/* line 478, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.progress-bar .progress-fill.progress-active {
  background-color: #4caf50;
}

/* line 484, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.wizard-step {
  display: none;
}

/* line 487, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.wizard-step.active {
  display: block;
}

/* line 493, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.form-group {
  margin-bottom: 15px;
}

/* line 496, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.form-group label {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

/* line 503, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.lightmode .form-group label {
  color: rgba(20, 13, 35, 0.9);
}

/* line 508, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

/* line 518, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.lightmode .form-group input, .lightmode .form-group select, .lightmode .form-group textarea {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 524, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: #C38761;
  background-color: rgba(255, 255, 255, 0.15);
}

/* line 529, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.lightmode .form-group input:focus, .lightmode .form-group select:focus, .lightmode .form-group textarea:focus {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 534, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.form-group input::placeholder, .form-group select::placeholder, .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 536, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.lightmode .form-group input::placeholder, .lightmode .form-group select::placeholder, .lightmode .form-group textarea::placeholder {
  color: rgba(20, 13, 35, 0.5);
}

/* line 542, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.form-group input:disabled, .form-group select:disabled, .form-group textarea:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.5);
}

/* line 549, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.lightmode .form-group input:disabled, .lightmode .form-group select:disabled, .lightmode .form-group textarea:disabled {
  background-color: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.15);
  color: rgba(20, 13, 35, 0.5);
}

/* line 555, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.form-group input:disabled::placeholder, .form-group select:disabled::placeholder, .form-group textarea:disabled::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

/* line 557, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.lightmode .form-group input:disabled::placeholder, .lightmode .form-group select:disabled::placeholder, .lightmode .form-group textarea:disabled::placeholder {
  color: rgba(20, 13, 35, 0.3);
}

/* line 566, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.form-group:has(input:disabled) label {
  opacity: 0.7;
  color: rgba(255, 255, 255, 0.6);
}

/* line 570, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.lightmode .form-group:has(input:disabled) label {
  color: rgba(20, 13, 35, 0.6);
}

/* line 575, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.form-group:has(input:disabled) .form-hint {
  opacity: 0.7;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
}

/* line 580, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.lightmode .form-group:has(input:disabled) .form-hint {
  color: rgba(20, 13, 35, 0.5);
}

/* line 587, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.form-group input:disabled + .form-hint,
.form-group input:disabled ~ .form-hint {
  opacity: 0.7;
  font-style: italic;
}

/* line 595, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.siret-input-group {
  display: flex;
  gap: 10px;
}

/* line 599, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.siret-input-group input {
  flex: 1;
}

/* line 603, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.siret-input-group .verify-btn {
  padding: 10px 15px;
  background-color: #C38761;
  color: #140D23;
  border: none;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

/* line 615, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.siret-input-group .verify-btn:hover {
  background-color: #af6c42;
}

/* line 621, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
#siret-verification-result {
  margin-top: 8px;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* line 628, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
#siret-verification-result.siret-result-loading {
  background-color: rgba(195, 135, 97, 0.2);
  color: #C38761;
  border: 1px solid rgba(195, 135, 97, 0.3);
}

/* line 634, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
#siret-verification-result.siret-result-success {
  background-color: rgba(76, 175, 80, 0.2);
  color: #4CAF50;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

/* line 640, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
#siret-verification-result.siret-result-error {
  background-color: rgba(244, 67, 54, 0.2);
  color: #f44336;
  border: 1px solid rgba(244, 67, 54, 0.3);
}

/* line 648, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.address-copy-container {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

/* line 654, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.btn-copy-address {
  padding: 8px 16px;
  font-size: 0.8rem;
  background-color: rgba(195, 135, 97, 0.2);
  color: #C38761;
  border: 1px solid rgba(195, 135, 97, 0.4);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

/* line 668, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.btn-copy-address:hover {
  background-color: rgba(195, 135, 97, 0.3);
  border-color: rgba(195, 135, 97, 0.6);
  transform: translateY(-1px);
}

/* line 674, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.btn-copy-address i {
  font-size: 0.75rem;
}

/* line 680, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.modal-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
  gap: 10px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 688, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.lightmode .modal-footer {
  border-top-color: rgba(20, 13, 35, 0.1);
}

/* line 694, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.btn-prev,
.btn-next,
.btn-submit {
  padding: 8px 20px;
  font-size: 0.8rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  border: none;
}

/* line 710, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.btn-prev:hover,
.btn-next:hover,
.btn-submit:hover {
  opacity: 0.9;
}

/* line 715, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.btn-prev {
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* line 720, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.btn-prev:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 724, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.lightmode .btn-prev {
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 727, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.lightmode .btn-prev:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 733, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.btn-next,
.btn-submit {
  background-color: #C38761;
  color: #FFFFFF;
}

/* line 738, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.btn-next:hover,
.btn-submit:hover {
  background-color: #d1a386;
}

/* line 742, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.lightmode .btn-next, .lightmode .btn-submit {
  color: #FFFFFF;
}

/* ==========================================================================
   SECTION CONTACT PRINCIPAL
   ========================================================================== */
/* line 751, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.crm-contact-toggle-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #C38761;
}

/* line 763, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.crm-contact-checkbox {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #C38761;
}

/* line 770, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.crm-optional-badge {
  font-size: 0.6rem;
  font-weight: 400;
  text-transform: lowercase;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.4);
  margin-left: 4px;
}

/* line 778, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.lightmode .crm-optional-badge {
  color: rgba(20, 13, 35, 0.4);
}

/* line 783, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.crm-contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

@media (max-width: 768px) {
  /* line 783, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
  .crm-contact-form-grid {
    grid-template-columns: 1fr;
  }
}

/* line 793, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.crm-contact-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* line 799, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.crm-field-label {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.8);
  padding-left: 2px;
}

/* line 807, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.lightmode .crm-field-label {
  color: rgba(20, 13, 35, 0.5);
}

/* line 812, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.crm-contact-fields {
  transition: all 0.3s ease;
}

/* line 815, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
.crm-contact-fields.hidden {
  display: none;
}

@media (max-width: 768px) {
  /* line 822, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
  .crm-new-prospect-capsule {
    width: 95%;
    padding: 20px 16px;
  }
  /* line 827, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
  .crm-new-prospect-actions {
    flex-direction: column;
    gap: 10px;
  }
  /* line 831, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
  .crm-new-prospect-actions .form-button, .crm-new-prospect-actions .users-management-container .users-header .add-user-btn, .users-management-container .users-header .crm-new-prospect-actions .add-user-btn, .crm-new-prospect-actions .crm-action-button {
    width: 100%;
  }
  /* line 836, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
  .modal-content {
    width: 95%;
    padding: 16px;
  }
  /* line 841, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
  .modal-footer {
    flex-direction: column;
  }
  /* line 845, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
  .btn-prev,
.btn-next,
.btn-submit {
    width: 100%;
    margin-bottom: 5px;
  }
  /* line 852, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
  .siret-input-group {
    flex-direction: column;
  }
  /* line 855, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_new_lead.scss */
  .siret-input-group .verify-btn {
    width: 100%;
  }
}

/* ==========================================================================
   CUSTOM MODAL - Base styles CRM (overlay + modal + header/body/footer)
   Aligné sur organization_wizard_modal (gradient, border-radius 12px, goldsummer)
   ========================================================================== */
/* Overlay */
/* line 7, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_custom_modal.scss */
.custom-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1050;
}

/* line 19, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_custom_modal.scss */
.custom-modal-overlay.active {
  display: flex;
  animation: customModalFadeIn 0.3s;
}

@keyframes customModalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Modal */
/* line 31, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_custom_modal.scss */
.custom-modal {
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: white;
  border: none;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  height: fit-content;
  max-height: 90vh;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  scrollbar-width: thin;
  scrollbar-color: rgba(195, 135, 97, 0.6) rgba(255, 255, 255, 0.05);
}

/* line 48, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_custom_modal.scss */
.custom-modal-overlay.active .custom-modal {
  transform: translateY(0);
  opacity: 1;
}

/* line 54, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_custom_modal.scss */
.custom-modal::-webkit-scrollbar {
  width: 8px;
}

/* line 58, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_custom_modal.scss */
.custom-modal::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

/* line 63, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_custom_modal.scss */
.custom-modal::-webkit-scrollbar-thumb {
  background: rgba(195, 135, 97, 0.6);
  border-radius: 4px;
}

/* line 67, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_custom_modal.scss */
.custom-modal::-webkit-scrollbar-thumb:hover {
  background: rgba(195, 135, 97, 0.8);
}

/* Header */
/* line 77, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_custom_modal.scss */
.custom-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 85, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_custom_modal.scss */
.custom-modal-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

/* line 91, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_custom_modal.scss */
.custom-modal-title i {
  color: #C38761;
}

/* line 96, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_custom_modal.scss */
.custom-modal-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

/* line 110, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_custom_modal.scss */
.custom-modal-close:hover {
  color: #C38761;
  background: rgba(255, 255, 255, 0.1);
}

/* Body */
/* line 117, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_custom_modal.scss */
.custom-modal-body {
  padding: 20px 24px;
}

/* line 120, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_custom_modal.scss */
.custom-modal-body .form-group {
  margin-bottom: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* line 126, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_custom_modal.scss */
.custom-modal-body .form-group:last-child {
  margin-bottom: 0;
}

/* line 132, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_custom_modal.scss */
.custom-modal-body label,
.custom-modal-body .modal-label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9rem;
  text-align: left;
}

/* line 141, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_custom_modal.scss */
.custom-modal-body label i,
.custom-modal-body .modal-label i {
  color: #C38761;
}

/* line 145, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_custom_modal.scss */
.custom-modal-body label .required-indicator,
.custom-modal-body .modal-label .required-indicator {
  color: #C38761;
}

/* line 151, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_custom_modal.scss */
.custom-modal-body .form-control,
.custom-modal-body input[type="text"],
.custom-modal-body input[type="email"],
.custom-modal-body input[type="tel"],
.custom-modal-body textarea,
.custom-modal-body select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(195, 135, 97, 0.4);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 0.9rem;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

/* line 167, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_custom_modal.scss */
.custom-modal-body .form-control::placeholder,
.custom-modal-body input[type="text"]::placeholder,
.custom-modal-body input[type="email"]::placeholder,
.custom-modal-body input[type="tel"]::placeholder,
.custom-modal-body textarea::placeholder,
.custom-modal-body select::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 171, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_custom_modal.scss */
.custom-modal-body .form-control:focus,
.custom-modal-body input[type="text"]:focus,
.custom-modal-body input[type="email"]:focus,
.custom-modal-body input[type="tel"]:focus,
.custom-modal-body textarea:focus,
.custom-modal-body select:focus {
  border-color: rgba(195, 135, 97, 0.7);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.15);
  outline: none;
}

/* line 180, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_custom_modal.scss */
.custom-modal-body select.form-control,
.custom-modal-body select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C38761' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

/* line 189, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_custom_modal.scss */
.custom-modal-body select.form-control option,
.custom-modal-body select option {
  background: #140D23;
  color: white;
}

/* line 195, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_custom_modal.scss */
.custom-modal-body textarea.form-control,
.custom-modal-body textarea {
  height: auto;
  min-height: 80px;
  resize: vertical;
}

/* line 203, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_custom_modal.scss */
.custom-modal-body .form-error {
  color: #ff6b6b;
  font-size: 0.8rem;
  margin-top: 4px;
}

/* line 208, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_custom_modal.scss */
.custom-modal-body .form-error.hidden {
  display: none;
}

/* Footer */
/* line 215, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_custom_modal.scss */
.custom-modal-footer {
  padding: 16px 24px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 222, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_custom_modal.scss */
.custom-modal-footer .form-button, .custom-modal-footer .users-management-container .users-header .add-user-btn, .users-management-container .users-header .custom-modal-footer .add-user-btn, .custom-modal-footer .crm-action-button {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

/* line 231, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_custom_modal.scss */
.custom-modal-footer .form-button.btn-secondary, .custom-modal-footer .users-management-container .users-header .btn-secondary.add-user-btn, .users-management-container .users-header .custom-modal-footer .btn-secondary.add-user-btn, .custom-modal-footer .btn-secondary.crm-action-button, .custom-modal-footer .crm-action-button.crm-action-button-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}

/* line 236, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_custom_modal.scss */
.custom-modal-footer .form-button.btn-secondary:hover, .custom-modal-footer .users-management-container .users-header .btn-secondary.add-user-btn:hover, .users-management-container .users-header .custom-modal-footer .btn-secondary.add-user-btn:hover, .custom-modal-footer .btn-secondary.crm-action-button:hover, .custom-modal-footer .crm-action-button.crm-action-button-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

/* line 242, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_custom_modal.scss */
.custom-modal-footer .form-button.btn-primary, .custom-modal-footer .users-management-container .users-header .btn-primary.add-user-btn, .users-management-container .users-header .custom-modal-footer .btn-primary.add-user-btn, .custom-modal-footer .btn-primary.crm-action-button, .custom-modal-footer .crm-action-button.crm-action-button-primary, .custom-modal-footer .form-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary), .custom-modal-footer .users-management-container .users-header .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary), .users-management-container .users-header .custom-modal-footer .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary), .custom-modal-footer .crm-action-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary) {
  background: #C38761;
  color: #140D23;
}

/* line 247, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_custom_modal.scss */
.custom-modal-footer .form-button.btn-primary:hover, .custom-modal-footer .users-management-container .users-header .btn-primary.add-user-btn:hover, .users-management-container .users-header .custom-modal-footer .btn-primary.add-user-btn:hover, .custom-modal-footer .btn-primary.crm-action-button:hover, .custom-modal-footer .crm-action-button.crm-action-button-primary:hover, .custom-modal-footer .form-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover, .custom-modal-footer .users-management-container .users-header .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover, .users-management-container .users-header .custom-modal-footer .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover, .custom-modal-footer .crm-action-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover {
  background: #bc794f;
  transform: translateY(-1px);
}

/* ==========================================================================
   LIGHT MODE STYLES - Modale de création de contact
   ========================================================================== */
/* line 10, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_contact_modal.scss */
.lightmode .custom-modal-overlay .custom-modal.contact-modal,
.custom-modal-overlay.lightmode .custom-modal.contact-modal {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(20, 13, 35, 0.15);
  box-shadow: 0 8px 32px rgba(20, 13, 35, 0.15);
  scrollbar-color: #C38761 rgba(20, 13, 35, 0.1);
}

/* line 16, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_contact_modal.scss */
.lightmode .custom-modal-overlay .custom-modal.contact-modal::-webkit-scrollbar-track,
.custom-modal-overlay.lightmode .custom-modal.contact-modal::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 20, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_contact_modal.scss */
.lightmode .custom-modal-overlay .custom-modal.contact-modal::-webkit-scrollbar-thumb,
.custom-modal-overlay.lightmode .custom-modal.contact-modal::-webkit-scrollbar-thumb {
  background: #C38761;
}

/* line 23, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_contact_modal.scss */
.lightmode .custom-modal-overlay .custom-modal.contact-modal::-webkit-scrollbar-thumb:hover,
.custom-modal-overlay.lightmode .custom-modal.contact-modal::-webkit-scrollbar-thumb:hover {
  background: #af6c42;
}

/* line 30, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_contact_modal.scss */
.lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-header,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-header {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 33, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_contact_modal.scss */
.lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-header .custom-modal-title,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-header .custom-modal-title {
  color: #140D23;
}

/* line 36, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_contact_modal.scss */
.lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-header .custom-modal-title i,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-header .custom-modal-title i {
  color: #C38761;
}

/* line 41, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_contact_modal.scss */
.lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-header .custom-modal-close,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-header .custom-modal-close {
  color: #140D23;
}

/* line 44, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_contact_modal.scss */
.lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-header .custom-modal-close:hover,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-header .custom-modal-close:hover {
  color: #C38761;
}

/* line 51, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_contact_modal.scss */
.lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-body label,
.lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-body .modal-label,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-body label,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-body .modal-label {
  color: #140D23;
}

/* line 55, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_contact_modal.scss */
.lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-body label .required-indicator,
.lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-body .modal-label .required-indicator,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-body label .required-indicator,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-body .modal-label .required-indicator {
  color: #C38761;
}

/* line 60, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_contact_modal.scss */
.lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-body .form-control,
.lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-body input[type="text"],
.lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-body input[type="email"],
.lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-body input[type="tel"],
.lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-body textarea,
.lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-body select,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-body .form-control,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-body input[type="text"],
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-body input[type="email"],
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-body input[type="tel"],
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-body textarea,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-body select {
  background: #e8e8e8;
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 70, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_contact_modal.scss */
.lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-body .form-control::placeholder,
.lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-body input[type="text"]::placeholder,
.lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-body input[type="email"]::placeholder,
.lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-body input[type="tel"]::placeholder,
.lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-body textarea::placeholder,
.lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-body select::placeholder,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-body .form-control::placeholder,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-body input[type="text"]::placeholder,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-body input[type="email"]::placeholder,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-body input[type="tel"]::placeholder,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-body textarea::placeholder,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-body select::placeholder {
  color: rgba(20, 13, 35, 0.5);
}

/* line 74, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_contact_modal.scss */
.lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-body .form-control:focus,
.lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-body input[type="text"]:focus,
.lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-body input[type="email"]:focus,
.lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-body input[type="tel"]:focus,
.lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-body textarea:focus,
.lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-body select:focus,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-body .form-control:focus,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-body input[type="text"]:focus,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-body input[type="email"]:focus,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-body input[type="tel"]:focus,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-body textarea:focus,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-body select:focus {
  border-color: #C38761;
  background: white;
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.15);
}

/* line 81, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_contact_modal.scss */
.lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-body select.form-control,
.lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-body select,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-body select.form-control,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-body select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C38761' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
}

/* line 85, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_contact_modal.scss */
.lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-body select.form-control option,
.lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-body select option,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-body select.form-control option,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-body select option {
  background: white;
  color: #140D23;
}

/* line 91, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_contact_modal.scss */
.lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-body .form-error,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-body .form-error {
  color: #ef4444;
}

/* line 96, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_contact_modal.scss */
.lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-footer,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-footer {
  border-top-color: rgba(20, 13, 35, 0.1);
}

/* line 100, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_contact_modal.scss */
.lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-footer .form-button.btn-secondary, .lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-footer .users-management-container .users-header .btn-secondary.add-user-btn, .users-management-container .users-header .lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-footer .btn-secondary.add-user-btn, .lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-footer .btn-secondary.crm-action-button, .lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-footer .crm-action-button.crm-action-button-secondary,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-footer .form-button.btn-secondary,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-footer .users-management-container .users-header .btn-secondary.add-user-btn,
.users-management-container .users-header .custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-footer .btn-secondary.add-user-btn,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-footer .btn-secondary.crm-action-button,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-footer .crm-action-button.crm-action-button-secondary {
  background: #e8e8e8;
  border: 1px solid rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 105, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_contact_modal.scss */
.lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-footer .form-button.btn-secondary:hover, .lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-footer .users-management-container .users-header .btn-secondary.add-user-btn:hover, .users-management-container .users-header .lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-footer .btn-secondary.add-user-btn:hover, .lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-footer .btn-secondary.crm-action-button:hover, .lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-footer .crm-action-button.crm-action-button-secondary:hover,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-footer .form-button.btn-secondary:hover,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-footer .users-management-container .users-header .btn-secondary.add-user-btn:hover,
.users-management-container .users-header .custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-footer .btn-secondary.add-user-btn:hover,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-footer .btn-secondary.crm-action-button:hover,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-footer .crm-action-button.crm-action-button-secondary:hover {
  background: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 111, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_contact_modal.scss */
.lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-footer .form-button.btn-primary, .lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-footer .users-management-container .users-header .btn-primary.add-user-btn, .users-management-container .users-header .lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-footer .btn-primary.add-user-btn, .lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-footer .btn-primary.crm-action-button, .lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-footer .crm-action-button.crm-action-button-primary, .lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-footer .form-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary), .lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-footer .users-management-container .users-header .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary), .users-management-container .users-header .lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-footer .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary), .lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-footer .crm-action-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary),
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-footer .form-button.btn-primary,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-footer .users-management-container .users-header .btn-primary.add-user-btn,
.users-management-container .users-header .custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-footer .btn-primary.add-user-btn,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-footer .btn-primary.crm-action-button,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-footer .crm-action-button.crm-action-button-primary,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-footer .form-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary),
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-footer .users-management-container .users-header .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary),
.users-management-container .users-header .custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-footer .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary),
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-footer .crm-action-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary) {
  background: #C38761;
  color: #140D23;
}

/* line 116, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_contact_modal.scss */
.lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-footer .form-button.btn-primary:hover, .lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-footer .users-management-container .users-header .btn-primary.add-user-btn:hover, .users-management-container .users-header .lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-footer .btn-primary.add-user-btn:hover, .lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-footer .btn-primary.crm-action-button:hover, .lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-footer .crm-action-button.crm-action-button-primary:hover, .lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-footer .form-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover, .lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-footer .users-management-container .users-header .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover, .users-management-container .users-header .lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-footer .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover, .lightmode .custom-modal-overlay .custom-modal.contact-modal .custom-modal-footer .crm-action-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-footer .form-button.btn-primary:hover,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-footer .users-management-container .users-header .btn-primary.add-user-btn:hover,
.users-management-container .users-header .custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-footer .btn-primary.add-user-btn:hover,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-footer .btn-primary.crm-action-button:hover,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-footer .crm-action-button.crm-action-button-primary:hover,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-footer .form-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-footer .users-management-container .users-header .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover,
.users-management-container .users-header .custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-footer .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover,
.custom-modal-overlay.lightmode .custom-modal.contact-modal .custom-modal-footer .crm-action-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover {
  background: #bc794f;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 576px) {
  /* line 130, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_contact_modal.scss */
  .custom-modal.contact-modal {
    width: 95%;
    max-width: none;
  }
  /* line 134, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_contact_modal.scss */
  .custom-modal.contact-modal .custom-modal-body {
    padding: 16px;
  }
  /* line 138, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_contact_modal.scss */
  .custom-modal.contact-modal .custom-modal-footer {
    padding: 12px 16px;
    flex-direction: column-reverse;
  }
  /* line 142, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_contact_modal.scss */
  .custom-modal.contact-modal .custom-modal-footer .form-button, .custom-modal.contact-modal .custom-modal-footer .users-management-container .users-header .add-user-btn, .users-management-container .users-header .custom-modal.contact-modal .custom-modal-footer .add-user-btn, .custom-modal.contact-modal .custom-modal-footer .crm-action-button {
    width: 100%;
  }
}

/* Styles pour les événements dans l'historique */
/* line 3, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_history.scss */
.events-list {
  height: 100%;
  overflow-y: auto;
  padding-right: 0.5rem;
  /* Personnalisation de la barre de défilement */
}

/* line 10, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_history.scss */
.events-list::-webkit-scrollbar {
  width: 8px;
  /* Largeur de la barre de défilement */
}

/* line 14, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_history.scss */
.events-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  /* Couleur de l'arrière-plan de la barre */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 23, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_history.scss */
.show-prospect-capsule.lightmode + .prospect-history-sidebar .events-list::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 28, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_history.scss */
.events-list::-webkit-scrollbar-thumb {
  background: #C38761;
  /* Couleur de la barre de défilement */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 33, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_history.scss */
.events-list::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
  /* Couleur de la barre au survol */
}

/* line 36, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_history.scss */
.show-prospect-capsule.lightmode + .prospect-history-sidebar .events-list::-webkit-scrollbar-thumb:hover {
  background: #140D23;
}

/* line 41, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_history.scss */
.events-list .event-item {
  border-left: 3px solid rgba(255, 255, 255, 0.3);
  padding: 0.75rem;
  margin-bottom: 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 0 4px 4px 0;
  position: relative;
}

/* line 49, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_history.scss */
.events-list .event-item:last-child {
  margin-bottom: 0;
}

/* line 53, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_history.scss */
.events-list .event-item .event-description {
  font-weight: 500;
  margin-bottom: 0.3rem;
  font-size: 0.75rem;
}

/* line 58, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_history.scss */
.events-list .event-item .event-description .event-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

/* line 63, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_history.scss */
.events-list .event-item .event-description .event-link:hover {
  color: #C38761;
}

/* line 69, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_history.scss */
.events-list .event-item .event-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
}

/* line 75, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_history.scss */
.events-list .event-item .event-meta .event-date {
  font-style: italic;
}

/* line 79, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_history.scss */
.events-list .event-item .event-meta .event-user {
  font-weight: 500;
}

/* line 86, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_history.scss */
.history-section-content {
  height: auto;
  flex: 1;
  /* Remplit la hauteur disponible dans .history-section */
  min-height: 0;
  /* Permet le scroll interne correctement en flex */
  overflow-y: auto;
}

/* line 93, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_history.scss */
.basic-history-info {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

/* line 98, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_history.scss */
.basic-history-info p {
  margin: 0.3rem 0;
  font-size: 0.75rem;
}

/* line 106, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_history.scss */
.event-item[data-action="creation"] {
  border-left-color: #2ecc71;
}

/* line 110, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_history.scss */
.event-item[data-action="update"] {
  border-left-color: #3498db;
}

/* line 114, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_history.scss */
.event-item[data-action="status_changed"] {
  border-left-color: #f1c40f;
}

/* line 118, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_history.scss */
.event-item[data-action="contact_added"] {
  border-left-color: #2ecc71;
}

/* line 122, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_history.scss */
.event-item[data-action="comment_added"] {
  border-left-color: #3498db;
}

/* line 126, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_history.scss */
.event-item[data-action="organization_added"] {
  border-left-color: rgba(255, 255, 255, 0.5);
}

/* line 130, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_history.scss */
.event-item[data-action="quote_created"] {
  border-left-color: #9b59b6;
}

/* Mode clair */
/* line 138, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_history.scss */
.show-prospect-capsule.lightmode + .prospect-history-sidebar .events-list .event-item {
  background-color: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 142, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_history.scss */
.show-prospect-capsule.lightmode + .prospect-history-sidebar .events-list .event-item .event-description {
  color: #140D23;
}

/* line 145, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_history.scss */
.show-prospect-capsule.lightmode + .prospect-history-sidebar .events-list .event-item .event-description .event-link {
  color: inherit;
}

/* line 148, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_history.scss */
.show-prospect-capsule.lightmode + .prospect-history-sidebar .events-list .event-item .event-description .event-link:hover {
  color: #C38761;
}

/* line 154, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_history.scss */
.show-prospect-capsule.lightmode + .prospect-history-sidebar .events-list .event-item .event-meta {
  color: rgba(20, 13, 35, 0.6);
}

/* line 160, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_history.scss */
.show-prospect-capsule.lightmode + .prospect-history-sidebar .basic-history-info {
  border-top-color: rgba(20, 13, 35, 0.1);
}

/* line 163, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_history.scss */
.show-prospect-capsule.lightmode + .prospect-history-sidebar .basic-history-info p {
  color: rgba(20, 13, 35, 0.8);
}

/* line 170, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_history.scss */
.show-prospect-capsule.lightmode + .prospect-history-sidebar .event-item[data-action="creation"] {
  border-left-color: #27ae60;
}

/* line 174, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_history.scss */
.show-prospect-capsule.lightmode + .prospect-history-sidebar .event-item[data-action="update"] {
  border-left-color: #2980b9;
}

/* line 178, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_history.scss */
.show-prospect-capsule.lightmode + .prospect-history-sidebar .event-item[data-action="status_changed"] {
  border-left-color: #f39c12;
}

/* line 182, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_history.scss */
.show-prospect-capsule.lightmode + .prospect-history-sidebar .event-item[data-action="contact_added"] {
  border-left-color: #27ae60;
}

/* line 186, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_history.scss */
.show-prospect-capsule.lightmode + .prospect-history-sidebar .event-item[data-action="comment_added"] {
  border-left-color: #2980b9;
}

/* line 190, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_history.scss */
.show-prospect-capsule.lightmode + .prospect-history-sidebar .event-item[data-action="organization_added"] {
  border-left-color: rgba(20, 13, 35, 0.5);
}

/* line 194, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_history.scss */
.show-prospect-capsule.lightmode + .prospect-history-sidebar .event-item[data-action="quote_created"] {
  border-left-color: #8e44ad;
}

/* ==========================================================================
   INLINE EDIT - STYLES POUR L'ÉDITION INLINE CRM
   Styles pour l'édition inline des champs prospect et organisation
   ========================================================================== */
/* ==========================================================================
   CONTENEUR ÉDITABLE
   ========================================================================== */
/* line 10, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_inline_edit.scss */
.inline-editable {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   BOUTON D'ÉDITION (CRAYON)
   ========================================================================== */
/* line 21, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_inline_edit.scss */
.inline-edit-btn {
  opacity: 0.4;
  transition: opacity 0.2s ease, transform 0.2s ease;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  color: inherit;
  font-size: 0.85em;
  border-radius: 4px;
}

/* line 32, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_inline_edit.scss */
.inline-edit-btn:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}

/* line 37, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_inline_edit.scss */
.inline-edit-btn:focus {
  outline: none;
  opacity: 1;
}

/* Mode lightmode */
/* line 45, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_inline_edit.scss */
.lightmode .inline-edit-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
   CHAMPS D'ÉDITION
   ========================================================================== */
/* line 54, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_inline_edit.scss */
.inline-edit-input,
.inline-edit-select {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  min-width: 150px;
  /* États de sauvegarde */
}

/* line 67, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_inline_edit.scss */
.inline-edit-input:focus,
.inline-edit-select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

/* line 74, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_inline_edit.scss */
.inline-edit-input::placeholder,
.inline-edit-select::placeholder {
  color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

/* line 80, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_inline_edit.scss */
.inline-edit-input.is-saving,
.inline-edit-select.is-saving {
  border-color: rgba(108, 117, 125, 0.5);
  background: rgba(108, 117, 125, 0.1);
}

/* line 85, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_inline_edit.scss */
.inline-edit-input.is-success,
.inline-edit-select.is-success {
  border-color: rgba(25, 135, 84, 0.6);
  background: rgba(25, 135, 84, 0.1);
}

/* line 90, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_inline_edit.scss */
.inline-edit-input.is-error,
.inline-edit-select.is-error {
  border-color: rgba(220, 53, 69, 0.6);
  background: rgba(220, 53, 69, 0.1);
}

/* Input large (pour les titres) */
/* line 97, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_inline_edit.scss */
.inline-edit-input-large {
  font-size: 1.5rem;
  font-weight: 600;
  min-width: 250px;
}

/* Select avec flèche personnalisée */
/* line 104, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_inline_edit.scss */
.inline-edit-select {
  padding-right: 2rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 10px;
  cursor: pointer;
}

/* line 113, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_inline_edit.scss */
.inline-edit-select option {
  background: #2a2a2a;
  color: #fff;
}

/* Mode lightmode */
/* line 121, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_inline_edit.scss */
.lightmode .inline-edit-input,
.lightmode .inline-edit-select {
  border-color: rgba(0, 0, 0, 0.15);
  background: rgba(0, 0, 0, 0.03);
  color: inherit;
}

/* line 127, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_inline_edit.scss */
.lightmode .inline-edit-input:focus,
.lightmode .inline-edit-select:focus {
  border-color: rgba(0, 0, 0, 0.3);
  background: rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}

/* line 133, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_inline_edit.scss */
.lightmode .inline-edit-input::placeholder,
.lightmode .inline-edit-select::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

/* line 138, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_inline_edit.scss */
.lightmode .inline-edit-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}

/* line 141, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_inline_edit.scss */
.lightmode .inline-edit-select option {
  background: #fff;
  color: #333;
}

/* ==========================================================================
   INDICATEUR DE STATUT
   ========================================================================== */
/* line 152, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_inline_edit.scss */
.inline-edit-status {
  display: inline-flex;
  align-items: center;
  margin-left: 0.25rem;
}

/* line 157, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_inline_edit.scss */
.inline-edit-status i {
  font-size: 0.9em;
}

/* line 161, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_inline_edit.scss */
.inline-edit-status .fa-spinner {
  color: rgba(108, 117, 125, 0.8);
}

/* line 165, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_inline_edit.scss */
.inline-edit-status .fa-check {
  color: #198754;
}

/* line 169, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_inline_edit.scss */
.inline-edit-status .fa-exclamation-triangle {
  color: #dc3545;
}

/* ==========================================================================
   STYLES SPÉCIFIQUES À LA PAGE ORGANISATION
   ========================================================================== */
/* line 178, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_inline_edit.scss */
.adv-show-customer-organization-card-title.inline-editable {
  flex-wrap: nowrap;
}

/* line 181, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_inline_edit.scss */
.adv-show-customer-organization-card-title.inline-editable .inline-edit-input {
  flex: 1;
  min-width: 120px;
  max-width: 300px;
}

/* line 187, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_inline_edit.scss */
.adv-show-customer-organization-card-title.inline-editable .inline-edit-btn {
  flex-shrink: 0;
}

/* Nom de l'organisation (titre h2) */
/* line 194, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_inline_edit.scss */
.adv-show-customer-organization-name-card h2.inline-editable, .adv-show-customer-organization-name-card .inline-editable.h2 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* line 199, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_inline_edit.scss */
.adv-show-customer-organization-name-card h2.inline-editable .inline-edit-input-large, .adv-show-customer-organization-name-card .inline-editable.h2 .inline-edit-input-large {
  font-size: inherit;
  font-weight: inherit;
}

/* ==========================================================================
   STYLES SPÉCIFIQUES À LA FICHE PROSPECT
   ========================================================================== */
/* line 210, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_inline_edit.scss */
.crm-section-content.inline-editable {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 215, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_inline_edit.scss */
.crm-section-content.inline-editable .inline-edit-input,
.crm-section-content.inline-editable .inline-edit-select {
  flex: 1;
  min-width: 100px;
}

/* Badges de statut dans les selects */
/* line 225, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_inline_edit.scss */
.crm-grid-status .inline-editable [data-inline-field-edit-target="display"] {
  display: inline-flex;
  align-items: center;
}

/* ==========================================================================
   UTILITAIRES
   ========================================================================== */
/* Cache un élément */
/* line 237, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_inline_edit.scss */
.d-none {
  display: none !important;
}

/* Texte "no data" */
/* line 242, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_inline_edit.scss */
.no-data {
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

/* line 247, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_inline_edit.scss */
.lightmode .no-data {
  color: rgba(0, 0, 0, 0.4);
}

/* ==========================================================================
   CONTACTS BOARD - MODULE CRM
   Structure principale et composants pour la gestion des contacts
   ========================================================================== */
/* ==========================================================================
   LAYOUT PRINCIPAL - Structure générale du module
   ========================================================================== */
/* line 10, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-capsule {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-right: 15px;
  font-size: 1rem;
  overflow: hidden;
}

/* line 21, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-capsule.lightmode {
  color: #140D23;
}

/* line 25, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-capsule.nightmode {
  color: #FFFFFF;
}

/* line 30, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 36, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-capsule span {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* Variations de thème clair/sombre */
/* line 43, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-capsule.lightmode span {
  color: #C38761;
}

/* line 47, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-capsule.nightmode span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 51, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-capsule.lightmode p {
  color: #140D23;
}

/* line 55, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-capsule.nightmode p {
  color: #FFFFFF;
}

/* line 59, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-capsule.lightmode i {
  color: #140D23;
}

/* line 63, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-capsule.nightmode i {
  color: #FFFFFF;
}

/* ==========================================================================
     BARRE SUPÉRIEURE - Recherche et bouton création
     ========================================================================== */
/* line 71, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-row1 {
  width: 80%;
  height: 50px;
  /* Hauteur réduite */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  flex-shrink: 0;
  /* Empêche la compression */
  margin-bottom: 5px;
  /* Ajoute un peu d'espace en bas */
}

/* line 82, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-row1 form {
  width: 100%;
  display: flex;
}

/* ==========================================================================
     BARRE DE RECHERCHE - Composants et fonctionnalités
     ========================================================================== */
/* line 92, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-row1-searchbar {
  width: 100%;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 105, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-capsule.lightmode .contacts-board-row1-searchbar {
  border-color: rgba(20, 13, 35, 0.5);
  color: #140D23;
}

/* line 110, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-row1-searchbar .crm-search-form {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 117, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-row1-searchbar .crm-search-input-wrapper {
  position: relative;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

/* line 124, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-row1-searchbar .crm-search-input {
  width: 100%;
  background: transparent;
  border: none;
  color: #FFFFFF;
  outline: none;
  padding-right: 25px;
  /* Espace pour l'icône de suppression */
}

/* line 132, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-capsule.lightmode .contacts-board-row1-searchbar .crm-search-input {
  color: #140D23;
}

/* line 135, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-capsule.lightmode .contacts-board-row1-searchbar .crm-search-input::placeholder {
  color: rgba(20, 13, 35, 0.6);
}

/* line 141, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-row1-searchbar .crm-clear-search-button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 0.6rem;
  text-decoration: none;
}

/* line 156, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-capsule.lightmode .contacts-board-row1-searchbar .crm-clear-search-button {
  color: #140D23;
}

/* line 160, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-row1-searchbar .crm-clear-search-button:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* line 163, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-capsule.lightmode .contacts-board-row1-searchbar .crm-clear-search-button:hover {
  color: rgba(20, 13, 35, 0.7);
}

/* line 169, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-row1-searchbar button {
  all: unset;
  cursor: pointer;
}

/* line 174, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-row1-searchbar .crm-search-button {
  padding: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 182, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-row1-searchbar i {
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 187, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-capsule.lightmode .contacts-board-row1-searchbar i {
  color: #140D23 !important;
}

/* line 192, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-row1-searchbar span {
  font-weight: normal !important;
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 198, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-capsule.lightmode .contacts-board-row1-searchbar span {
  color: #140D23 !important;
}

/* Bannière d'information sur la recherche en cours */
/* line 205, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.crm-search-info {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: #FFFFFF;
  margin-bottom: -10px;
  z-index: 5;
}

/* line 215, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-capsule.lightmode .crm-search-info {
  color: #140D23;
}

/* line 219, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.crm-search-info span {
  opacity: 0.8;
}

/* line 223, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.crm-search-info .crm-reset-search-link {
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s ease;
}

/* line 234, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-capsule.lightmode .crm-search-info .crm-reset-search-link {
  color: #140D23;
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 239, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.crm-search-info .crm-reset-search-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 242, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-capsule.lightmode .crm-search-info .crm-reset-search-link:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* ==========================================================================
     CONTENEUR PRINCIPAL DES DONNÉES - Structure du tableau des contacts
     ========================================================================== */
/* line 253, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-row2 {
  width: 80%;
  flex: 1;
  /* Prend le reste de l'espace disponible */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  /* Aligne au sommet au lieu du centre */
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  /* Réduit le rayon pour gagner de l'espace */
  padding: 15px;
  /* Réduit le padding */
  overflow: hidden;
  /* Empêche le scroll sur ce conteneur */
  margin-top: 5px;
  /* Espace additionnel depuis le haut */
}

/* line 267, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-capsule.lightmode .contacts-board-row2 {
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 272, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-row2-list {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  /* Cache tout débordement */
}

/* ==========================================================================
     EN-TÊTE DU TABLEAU - Titres des colonnes et tri
     ========================================================================== */
/* line 285, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-row2-list-head {
  width: 97%;
  display: flex;
  padding-right: 8px;
  flex-direction: row;
  font-weight: bold;
  font-size: 0.75rem;
  /* Taille réduite */
  margin-bottom: 5px;
  color: #FFFFFF;
}

/* line 295, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-capsule.lightmode .contacts-board-row2-list-head {
  color: #140D23;
}

/* line 300, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-row2-list-head .contacts-board-row2-list-column {
  width: 20%;
  /* 5 colonnes égales */
  text-align: center;
  justify-content: center;
}

/* line 305, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-row2-list-head .contacts-board-row2-list-column:first-child {
  text-align: left;
  justify-content: flex-start;
  padding-left: 20px;
}

/* line 311, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-row2-list-head .contacts-board-row2-list-column.sortable {
  cursor: pointer;
  transition: background-color 0.2s ease;
}

/* line 315, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-row2-list-head .contacts-board-row2-list-column.sortable:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

/* line 318, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-capsule.lightmode .contacts-board-row2-list-head .contacts-board-row2-list-column.sortable:hover {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 323, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-row2-list-head .contacts-board-row2-list-column.sortable .sort-link {
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 100%;
  height: 100%;
}

/* line 333, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-capsule.lightmode .contacts-board-row2-list-head .contacts-board-row2-list-column.sortable .sort-link {
  color: #140D23;
}

/* line 337, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-row2-list-head .contacts-board-row2-list-column.sortable .sort-link i {
  font-size: 0.6rem !important;
}

/* line 340, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-capsule.lightmode .contacts-board-row2-list-head .contacts-board-row2-list-column.sortable .sort-link i {
  color: #140D23 !important;
}

/* line 346, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-row2-list-head .contacts-board-row2-list-column.sortable:first-child .sort-link {
  justify-content: flex-start;
}

/* Styles communs pour les colonnes */
/* line 353, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-row2-list-column {
  display: flex;
  align-items: center;
  font-size: 0.7rem;
  padding: 5px 10px;
}

/* ==========================================================================
     CORPS DU TABLEAU - Liste des contacts avec défilement
     ========================================================================== */
/* line 364, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-row2-list-entries {
  width: 100%;
  height: calc(100% - 30px);
  /* Hauteur calculée en fonction de l'en-tête réduit */
  display: flex;
  gap: 5px;
  /* Espace réduit entre les lignes */
  flex-direction: column;
  overflow-y: auto;
  /* Permet le scroll vertical uniquement dans cette section */
  /* Personnalisation de la barre de défilement */
}

/* line 372, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-row2-list-entries::-webkit-scrollbar {
  width: 8px;
  /* Largeur de la barre de défilement */
}

/* line 376, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-row2-list-entries::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  /* Couleur de l'arrière-plan de la barre */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 380, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-capsule.lightmode .contacts-board-row2-list-entries::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 385, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-row2-list-entries::-webkit-scrollbar-thumb {
  background: #C38761;
  /* Couleur de la barre de défilement */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 390, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-row2-list-entries::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
  /* Couleur de la barre au survol */
}

/* line 393, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-capsule.lightmode .contacts-board-row2-list-entries::-webkit-scrollbar-thumb:hover {
  background: #140D23;
}

/* Lignes du tableau des contacts */
/* line 400, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-row2-list-entry {
  width: 97%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  font-size: 0.7rem;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 2px;
  /* Ombre plus légère */
  cursor: pointer;
  transition: 0.3s ease-in-out;
  position: relative;
  border-radius: 6px;
  /* Réduit le rayon */
  overflow: hidden;
  min-height: 40px;
  /* Hauteur réduite */
  padding: 3px 0;
  /* Padding réduit */
  margin-bottom: 2px;
  /* Ajoute une petite marge en bas */
  color: #FFFFFF;
}

/* line 418, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-capsule.lightmode .contacts-board-row2-list-entry {
  color: #140D23;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 2px;
}

/* line 423, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-row2-list-entry:hover {
  transform: scale(1.01);
  transition: transform 0.3s ease;
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 428, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-capsule.lightmode .contacts-board-row2-list-entry:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 433, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-row2-list-entry .contacts-board-row2-list-column {
  width: 20%;
  /* 5 colonnes égales */
  text-align: center;
  justify-content: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  position: relative;
}

/* line 442, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-row2-list-entry .contacts-board-row2-list-column:first-child {
  text-align: left;
  justify-content: flex-start;
  padding-left: 20px;
}

/* line 449, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-row2-list-entry .contacts-board-row2-list-column .truncated-text {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  color: #FFFFFF;
  font-size: 0.7rem;
}

/* Message quand aucun contact n'est trouvé */
/* line 462, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.no-results {
  width: 100%;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-top: 10px;
}

/* line 472, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contacts-board-capsule.lightmode .no-results {
  color: #140D23;
  background-color: rgba(20, 13, 35, 0.05);
}

/* Classes utilitaires */
/* line 479, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.d-none {
  display: none !important;
}

/* Alignement spécifique pour la colonne des noms */
/* line 484, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.contact-name-column {
  text-align: start !important;
}

/* ==========================================================================
     MODAL DE CRÉATION DE CONTACT
     ========================================================================== */
/* line 493, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.leads-board-capsule .custom-modal-overlay .custom-modal {
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
  border: 1px solid rgba(255, 255, 255, 0.29);
  border-radius: 12px;
  overflow-y: auto;
  /* Personnalisation de la scrollbar */
}

/* line 500, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.leads-board-capsule .custom-modal-overlay .custom-modal::-webkit-scrollbar {
  width: 8px;
}

/* line 504, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.leads-board-capsule .custom-modal-overlay .custom-modal::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 509, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.leads-board-capsule .custom-modal-overlay .custom-modal::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 514, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.leads-board-capsule .custom-modal-overlay .custom-modal::-webkit-scrollbar-thumb:hover {
  background: #d1a386;
}

/* line 518, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.lightmode .leads-board-capsule .custom-modal-overlay .custom-modal {
  background: linear-gradient(151deg, rgba(255, 255, 255, 0.95) 25%, rgba(240, 242, 245, 0.95) 100%);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 522, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.lightmode .leads-board-capsule .custom-modal-overlay .custom-modal::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 526, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.lightmode .leads-board-capsule .custom-modal-overlay .custom-modal::-webkit-scrollbar-thumb {
  background: #C38761;
}

/* line 530, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.lightmode .leads-board-capsule .custom-modal-overlay .custom-modal::-webkit-scrollbar-thumb:hover {
  background: #af6c42;
}

/* line 536, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.leads-board-capsule .custom-modal-overlay .custom-modal-header {
  border-bottom-color: rgba(195, 135, 97, 0.3);
}

/* line 539, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.lightmode .leads-board-capsule .custom-modal-overlay .custom-modal-header {
  border-bottom-color: rgba(20, 13, 35, 0.2);
}

/* line 544, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.leads-board-capsule .custom-modal-overlay .custom-modal-title {
  color: #FFFFFF;
}

/* line 547, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.lightmode .leads-board-capsule .custom-modal-overlay .custom-modal-title {
  color: #140D23;
}

/* line 552, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.leads-board-capsule .custom-modal-overlay .custom-modal-close {
  color: #FFFFFF;
}

/* line 555, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.leads-board-capsule .custom-modal-overlay .custom-modal-close:hover {
  color: #C38761;
}

/* line 559, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.lightmode .leads-board-capsule .custom-modal-overlay .custom-modal-close {
  color: #140D23;
}

/* line 562, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.lightmode .leads-board-capsule .custom-modal-overlay .custom-modal-close:hover {
  color: black;
}

/* line 569, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.leads-board-capsule .custom-modal-overlay .custom-modal-body select.form-control {
  width: 85% !important;
  height: 38px !important;
  padding: 8px 12px !important;
  border-radius: 4px !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: white !important;
  font-size: 0.9rem !important;
}

/* line 579, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.leads-board-capsule .custom-modal-overlay .custom-modal-body select.form-control option {
  background-color: #140D23;
  color: white;
}

/* line 584, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.leads-board-capsule .custom-modal-overlay .custom-modal-body select.form-control optgroup {
  background-color: #090610;
  color: #C38761;
  font-weight: bold;
}

/* line 590, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.lightmode .leads-board-capsule .custom-modal-overlay .custom-modal-body select.form-control {
  border-color: rgba(20, 13, 35, 0.3) !important;
  background-color: rgba(20, 13, 35, 0.05) !important;
  color: #140D23 !important;
}

/* line 595, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.lightmode .leads-board-capsule .custom-modal-overlay .custom-modal-body select.form-control option {
  background-color: #FFFFFF;
  color: #140D23;
}

/* line 600, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.lightmode .leads-board-capsule .custom-modal-overlay .custom-modal-body select.form-control optgroup {
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 611, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.lightmode .leads-board-capsule .custom-modal-overlay .custom-modal-body .form-control, .lightmode .leads-board-capsule .custom-modal-overlay .custom-modal-body input[type="text"], .lightmode .leads-board-capsule .custom-modal-overlay .custom-modal-body input[type="email"], .lightmode .leads-board-capsule .custom-modal-overlay .custom-modal-body input[type="tel"] {
  border-color: rgba(20, 13, 35, 0.3) !important;
  background-color: rgba(20, 13, 35, 0.05) !important;
  color: #140D23 !important;
}

/* line 616, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.lightmode .leads-board-capsule .custom-modal-overlay .custom-modal-body .form-control::placeholder, .lightmode .leads-board-capsule .custom-modal-overlay .custom-modal-body input[type="text"]::placeholder, .lightmode .leads-board-capsule .custom-modal-overlay .custom-modal-body input[type="email"]::placeholder, .lightmode .leads-board-capsule .custom-modal-overlay .custom-modal-body input[type="tel"]::placeholder {
  color: rgba(20, 13, 35, 0.5);
}

/* line 623, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.lightmode .leads-board-capsule .custom-modal-overlay .custom-modal-body .modal-label {
  color: #140D23 !important;
}

/* line 631, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.lightmode .leads-board-capsule .custom-modal-overlay .custom-modal-footer .form-button, .lightmode .leads-board-capsule .custom-modal-overlay .custom-modal-footer .users-management-container .users-header .add-user-btn, .users-management-container .users-header .lightmode .leads-board-capsule .custom-modal-overlay .custom-modal-footer .add-user-btn, .lightmode .leads-board-capsule .custom-modal-overlay .custom-modal-footer .crm-action-button {
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 635, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_contacts_board.scss */
.lightmode .leads-board-capsule .custom-modal-overlay .custom-modal-footer .form-button:hover, .lightmode .leads-board-capsule .custom-modal-overlay .custom-modal-footer .users-management-container .users-header .add-user-btn:hover, .users-management-container .users-header .lightmode .leads-board-capsule .custom-modal-overlay .custom-modal-footer .add-user-btn:hover, .lightmode .leads-board-capsule .custom-modal-overlay .custom-modal-footer .crm-action-button:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* ==========================================================================
   CONTACT SHOW - MODERN BENTO DESIGN
   Design inspiré des meilleures pratiques UX (Notion, Linear, Apple)
   ========================================================================== */
/* line 22, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-show-capsule {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: white;
  font-size: 0.875rem;
  min-height: calc(100vh - 120px);
}

/* line 34, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode {
  color: #140D23;
}

@media (max-width: 768px) {
  /* line 22, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
  .contact-show-capsule {
    padding: 16px;
    gap: 16px;
  }
}

/* line 48, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.profile-header, .account-page-profile-header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

/* line 61, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.profile-header::before, .account-page-profile-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* line 71, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .profile-header, .contact-show-capsule.lightmode .account-page-profile-header {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.04) 0%, rgba(20, 13, 35, 0.02) 100%);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 75, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .profile-header::before, .contact-show-capsule.lightmode .account-page-profile-header::before {
  background: linear-gradient(90deg, transparent, rgba(20, 13, 35, 0.1), transparent);
}

@media (max-width: 768px) {
  /* line 48, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
  .profile-header, .account-page-profile-header {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 16px;
  }
}

/* line 89, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.profile-header__photo {
  position: relative;
  flex-shrink: 0;
}

/* line 94, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.profile-header__image {
  width: 100px;
  height: 100px;
  border-radius: 16px;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 103, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.profile-header__image:hover {
  transform: scale(1.02);
  border-color: #C38761;
}

/* line 108, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .profile-header__image {
  border-color: rgba(20, 13, 35, 0.15);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* line 114, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.profile-header__placeholder {
  width: 100px;
  height: 100px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.3) 0%, rgba(195, 135, 97, 0.15) 100%);
  border: 3px solid rgba(195, 135, 97, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* line 125, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .profile-header__placeholder {
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.2) 0%, rgba(195, 135, 97, 0.1) 100%);
}

/* line 130, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.profile-header__initials {
  font-size: 2rem;
  font-weight: 700;
  color: #C38761;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* line 138, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.profile-header__photo-btn {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #C38761;
  border: 2px solid white;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* line 156, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.profile-header__photo-btn:hover {
  transform: scale(1.1);
  background: #b67145;
}

/* line 163, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.profile-header__info {
  flex: 1;
  min-width: 0;
}

/* line 168, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.profile-header__name {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 4px 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

/* line 175, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .profile-header__name {
  color: #140D23;
}

/* line 180, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.profile-header__role {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* line 189, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .profile-header__role {
  color: rgba(20, 13, 35, 0.7);
}

@media (max-width: 768px) {
  /* line 180, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
  .profile-header__role {
    justify-content: center;
  }
}

/* line 198, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.profile-header__company {
  font-weight: 600;
  color: #C38761;
}

/* line 203, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.profile-header__separator {
  color: rgba(255, 255, 255, 0.3);
}

/* line 206, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .profile-header__separator {
  color: rgba(20, 13, 35, 0.3);
}

/* line 211, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.profile-header__job {
  font-weight: 500;
}

/* line 216, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.profile-header__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  /* line 216, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
  .profile-header__actions {
    justify-content: center;
  }
}

/* line 226, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.action-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: 0.2s ease;
  white-space: nowrap;
}

/* line 240, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.action-pill i {
  font-size: 0.9rem;
}

/* line 244, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.action-pill--email {
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.25) 0%, rgba(52, 152, 219, 0.15) 100%);
  color: #3498db;
  border: 1px solid rgba(52, 152, 219, 0.3);
}

/* line 249, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.action-pill--email:hover {
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.35) 0%, rgba(52, 152, 219, 0.25) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.25);
}

/* line 256, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.action-pill--phone {
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.25) 0%, rgba(46, 204, 113, 0.15) 100%);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.3);
}

/* line 261, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.action-pill--phone:hover {
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.35) 0%, rgba(46, 204, 113, 0.25) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 204, 113, 0.25);
}

/* line 268, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.action-pill--linkedin {
  background: linear-gradient(135deg, rgba(0, 119, 181, 0.25) 0%, rgba(0, 119, 181, 0.15) 100%);
  color: #0077b5;
  border: 1px solid rgba(0, 119, 181, 0.3);
}

/* line 273, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.action-pill--linkedin:hover {
  background: linear-gradient(135deg, rgba(0, 119, 181, 0.35) 0%, rgba(0, 119, 181, 0.25) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 119, 181, 0.25);
}

/* line 280, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.action-pill--muted {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  border: 1px dashed rgba(255, 255, 255, 0.2);
}

/* line 285, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .action-pill--muted {
  background: rgba(20, 13, 35, 0.05);
  color: rgba(20, 13, 35, 0.5);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 291, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.action-pill--muted:hover {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  border-style: solid;
}

/* line 296, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .action-pill--muted:hover {
  background: rgba(20, 13, 35, 0.08);
  color: rgba(20, 13, 35, 0.8);
}

/* line 308, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  /* line 308, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
  .bento-grid {
    grid-template-columns: 1fr;
  }
}

/* line 322, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.bento-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

/* line 331, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .bento-card {
  background: rgba(20, 13, 35, 0.04);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 336, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.bento-card:hover {
  border-color: rgba(195, 135, 97, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* line 340, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .bento-card:hover {
  border-color: rgba(195, 135, 97, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* line 347, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.bento-card--organizations {
  grid-column: span 2;
}

@media (max-width: 900px) {
  /* line 347, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
  .bento-card--organizations {
    grid-column: span 1;
  }
}

/* line 355, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.bento-card--linkedin {
  grid-row: span 2;
}

@media (max-width: 900px) {
  /* line 355, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
  .bento-card--linkedin {
    grid-row: span 1;
  }
}

/* line 364, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.bento-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* line 372, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .bento-card__header {
  background: rgba(20, 13, 35, 0.03);
  border-bottom-color: rgba(20, 13, 35, 0.06);
}

/* line 378, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.bento-card__title {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 383, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.bento-card__title i {
  font-size: 1rem;
  color: #C38761;
}

/* line 388, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.bento-card__title h2, .bento-card__title .h2 {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 397, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.bento-card__count {
  background: rgba(195, 135, 97, 0.2);
  color: #C38761;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 700;
}

/* line 406, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.bento-card__add {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #C38761 0%, #af6c42 100%);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: 0.2s ease;
  box-shadow: 0 2px 8px rgba(195, 135, 97, 0.3);
}

/* line 421, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.bento-card__add:hover {
  transform: scale(1.1) rotate(90deg);
}

/* line 425, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.bento-card__add:active {
  transform: scale(0.95);
}

/* line 430, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.bento-card__content {
  padding: 16px 20px;
  flex: 1;
  overflow-y: auto;
  max-height: 350px;
}

/* line 437, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.bento-card__content::-webkit-scrollbar {
  width: 6px;
}

/* line 441, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.bento-card__content::-webkit-scrollbar-track {
  background: transparent;
}

/* line 445, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.bento-card__content::-webkit-scrollbar-thumb {
  background: rgba(195, 135, 97, 0.4);
  border-radius: 3px;
}

/* line 449, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.bento-card__content::-webkit-scrollbar-thumb:hover {
  background: rgba(195, 135, 97, 0.6);
}

/* line 459, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.org-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* line 465, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.org-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  flex: 1;
  min-width: 280px;
  transition: 0.2s ease;
}

/* line 477, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .org-item {
  background: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.08);
}

/* line 482, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.org-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(195, 135, 97, 0.3);
}

/* line 486, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .org-item:hover {
  background: rgba(20, 13, 35, 0.06);
}

/* line 490, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.org-item:hover .org-item__actions {
  opacity: 1;
}

/* line 496, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.org-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.2) 0%, rgba(195, 135, 97, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* line 506, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.org-item__icon i {
  color: #C38761;
  font-size: 1rem;
}

/* line 512, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.org-item__info {
  flex: 1;
  min-width: 0;
}

/* line 517, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.org-item__name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 526, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.org-item__meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

/* line 532, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.org-item__tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
}

/* line 540, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.org-item__tag--job {
  background: rgba(195, 135, 97, 0.15);
  color: #C38761;
  border: 1px solid rgba(195, 135, 97, 0.25);
}

/* line 546, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.org-item__tag--role {
  background: rgba(52, 152, 219, 0.15);
  color: #3498db;
  border: 1px solid rgba(52, 152, 219, 0.25);
}

/* line 553, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.org-item__actions {
  display: flex;
  gap: 4px;
  opacity: 0.5;
  transition: 0.2s ease;
}

/* line 564, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.crm-linkedin-sections {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 570, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.crm-linkedin-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  overflow: hidden;
}

/* line 576, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .crm-linkedin-section {
  background: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.06);
}

/* line 582, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.crm-linkedin-section__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* line 595, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .crm-linkedin-section__header {
  color: rgba(20, 13, 35, 0.7);
  background: rgba(20, 13, 35, 0.02);
  border-bottom-color: rgba(20, 13, 35, 0.04);
}

/* line 601, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.crm-linkedin-section__header i {
  font-size: 0.8rem;
  color: #C38761;
}

/* line 607, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.crm-linkedin-section__content {
  padding: 12px 14px;
}

/* line 611, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.crm-linkedin-section__placeholder {
  text-align: center;
}

/* line 614, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.crm-linkedin-section__placeholder p {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

/* line 620, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .crm-linkedin-section__placeholder p {
  color: rgba(20, 13, 35, 0.4);
}

/* line 630, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 636, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-field {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  transition: 0.2s ease;
}

/* line 646, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .contact-field {
  background: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.06);
}

/* line 651, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-field:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* line 654, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .contact-field:hover {
  background: rgba(20, 13, 35, 0.04);
}

/* line 660, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-field__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.15) 0%, rgba(195, 135, 97, 0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* line 670, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-field__icon i {
  color: #C38761;
  font-size: 0.9rem;
}

/* line 676, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-field__content {
  flex: 1;
  min-width: 0;
}

/* line 681, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-field__label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2px;
}

/* line 689, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .contact-field__label {
  color: rgba(20, 13, 35, 0.5);
}

/* line 694, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-field__value {
  font-size: 0.9rem;
  font-weight: 500;
}

/* line 698, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-field__value--link {
  color: #C38761;
  text-decoration: none;
  transition: 0.2s ease;
}

/* line 703, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-field__value--link:hover {
  text-decoration: underline;
}

/* line 708, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-field__value--empty {
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

/* line 712, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .contact-field__value--empty {
  color: rgba(20, 13, 35, 0.4);
}

/* line 722, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.comments-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 728, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.comment-item {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  border-left: 3px solid #C38761;
}

/* line 735, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .comment-item {
  background: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.06);
  border-left-color: #C38761;
}

/* line 742, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.comment-item__content {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 8px;
  word-break: break-word;
}

/* line 749, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.comment-item__date {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* line 756, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .comment-item__date {
  color: rgba(20, 13, 35, 0.4);
}

/* line 760, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.comment-item__date i {
  font-size: 0.65rem;
}

/* line 769, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.appointments-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 775, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.appointment-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  transition: 0.2s ease;
}

/* line 785, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .appointment-item {
  background: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.06);
}

/* line 790, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.appointment-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* line 793, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .appointment-item:hover {
  background: rgba(20, 13, 35, 0.04);
}

/* line 799, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.appointment-item__date {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.2) 0%, rgba(195, 135, 97, 0.1) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* line 811, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.appointment-item__day {
  font-size: 1.1rem;
  font-weight: 700;
  color: #C38761;
  line-height: 1;
}

/* line 818, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.appointment-item__month {
  font-size: 0.6rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
}

/* line 824, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .appointment-item__month {
  color: rgba(20, 13, 35, 0.6);
}

/* line 829, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.appointment-item__info {
  flex: 1;
  min-width: 0;
}

/* line 834, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.appointment-item__title {
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 843, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.appointment-item__meta {
  display: flex;
  gap: 12px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* line 849, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .appointment-item__meta {
  color: rgba(20, 13, 35, 0.5);
}

/* line 853, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.appointment-item__meta i {
  margin-right: 4px;
  font-size: 0.7rem;
}

/* line 859, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.appointment-item__status {
  flex-shrink: 0;
}

/* line 864, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 874, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.status-badge--a_venir {
  background: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.3);
}

/* line 880, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.status-badge--termine {
  background: rgba(52, 152, 219, 0.2);
  color: #3498db;
  border: 1px solid rgba(52, 152, 219, 0.3);
}

/* line 886, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.status-badge--abandonne {
  background: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.3);
}

/* line 897, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.crm-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

/* line 905, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.crm-empty-state--compact {
  padding: 24px 16px;
}

/* line 910, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.empty-state__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

/* line 921, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .empty-state__icon {
  background: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 926, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.empty-state__icon--linkedin {
  background: rgba(0, 119, 181, 0.1);
  border-color: rgba(0, 119, 181, 0.2);
}

/* line 931, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.empty-state__icon i {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.3);
}

/* line 935, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .empty-state__icon i {
  color: rgba(20, 13, 35, 0.3);
}

/* line 941, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.empty-state__text {
  margin: 0 0 16px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* line 946, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .empty-state__text {
  color: rgba(20, 13, 35, 0.5);
}

/* line 951, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.empty-state__action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.2) 0%, rgba(195, 135, 97, 0.1) 100%);
  border: 1px solid rgba(195, 135, 97, 0.3);
  color: #C38761;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

/* line 965, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.empty-state__action:hover {
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.3) 0%, rgba(195, 135, 97, 0.2) 100%);
  transform: translateY(-1px);
}

/* line 970, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.empty-state__action i {
  font-size: 0.7rem;
}

/* line 979, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.icon-btn {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  transition: 0.2s ease;
  text-decoration: none;
}

/* line 994, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .icon-btn {
  background: rgba(20, 13, 35, 0.06);
  border-color: rgba(20, 13, 35, 0.12);
  color: rgba(20, 13, 35, 0.7);
}

/* line 1000, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.icon-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

/* line 1004, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .icon-btn:hover {
  background: rgba(20, 13, 35, 0.12);
  color: #140D23;
}

/* line 1010, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.icon-btn--edit:hover {
  color: #C38761;
  border-color: rgba(195, 135, 97, 0.3);
}

/* line 1016, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.icon-btn--delete:hover {
  background: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
  border-color: rgba(231, 76, 60, 0.3);
}

/* line 1028, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.see-more-btn {
  width: 100%;
  margin-top: 12px;
  padding: 10px;
  background: transparent;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  font-size: 0.75rem;
  cursor: pointer;
  transition: 0.2s ease;
}

/* line 1040, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .see-more-btn {
  border-color: rgba(20, 13, 35, 0.15);
  color: rgba(20, 13, 35, 0.6);
}

/* line 1045, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.see-more-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(195, 135, 97, 0.3);
  color: #C38761;
}

/* line 1050, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .see-more-btn:hover {
  background: rgba(20, 13, 35, 0.03);
}

/* line 1060, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.page-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
}

/* line 1068, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .page-actions {
  border-top-color: rgba(20, 13, 35, 0.08);
}

@media (max-width: 480px) {
  /* line 1060, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
  .page-actions {
    flex-direction: column;
  }
  /* line 1075, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
  .page-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* line 1082, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.inline-form {
  display: inline;
}

/* line 1090, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
  border: none;
  text-decoration: none;
}

/* line 1103, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.btn i {
  font-size: 0.8rem;
}

/* line 1107, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.btn--primary {
  background: linear-gradient(135deg, #C38761 0%, #af6c42 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(195, 135, 97, 0.3);
}

/* line 1112, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(195, 135, 97, 0.4);
}

/* line 1118, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* line 1123, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .btn--secondary {
  background: rgba(20, 13, 35, 0.06);
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 1129, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* line 1132, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .btn--secondary:hover {
  background: rgba(20, 13, 35, 0.1);
}

/* line 1138, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.btn--success {
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  color: white;
}

/* line 1142, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.btn--success:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

/* line 1148, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.btn--danger {
  background: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.25);
}

/* line 1153, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.btn--danger:hover {
  background: rgba(231, 76, 60, 0.25);
}

/* line 1158, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.btn--small {
  padding: 6px 12px;
  font-size: 0.75rem;
}

/* line 1168, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 20px;
}

/* line 1182, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.modal-overlay.active {
  display: flex;
  animation: fadeIn 0.2s ease;
}

/* line 1188, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.modal-overlay .modal-content {
  background: linear-gradient(180deg, rgba(50, 50, 55, 0.98) 0%, rgba(40, 40, 45, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  opacity: 0;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 1202, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.modal-overlay.active .modal-content {
  transform: translateY(0);
  opacity: 1;
}

/* line 1207, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 1215, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.modal-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
}

/* line 1222, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.modal-close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}

/* line 1236, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.modal-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

/* line 1242, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.modal-body {
  padding: 24px;
}

/* line 1250, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.form-field {
  margin-bottom: 20px;
}

/* line 1253, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.form-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 1264, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.form-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: white;
  font-size: 0.9rem;
  transition: 0.2s ease;
  box-sizing: border-box;
}

/* line 1275, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.form-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

/* line 1279, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.form-input:focus {
  outline: none;
  border-color: #C38761;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.15);
}

/* line 1286, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.form-input--textarea {
  min-height: 100px;
  resize: vertical;
}

/* line 1291, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.form-input--file {
  padding: 10px;
}

/* line 1296, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.form-hint {
  display: block;
  margin-top: 6px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
}

/* line 1303, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.form-error {
  margin-top: 8px;
  padding: 10px 12px;
  background: rgba(231, 76, 60, 0.15);
  border: 1px solid rgba(231, 76, 60, 0.25);
  border-radius: 8px;
  color: #e74c3c;
  font-size: 0.8rem;
}

/* line 1313, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 1322, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.photo-preview {
  margin-top: 12px;
  border-radius: 10px;
  overflow: hidden;
}

/* line 1327, app/assets/stylesheets/pages/servicespace/commerce/crm/contacts_management/_show_contact.scss */
.photo-preview img {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.05);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ==========================================================================
   QUOTES BOARD - MODULE CRM
   Structure principale et composants pour la gestion des devis
   ========================================================================== */
/* ==========================================================================
   LAYOUT PRINCIPAL - Structure générale du module
   ========================================================================== */
/* line 10, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-capsule {
  width: 100%;
  height: 98%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-right: 15px;
  font-size: 1rem;
  gap: 10px;
  overflow: hidden;
}

/* line 22, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-capsule.lightmode {
  color: #140D23;
}

/* line 26, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-capsule.nightmode {
  color: #FFFFFF;
}

/* line 31, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 37, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-capsule span {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* Variations de thème clair/sombre */
/* line 44, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-capsule.lightmode span {
  color: #C38761;
}

/* line 48, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-capsule.nightmode span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 52, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-capsule.lightmode p {
  color: #140D23;
}

/* line 56, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-capsule.nightmode p {
  color: #FFFFFF;
}

/* line 60, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-capsule.lightmode i {
  color: #140D23;
}

/* line 64, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-capsule.nightmode i {
  color: #FFFFFF;
}

/* ==========================================================================
   BARRE SUPÉRIEURE - Recherche et bouton création
   ========================================================================== */
/* line 72, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-row1 {
  width: 100%;
  height: 50px;
  /* Hauteur réduite */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  flex-shrink: 0;
  /* Empêche la compression */
  margin-bottom: 5px;
  /* Ajoute un peu d'espace en bas */
}

/* line 83, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-row1 form {
  width: 100%;
  display: flex;
}

/* ==========================================================================
   BARRE DE RECHERCHE - Composants et fonctionnalités
   ========================================================================== */
/* line 93, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-row1-searchbar {
  width: 100%;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-content: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 108, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-capsule.lightmode .quotes-board-row1-searchbar {
  border-color: rgba(20, 13, 35, 0.5);
  color: #140D23;
}

/* line 113, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-row1-searchbar .crm-search-form {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 120, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-row1-searchbar .crm-search-input-wrapper {
  position: relative;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

/* line 127, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-row1-searchbar .crm-search-input {
  width: 100%;
  background: transparent;
  border: none;
  color: #FFFFFF;
  outline: none;
  padding-right: 25px;
  /* Espace pour l'icône de suppression */
}

/* line 135, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-capsule.lightmode .quotes-board-row1-searchbar .crm-search-input {
  color: #140D23;
}

/* line 138, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-capsule.lightmode .quotes-board-row1-searchbar .crm-search-input::placeholder {
  color: rgba(20, 13, 35, 0.6);
}

/* line 144, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-row1-searchbar .crm-clear-search-button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 0.6rem;
  text-decoration: none;
}

/* line 159, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-capsule.lightmode .quotes-board-row1-searchbar .crm-clear-search-button {
  color: #140D23;
}

/* line 163, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-row1-searchbar .crm-clear-search-button:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* line 166, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-capsule.lightmode .quotes-board-row1-searchbar .crm-clear-search-button:hover {
  color: rgba(20, 13, 35, 0.7);
}

/* line 172, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-row1-searchbar button {
  all: unset;
  cursor: pointer;
}

/* line 177, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-row1-searchbar .crm-search-button {
  padding: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 185, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-row1-searchbar i {
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 190, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-capsule.lightmode .quotes-board-row1-searchbar i {
  color: #140D23 !important;
}

/* line 195, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-row1-searchbar span {
  font-weight: normal !important;
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 201, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-capsule.lightmode .quotes-board-row1-searchbar span {
  color: #140D23 !important;
}

/* Bannière d'information sur la recherche en cours */
/* line 208, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.crm-search-info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: #FFFFFF;
  margin-bottom: -10px;
  z-index: 5;
}

/* line 218, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-capsule.lightmode .crm-search-info {
  color: #140D23;
}

/* line 222, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.crm-search-info span {
  opacity: 0.8;
}

/* line 226, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.crm-search-info .crm-reset-search-link {
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s ease;
}

/* line 237, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-capsule.lightmode .crm-search-info .crm-reset-search-link {
  color: #140D23;
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 242, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.crm-search-info .crm-reset-search-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 245, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-capsule.lightmode .crm-search-info .crm-reset-search-link:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* ==========================================================================
   CONTENEUR PRINCIPAL DES DONNÉES - Structure du tableau des devis
   ========================================================================== */
/* line 256, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-row2 {
  width: 100%;
  flex: 1;
  /* Prend le reste de l'espace disponible */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  /* Aligne au sommet au lieu du centre */
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  /* Réduit le rayon pour gagner de l'espace */
  padding: 15px;
  /* Réduit le padding */
  overflow: hidden;
  /* Empêche le scroll sur ce conteneur */
  margin-top: 5px;
  /* Espace additionnel depuis le haut */
}

/* line 270, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-capsule.lightmode .quotes-board-row2 {
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 275, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-row2-list {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  /* Cache tout débordement */
}

/* ==========================================================================
   EN-TÊTE DU TABLEAU - Titres des colonnes et tri
   ========================================================================== */
/* line 288, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-row2-list-head {
  width: 97%;
  display: flex;
  padding-right: 8px;
  flex-direction: row;
  font-weight: bold;
  font-size: 0.75rem;
  /* Taille réduite */
  margin-bottom: 5px;
  color: #FFFFFF;
}

/* line 298, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-capsule.lightmode .quotes-board-row2-list-head {
  color: #140D23;
}

/* line 303, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-row2-list-head .quotes-board-row2-list-column {
  width: 18%;
  /* Colonnes standards - redistribution de l'espace */
  text-align: center;
  justify-content: center;
}

/* line 308, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-row2-list-head .quotes-board-row2-list-column:first-child {
  width: 8%;
  /* Colonne Num */
  text-align: left;
  justify-content: flex-start;
  padding-left: 20px;
}

/* line 315, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-row2-list-head .quotes-board-row2-list-column:nth-child(3) {
  width: 10%;
  /* Colonne Type */
}

/* line 319, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-row2-list-head .quotes-board-row2-list-column:nth-child(4) {
  width: 22%;
  /* Colonne Client/Prospect */
}

/* line 323, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-row2-list-head .quotes-board-row2-list-column:nth-child(5) {
  width: 12%;
  /* Colonne Statut */
}

/* line 327, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-row2-list-head .quotes-board-row2-list-column:nth-child(6) {
  width: 12%;
  /* Colonne Date */
}

/* line 331, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-row2-list-head .quotes-board-row2-list-column.sortable {
  cursor: pointer;
  transition: background-color 0.2s ease;
}

/* line 335, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-row2-list-head .quotes-board-row2-list-column.sortable:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

/* line 338, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-capsule.lightmode .quotes-board-row2-list-head .quotes-board-row2-list-column.sortable:hover {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 343, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-row2-list-head .quotes-board-row2-list-column.sortable .sort-link {
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 100%;
  height: 100%;
}

/* line 353, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-capsule.lightmode .quotes-board-row2-list-head .quotes-board-row2-list-column.sortable .sort-link {
  color: #140D23;
}

/* line 357, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-row2-list-head .quotes-board-row2-list-column.sortable .sort-link i {
  font-size: 0.6rem !important;
}

/* line 360, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-capsule.lightmode .quotes-board-row2-list-head .quotes-board-row2-list-column.sortable .sort-link i {
  color: #140D23 !important;
}

/* line 366, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-row2-list-head .quotes-board-row2-list-column.sortable:first-child .sort-link {
  justify-content: flex-start;
}

/* Styles communs pour les colonnes */
/* line 373, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-row2-list-column {
  display: flex;
  align-items: center;
  font-size: 0.7rem;
  padding: 5px 10px;
  overflow: hidden;
  /* Cache le débordement du texte */
  white-space: nowrap;
  /* Empêche le retour à la ligne */
  text-overflow: ellipsis;
  /* Ajoute des ellipses (...) quand le texte est tronqué */
}

/* ==========================================================================
   CORPS DU TABLEAU - Liste des devis avec défilement
   ========================================================================== */
/* line 387, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-row2-list-entries {
  width: 100%;
  height: calc( 100% - 30px);
  /* Hauteur calculée en fonction de l'en-tête réduit */
  display: flex;
  gap: 5px;
  /* Espace réduit entre les lignes */
  flex-direction: column;
  overflow-y: auto;
  /* Permet le scroll vertical uniquement dans cette section */
  /* Personnalisation de la barre de défilement */
}

/* line 397, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-row2-list-entries::-webkit-scrollbar {
  width: 8px;
  /* Largeur de la barre de défilement */
}

/* line 401, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-row2-list-entries::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  /* Couleur de l'arrière-plan de la barre */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 410, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-capsule.lightmode .quotes-board-row2-list-entries::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 415, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-row2-list-entries::-webkit-scrollbar-thumb {
  background: #C38761;
  /* Couleur de la barre de défilement */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 420, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-row2-list-entries::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
  /* Couleur de la barre au survol */
}

/* line 423, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-capsule.lightmode .quotes-board-row2-list-entries::-webkit-scrollbar-thumb:hover {
  background: #140D23;
}

/* Lignes du tableau des devis */
/* line 430, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-row2-list-entry {
  width: 97%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  font-size: 0.7rem;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 2px;
  /* Ombre plus légère */
  cursor: pointer;
  transition: 0.3s ease-in-out;
  position: relative;
  border-radius: 6px;
  /* Réduit le rayon */
  overflow: hidden;
  min-height: 40px;
  /* Hauteur réduite */
  padding: 3px 0;
  /* Padding réduit */
  margin-bottom: 2px;
  /* Ajoute une petite marge en bas */
  color: #FFFFFF;
}

/* line 448, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-capsule.lightmode .quotes-board-row2-list-entry {
  color: #140D23;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 2px;
}

/* line 453, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-row2-list-entry:hover {
  transform: scale(1.01);
  transition: transform 0.3s ease;
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 458, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-capsule.lightmode .quotes-board-row2-list-entry:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 463, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-row2-list-entry .quotes-board-row2-list-column {
  width: 18%;
  /* Colonnes standards - redistribution de l'espace */
  text-align: center;
  justify-content: center;
  min-width: 0;
  /* Permet la troncature dans les flexbox */
  /* Styles spécifiques pour la troncature des textes */
}

/* line 469, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-row2-list-entry .quotes-board-row2-list-column:first-child {
  width: 8%;
  /* Colonne Num */
  text-align: left;
  justify-content: flex-start;
  padding-left: 20px;
}

/* line 476, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-row2-list-entry .quotes-board-row2-list-column:nth-child(3) {
  width: 10%;
  /* Colonne Type */
}

/* line 480, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-row2-list-entry .quotes-board-row2-list-column:nth-child(5) {
  width: 12%;
  /* Colonne Statut */
}

/* line 484, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-row2-list-entry .quotes-board-row2-list-column:nth-child(6) {
  width: 12%;
  /* Colonne Date */
}

/* line 489, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-row2-list-entry .quotes-board-row2-list-column:nth-child(4) {
  /* Colonne Client/Prospect - celle qui contient souvent des textes longs */
  width: 22%;
  overflow: hidden;
  white-space: nowrap;
  text-align: left;
  /* Aligne le texte à gauche pour montrer le début */
  justify-content: flex-start;
  /* Aligne le contenu à gauche dans le flexbox */
  text-overflow: ellipsis;
  /* Ajoute des ellipses à la fin du texte tronqué */
  /* Affichage du texte complet au survol */
}

/* line 499, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-row2-list-entry .quotes-board-row2-list-column:nth-child(4):hover {
  position: relative;
  z-index: 10;
}

/* line 503, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-row2-list-entry .quotes-board-row2-list-column:nth-child(4):hover::after {
  content: attr(title);
  position: absolute;
  bottom: calc(100% + 10px);
  /* Ajoute un peu d'espace */
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.95);
  color: white;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.7rem;
  white-space: nowrap;
  /* Une seule ligne pour le tooltip */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  pointer-events: none;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  /* Flèche vers le bas */
}

/* line 523, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-row2-list-entry .quotes-board-row2-list-column:nth-child(4):hover::after::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid rgba(0, 0, 0, 0.95);
}

/* line 534, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-capsule.lightmode .quotes-board-row2-list-entry .quotes-board-row2-list-column:nth-child(4):hover::after {
  background-color: rgba(44, 62, 80, 0.95);
  color: white;
}

/* line 538, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-capsule.lightmode .quotes-board-row2-list-entry .quotes-board-row2-list-column:nth-child(4):hover::after::before {
  border-top-color: rgba(44, 62, 80, 0.95);
}

/* ==========================================================================
   BADGES DE TYPE - Styles pour différencier prospect et client
   ========================================================================== */
/* line 552, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.owner-type-badge {
  padding: 4px 8px !important;
  border-radius: 8px !important;
  font-size: 0.65rem;
  font-weight: 500;
  display: inline-block;
  min-width: 70px;
  text-align: center;
  transition: all 0.2s ease-in-out;
}

/* line 562, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-capsule.lightmode .owner-type-badge {
  padding: 4px 10px !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* line 566, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-capsule.lightmode .owner-type-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* line 572, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.owner-type-badge.prospect {
  background-color: rgba(241, 196, 15, 0.2);
  color: #f1c40f;
}

/* line 576, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-capsule.lightmode .owner-type-badge.prospect {
  background-color: rgba(241, 196, 15, 0.4);
  color: #b7950b;
  font-weight: 600;
  border: 1px solid rgba(241, 196, 15, 0.2);
}

/* line 584, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.owner-type-badge.customer {
  background-color: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
}

/* line 588, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-capsule.lightmode .owner-type-badge.customer {
  background-color: rgba(46, 204, 113, 0.4);
  color: #1e8449;
  font-weight: 600;
  border: 1px solid rgba(46, 204, 113, 0.2);
}

/* ==========================================================================
   BADGES DE STATUT - Styles pour les différents types de statuts de devis
   ========================================================================== */
/* line 601, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.status-badge {
  padding: 4px 8px !important;
  border-radius: 8px !important;
  font-size: 0.65rem;
  font-weight: 500;
  display: inline-block;
  min-width: 70px;
  text-align: center;
  transition: all 0.2s ease-in-out;
}

/* line 611, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-capsule.lightmode .status-badge {
  padding: 4px 10px !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* line 615, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-capsule.lightmode .status-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* line 621, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.status-badge.draft {
  background-color: rgba(241, 196, 15, 0.2);
  color: #f1c40f;
}

/* line 625, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-capsule.lightmode .status-badge.draft {
  background-color: rgba(241, 196, 15, 0.4);
  color: #b7950b;
  font-weight: 600;
  border: 1px solid rgba(241, 196, 15, 0.2);
}

/* line 633, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.status-badge.sent {
  background-color: rgba(52, 152, 219, 0.2);
  color: #3498db;
}

/* line 637, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-capsule.lightmode .status-badge.sent {
  background-color: rgba(52, 152, 219, 0.4);
  color: #1a5276;
  font-weight: 600;
  border: 1px solid rgba(52, 152, 219, 0.2);
}

/* line 645, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.status-badge.validated {
  background-color: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
}

/* line 649, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-capsule.lightmode .status-badge.validated {
  background-color: rgba(46, 204, 113, 0.4);
  color: #1e8449;
  font-weight: 600;
  border: 1px solid rgba(46, 204, 113, 0.2);
}

/* line 657, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.status-badge.rejected {
  background-color: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
}

/* line 661, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-capsule.lightmode .status-badge.rejected {
  background-color: rgba(231, 76, 60, 0.4);
  color: #a93226;
  font-weight: 600;
  border: 1px solid rgba(231, 76, 60, 0.2);
}

/* Message quand aucun devis n'est trouvé */
/* line 671, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.no-results {
  width: 100%;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-top: 10px;
}

/* line 681, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.quotes-board-capsule.lightmode .no-results {
  color: #140D23;
  background-color: rgba(20, 13, 35, 0.05);
}

/* ==========================================================================
   BOUTON DE CRÉATION - Style du bouton pour créer un nouveau devis
   ========================================================================== */
/* line 691, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.form-button, .users-management-container .users-header .add-user-btn, .crm-action-button {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  border: none;
  cursor: pointer;
  background-color: #C38761;
  color: #FFFFFF;
}

/* line 706, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.form-button:hover, .users-management-container .users-header .add-user-btn:hover, .crm-action-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Classes utilitaires */
/* line 713, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quotes_board.scss */
.d-none {
  display: none !important;
}

/* ==========================================================================
   STYLES POUR LA CRÉATION DE DEVIS - MODULE CRM
   Réutilise le style du module ADV
   ========================================================================== */
/* Import du style principal du module ADV */
/* line 1, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-capsule {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 10px 20px 10px 20px;
  font-size: 0.8rem;
  gap: 10px;
}

/* line 12, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-capsule.lightmode {
  color: #140D23;
}

/* line 14, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-capsule.lightmode .discount-input {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 18, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-capsule.lightmode .price-input {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 22, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-capsule.lightmode .price-ttc-container {
  color: #140D23;
}

/* line 25, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-capsule.lightmode .new-quote-transaction-choice {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 29, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-capsule.lightmode .search-input {
  border-color: transparent !important;
}

/* line 31, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-capsule.lightmode .search-input:focus {
  border-color: transparent !important;
  box-shadow: none !important;
}

/* line 36, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-capsule.lightmode .recipient-choice {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 40, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-capsule.lightmode #publicMarket {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 44, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-capsule.lightmode #privateMarket {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 50, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-capsule .form-group {
  margin: 0;
}

/* line 54, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-capsule form {
  display: flex !important;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  align-items: center;
  height: 100%;
}

/* Nouvelle Card de Configuration */
/* line 65, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-configuration-card {
  width: 100%;
  max-width: 1400px;
  /* Augmentation de la largeur maximale */
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

/* line 77, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-configuration-card {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.08) 0%, rgba(20, 13, 35, 0.03) 100%);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 83, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-config-header {
  text-align: center;
  margin-bottom: 30px;
}

/* line 87, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-config-header h2, .adv-quote-config-header .h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

/* line 93, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-config-header h2, .lightmode .adv-quote-config-header .h2 {
  color: #140D23;
}

/* line 98, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-config-header p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 102, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-config-header p {
  color: rgba(20, 13, 35, 0.7);
}

/* line 108, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-config-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* line 114, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-config-section {
  width: 100%;
}

/* line 118, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-config-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  /* line 118, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
  .adv-quote-config-row {
    grid-template-columns: 1fr;
  }
}

/* line 128, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-config-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 134, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-config-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

/* line 140, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-config-label i {
  font-size: 1.1rem;
  color: #C38761;
}

/* line 145, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-config-label h3, .adv-quote-config-label .h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
}

/* line 151, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-config-label h3, .lightmode .adv-quote-config-label .h3 {
  color: #140D23;
}

/* line 157, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-config-select {
  width: auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  color: #FFFFFF;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

/* line 167, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-config-select {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 173, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-config-select:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 179, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-config-select option {
  background: #140D23;
  color: #FFFFFF;
}

/* line 185, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-form-hint {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9em;
}

/* line 191, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-form-hint {
  color: rgba(20, 13, 35, 0.6);
}

/* line 195, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-form-hint i {
  margin-right: 4px;
}

/* line 200, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-market-type-selector {
  display: flex;
  gap: 12px;
}

/* line 204, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-market-type-selector .adv-quote-market-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 220, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-market-type-selector .adv-quote-market-option {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 226, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-market-type-selector .adv-quote-market-option i {
  font-size: 1rem;
  color: #C38761;
}

/* line 231, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-market-type-selector .adv-quote-market-option:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

/* line 236, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-market-type-selector .adv-quote-market-option:hover {
  background: rgba(20, 13, 35, 0.12);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 242, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-market-type-selector .adv-quote-market-option.selected {
  background: #C38761;
  border-color: #C38761;
  color: #140D23;
}

/* line 247, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-market-type-selector .adv-quote-market-option.selected i {
  color: #140D23;
}

/* Onglets Prospect/Client */
/* line 255, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-tabs-container {
  width: 100%;
}

/* line 259, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-tabs-header {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 20px;
}

/* line 266, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-tabs-header {
  background: rgba(20, 13, 35, 0.08);
}

/* line 271, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 285, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-tab {
  color: rgba(20, 13, 35, 0.7);
}

/* line 289, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-tab i {
  font-size: 0.9rem;
}

/* line 293, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-tab:hover {
  color: #FFFFFF;
}

/* line 296, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-tab:hover {
  color: #140D23;
}

/* line 301, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-tab.active {
  background: #C38761;
  color: #140D23;
}

/* line 305, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-tab.active i {
  color: #140D23;
}

/* line 311, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-tab-content {
  position: relative;
}

/* line 315, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-tab-pane {
  display: none;
}

/* line 318, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-tab-pane.active {
  display: block;
}

/* line 323, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-search-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* line 329, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-search-input {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 335, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-search-input .search-form {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

/* line 342, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-search-input i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  z-index: 2;
}

/* line 351, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-search-input i {
  color: rgba(20, 13, 35, 0.6);
}

/* line 356, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-search-input button {
  all: unset;
  padding: 8px 12px;
  background: #C38761;
  border-radius: 8px;
  color: #140D23;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 365, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-search-input button:hover {
  background: #864B28;
  transform: scale(1.05);
}

/* line 370, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-search-input button i {
  position: static;
  transform: none;
  color: #140D23;
}

/* Utilise maintenant la classe générique adv-searchbar */
/* line 380, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-search-results {
  min-height: 120px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}

/* line 388, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-search-results {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 395, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-search-results .userChoice {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* line 402, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-search-results .userChoice .no-recipient, .adv-quote-search-results .userChoice .no-document {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
}

/* line 409, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-search-results .userChoice .no-recipient, .lightmode .adv-quote-search-results .userChoice .no-document {
  color: rgba(20, 13, 35, 0.6);
}

/* line 413, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-search-results .userChoice .no-recipient::before, .adv-quote-search-results .userChoice .no-document::before {
  content: '\f007';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.4);
}

/* line 420, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-search-results .userChoice .no-recipient::before, .lightmode .adv-quote-search-results .userChoice .no-document::before {
  color: rgba(20, 13, 35, 0.4);
}

/* Styles pour la section Articles de vente */
/* line 429, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-search-filters {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

/* line 436, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-filter-group {
  display: flex;
  gap: 12px;
  width: 100%;
}

@media (max-width: 768px) {
  /* line 436, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
  .adv-quote-filter-group {
    flex-direction: column;
  }
}

/* line 446, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-config-select {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  color: #FFFFFF;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 457, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-config-select {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 463, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-config-select:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 469, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-config-select option {
  background: #140D23;
  color: #FFFFFF;
}

/* line 473, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-config-select option {
  background: #FFFFFF;
  color: #140D23;
}

/* line 480, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-search-button {
  all: unset;
  padding: 12px 16px;
  background: #C38761;
  border-radius: 12px;
  color: #140D23;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 492, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-search-button:hover {
  background: #864B28;
  transform: scale(1.05);
}

/* line 497, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-search-button i {
  font-size: 0.9rem;
  color: #140D23;
}

/* line 503, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-no-selection {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
}

/* line 510, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-no-selection {
  color: rgba(20, 13, 35, 0.6);
}

/* line 514, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-no-selection i {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.4);
}

/* line 518, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-no-selection i {
  color: rgba(20, 13, 35, 0.4);
}

/* line 523, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-no-selection p {
  font-size: 0.85rem;
  margin: 0;
}

/* line 529, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-transaction-selector {
  display: flex;
  gap: 12px;
}

/* line 533, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-transaction-selector .new-quote-transaction-choice {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 549, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-transaction-selector .new-quote-transaction-choice {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 555, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-transaction-selector .new-quote-transaction-choice i {
  font-size: 1rem;
  color: #C38761;
}

/* line 560, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-transaction-selector .new-quote-transaction-choice:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

/* line 565, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-transaction-selector .new-quote-transaction-choice:hover {
  background: rgba(20, 13, 35, 0.12);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 571, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-transaction-selector .new-quote-transaction-choice.selected {
  background: #C38761;
  border-color: #C38761;
  color: #140D23;
}

/* line 576, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-transaction-selector .new-quote-transaction-choice.selected i {
  color: #140D23;
}

/* line 583, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 589, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-capsule span {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 597, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-capsule span {
  color: #140D23;
}

/* line 600, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.nightmode .adv-quote-capsule span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 606, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-capsule p {
  color: #140D23;
}

/* line 609, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.nightmode .adv-quote-capsule p {
  color: #FFFFFF;
}

/* line 615, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-capsule i {
  color: #140D23;
}

/* line 618, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.nightmode .adv-quote-capsule i {
  color: #FFFFFF;
}

/* line 624, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1 {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 20px;
}

/* line 633, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1 form {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 640, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1 form input:focus {
  background-color: transparent;
}

/* line 646, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1 h2, .adv-quote-row1 .h2 {
  all: unset;
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 20px;
}

/* line 653, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1 .selected {
  background-color: #e8e8e8 !important;
}

/* line 656, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1 .selected p {
  color: #140D23 !important;
}

/* line 660, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1 .selected span {
  color: #140D23 !important;
}

/* line 666, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow1 {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 672, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow1 .adv-quote-row1-subrow1-market {
  color: #FFFFFF;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  gap: 10px;
}

/* line 688, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-subrow1 .adv-quote-row1-subrow1-market {
  color: #140D23;
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 694, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow1 .adv-quote-row1-subrow1-market h3, .adv-quote-row1-subrow1 .adv-quote-row1-subrow1-market .h3 {
  all: unset;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-color-primary);
  white-space: nowrap;
}

/* line 701, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-subrow1 .adv-quote-row1-subrow1-market h3, .lightmode .adv-quote-row1-subrow1 .adv-quote-row1-subrow1-market .h3 {
  color: #140D23;
}

/* line 706, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow1 .adv-quote-row1-subrow1-market .adv-quote-row1-subrow1-market-choice {
  width: 200px !important;
  background-color: transparent;
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: space-evenly;
  transition: transform 0.3s ease;
  border: 1px solid rgba(232, 232, 232, 0.5);
  cursor: pointer;
}

/* line 722, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2-recipient-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* line 729, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2-recipient-container .special-toggle {
  width: 100%;
  background-color: transparent;
  color: #140D23;
  border-radius: 0px;
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: center;
  transition: transform 0.3s ease;
  border-bottom: 1px solid rgba(232, 232, 232, 0.5);
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
}

/* line 743, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2-recipient-container .special-toggle:hover {
  transform: scale(1);
}

/* line 748, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2-recipient-container .special-toggle .btn-special span {
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 5px;
  white-space: nowrap;
}

/* line 757, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2-recipient-container .selected {
  background-color: #e8e8e8 !important;
}

/* line 760, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2-recipient-container .selected p {
  color: #140D23 !important;
}

/* line 768, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-organization-choice {
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  gap: 10px;
}

/* line 784, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-organization-choice {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 789, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-organization-choice h3, .adv-quote-row1-organization-choice .h3 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-color-primary);
}

/* line 794, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-organization-choice h3, .lightmode .adv-quote-row1-organization-choice .h3 {
  color: #140D23;
}

/* line 800, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2-select-client {
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  gap: 10px;
}

/* line 815, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-subrow2-select-client {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 821, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2-select-client .adv-quote-row1-customer-search form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 10px;
}

/* line 832, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 10px;
}

/* line 841, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column1 {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  padding: 0px 0px 20px 0px;
  text-align: center;
  height: 100%;
  justify-content: center;
  align-items: center;
}

/* line 860, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column1 {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 865, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column1 .btn-special {
  border-radius: 0px;
}

/* line 868, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column1 h3, .adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column1 .h3 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-color-primary);
}

/* line 873, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column1 h3, .lightmode .adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column1 .h3 {
  color: #140D23;
}

/* line 878, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column1 .special-toggle-sales-cycle {
  width: 100%;
  background-color: transparent;
  color: #140D23;
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

/* line 888, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column1 .special-toggle-sales-cycle span {
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: normal;
  padding: 5px;
  white-space: nowrap;
}

/* line 897, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column1 .new-quote-transaction-choice {
  width: 200px !important;
  background-color: transparent;
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: space-evenly;
  transition: transform 0.3s ease;
  border: 1px solid rgba(232, 232, 232, 0.5);
  cursor: pointer;
}

/* line 910, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column1 .special-toggle:hover {
  transform: scale(1);
}

/* line 914, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column1 .selected {
  background-color: #e8e8e8 !important;
}

/* line 917, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column1 .selected span {
  color: #140D23;
}

/* line 923, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column2 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

/* line 938, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column2 {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 943, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column2 h3, .adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column2 .h3 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-color-primary);
}

/* line 948, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column2 h3, .lightmode .adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column2 .h3 {
  color: #140D23;
}

/* line 952, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column2 .new-quote-transaction-choice {
  width: 200px !important;
  background-color: transparent;
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: space-evenly;
  transition: transform 0.3s ease;
  border: 1px solid rgba(232, 232, 232, 0.5);
  cursor: pointer;
}

/* line 964, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column2 .search-input {
  all: unset;
  height: 100%;
  width: 100%;
  background-color: transparent;
  font-size: 0.7rem;
  color: #FFFFFF;
}

/* line 972, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column2 .search-input {
  color: #140D23;
}

/* line 976, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column2 .search-input:focus {
  all: unset;
  height: 100%;
  width: 100%;
  background-color: transparent;
  font-size: 0.7rem;
  color: #FFFFFF;
}

/* line 984, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column2 .search-input:focus {
  color: #140D23;
}

/* line 989, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column2 .special-toggle-sales-cycle {
  width: 100%;
  background-color: transparent;
  color: #140D23;
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

/* line 999, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column2 .special-toggle-sales-cycle span {
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: normal;
  padding: 5px;
  white-space: nowrap;
}

/* line 1008, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column2 .special-toggle:hover {
  transform: scale(1.04);
}

/* line 1012, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column2 .selected {
  background-color: #e8e8e8 !important;
}

/* line 1015, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column2 .selected span {
  color: #140D23;
}

/* line 1021, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow2 .adv-quote-row1-subrow2-column2 .services-adv-search-articles {
  all: unset;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  gap: 10px;
}

/* line 1035, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow4 {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  gap: 10px;
}

/* line 1049, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-subrow4 {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 1054, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow4 .results {
  width: 100%;
  position: absolute;
  border-radius: 5px;
  padding: 10px;
  bottom: 0px;
  left: 0;
  transform: translateY(10%);
  z-index: 1000;
  background-color: transparent;
  backdrop-filter: blur(8px);
}

/* line 1066, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-subrow4 .results {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 1070, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow4 .results .search-results {
  width: 100%;
}

/* line 1075, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow4 h3, .adv-quote-row1-subrow4 .h3 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-color-primary);
}

/* line 1080, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-subrow4 h3, .lightmode .adv-quote-row1-subrow4 .h3 {
  color: #140D23;
}

/* line 1084, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow4 .search-results-articles {
  display: flex;
  min-height: 30px;
  width: 98% !important;
  align-items: center;
  justify-content: space-between;
  gap: 10x;
  padding: 5px;
  border-radius: 0.375rem;
  flex-wrap: nowrap;
}

/* line 1095, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow4 .search-results-articles label {
  opacity: 1;
}

/* line 1098, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow4 .search-results-articles .articles {
  font-size: 0.7rem !important;
  margin: 0;
  cursor: pointer;
  font-weight: normal !important;
}

/* line 1103, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow4 .search-results-articles .articles p {
  color: #FFFFFF !important;
}

/* line 1106, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-subrow4 .search-results-articles .articles p {
  color: #140D23 !important;
}

/* line 1112, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow4 .search-results-articles:hover {
  background-color: rgba(255, 255, 255, 0.5);
  transition: transform 0.3s ease;
}

/* line 1116, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-subrow4 .search-results-articles:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 1121, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow4 .services-adv-search-articles {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 1127, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow4 .services-adv-search-articles .search-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 1134, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow4 .services-adv-search-articles .form-group {
  width: 100%;
  display: flex;
  gap: 10px;
}

/* line 1140, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow4 .services-adv-search-articles .search-input {
  all: unset;
  width: 100%;
  background-color: transparent;
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 1153, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-subrow4 .services-adv-search-articles .search-input {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 1158, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow4 .services-adv-search-articles .search-input:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 1162, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-subrow4 .services-adv-search-articles .search-input:focus {
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 1172, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row2 {
  width: 80%;
  height: 7.5%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
}

/* line 1182, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row2 #fakeSubmitButton {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  border: none;
  cursor: pointer;
  background-color: #C38761;
  color: #140D23;
}

/* line 1197, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row2 #fakeSubmitButton:hover {
  background-color: #864B28;
  transform: scale(1.05);
}

/* line 1203, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row2 form {
  display: flex !important;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  align-items: center;
  height: 100%;
}

/* line 1213, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-searchbar {
  width: 100%;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
  height: 30px;
}

/* line 1227, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-searchbar {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 1232, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-searchbar button {
  all: unset;
}

/* line 1235, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-searchbar i {
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 1240, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-searchbar i {
  color: #140D23 !important;
}

/* line 1245, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-searchbar span {
  font-weight: normal !important;
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 1251, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-searchbar span {
  color: #140D23 !important;
}

/* line 1257, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-form-field {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 1263, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-form-field input {
  all: unset;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 1276, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-form-field input {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 1281, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-form-field input:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 1285, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-form-field input:focus {
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 1292, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-form-field label {
  all: unset;
  color: #FFFFFF !important;
  font-size: 0.8rem !important;
  text-align: center;
  white-space: nowrap;
}

/* line 1299, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-form-field label {
  color: #140D23 !important;
}

/* line 1305, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-customer-search {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 10px;
}

/* line 1313, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-customer-search h3, .adv-quote-row1-customer-search .h3 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-color-primary);
}

/* line 1318, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-customer-search h3, .lightmode .adv-quote-row1-customer-search .h3 {
  color: #140D23;
}

/* line 1323, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-customer-search .search-form {
  display: flex;
  flex-direction: row;
}

/* line 1328, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-customer-search .form-group {
  align-items: center;
}

/* line 1332, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-customer-search label {
  all: unset;
  color: #FFFFFF !important;
  font-size: 0.8rem !important;
  text-align: center;
  white-space: nowrap;
}

/* line 1339, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-row1-customer-search label {
  color: #140D23 !important;
}

/* line 1347, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.userChoice {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 15px;
}

/* line 1354, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.userChoice .no-document {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-color-primary);
}

/* line 1371, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .userChoice .no-document {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.1) 0%, rgba(20, 13, 35, 0.05) 100%);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 1378, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.userChoice .item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* line 1392, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .userChoice .item {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.1) 0%, rgba(20, 13, 35, 0.05) 100%);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 1397, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.userChoice .item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  border-color: rgba(232, 232, 232, 0.6);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

/* line 1403, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .userChoice .item:hover {
  border-color: rgba(20, 13, 35, 0.4);
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.15) 0%, rgba(20, 13, 35, 0.08) 100%);
}

/* line 1409, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.userChoice .item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #C38761, #864B28);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* line 1421, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.userChoice .item:hover::before {
  opacity: 1;
}

/* line 1425, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.userChoice .item .item-header {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-grow: 1;
}

/* line 1431, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.userChoice .item .item-header i {
  color: green;
  font-size: 1rem;
  padding: 8px;
  background-color: rgba(195, 135, 97, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* line 1440, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.userChoice .item .item-header p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-color-primary);
  line-height: 1.4;
  transition: color 0.3s ease;
}

/* line 1448, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .userChoice .item .item-header p {
  color: #140D23;
}

/* line 1455, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.userChoice .item:hover .item-header i {
  color: #864B28;
  background-color: rgba(134, 75, 40, 0.15);
  transform: scale(1.1);
}

/* line 1461, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.userChoice .item:hover .item-header p {
  color: #FFFFFF;
}

/* line 1464, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .userChoice .item:hover .item-header p {
  color: #140D23;
}

/* line 1470, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.userChoice .item .item-actions {
  display: flex;
  gap: 10x;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* line 1477, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.userChoice .item .item-actions button {
  all: unset;
  padding: 6px;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-size: 0.7rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 1487, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .userChoice .item .item-actions button {
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 1492, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.userChoice .item .item-actions button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

/* line 1496, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .userChoice .item .item-actions button:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* line 1503, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.userChoice .item:hover .item-actions {
  opacity: 1;
}

/* line 1508, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.userChoice .document-link {
  all: unset;
  cursor: pointer;
  color: var(--text-color-primary);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: all 0.3s ease;
}

/* line 1518, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .userChoice .document-link {
  color: #140D23;
}

/* line 1522, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.userChoice .document-link:hover {
  color: #C38761;
  text-decoration-color: #C38761;
}

/* line 1526, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .userChoice .document-link:hover {
  color: #C38761;
}

/* line 1533, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.recipient-choice-container, .recipient-search {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px;
}

/* line 1542, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.type-of-order-search {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
}

/* line 1552, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.articles {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

/* line 1559, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.recipient-title {
  font-size: 0.7rem;
  color: #FFFFFF;
}

/* line 1563, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .recipient-title {
  color: #140D23;
}

/* Section du tableau total des articles */
/* line 1569, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-row1-subrow5 {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  background-color: transparent;
  border-radius: 12px;
  padding: 0px;
  text-align: center;
  gap: 10px;
  min-height: 300px;
}

/* line 1583, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-total-section {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 10px;
}

/* line 1589, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-total-section h3, .adv-quote-total-section .h3 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-color-primary);
  margin-bottom: 15px;
  text-align: center;
}

/* line 1598, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  min-height: 200px;
  border: 1px solid rgba(254, 254, 254, 0.3);
}

/* line 1607, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-articles-table {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 1611, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .adv-header-article, .adv-quote-articles-table .adv-header-discount-perc, .adv-quote-articles-table .adv-header-price-ht, .adv-quote-articles-table .adv-header-vat, .adv-quote-articles-table .adv-header-price-ttc, .adv-quote-articles-table .adv-header-quantity, .adv-quote-articles-table .adv-header-actions, .adv-quote-articles-table .adv-quote-table-cell {
  padding: 8px 12px;
  display: flex;
  align-items: center;
}

/* line 1617, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .adv-quote-articles-table-header {
  display: flex;
  background-color: rgba(255, 255, 255, 0.08);
  font-weight: 600;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* line 1625, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-articles-table .adv-quote-articles-table-header {
  background-color: rgba(20, 13, 35, 0.08);
  color: rgba(20, 13, 35, 0.8);
  border-bottom-color: rgba(20, 13, 35, 0.15);
}

/* line 1632, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .adv-quote-articles-table-body {
  height: auto;
  min-height: 150px;
  overflow-y: auto;
  max-height: 200px;
  /* Personnalisation de la barre de défilement */
}

/* line 1639, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .adv-quote-articles-table-body::-webkit-scrollbar {
  width: 4px;
}

/* line 1643, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .adv-quote-articles-table-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 1648, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .adv-quote-articles-table-body::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 1653, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .adv-quote-articles-table-body::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 1657, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .adv-quote-articles-table-body .adv-quote-articles-table-row {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

/* line 1662, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .adv-quote-articles-table-body .adv-quote-articles-table-row:last-child {
  border-bottom: none;
}

/* line 1666, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .adv-quote-articles-table-body .adv-quote-articles-table-row:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

/* line 1669, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-articles-table .adv-quote-articles-table-body .adv-quote-articles-table-row:hover {
  background-color: rgba(20, 13, 35, 0.03);
}

/* line 1674, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-articles-table .adv-quote-articles-table-body .adv-quote-articles-table-row {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 1679, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .adv-quote-articles-table-body.adv-no-articles-container {
  text-align: center;
  padding: 2rem 15px;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  font-size: 0.85rem;
}

/* line 1688, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .adv-header-article {
  width: 25%;
  justify-content: flex-start;
}

/* line 1693, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .adv-header-discount-perc {
  width: 10%;
  justify-content: center;
}

/* line 1698, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .adv-header-price-ht {
  width: 15%;
  justify-content: center;
}

/* line 1703, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .adv-header-vat {
  width: 10%;
  justify-content: center;
}

/* line 1708, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .adv-header-price-ttc {
  width: 15%;
  justify-content: center;
}

/* line 1713, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .adv-header-quantity {
  width: 10%;
  justify-content: center;
}

/* line 1718, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .adv-header-actions {
  width: 15%;
  justify-content: center;
}

/* line 1724, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .adv-quote-table-cell {
  color: #fff;
  font-size: 0.8rem;
}

/* line 1729, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-articles-table .adv-quote-table-cell {
  color: #140D23;
}

/* line 1734, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .adv-quote-row1-subrow4-list-column-article {
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 0.7rem;
}

/* line 1741, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .discount-container {
  width: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* line 1748, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .price-container {
  width: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* line 1755, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .vat-container {
  width: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* line 1762, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .price-ttc-container {
  width: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* line 1769, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .quantity-container {
  width: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* line 1776, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .actions-container {
  width: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* line 1782, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table .actions-container i {
  font-size: 0.7rem;
}

/* line 1788, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-total-amount {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(254, 254, 254, 0.3);
}

/* line 1798, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-total-amount {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 1803, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-total-amount .adv-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 500;
}

/* line 1808, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-total-amount .adv-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 1813, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-total-amount .adv-value {
  color: #C38761;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Styles pour les entrées du tableau (articles ajoutés) */
/* line 1821, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.entry {
  width: 100%;
  padding: 10px;
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 1827, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.entry:last-child {
  border-bottom: none;
}

/* line 1831, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .entry {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 1835, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.entry.new-entry {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
}

/* line 1842, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .entry.new-entry {
  background-color: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 1847, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.entry.new-entry:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.5);
}

/* line 1851, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .entry.new-entry:hover {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 1857, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.entry.new-entry .adv-quote-row1-subrow4-list-column-article {
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
}

/* line 1861, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .entry.new-entry .adv-quote-row1-subrow4-list-column-article {
  color: rgba(20, 13, 35, 0.7);
}

/* line 1866, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.entry.new-entry .actions-container {
  color: #C38761;
  font-size: 1.2rem;
  font-weight: bold;
}

/* line 1873, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.entry .quantity-input {
  all: unset;
  width: 70%;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 1887, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .entry .quantity-input {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 1892, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.entry .quantity-input:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 1896, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .entry .quantity-input:focus {
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 1903, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.entry .discount-input {
  all: unset;
  width: 50%;
  display: flex;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 1918, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .entry .discount-input {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 1923, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.entry .discount-input:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 1927, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .entry .discount-input:focus {
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 1934, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.entry .article-input {
  all: unset;
  width: 80%;
  display: flex;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 1949, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .entry .article-input {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 1954, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.entry .article-input:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 1958, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .entry .article-input:focus {
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 1965, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.entry .price-input {
  all: unset;
  width: 80%;
  display: flex;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 1980, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .entry .price-input {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 1985, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.entry .price-input:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 1989, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .entry .price-input:focus {
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.5);
}

/* Compatibilité avec l'ancien style pour totalPrice */
/* line 1998, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.totalPrice {
  font-size: 0.8rem;
  font-weight: bold;
  text-align: center;
  color: #140D23;
  border-radius: 20px;
  background-color: #e8e8e8;
}

/* line 2005, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.totalPrice p {
  color: #000000 !important;
}

/* line 2010, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.trash {
  cursor: pointer;
  font-size: 0.8rem;
}

/* line 2013, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.trash:hover {
  color: #A60240;
}

/* line 2018, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
select {
  all: unset;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: normal;
  padding: 5px 15px;
}

/* line 2031, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode select {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 2036, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
select:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 2040, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode select:focus {
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 2046, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
select option {
  all: unset;
  background-color: #E8E8E8;
  color: #000000;
}

/* Styles pour le contenu des transactions */
/* line 2054, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-transaction-content {
  margin-top: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
}

/* line 2061, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-transaction-content {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 2067, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-transaction-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

/* line 2075, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-transaction-info {
  background: rgba(20, 13, 35, 0.08);
}

/* line 2079, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-transaction-info i {
  color: #C38761;
  font-size: 1.1rem;
}

/* line 2084, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-transaction-info span {
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 500;
}

/* line 2089, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-transaction-info span {
  color: #140D23;
}

/* line 2096, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-document-search h4, .adv-quote-document-search .h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 15px;
}

/* line 2102, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-document-search h4, .lightmode .adv-quote-document-search .h4 {
  color: #140D23;
}

/* line 2107, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-document-search .search-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* line 2113, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-document-search .form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 2119, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-document-search .filter {
  width: auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  color: #FFFFFF;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

/* line 2129, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-document-search .filter {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 2135, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-document-search .filter:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 2141, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-document-search .filter option {
  background: #140D23;
  color: #FFFFFF;
}

/* Amélioration des styles pour les onglets */
/* line 2149, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-tabs-container {
  width: 100%;
}

/* line 2153, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-tabs-header {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 20px;
}

/* line 2160, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-tabs-header {
  background: rgba(20, 13, 35, 0.08);
}

/* line 2165, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 2179, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-tab {
  color: rgba(20, 13, 35, 0.7);
}

/* line 2183, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-tab i {
  font-size: 0.9rem;
}

/* line 2187, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-tab:hover {
  color: #FFFFFF;
}

/* line 2190, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-tab:hover {
  color: #140D23;
}

/* line 2195, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-tab.active {
  background: #C38761;
  color: #140D23;
}

/* line 2199, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-tab.active i {
  color: #140D23;
}

/* line 2205, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-tab-content {
  position: relative;
}

/* line 2209, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-tab-pane {
  display: none;
}

/* line 2212, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-tab-pane.active {
  display: block;
}

/* line 2217, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-search-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* line 2224, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-search-results {
  min-height: 120px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}

/* line 2232, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-search-results {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 2239, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-search-results .userChoice {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* line 2246, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-search-results .userChoice .no-recipient, .adv-quote-search-results .userChoice .no-document {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
}

/* line 2253, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-search-results .userChoice .no-recipient, .lightmode .adv-quote-search-results .userChoice .no-document {
  color: rgba(20, 13, 35, 0.6);
}

/* line 2257, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-search-results .userChoice .no-recipient::before, .adv-quote-search-results .userChoice .no-document::before {
  content: '\f007';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.4);
}

/* line 2264, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-search-results .userChoice .no-recipient::before, .lightmode .adv-quote-search-results .userChoice .no-document::before {
  color: rgba(20, 13, 35, 0.4);
}

/* Section fusionnée Articles - Agrandie pour meilleure lisibilité */
/* line 2273, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-main-section {
  min-height: 600px;
}

/* line 2276, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-main-section .adv-quote-basket-section {
  margin-top: 30px;
}

/* line 2279, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-main-section .adv-quote-basket-section .adv-quote-articles-table {
  min-height: 400px;
}

/* line 2283, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-main-section .adv-quote-basket-section .adv-quote-articles-table-body {
  max-height: 500px;
  min-height: 350px;
}

/* Styles pour le tableau d'articles */
/* line 2291, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 2298, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
}

/* line 2305, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-articles-table {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 2311, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}

/* line 2317, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-articles-table-header {
  background: rgba(20, 13, 35, 0.1);
}

/* line 2322, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-table-cell {
  padding: 12px 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  color: #FFFFFF;
}

/* line 2329, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-table-cell {
  color: #140D23;
}

/* line 2333, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-table-cell.adv-header-article {
  text-align: left;
  padding-left: 16px;
}

/* line 2340, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table-body .entry {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

/* line 2347, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-articles-table-body .entry {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 2351, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table-body .entry:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* line 2354, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-articles-table-body .entry:hover {
  background: rgba(20, 13, 35, 0.05);
}

/* line 2359, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table-body .entry.new-entry {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
}

/* line 2363, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-articles-table-body .entry.new-entry {
  color: rgba(20, 13, 35, 0.6);
}

/* line 2367, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table-body .entry.new-entry:hover {
  background: rgba(195, 135, 97, 0.1);
  color: #C38761;
}

/* line 2371, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-articles-table-body .entry.new-entry:hover {
  background: rgba(195, 135, 97, 0.1);
  color: #C38761;
}

/* line 2378, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table-body .entry > div {
  padding: 12px 8px;
  font-size: 0.8rem;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 2387, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-articles-table-body .entry > div.adv-quote-row1-subrow4-list-column-article {
  text-align: left;
  padding-left: 16px;
  justify-content: flex-start;
  white-space: nowrap;
}

/* line 2397, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-total-section {
  display: flex;
  justify-content: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

/* line 2404, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-total-section {
  background: rgba(20, 13, 35, 0.05);
}

/* line 2409, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-total-amount {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
}

/* line 2416, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-total-amount .adv-label {
  color: rgba(255, 255, 255, 0.8);
}

/* line 2419, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-total-amount .adv-label {
  color: rgba(20, 13, 35, 0.8);
}

/* line 2424, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-total-amount .adv-value {
  color: #C38761;
  font-size: 1.1rem;
}

/* line 2428, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.lightmode .adv-quote-total-amount .adv-value {
  color: #C38761;
}

/* line 2434, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-submit-section {
  width: 100%;
  max-width: 1400px;
  padding: 20px 30px;
}

/* line 2439, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-submit-section .assign-recipient-form {
  width: 100%;
}

/* line 2444, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_quote.scss */
.adv-quote-submit-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  gap: 20px;
}

/* ==========================================================================
   SHOW QUOTE - MODULE CRM
   Structure principale et composants pour l'affichage détaillé d'un devis
   ========================================================================== */
/* line 6, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0px auto;
  height: 100%;
  padding: 20px;
  overflow-x: hidden;
  overflow-y: auto;
  /* Personnalisation de la barre de défilement */
}

/* line 17, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-container::-webkit-scrollbar {
  width: 8px;
}

/* line 21, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 26, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-container::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 31, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-container::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 35, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-container.lightmode {
  color: #140D23;
}

/* line 42, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-summary-total-ttc .crm-value {
  color: #C38761 !important;
}

/* line 47, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-document-list p {
  color: #140D23 !important;
}

/* line 53, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-main-content {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 10px;
  min-width: 0;
  transition: all 0.3s ease;
}

/* line 61, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-main-content.wide-margins {
  justify-content: center;
}

/* line 66, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  height: 100%;
  flex: 1;
  min-width: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 5px;
  overflow: hidden;
  /* ==========================================================================
     EN-TÊTE AVEC INFORMATIONS DU DEVIS ET ONGLETS
     ========================================================================== */
  /* ==========================================================================
     CONTENU DES ONGLETS
     ========================================================================== */
  /* ==========================================================================
     ONGLET DÉTAILS - CONTENU SPÉCIFIQUE
     ========================================================================== */
  /* ==========================================================================
     SECTION CGV DANS L'ONGLET DÉTAILS
     ========================================================================== */
}

/* line 79, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule {
  background-color: rgba(20, 13, 35, 0.05);
  color: #140D23;
}

/* line 87, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-header-tabs {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

/* line 93, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-header-tabs .crm-quote-info-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 5px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

/* line 103, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-header-tabs .crm-quote-info-header {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 107, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-header-tabs .crm-quote-info-header .crm-header-section, .crm-show-quote-capsule .crm-quote-header-tabs .crm-quote-info-header .crm-contract-number-section,
.crm-show-quote-capsule .crm-quote-header-tabs .crm-quote-info-header .crm-market-type-section {
  display: flex;
  flex-direction: row;
  gap: 5px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* line 115, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-header-tabs .crm-quote-info-header .crm-header-section .crm-label, .crm-show-quote-capsule .crm-quote-header-tabs .crm-quote-info-header .crm-contract-number-section .crm-label,
.crm-show-quote-capsule .crm-quote-header-tabs .crm-quote-info-header .crm-market-type-section .crm-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  white-space: nowrap;
  display: block;
}

/* line 121, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-header-tabs .crm-quote-info-header .crm-header-section .crm-label, .lightmode .crm-show-quote-capsule .crm-quote-header-tabs .crm-quote-info-header .crm-contract-number-section .crm-label,
.lightmode .crm-show-quote-capsule .crm-quote-header-tabs .crm-quote-info-header .crm-market-type-section .crm-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 126, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-header-tabs .crm-quote-info-header .crm-header-section .crm-value, .crm-show-quote-capsule .crm-quote-header-tabs .crm-quote-info-header .crm-contract-number-section .crm-value,
.crm-show-quote-capsule .crm-quote-header-tabs .crm-quote-info-header .crm-market-type-section .crm-value {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  display: block;
}

/* line 132, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-header-tabs .crm-quote-info-header .crm-header-section .crm-value, .lightmode .crm-show-quote-capsule .crm-quote-header-tabs .crm-quote-info-header .crm-contract-number-section .crm-value,
.lightmode .crm-show-quote-capsule .crm-quote-header-tabs .crm-quote-info-header .crm-market-type-section .crm-value {
  color: #140D23;
}

/* line 138, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-header-tabs .crm-quote-info-header .crm-header-section.crm-recipient-name-section .crm-value, .crm-show-quote-capsule .crm-quote-header-tabs .crm-quote-info-header .crm-recipient-name-section.crm-contract-number-section .crm-value,
.crm-show-quote-capsule .crm-quote-header-tabs .crm-quote-info-header .crm-recipient-name-section.crm-market-type-section .crm-value {
  font-size: 1rem;
}

/* line 145, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-header-tabs .crm-quote-tabs {
  display: flex;
  gap: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}

/* line 150, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-header-tabs .crm-quote-tabs {
  border-bottom: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 154, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-header-tabs .crm-quote-tabs .crm-tab-button {
  padding: 5px 10px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  border-radius: 8px 8px 0 0;
}

/* line 166, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-header-tabs .crm-quote-tabs .crm-tab-button {
  color: rgba(20, 13, 35, 0.7);
}

/* line 170, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-header-tabs .crm-quote-tabs .crm-tab-button:hover {
  color: rgba(255, 255, 255, 0.9);
  background-color: rgba(255, 255, 255, 0.05);
}

/* line 174, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-header-tabs .crm-quote-tabs .crm-tab-button:hover {
  color: rgba(20, 13, 35, 0.9);
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 180, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-header-tabs .crm-quote-tabs .crm-tab-button.active {
  color: #C38761;
  border-bottom-color: #C38761;
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 185, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-header-tabs .crm-quote-tabs .crm-tab-button.active {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 196, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content {
  flex: 1;
  overflow: hidden;
}

/* line 200, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel {
  display: none;
  height: 100%;
  flex-direction: column;
  gap: 15px;
  /* ==========================================================================
         EN-TÊTE DU CONTENU DES ONGLETS
         ========================================================================== */
  /* ==========================================================================
         CORPS DU CONTENU DES ONGLETS
         ========================================================================== */
}

/* line 206, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel.active {
  display: flex;
}

/* line 213, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

/* line 223, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-header {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 227, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-header > h3, .crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-header > .h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  color: #fff;
  flex: 1;
  min-width: 200px;
}

/* line 235, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-header > h3, .lightmode .crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-header > .h3 {
  color: #140D23;
}

/* line 240, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-header .crm-projects-description {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.5;
  width: 100%;
}

/* line 247, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-header .crm-projects-description {
  color: rgba(20, 13, 35, 0.7);
}

/* line 252, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-header .crm-button-regular, .crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-header .crm-back-button {
  align-self: flex-start;
}

/* line 256, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-header .crm-project-icon {
  color: #0066cc;
}

/* line 260, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-header .crm-create-button {
  padding: 8px 16px;
  background-color: #C38761;
  color: #140D23;
  border: none;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* line 274, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-header .crm-create-button:hover {
  background-color: #af6c42;
  transform: translateY(-1px);
}

/* line 279, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-header .crm-create-button i {
  font-size: 0.7rem;
}

/* line 288, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  /* Personnalisation de la barre de défilement */
  /* ==========================================================================
           GRILLE DE DOCUMENTS
           ========================================================================== */
}

/* line 295, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 300, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body::-webkit-scrollbar {
  width: 4px;
}

/* line 304, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 309, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 314, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 318, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body p {
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  text-align: center;
  margin: 2rem 0;
}

/* line 324, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body p {
  color: rgba(20, 13, 35, 0.7);
}

/* line 332, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  padding: 5px;
  max-height: 100%;
  overflow-y: auto;
  /* Personnalisation de la barre de défilement */
  /* ==========================================================================
             STYLES POUR LES CARTES DE PROJETS
             ========================================================================== */
}

/* line 341, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid::-webkit-scrollbar {
  width: 4px;
}

/* line 345, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 350, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 355, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 359, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid a {
  display: block;
  padding: 12px 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
  /* ==========================================================================
               STYLES SPÉCIFIQUES POUR LES DOCUMENTS (FACTURES, ACOMPTES, ETC.)
               ========================================================================== */
}

/* line 371, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* line 377, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid a {
  background-color: rgba(20, 13, 35, 0.05);
  border: 1px solid rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 382, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid a:hover {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 391, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid a .crm-document-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 396, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid a .crm-document-info .crm-document-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* line 403, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid a .crm-document-info .crm-document-title i {
  color: #C38761;
  font-size: 0.8rem;
}

/* line 409, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid a .crm-document-info .crm-document-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 416, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid a .crm-document-info .crm-document-details {
  color: rgba(20, 13, 35, 0.7);
}

/* line 420, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid a .crm-document-info .crm-document-details .crm-document-amount {
  font-weight: 600;
  color: #C38761;
}

/* line 425, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid a .crm-document-info .crm-document-details .crm-document-date {
  font-style: italic;
}

/* line 430, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid a .crm-document-info .crm-document-status {
  display: flex;
  justify-content: flex-end;
}

/* line 434, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid a .crm-document-info .crm-document-status .status-badge {
  font-size: 0.65rem;
  padding: 2px 8px;
}

/* line 445, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid .crm-document-card {
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 15px;
  transition: all 0.2s ease;
  gap: 12px;
}

/* line 455, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid .crm-document-card:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* line 462, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid .crm-document-card {
  background-color: rgba(20, 13, 35, 0.05);
  border: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 466, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid .crm-document-card:hover {
  background-color: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 472, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid .crm-document-card .crm-document-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 479, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid .crm-document-card .crm-document-header {
  border-bottom: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 483, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid .crm-document-card .crm-document-header .crm-project-icon {
  color: #C38761;
  font-size: 1.2rem;
}

/* line 488, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid .crm-document-card .crm-document-header .crm-document-type {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 495, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid .crm-document-card .crm-document-header .crm-document-type {
  color: rgba(20, 13, 35, 0.7);
}

/* line 501, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid .crm-document-card .crm-document-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

/* line 507, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid .crm-document-card .crm-document-body .crm-document-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 4px;
}

/* line 514, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid .crm-document-card .crm-document-body .crm-document-title {
  color: #140D23;
}

/* line 519, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid .crm-document-card .crm-document-body .crm-document-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 526, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid .crm-document-card .crm-document-body .crm-document-meta {
  color: rgba(20, 13, 35, 0.7);
}

/* line 530, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid .crm-document-card .crm-document-body .crm-document-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* line 535, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid .crm-document-card .crm-document-body .crm-document-meta span:not(:last-child) {
  margin-bottom: 2px;
}

/* line 539, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid .crm-document-card .crm-document-body .crm-document-meta span .status-badge {
  margin-left: auto;
  font-size: 0.7rem;
  padding: 4px 10px;
}

/* line 548, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid .crm-document-card .crm-document-actions {
  display: flex;
  justify-content: flex-end;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 554, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid .crm-document-card .crm-document-actions {
  border-top: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 558, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid .crm-document-card .crm-document-actions .crm-button-regular, .crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid .crm-document-card .crm-document-actions .crm-back-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #140D23;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* line 572, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid .crm-document-card .crm-document-actions .crm-button-regular:hover, .crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid .crm-document-card .crm-document-actions .crm-back-button:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

/* line 578, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid .crm-document-card .crm-document-actions .crm-button-regular, .lightmode .crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid .crm-document-card .crm-document-actions .crm-back-button {
  background-color: rgba(20, 13, 35, 0.1);
  border: 1px solid rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 583, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid .crm-document-card .crm-document-actions .crm-button-regular:hover, .lightmode .crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid .crm-document-card .crm-document-actions .crm-back-button:hover {
  background-color: rgba(20, 13, 35, 0.15);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 589, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid .crm-document-card .crm-document-actions .crm-button-regular i, .crm-show-quote-capsule .crm-quote-tab-content .crm-tab-panel .crm-tab-content-body .crm-documents-grid .crm-document-card .crm-document-actions .crm-back-button i {
  font-size: 0.75rem;
}

/* line 603, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-articles-section {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  height: 70%;
}

/* line 608, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-articles-section {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 612, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-articles-section .crm-articles-table {
  height: 100%;
  overflow-y: auto;
  gap: 0;
  /* Personnalisation de la barre de défilement */
}

/* line 617, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-articles-section .crm-articles-table::-webkit-scrollbar {
  width: 4px;
}

/* line 621, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-articles-section .crm-articles-table::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 626, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-articles-section .crm-articles-table::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 631, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-articles-section .crm-articles-table::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 635, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-articles-section .crm-table-cell, .crm-show-quote-capsule .crm-quote-articles-section .crm-header-quantity, .crm-show-quote-capsule .crm-quote-articles-section .crm-header-price-ttc, .crm-show-quote-capsule .crm-quote-articles-section .crm-header-price-ht, .crm-show-quote-capsule .crm-quote-articles-section .crm-header-discount-perc, .crm-show-quote-capsule .crm-quote-articles-section .crm-header-article {
  padding: 0 12px;
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 40px;
}

/* line 642, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-articles-section .crm-table-cell, .lightmode .crm-show-quote-capsule .crm-quote-articles-section .crm-header-quantity, .lightmode .crm-show-quote-capsule .crm-quote-articles-section .crm-header-price-ttc, .lightmode .crm-show-quote-capsule .crm-quote-articles-section .crm-header-price-ht, .lightmode .crm-show-quote-capsule .crm-quote-articles-section .crm-header-discount-perc, .lightmode .crm-show-quote-capsule .crm-quote-articles-section .crm-header-article {
  border-right: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 647, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-articles-section .crm-articles-table-header {
  display: flex;
  background-color: rgba(255, 255, 255, 0.08);
  white-space: nowrap;
  font-weight: 600;
  padding: 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px 8px 0 0;
}

/* line 657, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-articles-section .crm-articles-table-header {
  background-color: rgba(20, 13, 35, 0.08);
  color: rgba(20, 13, 35, 0.8);
  border-bottom: 1px solid rgba(20, 13, 35, 0.15);
}

/* line 664, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-articles-section .crm-articles-table-body {
  height: auto;
  min-height: 200px;
  overflow-y: hidden;
  padding: 0;
  gap: 0;
  /* Personnalisation de la barre de défilement */
}

/* line 671, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-articles-section .crm-articles-table-body::-webkit-scrollbar {
  width: 4px;
}

/* line 675, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-articles-section .crm-articles-table-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 680, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-articles-section .crm-articles-table-body::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 685, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-articles-section .crm-articles-table-body::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 689, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-articles-section .crm-articles-table-body .crm-articles-table-row {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  white-space: nowrap;
}

/* line 695, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-articles-section .crm-articles-table-body .crm-articles-table-row:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

/* line 699, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-articles-section .crm-articles-table-body .crm-articles-table-row {
  border-bottom: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 702, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-articles-section .crm-articles-table-body .crm-articles-table-row:hover {
  background-color: rgba(20, 13, 35, 0.03);
}

/* line 708, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-articles-section .crm-articles-table-body.crm-no-articles-container {
  text-align: center;
  padding: 2rem 15px;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  font-size: 0.85rem;
}

/* line 715, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-articles-section .crm-articles-table-body.crm-no-articles-container {
  color: rgba(20, 13, 35, 0.6);
}

/* line 721, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-articles-section .crm-header-article {
  width: 35%;
  justify-content: flex-start;
  white-space: normal;
}

/* line 727, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-articles-section .crm-header-discount-perc {
  width: 15%;
  justify-content: center;
}

/* line 732, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-articles-section .crm-header-price-ht {
  width: 20%;
  justify-content: center;
}

/* line 737, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-articles-section .crm-header-price-ttc {
  width: 20%;
  justify-content: center;
}

/* line 742, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-articles-section .crm-header-quantity {
  width: 10%;
  justify-content: center;
}

/* line 748, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-articles-section .crm-table-cell {
  color: #fff;
  font-size: 0.8rem;
}

/* line 752, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-articles-section .crm-table-cell {
  color: #140D23;
}

/* line 757, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-articles-section .crm-cell-article {
  width: 35%;
  justify-content: flex-start;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
  min-width: 0;
}

/* line 765, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-articles-section .crm-cell-discount-perc {
  width: 15%;
  justify-content: center;
}

/* line 769, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-articles-section .crm-cell-price-ht {
  width: 20%;
  justify-content: center;
}

/* line 773, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-articles-section .crm-cell-price-ttc {
  width: 20%;
  justify-content: center;
}

/* line 777, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-articles-section .crm-cell-quantity {
  width: 10%;
  justify-content: center;
}

/* line 783, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-summary-section {
  height: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

/* line 793, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-summary-section {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 797, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-summary-section .crm-summary-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 5px;
  flex: 1 1 0;
}

/* line 806, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-summary-section .crm-summary-item .crm-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  margin-bottom: 0;
  display: block;
}

/* line 812, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-summary-section .crm-summary-item .crm-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 817, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-summary-section .crm-summary-item .crm-value {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  display: block;
  text-align: center;
}

/* line 824, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-summary-section .crm-summary-item .crm-value {
  color: #140D23;
}

/* line 830, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-summary-section .crm-summary-item.crm-summary-total-ttc .crm-value {
  color: #d4a574;
  font-size: 1.1rem;
}

/* line 841, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-cgv-section {
  width: 100%;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin: 15px 0;
}

/* line 848, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-cgv-section {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 852, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-cgv-section .crm-cgv-header-inline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 860, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-cgv-section .crm-cgv-header-inline {
  border-bottom: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 864, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-cgv-section .crm-cgv-header-inline h3, .crm-show-quote-capsule .crm-quote-cgv-section .crm-cgv-header-inline .h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

/* line 870, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-cgv-section .crm-cgv-header-inline h3, .lightmode .crm-show-quote-capsule .crm-quote-cgv-section .crm-cgv-header-inline .h3 {
  color: #140D23;
}

/* line 875, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-cgv-section .crm-cgv-header-inline .crm-cgv-count {
  font-size: 0.75rem;
  padding: 4px 12px;
  background-color: rgba(195, 135, 97, 0.2);
  color: #C38761;
  border-radius: 12px;
  font-weight: 500;
}

/* line 885, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-cgv-section .crm-cgv-list-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* line 891, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-cgv-section .crm-cgv-item {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(232, 232, 232, 0.2);
  border-radius: 12px;
  padding: 15px;
  transition: all 0.3s ease;
}

/* line 898, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-cgv-section .crm-cgv-item {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 903, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-cgv-section .crm-cgv-item:hover {
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* line 908, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-cgv-section .crm-cgv-item:hover {
  background-color: rgba(20, 13, 35, 0.08);
}

/* line 914, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-cgv-section .crm-cgv-item-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

/* line 921, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-cgv-section .crm-cgv-item-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(195, 135, 97, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* line 931, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-cgv-section .crm-cgv-item-icon i {
  font-size: 1.2rem;
  color: #C38761;
}

/* line 937, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-cgv-section .crm-cgv-item-info {
  flex: 1;
}

/* line 940, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-cgv-section .crm-cgv-item-info h3, .crm-show-quote-capsule .crm-quote-cgv-section .crm-cgv-item-info .h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  color: #FFFFFF;
}

/* line 946, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-cgv-section .crm-cgv-item-info h3, .lightmode .crm-show-quote-capsule .crm-quote-cgv-section .crm-cgv-item-info .h3 {
  color: #140D23;
}

/* line 952, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-cgv-section .crm-cgv-documents {
  margin-top: 12px;
}

/* line 955, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-cgv-section .crm-cgv-documents h4, .crm-show-quote-capsule .crm-quote-cgv-section .crm-cgv-documents .h4 {
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.8);
}

/* line 961, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-cgv-section .crm-cgv-documents h4, .lightmode .crm-show-quote-capsule .crm-quote-cgv-section .crm-cgv-documents .h4 {
  color: rgba(20, 13, 35, 0.8);
}

/* line 967, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-cgv-section .crm-cgv-documents-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* line 973, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-cgv-section .crm-cgv-document-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

/* line 983, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-cgv-section .crm-cgv-document-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

/* line 987, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-cgv-section .crm-cgv-document-item {
  background-color: rgba(20, 13, 35, 0.03);
}

/* line 990, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-cgv-section .crm-cgv-document-item:hover {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 996, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-cgv-section .crm-cgv-document-info {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

/* line 1002, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-cgv-section .crm-cgv-document-info i {
  color: #C38761;
  font-size: 0.9rem;
}

/* line 1007, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-cgv-section .crm-cgv-document-info .crm-cgv-document-name {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  flex: 1;
}

/* line 1012, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-cgv-section .crm-cgv-document-info .crm-cgv-document-name {
  color: rgba(20, 13, 35, 0.9);
}

/* line 1017, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-cgv-section .crm-cgv-document-info .crm-cgv-document-pages {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* line 1022, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-cgv-section .crm-cgv-document-info .crm-cgv-document-pages {
  color: rgba(20, 13, 35, 0.6);
}

/* line 1028, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-cgv-section .crm-cgv-document-view-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: rgba(195, 135, 97, 0.2);
  border-radius: 6px;
  color: #C38761;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* line 1040, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-cgv-section .crm-cgv-document-view-button:hover {
  background-color: rgba(195, 135, 97, 0.3);
  transform: scale(1.05);
}

/* line 1045, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-cgv-section .crm-cgv-document-view-button i {
  font-size: 0.8rem;
}

/* line 1050, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-cgv-section .crm-cgv-no-documents {
  padding: 12px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
}

/* line 1056, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-cgv-section .crm-cgv-no-documents {
  background-color: rgba(20, 13, 35, 0.03);
}

/* line 1060, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-show-quote-capsule .crm-quote-cgv-section .crm-cgv-no-documents p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  margin: 0;
}

/* line 1066, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-show-quote-capsule .crm-quote-cgv-section .crm-cgv-no-documents p {
  color: rgba(20, 13, 35, 0.6);
}

/* line 1074, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-quote-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding: 0;
  transition: all 0.3s ease;
}

/* line 1082, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-quote-actions.wide-margins {
  margin-right: 0;
}

/* line 1086, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-quote-actions .crm-action-button {
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.8rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* line 1100, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-quote-actions .crm-action-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

/* line 1105, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-quote-actions .crm-action-button.crm-action-button-primary {
  background-color: #C38761;
  border-color: #C38761;
  color: #140D23;
}

/* line 1110, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-quote-actions .crm-action-button.crm-action-button-primary:hover {
  background-color: #af6c42;
}

/* line 1115, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-quote-actions .crm-action-button.crm-action-button-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

/* line 1120, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-quote-actions .crm-action-button.crm-action-button-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 1124, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-quote-actions .crm-action-button.crm-action-button-secondary {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 1129, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-quote-actions .crm-action-button.crm-action-button-secondary:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* line 1137, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-quote-actions .crm-quote-locked-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  background-color: rgba(255, 193, 7, 0.15);
  border: 1px solid rgba(255, 193, 7, 0.4);
  color: #ffc107;
  cursor: help;
}

/* line 1150, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-quote-actions .crm-quote-locked-notice i {
  font-size: 0.9rem;
}

/* line 1154, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-quote-actions .crm-quote-locked-notice {
  background-color: rgba(255, 152, 0, 0.1);
  border-color: rgba(255, 152, 0, 0.3);
  color: #e65100;
}

/* line 1162, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-quote-sidebar {
  width: 300px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 10px;
  height: 100%;
  margin-top: 0;
  transition: all 0.3s ease;
  /* Personnalisation de la barre de défilement */
}

/* line 1171, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-quote-sidebar {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 1176, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-quote-sidebar::-webkit-scrollbar {
  width: 6px;
}

/* line 1180, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-quote-sidebar::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 1185, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-quote-sidebar::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 1190, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-quote-sidebar::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 1194, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-quote-sidebar.hidden {
  display: none;
}

/* line 1198, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-quote-sidebar .quote-documents-section {
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 15px;
}

/* line 1203, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-quote-sidebar .quote-documents-section .section-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

/* line 1209, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-quote-sidebar .quote-documents-section .section-label {
  color: #140D23;
}

/* line 1214, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-quote-sidebar .quote-documents-section .documents-section-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 1219, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-quote-sidebar .quote-documents-section .documents-section-content .document-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* line 1224, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-quote-sidebar .quote-documents-section .documents-section-content .document-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}

/* line 1228, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-quote-sidebar .quote-documents-section .documents-section-content .document-item:not(:last-child) {
  border-bottom: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 1233, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-quote-sidebar .quote-documents-section .documents-section-content .document-item .document-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 1237, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-quote-sidebar .quote-documents-section .documents-section-content .document-item .document-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 1242, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-quote-sidebar .quote-documents-section .documents-section-content .document-item .document-value {
  font-size: 0.85rem;
  color: #fff;
}

/* line 1246, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-quote-sidebar .quote-documents-section .documents-section-content .document-item .document-value {
  color: #140D23;
}

/* line 1251, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-quote-sidebar .quote-documents-section .documents-section-content .document-item .crm-document-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
}

/* line 1265, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-quote-sidebar .quote-documents-section .documents-section-content .document-item .crm-document-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.3);
}

/* line 1271, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-quote-sidebar .quote-documents-section .documents-section-content .document-item .crm-document-link {
  border: 1px solid rgba(20, 13, 35, 0.2);
  background-color: rgba(20, 13, 35, 0.05);
  color: #140D23;
}

/* line 1276, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-quote-sidebar .quote-documents-section .documents-section-content .document-item .crm-document-link:hover {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 1287, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.2s ease;
  white-space: nowrap;
}

/* line 1300, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.status-badge i {
  font-size: 0.7rem;
  opacity: 0.9;
}

/* line 1305, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.status-badge.draft {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

/* line 1309, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .status-badge.draft {
  background-color: rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.8);
}

/* line 1315, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.status-badge.sent {
  background-color: #C38761;
  color: #140D23;
}

/* line 1320, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.status-badge.validated {
  background-color: #4CAF50;
  color: white;
}

/* line 1325, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.status-badge.non-defini {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* line 1329, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .status-badge.non-defini {
  background-color: rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.6);
}

/* line 1336, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.status-badge.success {
  background-color: #4CAF50;
  color: white;
}

/* line 1341, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.status-badge.warning {
  background-color: #FF9800;
  color: white;
}

/* line 1346, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.status-badge.secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* line 1350, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .status-badge.secondary {
  background-color: rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.6);
}

/* line 1356, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.status-badge.info {
  background-color: #2196F3;
  color: white;
}

/* line 1361, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.status-badge.danger {
  background-color: #F44336;
  color: white;
}

/* line 1367, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.status-badge.paid {
  background-color: #4CAF50;
  color: white;
}

/* line 1372, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.status-badge.pending {
  background-color: #FF9800;
  color: white;
}

/* line 1377, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.status-badge.overdue {
  background-color: #F44336;
  color: white;
}

/* line 1382, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.status-badge.cancelled {
  background-color: #9E9E9E;
  color: white;
}

/* line 1388, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.status-badge.completed {
  background-color: #4CAF50;
  color: white;
}

/* line 1393, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.status-badge.in_progress {
  background-color: #2196F3;
  color: white;
}

/* line 1398, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.status-badge.pending_validation {
  background-color: #FF9800;
  color: white;
}

/* line 1403, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.status-badge.rejected {
  background-color: #F44336;
  color: white;
}

/* Classes utilitaires */
/* line 1410, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.d-none {
  display: none !important;
}

/* line 1414, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.hidden {
  display: none !important;
}

/* ==========================================================================
   ANIMATION DE PAILLETTES POUR DEVIS VALIDÉ
   ========================================================================== */
@keyframes confetti-fall {
  0% {
    transform: translateY(-100vh) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

/* line 1432, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

/* ==========================================================================
   CHRONO CODE PENDING - Message d'état pour numéro non attribué
   ========================================================================== */
/* line 1447, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.chrono-code-pending {
  font-style: italic;
  color: #e8e8e8;
  font-size: 0.9em;
  opacity: 0.8;
}

/* ==========================================================================
   WARNING BANNER - Bannière d'avertissement pour devis sans client
   ========================================================================== */
/* line 1458, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-quote-warning-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background-color: rgba(255, 193, 7, 0.15);
  border: 1px solid rgba(255, 193, 7, 0.4);
  border-radius: 8px;
  margin-bottom: 10px;
}

/* line 1468, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-quote-warning-banner i {
  color: #ffc107;
  font-size: 1.2rem;
}

/* line 1473, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-quote-warning-banner span {
  flex: 1;
  color: #fff;
  font-size: 0.9rem;
}

/* line 1478, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-quote-warning-banner span {
  color: #140D23;
}

/* line 1483, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-quote-warning-banner .crm-warning-action-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background-color: #C38761;
  color: #140D23;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* line 1496, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-quote-warning-banner .crm-warning-action-link:hover {
  background-color: #af6c42;
  transform: translateY(-1px);
}

/* line 1501, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-quote-warning-banner .crm-warning-action-link i {
  color: #140D23;
  font-size: 0.8rem;
}

/* line 1507, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-quote-warning-banner {
  background-color: rgba(255, 193, 7, 0.1);
  border-color: rgba(255, 193, 7, 0.3);
}

/* ==========================================================================
   DISABLED BUTTON - Bouton désactivé pour actions non disponibles
   ========================================================================== */
/* line 1517, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-action-button-disabled {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: rgba(128, 128, 128, 0.3);
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(128, 128, 128, 0.3);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: not-allowed;
  opacity: 0.6;
}

/* line 1531, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-action-button-disabled i {
  font-size: 0.8rem;
}

/* line 1535, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-action-button-disabled {
  background-color: rgba(128, 128, 128, 0.2);
  color: rgba(20, 13, 35, 0.4);
  border-color: rgba(128, 128, 128, 0.2);
}

/* ==========================================================================
   OPTIONAL BADGE - Badge pour champs optionnels
   ========================================================================== */
/* line 1546, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-optional-badge {
  font-size: 0.75rem;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* line 1552, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-optional-badge {
  color: rgba(20, 13, 35, 0.5);
}

/* ==========================================================================
   QUOTE INFO SUMMARY - Résumé des informations du devis
   ========================================================================== */
/* line 1561, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-quote-info-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

/* line 1569, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-quote-info-summary {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 1573, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-quote-info-summary .crm-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 1578, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-quote-info-summary .crm-info-item .crm-info-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

/* line 1582, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-quote-info-summary .crm-info-item .crm-info-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 1587, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.crm-quote-info-summary .crm-info-item .crm-info-value {
  color: #fff;
  font-weight: 500;
  font-size: 0.9rem;
}

/* line 1592, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_show_quote.scss */
.lightmode .crm-quote-info-summary .crm-info-item .crm-info-value {
  color: #140D23;
}

/* ==========================================================================
   STYLES POUR L'ÉDITION DE DEVIS - MODULE CRM
   Utilise les styles du module ADV pour une cohérence visuelle totale
   ========================================================================== */
/* Import des styles principaux du module ADV edit_quote */
/* line 1, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-capsule {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 10px 20px 10px 20px;
  font-size: 0.8rem;
  gap: 10px;
}

/* line 12, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-capsule.lightmode {
  color: #140D23;
}

/* line 14, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-capsule.lightmode .discount-input {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 18, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-capsule.lightmode .price-input {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 22, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-capsule.lightmode .price-ttc-container {
  color: #140D23;
}

/* line 25, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-capsule.lightmode .edit-quote-transaction-choice {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 29, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-capsule.lightmode .search-input {
  border-color: transparent !important;
}

/* line 31, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-capsule.lightmode .search-input:focus {
  border-color: transparent !important;
  box-shadow: none !important;
}

/* line 36, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-capsule.lightmode .recipient-choice {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 40, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-capsule.lightmode #publicMarket {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 44, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-capsule.lightmode #privateMarket {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 50, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-capsule .form-group {
  margin: 0;
}

/* line 54, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-capsule form {
  display: flex !important;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  align-items: center;
  height: 100%;
}

/* Card de Configuration */
/* line 65, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-configuration-card {
  width: 100%;
  max-width: 1400px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

/* line 77, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-configuration-card {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.08) 0%, rgba(20, 13, 35, 0.03) 100%);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 83, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-config-header {
  text-align: center;
  margin-bottom: 30px;
}

/* line 87, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-config-header h2, .adv-edit-quote-config-header .h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

/* line 93, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-config-header h2, .lightmode .adv-edit-quote-config-header .h2 {
  color: #140D23;
}

/* line 98, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-config-header p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 102, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-config-header p {
  color: rgba(20, 13, 35, 0.7);
}

/* line 108, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-config-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* line 114, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-config-section {
  width: 100%;
}

/* line 118, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-config-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 124, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-config-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 129, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-config-label i {
  font-size: 1.1rem;
  color: #C38761;
}

/* line 134, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-config-label h3, .adv-edit-quote-config-label .h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
}

/* line 140, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-config-label h3, .lightmode .adv-edit-quote-config-label .h3 {
  color: #140D23;
}

/* line 146, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-config-select {
  width: auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  color: #FFFFFF;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

/* line 156, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-config-select {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 162, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-config-select:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 168, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-config-select option {
  background: #140D23;
  color: #FFFFFF;
}

/* Sélecteur de type de transaction */
/* line 175, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-transaction-selector {
  display: flex;
  gap: 12px;
}

/* line 179, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-transaction-selector .edit-quote-transaction-choice {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 195, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-transaction-selector .edit-quote-transaction-choice {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 201, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-transaction-selector .edit-quote-transaction-choice i {
  font-size: 1rem;
  color: #C38761;
}

/* line 206, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-transaction-selector .edit-quote-transaction-choice:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

/* line 211, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-transaction-selector .edit-quote-transaction-choice:hover {
  background: rgba(20, 13, 35, 0.12);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 217, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-transaction-selector .edit-quote-transaction-choice.selected {
  background: #C38761;
  border-color: #C38761;
  color: #140D23;
}

/* line 222, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-transaction-selector .edit-quote-transaction-choice.selected i {
  color: #140D23;
}

/* Contenu des transactions */
/* line 230, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-transaction-content {
  margin-top: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
}

/* line 237, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-transaction-content {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 243, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-transaction-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

/* line 251, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-transaction-info {
  background: rgba(20, 13, 35, 0.08);
}

/* line 255, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-transaction-info i {
  color: #C38761;
  font-size: 1.1rem;
}

/* line 260, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-transaction-info span {
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 500;
}

/* line 265, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-transaction-info span {
  color: #140D23;
}

/* line 272, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-document-search h4, .adv-edit-quote-document-search .h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 15px;
}

/* line 278, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-document-search h4, .lightmode .adv-edit-quote-document-search .h4 {
  color: #140D23;
}

/* line 283, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-document-search .search-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* line 289, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-document-search .form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 295, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-document-search .filter {
  width: auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  color: #FFFFFF;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

/* line 305, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-document-search .filter {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 311, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-document-search .filter:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 317, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-document-search .filter option {
  background: #140D23;
  color: #FFFFFF;
}

/* Styles pour la recherche d'articles */
/* line 325, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-search-filters {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

/* line 332, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-filter-group {
  display: flex;
  gap: 12px;
  width: 100%;
}

@media (max-width: 768px) {
  /* line 332, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
  .adv-edit-quote-filter-group {
    flex-direction: column;
  }
}

/* line 342, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-search-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* line 348, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-search-input {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 354, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-search-input .search-form {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

/* line 361, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-search-input i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  z-index: 2;
}

/* line 370, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-search-input i {
  color: rgba(20, 13, 35, 0.6);
}

/* line 375, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-search-input button {
  all: unset;
  padding: 8px 12px;
  background: #C38761;
  border-radius: 8px;
  color: #140D23;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 384, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-search-input button:hover {
  background: #864B28;
  transform: scale(1.05);
}

/* line 389, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-search-input button i {
  position: static;
  transform: none;
  color: #140D23;
}

/* Utilise maintenant la classe générique adv-searchbar */
/* Styles pour le tableau d'articles */
/* line 400, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-articles-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 407, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-articles-table {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
}

/* line 414, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-articles-table {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 420, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-articles-table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 1px;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.1);
}

/* line 427, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-articles-table-header {
  background: rgba(20, 13, 35, 0.1);
}

/* line 432, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-table-cell {
  padding: 12px 8px;
  font-size: 0.8rem;
  font-weight: 600;
  width: 100%;
  text-align: center;
  color: #FFFFFF;
}

/* line 440, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-table-cell {
  color: #140D23;
}

/* line 444, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-table-cell.adv-header-article {
  text-align: left;
  padding-left: 16px;
}

/* line 451, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-articles-table-body .entry {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

/* line 458, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-articles-table-body .entry {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 462, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-articles-table-body .entry:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* line 465, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-articles-table-body .entry:hover {
  background: rgba(20, 13, 35, 0.05);
}

/* line 470, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-articles-table-body .entry.new-entry {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
}

/* line 474, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-articles-table-body .entry.new-entry {
  color: rgba(20, 13, 35, 0.6);
}

/* line 478, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-articles-table-body .entry.new-entry:hover {
  background: rgba(195, 135, 97, 0.1);
  color: #C38761;
}

/* line 482, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-articles-table-body .entry.new-entry:hover {
  background: rgba(195, 135, 97, 0.1);
  color: #C38761;
}

/* line 489, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-articles-table-body .entry > div {
  padding: 12px 8px;
  font-size: 0.8rem;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 498, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-articles-table-body .entry > div.adv-edit-quote-row1-subrow4-list-column-article {
  text-align: left;
  padding-left: 16px;
  justify-content: flex-start;
  white-space: nowrap;
}

/* Styles pour la section des totaux - récupérés de _quote.scss */
/* line 509, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-quote-total-section {
  display: flex;
  justify-content: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

/* line 516, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-quote-total-section {
  background: rgba(20, 13, 35, 0.05);
}

/* line 521, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-quote-total-amount {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
}

/* line 528, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-quote-total-amount .adv-label {
  color: rgba(255, 255, 255, 0.8);
}

/* line 531, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-quote-total-amount .adv-label {
  color: rgba(20, 13, 35, 0.8);
}

/* line 536, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-quote-total-amount .adv-value {
  color: #C38761;
  font-size: 1.1rem;
}

/* line 540, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-quote-total-amount .adv-value {
  color: #C38761;
}

/* Styles pour les entrées du tableau (articles ajoutés) */
/* line 547, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.entry {
  width: 100%;
  padding: 10px;
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 553, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.entry:last-child {
  border-bottom: none;
}

/* line 557, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .entry {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 561, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.entry.new-entry {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
}

/* line 568, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .entry.new-entry {
  background-color: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 573, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.entry.new-entry:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.5);
}

/* line 577, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .entry.new-entry:hover {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 583, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.entry.new-entry .adv-edit-quote-row1-subrow4-list-column-article {
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
}

/* line 587, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .entry.new-entry .adv-edit-quote-row1-subrow4-list-column-article {
  color: rgba(20, 13, 35, 0.7);
}

/* line 592, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.entry.new-entry .actions-container {
  color: #C38761;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 599, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.entry.new-entry .actions-container i {
  color: #C38761;
  font-size: 1.2rem;
  transition: all 0.2s ease;
}

/* line 604, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.entry.new-entry .actions-container i:hover {
  color: #864B28;
  transform: scale(1.1);
}

/* line 610, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.entry.new-entry .actions-container:hover {
  transform: scale(1.05);
}

/* line 616, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.entry .quantity-input {
  all: unset;
  width: 70%;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 630, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .entry .quantity-input {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 635, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.entry .quantity-input:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 639, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .entry .quantity-input:focus {
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 646, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.entry .discount-input {
  all: unset;
  width: 10%;
  display: flex;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 661, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .entry .discount-input {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 666, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.entry .discount-input:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 670, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .entry .discount-input:focus {
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 677, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.entry .article-input {
  all: unset;
  width: 50%;
  display: flex;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 692, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .entry .article-input {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 697, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.entry .article-input:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 701, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .entry .article-input:focus {
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 708, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.entry .price-input {
  width: 80px;
  min-width: 60px;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
  text-align: center;
  -moz-appearance: textfield;
  /* Masquer les flèches du input number pour permettre la saisie libre */
}

/* line 722, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.entry .price-input::-webkit-outer-spin-button, .entry .price-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* line 728, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.entry .price-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 732, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .entry .price-input {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 736, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .entry .price-input::placeholder {
  color: rgba(20, 13, 35, 0.4);
}

/* line 741, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.entry .price-input:focus {
  outline: none;
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 746, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .entry .price-input:focus {
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 754, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.results {
  min-height: 50px;
  max-height: 200px;
  overflow-y: auto;
  width: 100%;
  /* Personnalisation de la barre de défilement */
}

/* line 761, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.results::-webkit-scrollbar {
  width: 5px;
}

/* line 765, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.results::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 770, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.results::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
  border: 4px solid #e8e8e8;
}

/* line 776, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.results::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 781, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.search-results-articles {
  display: flex;
  min-height: 30px;
  width: 98% !important;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 5px;
  border-radius: 0.375rem;
  flex-wrap: nowrap;
}

/* line 792, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.search-results-articles label {
  opacity: 1;
}

/* line 796, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.search-results-articles .articles {
  font-size: 0.7rem !important;
  margin: 0;
  cursor: pointer;
  font-weight: normal !important;
}

/* line 801, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.search-results-articles .articles p {
  color: #FFFFFF !important;
}

/* line 804, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .search-results-articles .articles p {
  color: #140D23 !important;
}

/* line 810, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.search-results-articles:hover {
  background-color: rgba(255, 255, 255, 0.5);
  transition: transform 0.3s ease;
}

/* line 814, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .search-results-articles:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 820, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
select {
  all: unset;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: normal;
  padding: 5px 15px;
}

/* line 833, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode select {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 838, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
select:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 842, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode select:focus {
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 848, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
select option {
  all: unset;
  background-color: #E8E8E8;
  color: #000000;
}

/* line 855, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.trash {
  cursor: pointer;
  font-size: 0.8rem;
}

/* line 858, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.trash:hover {
  color: #A60240;
}

/* Boutons d'actions */
/* line 864, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-row2 {
  width: 80%;
  height: 7.5%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  /* Styles spécifiques pour les boutons d'actions avec pictogrammes */
}

/* line 874, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-row2 form {
  display: flex !important;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  align-items: center;
  height: 100%;
}

/* line 884, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-row2 .form-button, .adv-edit-quote-row2 .users-management-container .users-header .add-user-btn, .users-management-container .users-header .adv-edit-quote-row2 .add-user-btn, .adv-edit-quote-row2 .crm-action-button {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: #C18859;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  /* Style pour le bouton d'abandon (danger) */
  /* Style pour le bouton retour (secondary) */
  /* Adaptation pour le mode clair */
}

/* line 899, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-row2 .form-button:hover, .adv-edit-quote-row2 .users-management-container .users-header .add-user-btn:hover, .users-management-container .users-header .adv-edit-quote-row2 .add-user-btn:hover, .adv-edit-quote-row2 .crm-action-button:hover {
  background-color: #a67548;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* line 905, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-row2 .form-button i, .adv-edit-quote-row2 .users-management-container .users-header .add-user-btn i, .users-management-container .users-header .adv-edit-quote-row2 .add-user-btn i, .adv-edit-quote-row2 .crm-action-button i {
  font-size: 0.9rem;
  color: white;
}

/* line 911, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-row2 .form-button[data-confirm], .adv-edit-quote-row2 .users-management-container .users-header .add-user-btn[data-confirm], .users-management-container .users-header .adv-edit-quote-row2 .add-user-btn[data-confirm], .adv-edit-quote-row2 .crm-action-button[data-confirm] {
  background-color: rgba(231, 76, 60, 0.8);
  border-color: rgba(231, 76, 60, 0.5);
}

/* line 915, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-row2 .form-button[data-confirm]:hover, .adv-edit-quote-row2 .users-management-container .users-header .add-user-btn[data-confirm]:hover, .users-management-container .users-header .adv-edit-quote-row2 .add-user-btn[data-confirm]:hover, .adv-edit-quote-row2 .crm-action-button[data-confirm]:hover {
  background-color: #e74c3c;
}

/* line 921, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-row2 .form-button[href*="show_quote"], .adv-edit-quote-row2 .users-management-container .users-header .add-user-btn[href*="show_quote"], .users-management-container .users-header .adv-edit-quote-row2 .add-user-btn[href*="show_quote"], .adv-edit-quote-row2 .crm-action-button[href*="show_quote"] {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

/* line 925, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-row2 .form-button[href*="show_quote"]:hover, .adv-edit-quote-row2 .users-management-container .users-header .add-user-btn[href*="show_quote"]:hover, .users-management-container .users-header .adv-edit-quote-row2 .add-user-btn[href*="show_quote"]:hover, .adv-edit-quote-row2 .crm-action-button[href*="show_quote"]:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 931, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-row2 .form-button, .lightmode .adv-edit-quote-row2 .users-management-container .users-header .add-user-btn, .users-management-container .users-header .lightmode .adv-edit-quote-row2 .add-user-btn, .lightmode .adv-edit-quote-row2 .crm-action-button {
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 935, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-row2 .form-button:hover, .lightmode .adv-edit-quote-row2 .users-management-container .users-header .add-user-btn:hover, .users-management-container .users-header .lightmode .adv-edit-quote-row2 .add-user-btn:hover, .lightmode .adv-edit-quote-row2 .crm-action-button:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 939, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-row2 .form-button[data-confirm], .lightmode .adv-edit-quote-row2 .users-management-container .users-header .add-user-btn[data-confirm], .users-management-container .users-header .lightmode .adv-edit-quote-row2 .add-user-btn[data-confirm], .lightmode .adv-edit-quote-row2 .crm-action-button[data-confirm] {
  background-color: rgba(231, 76, 60, 0.1);
  border-color: rgba(231, 76, 60, 0.3);
  color: #a82315;
}

/* line 944, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-row2 .form-button[data-confirm]:hover, .lightmode .adv-edit-quote-row2 .users-management-container .users-header .add-user-btn[data-confirm]:hover, .users-management-container .users-header .lightmode .adv-edit-quote-row2 .add-user-btn[data-confirm]:hover, .lightmode .adv-edit-quote-row2 .crm-action-button[data-confirm]:hover {
  background-color: rgba(231, 76, 60, 0.2);
}

/* line 949, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-row2 .form-button[href*="show_quote"], .lightmode .adv-edit-quote-row2 .users-management-container .users-header .add-user-btn[href*="show_quote"], .users-management-container .users-header .lightmode .adv-edit-quote-row2 .add-user-btn[href*="show_quote"], .lightmode .adv-edit-quote-row2 .crm-action-button[href*="show_quote"] {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 953, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-row2 .form-button[href*="show_quote"]:hover, .lightmode .adv-edit-quote-row2 .users-management-container .users-header .add-user-btn[href*="show_quote"]:hover, .users-management-container .users-header .lightmode .adv-edit-quote-row2 .add-user-btn[href*="show_quote"]:hover, .lightmode .adv-edit-quote-row2 .crm-action-button[href*="show_quote"]:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* line 961, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.userChoice {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 15px;
}

/* line 968, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.userChoice .item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* line 982, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .userChoice .item {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.1) 0%, rgba(20, 13, 35, 0.05) 100%);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 987, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.userChoice .item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  border-color: rgba(232, 232, 232, 0.6);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

/* line 993, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .userChoice .item:hover {
  border-color: rgba(20, 13, 35, 0.4);
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.15) 0%, rgba(20, 13, 35, 0.08) 100%);
}

/* line 999, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.userChoice .item .item-header {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-grow: 1;
}

/* line 1005, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.userChoice .item .item-header i {
  color: green;
  font-size: 1rem;
  padding: 8px;
  background-color: rgba(195, 135, 97, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* line 1014, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.userChoice .item .item-header p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-color-primary);
  line-height: 1.4;
  transition: color 0.3s ease;
}

/* line 1022, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .userChoice .item .item-header p {
  color: #140D23;
}

/* line 1029, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.userChoice .item:hover .item-header i {
  color: #864B28;
  background-color: rgba(134, 75, 40, 0.15);
  transform: scale(1.1);
}

/* line 1035, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.userChoice .item:hover .item-header p {
  color: #FFFFFF;
}

/* line 1038, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .userChoice .item:hover .item-header p {
  color: #140D23;
}

/* line 1046, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.recipient-choice-container, .recipient-search {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px;
}

/* line 1055, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.type-of-order-search {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
}

/* line 1063, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-market-type-selector {
  display: flex;
  gap: 12px;
}

/* line 1067, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-market-type-selector .adv-edit-quote-market-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 1083, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-market-type-selector .adv-edit-quote-market-option {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 1089, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-market-type-selector .adv-edit-quote-market-option i {
  font-size: 1rem;
  color: #C38761;
}

/* line 1094, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-market-type-selector .adv-edit-quote-market-option:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

/* line 1099, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.lightmode .adv-edit-quote-market-type-selector .adv-edit-quote-market-option:hover {
  background: rgba(20, 13, 35, 0.12);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 1105, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-market-type-selector .adv-edit-quote-market-option.selected {
  background: #C38761;
  border-color: #C38761;
  color: #140D23;
}

/* line 1110, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_edit_quote.scss */
.adv-edit-quote-market-type-selector .adv-edit-quote-market-option.selected i {
  color: #140D23;
}

/* ==========================================================================
   SECTION INFORMATIONS DU DEVIS (spécifique CRM)
   ========================================================================== */
/* line 12, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_edit_quote.scss */
.adv-edit-quote-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  width: 100%;
}

/* line 19, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_edit_quote.scss */
.adv-edit-quote-info-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

/* line 29, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_edit_quote.scss */
.lightmode .adv-edit-quote-info-item {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 34, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_edit_quote.scss */
.adv-edit-quote-info-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

/* line 38, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_edit_quote.scss */
.lightmode .adv-edit-quote-info-item:hover {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 45, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_edit_quote.scss */
.adv-edit-quote-info-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 55, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_edit_quote.scss */
.lightmode .adv-edit-quote-info-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 59, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_edit_quote.scss */
.adv-edit-quote-info-label i {
  font-size: 0.85rem;
  color: #C38761;
}

/* line 65, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_edit_quote.scss */
.adv-edit-quote-info-value {
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* line 70, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_edit_quote.scss */
.lightmode .adv-edit-quote-info-value {
  color: #140D23;
}

/* line 74, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_edit_quote.scss */
.adv-edit-quote-info-value .status-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* line 82, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_edit_quote.scss */
.adv-edit-quote-info-value .status-badge.draft {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

/* line 86, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_edit_quote.scss */
.lightmode .adv-edit-quote-info-value .status-badge.draft {
  background-color: rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.8);
}

/* line 92, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_edit_quote.scss */
.adv-edit-quote-info-value .status-badge.sent {
  background-color: #C38761;
  color: #140D23;
}

/* line 97, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_edit_quote.scss */
.adv-edit-quote-info-value .status-badge.validated {
  background-color: #4CAF50;
  color: white;
}

/* line 102, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_edit_quote.scss */
.adv-edit-quote-info-value .status-badge.rejected {
  background-color: #F44336;
  color: white;
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 768px) {
  /* line 113, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_edit_quote.scss */
  .adv-edit-quote-info-grid {
    grid-template-columns: 1fr;
  }
  /* line 117, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_edit_quote.scss */
  .adv-edit-quote-row2 {
    flex-direction: column;
    gap: 8px;
  }
  /* line 121, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_edit_quote.scss */
  .adv-edit-quote-row2 form {
    width: 100%;
    justify-content: center;
  }
  /* line 126, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_edit_quote.scss */
  .adv-edit-quote-row2 .adv-button-regular,
.adv-edit-quote-row2 .adv-cancel-button,
.adv-edit-quote-row2 .adv-back-button {
    width: 100%;
    justify-content: center;
  }
}

/* line 1, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-capsule {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 10px 30px 10px 30px;
  font-size: 0.8rem;
  gap: 10px;
}

/* line 11, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-capsule.lightmode {
  color: #140D23;
}

/* line 16, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-contacts-capsule span {
  color: #140D23;
}

/* line 19, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.nightmode .crm-quote-contacts-capsule span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 25, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-contacts-capsule p {
  color: #140D23;
}

/* line 28, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.nightmode .crm-quote-contacts-capsule p {
  color: #FFFFFF;
}

/* line 34, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-contacts-capsule i {
  color: #140D23;
}

/* line 37, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.nightmode .crm-quote-contacts-capsule i {
  color: #FFFFFF;
}

/* line 43, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-icon-inherit-color {
  color: inherit;
}

/* line 47, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 54, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-tabs {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(232, 232, 232, 0.3);
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}

/* line 65, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-contacts-tabs {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 71, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-tab-button {
  flex: 1;
  padding: 15px 20px;
  background-color: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* line 86, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-tab-button {
  color: rgba(20, 13, 35, 0.6);
}

/* line 90, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-tab-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

/* line 94, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-tab-button:hover {
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 100, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-tab-button.crm-tab-active {
  background-color: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  font-weight: 600;
}

/* line 105, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-tab-button.crm-tab-active {
  background-color: rgba(20, 13, 35, 0.15);
  color: #140D23;
}

/* line 111, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-tab-button i {
  font-size: 1rem;
}

/* line 116, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-content {
  width: 100%;
  height: 85%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(232, 232, 232, 0.5);
  border-top: none;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
}

/* line 125, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-contacts-content {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 131, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-tab-content {
  display: none;
  height: 100%;
  width: 100%;
}

/* line 136, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-tab-content.crm-tab-active {
  display: block;
}

/* line 142, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
}

/* line 151, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1 .crm-quote-contacts-row1-column2 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 10px;
}

/* line 161, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1 .crm-quote-contacts-row1-column2 .crm-articles-table {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  width: 100%;
  overflow-y: hidden;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
}

/* line 170, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-contacts-row1 .crm-quote-contacts-row1-column2 .crm-articles-table {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 175, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1 .crm-quote-contacts-row1-column2 .crm-articles-table-header {
  display: flex;
  background-color: rgba(255, 255, 255, 0.08);
  font-weight: 600;
  white-space: nowrap;
  font-size: 0.75rem;
  padding: 5px;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* line 185, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-contacts-row1 .crm-quote-contacts-row1-column2 .crm-articles-table-header {
  background-color: rgba(20, 13, 35, 0.08);
  color: rgba(20, 13, 35, 0.8);
  border-bottom-color: rgba(20, 13, 35, 0.15);
}

/* line 191, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1 .crm-quote-contacts-row1-column2 .crm-articles-table-header .crm-table-cell {
  white-space: nowrap;
  padding: 5px;
}

/* line 197, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1 .crm-quote-contacts-row1-column2 .crm-articles-table-body {
  min-height: 120px;
  max-height: 300px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

/* line 204, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1 .crm-quote-contacts-row1-column2 .crm-articles-table-body.crm-no-articles-container {
  text-align: center;
  padding: 2rem 15px;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  font-size: 0.85rem;
}

/* line 211, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-contacts-row1 .crm-quote-contacts-row1-column2 .crm-articles-table-body.crm-no-articles-container {
  color: rgba(20, 13, 35, 0.6);
}

/* line 216, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1 .crm-quote-contacts-row1-column2 .crm-articles-table-body::-webkit-scrollbar {
  width: 4px;
}

/* line 219, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1 .crm-quote-contacts-row1-column2 .crm-articles-table-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 223, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1 .crm-quote-contacts-row1-column2 .crm-articles-table-body::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 227, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1 .crm-quote-contacts-row1-column2 .crm-articles-table-body::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 232, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1 .crm-quote-contacts-row1-column2 .crm-articles-table-row {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

/* line 237, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-contacts-row1 .crm-quote-contacts-row1-column2 .crm-articles-table-row {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 241, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1 .crm-quote-contacts-row1-column2 .crm-articles-table-row:last-child {
  border-bottom: none;
}

/* line 245, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1 .crm-quote-contacts-row1-column2 .crm-articles-table-row:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

/* line 248, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-contacts-row1 .crm-quote-contacts-row1-column2 .crm-articles-table-row:hover {
  background-color: rgba(20, 13, 35, 0.03);
}

/* line 254, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1 .crm-quote-contacts-row1-column2 .crm-table-cell {
  color: #fff;
  font-size: 0.8rem;
  padding: 8px 12px;
  display: flex;
  align-items: center;
}

/* line 261, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-contacts-row1 .crm-quote-contacts-row1-column2 .crm-table-cell {
  color: #140D23;
}

/* line 266, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1 .crm-quote-contacts-row1-column2 .crm-header-article, .crm-quote-contacts-row1 .crm-quote-contacts-row1-column2 .crm-cell-article {
  width: 40%;
  justify-content: flex-start;
}

/* line 267, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1 .crm-quote-contacts-row1-column2 .crm-header-discount-perc, .crm-quote-contacts-row1 .crm-quote-contacts-row1-column2 .crm-cell-discount-perc {
  width: 15%;
  justify-content: center;
}

/* line 268, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1 .crm-quote-contacts-row1-column2 .crm-header-price-ht, .crm-quote-contacts-row1 .crm-quote-contacts-row1-column2 .crm-cell-price-ht {
  width: 15%;
  justify-content: center;
}

/* line 269, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1 .crm-quote-contacts-row1-column2 .crm-header-price-ttc, .crm-quote-contacts-row1 .crm-quote-contacts-row1-column2 .crm-cell-price-ttc {
  width: 15%;
  justify-content: center;
}

/* line 270, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1 .crm-quote-contacts-row1-column2 .crm-header-quantity, .crm-quote-contacts-row1 .crm-quote-contacts-row1-column2 .crm-cell-quantity {
  width: 15%;
  justify-content: center;
}

/* line 274, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1-column1 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
}

/* line 284, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1-column1-searchbar {
  width: 100%;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 297, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-contacts-row1-column1-searchbar {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 302, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1-column1-searchbar button {
  all: unset;
}

/* line 305, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1-column1-searchbar i {
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 310, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-contacts-row1-column1-searchbar i {
  color: #140D23 !important;
}

/* line 314, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1-column1-searchbar span {
  font-weight: normal !important;
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 320, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-contacts-row1-column1-searchbar span {
  color: #140D23 !important;
}

/* line 326, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1-column1-create-contact {
  width: 100%;
  margin-bottom: 10px;
}

/* line 331, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-create-contact-button {
  width: 100%;
  padding: 10px 15px;
  background-color: rgba(195, 135, 97, 0.2);
  border: 1px solid rgba(195, 135, 97, 0.4);
  border-radius: 8px;
  color: #C38761;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* line 347, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-create-contact-button {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 353, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-create-contact-button:hover {
  background-color: rgba(195, 135, 97, 0.3);
  border-color: rgba(195, 135, 97, 0.6);
  transform: translateY(-1px);
}

/* line 358, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-create-contact-button:hover {
  background-color: rgba(20, 13, 35, 0.2);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 364, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-create-contact-button i {
  font-size: 0.8rem;
  color: inherit;
}

/* line 370, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1-column1-results {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 100%;
}

/* line 379, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1-column1-results h3, .crm-quote-contacts-row1-column1-results .h3 {
  all: unset;
  font-size: 0.8rem;
}

/* line 383, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-contacts-row1-column1-results h3, .lightmode .crm-quote-contacts-row1-column1-results .h3 {
  color: #140D23;
}

/* line 388, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1-column1-results .results {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  min-height: 60px;
  max-height: 60%;
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
  /* Personnalisation de la barre de défilement */
  /* Style pour le message "Aucun contact sélectionné" */
  /* Style pour chaque contact sélectionné */
}

/* line 402, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-contacts-row1-column1-results .results {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 408, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1-column1-results .results::-webkit-scrollbar {
  width: 6px;
}

/* line 412, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1-column1-results .results::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 417, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1-column1-results .results::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
  border: 2px solid transparent;
}

/* line 423, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1-column1-results .results::-webkit-scrollbar-thumb:hover {
  background: #864B28;
}

/* line 428, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1-column1-results .results p[data-contacts-of-document-target="noContacts"] {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  text-align: center;
  margin: 0;
  padding: 20px;
}

/* line 435, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-contacts-row1-column1-results .results p[data-contacts-of-document-target="noContacts"] {
  color: rgba(20, 13, 35, 0.6);
}

/* line 441, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1-column1-results .results .contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 80px;
  gap: 5px;
  /* Contenu du contact */
  /* Bouton de suppression */
  /* Animation d'entrée */
  /* Animation de sortie */
}

/* line 456, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-contacts-row1-column1-results .results .contact-item {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.1) 0%, rgba(20, 13, 35, 0.05) 100%);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 461, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1-column1-results .results .contact-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: rgba(195, 135, 97, 0.4);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

/* line 467, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-contacts-row1-column1-results .results .contact-item:hover {
  border-color: rgba(195, 135, 97, 0.4);
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.15) 0%, rgba(20, 13, 35, 0.08) 100%);
}

/* line 474, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1-column1-results .results .contact-item .contact-info {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
  width: 100%;
}

/* line 481, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1-column1-results .results .contact-item .contact-info .contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(195, 135, 97, 0.15);
  border-radius: 50%;
  color: #C38761;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

/* line 494, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1-column1-results .results .contact-item .contact-info .contact-email {
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0;
  text-align: center;
}

/* line 501, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-contacts-row1-column1-results .results .contact-item .contact-info .contact-email {
  color: #140D23;
}

/* line 508, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1-column1-results .results .contact-item .contact-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(166, 2, 64, 0.1);
  border: 1px solid rgba(166, 2, 64, 0.3);
  border-radius: 50%;
  color: rgba(166, 2, 64, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
}

/* line 522, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1-column1-results .results .contact-item .contact-remove:hover {
  background: rgba(166, 2, 64, 0.2);
  border-color: #A60240;
  color: #A60240;
  transform: scale(1.1);
}

/* line 529, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1-column1-results .results .contact-item .contact-remove i {
  font-size: 0.8rem;
}

/* line 535, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1-column1-results .results .contact-item.contact-item-enter {
  animation: slideInFromTop 0.3s ease-out;
}

/* line 540, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1-column1-results .results .contact-item.contact-item-exit {
  animation: slideOutToRight 0.3s ease-in;
}

/* Animations pour les contacts */
@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideOutToRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

/* Styles responsives pour la liste des contacts */
@media (max-width: 768px) {
  /* line 573, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
  .crm-quote-contacts-row1-column1-results .results {
    padding: 8px;
    gap: 6px;
    max-height: 250px;
  }
  /* line 578, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
  .crm-quote-contacts-row1-column1-results .results .contact-item {
    padding: 5px;
    gap: 5px;
  }
  /* line 582, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
  .crm-quote-contacts-row1-column1-results .results .contact-item .contact-info {
    gap: 8px;
  }
  /* line 585, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
  .crm-quote-contacts-row1-column1-results .results .contact-item .contact-info .contact-icon {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
  /* line 591, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
  .crm-quote-contacts-row1-column1-results .results .contact-item .contact-info .contact-email {
    font-size: 0.8rem;
  }
  /* line 596, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
  .crm-quote-contacts-row1-column1-results .results .contact-item .contact-remove {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  /* line 608, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
  .crm-quote-contacts-row1-column1-results .results {
    padding: 6px;
    gap: 4px;
    max-height: 200px;
  }
  /* line 613, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
  .crm-quote-contacts-row1-column1-results .results .contact-item {
    padding: 5px;
    gap: 5px;
  }
  /* line 617, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
  .crm-quote-contacts-row1-column1-results .results .contact-item .contact-info {
    gap: 6px;
  }
  /* line 620, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
  .crm-quote-contacts-row1-column1-results .results .contact-item .contact-info .contact-icon {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
  }
  /* line 626, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
  .crm-quote-contacts-row1-column1-results .results .contact-item .contact-info .contact-email {
    font-size: 0.75rem;
    word-break: break-all;
  }
  /* line 632, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
  .crm-quote-contacts-row1-column1-results .results .contact-item .contact-remove {
    width: 22px;
    height: 22px;
    font-size: 0.65rem;
  }
}

/* line 643, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1-column2-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  width: 100%;
  margin-bottom: 5px;
  height: 15%;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
}

/* line 656, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-contacts-row1-column2-header {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 660, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1-column2-header .crm-header-section, .crm-quote-contacts-row1-column2-header .crm-contract-number-section,
.crm-quote-contacts-row1-column2-header .crm-market-type-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  gap: 5px;
}

/* line 667, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1-column2-header .crm-header-section .crm-label, .crm-quote-contacts-row1-column2-header .crm-contract-number-section .crm-label,
.crm-quote-contacts-row1-column2-header .crm-market-type-section .crm-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  margin-bottom: 0;
  display: block;
  white-space: nowrap;
}

/* line 674, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-contacts-row1-column2-header .crm-header-section .crm-label, .lightmode .crm-quote-contacts-row1-column2-header .crm-contract-number-section .crm-label,
.lightmode .crm-quote-contacts-row1-column2-header .crm-market-type-section .crm-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 678, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1-column2-header .crm-header-section .crm-value, .crm-quote-contacts-row1-column2-header .crm-contract-number-section .crm-value,
.crm-quote-contacts-row1-column2-header .crm-market-type-section .crm-value {
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  display: block;
  white-space: nowrap;
}

/* line 684, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-contacts-row1-column2-header .crm-header-section .crm-value, .lightmode .crm-quote-contacts-row1-column2-header .crm-contract-number-section .crm-value,
.lightmode .crm-quote-contacts-row1-column2-header .crm-market-type-section .crm-value {
  color: #140D23;
}

/* line 689, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row1-column2-header .crm-header-section.crm-recipient-name-section .crm-value, .crm-quote-contacts-row1-column2-header .crm-recipient-name-section.crm-contract-number-section .crm-value,
.crm-quote-contacts-row1-column2-header .crm-recipient-name-section.crm-market-type-section .crm-value {
  font-size: 0.7rem;
}

/* line 697, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-invoice-summary-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-top: 10px;
}

/* line 708, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-invoice-summary-section {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 712, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-invoice-summary-section .crm-summary-item {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1 1 0;
}

/* line 721, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-invoice-summary-section .crm-summary-item .crm-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  margin-bottom: 0;
  display: block;
  white-space: nowrap;
}

/* line 728, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-invoice-summary-section .crm-summary-item .crm-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 733, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-invoice-summary-section .crm-summary-item .crm-value {
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  display: block;
  text-align: center;
  white-space: nowrap;
}

/* line 741, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-invoice-summary-section .crm-summary-item .crm-value {
  color: #140D23;
}

/* line 747, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-invoice-summary-section .crm-summary-item.crm-summary-total-ttc .crm-value {
  color: #d4a574;
  font-size: 0.8rem;
}

/* line 756, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-cgv-tab-content {
  width: 100%;
  height: 100%;
  padding: 30px;
  overflow-y: auto;
}

/* line 762, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-cgv-tab-content::-webkit-scrollbar {
  width: 6px;
}

/* line 765, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-cgv-tab-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 769, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-cgv-tab-content::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 773, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-cgv-tab-content::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 778, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-cgv-header {
  text-align: center;
  margin-bottom: 30px;
}

/* line 782, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-cgv-header h2, .crm-cgv-header .h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #FFFFFF;
}

/* line 788, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-cgv-header h2, .lightmode .crm-cgv-header .h2 {
  color: #140D23;
}

/* line 793, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-cgv-header p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 797, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-cgv-header p {
  color: rgba(20, 13, 35, 0.7);
}

/* line 803, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-cgv-list-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 809, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-cgv-item {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(232, 232, 232, 0.3);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
}

/* line 816, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-cgv-item {
  background-color: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 821, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-cgv-item:hover {
  background-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* line 826, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-cgv-item:hover {
  background-color: rgba(20, 13, 35, 0.12);
}

/* line 832, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-cgv-item-header {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}

/* line 839, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-cgv-item-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(195, 135, 97, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* line 849, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-cgv-item-icon i {
  font-size: 1.5rem;
  color: #C38761;
}

/* line 855, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-cgv-item-info {
  flex: 1;
}

/* line 858, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-cgv-item-info h3, .crm-cgv-item-info .h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #FFFFFF;
}

/* line 864, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-cgv-item-info h3, .lightmode .crm-cgv-item-info .h3 {
  color: #140D23;
}

/* line 870, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-cgv-documents {
  margin-top: 15px;
}

/* line 873, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-cgv-documents h4, .crm-cgv-documents .h4 {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
}

/* line 879, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-cgv-documents h4, .lightmode .crm-cgv-documents .h4 {
  color: rgba(20, 13, 35, 0.8);
}

/* line 885, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-cgv-documents-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 891, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-cgv-document-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 12px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
}

/* line 900, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-cgv-document-item {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 905, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-cgv-document-info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

/* line 911, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-cgv-document-info i {
  color: #e74c3c;
  font-size: 0.9rem;
}

/* line 916, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-cgv-document-info .crm-cgv-document-name {
  font-size: 0.85rem;
  color: #FFFFFF;
}

/* line 920, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-cgv-document-info .crm-cgv-document-name {
  color: #140D23;
}

/* line 925, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-cgv-document-info .crm-cgv-document-pages {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

/* line 932, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-cgv-document-info .crm-cgv-document-pages {
  color: rgba(20, 13, 35, 0.6);
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 939, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-cgv-document-view-button {
  color: #C38761;
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 6px;
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background-color: transparent;
  border: 1px solid rgba(195, 135, 97, 0.3);
}

/* line 954, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-cgv-document-view-button:hover {
  background: #C38761;
  color: #FFFFFF;
  transform: scale(1.05);
  border-color: #C38761;
}

/* line 961, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-cgv-document-view-button i {
  font-size: 0.8rem;
  color: inherit;
}

/* line 966, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-cgv-document-view-button {
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 970, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-cgv-document-view-button:hover {
  background: #140D23;
  color: #FFFFFF;
  border-color: #140D23;
}

/* line 978, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-cgv-no-documents {
  margin-top: 15px;
  text-align: center;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
}

/* line 985, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-cgv-no-documents {
  background-color: rgba(20, 13, 35, 0.03);
}

/* line 989, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-cgv-no-documents p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

/* line 994, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-cgv-no-documents p {
  color: rgba(20, 13, 35, 0.5);
}

/* line 1000, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-cgv-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 40px;
}

/* line 1010, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-cgv-empty-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* line 1020, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-cgv-empty-icon {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 1024, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-cgv-empty-icon i {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.4);
}

/* line 1028, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-cgv-empty-icon i {
  color: rgba(20, 13, 35, 0.4);
}

/* line 1034, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-cgv-empty-state h3, .crm-cgv-empty-state .h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFFFFF;
}

/* line 1040, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-cgv-empty-state h3, .lightmode .crm-cgv-empty-state .h3 {
  color: #140D23;
}

/* line 1045, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-cgv-empty-state p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 400px;
  line-height: 1.5;
}

/* line 1051, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-cgv-empty-state p {
  color: rgba(20, 13, 35, 0.6);
}

/* line 1057, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-actions-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  align-items: center;
}

/* line 1066, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 100%;
}

/* line 1077, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-delivery-choice {
  background: rgba(20, 13, 35, 0.06);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 1083, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 1089, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-delivery-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(195, 135, 97, 0.2);
  color: #C38761;
}

/* line 1099, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-delivery-icon {
  background: rgba(20, 13, 35, 0.12);
  color: #140D23;
}

/* line 1104, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-delivery-icon i {
  font-size: 1.1rem;
}

/* line 1109, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-delivery-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 1114, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-delivery-text h3, .crm-delivery-text .h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* line 1120, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-delivery-text h3, .lightmode .crm-delivery-text .h3 {
  color: #140D23;
}

/* line 1125, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-delivery-text p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 1130, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-delivery-text p {
  color: rgba(20, 13, 35, 0.65);
}

/* line 1136, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice-options {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* line 1143, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-delivery-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  flex: 1 1 45%;
  min-width: 0;
}

/* line 1160, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-delivery-option {
  color: rgba(20, 13, 35, 0.7);
}

/* line 1164, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-delivery-option:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* line 1167, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-delivery-option:hover {
  background: rgba(20, 13, 35, 0.12);
}

/* line 1172, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-delivery-option i {
  font-size: 0.9rem;
}

/* line 1177, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-delivery-option--active {
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.25), rgba(195, 135, 97, 0.15));
  color: #FFFFFF;
  border-color: rgba(195, 135, 97, 0.5);
  box-shadow: 0 4px 10px rgba(195, 135, 97, 0.2);
}

/* line 1183, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-delivery-option--active {
  color: #140D23;
}

/* line 1190, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-contacts-search-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* line 1199, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-delivery-choice .crm-quote-contacts-search-section {
  border-top-color: rgba(20, 13, 35, 0.15);
}

/* line 1203, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-contacts-search-section .crm-quote-contacts-search-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 1209, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-contacts-search-section .crm-quote-contacts-search-actions {
  width: 100%;
}

/* line 1213, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-contacts-search-section .crm-create-contact-button {
  width: 100%;
}

/* line 1219, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-contacts-selected-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* line 1228, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-delivery-choice .crm-quote-contacts-selected-section {
  border-top-color: rgba(20, 13, 35, 0.15);
}

/* line 1232, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-contacts-selected-section h3, .crm-quote-delivery-choice .crm-quote-contacts-selected-section .h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* line 1238, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-delivery-choice .crm-quote-contacts-selected-section h3, .lightmode .crm-quote-delivery-choice .crm-quote-contacts-selected-section .h3 {
  color: #140D23;
}

/* line 1243, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-contacts-selected-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 8px;
}

/* line 1251, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-contacts-selected-list::-webkit-scrollbar {
  width: 4px;
}

/* line 1255, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-contacts-selected-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
}

/* line 1260, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-contacts-selected-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

/* line 1265, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-contacts-selected-list::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* line 1269, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-contacts-selected-list p {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  padding: 16px;
}

/* line 1275, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-delivery-choice .crm-quote-contacts-selected-list p {
  color: rgba(20, 13, 35, 0.6);
}

/* line 1281, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-contacts-selected-list .contact-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  min-height: 60px;
  gap: 12px;
}

/* line 1295, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-delivery-choice .crm-quote-contacts-selected-list .contact-item {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.1) 0%, rgba(20, 13, 35, 0.05) 100%);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 1300, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-contacts-selected-list .contact-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: rgba(195, 135, 97, 0.4);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

/* line 1306, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-delivery-choice .crm-quote-contacts-selected-list .contact-item:hover {
  border-color: rgba(195, 135, 97, 0.4);
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.15) 0%, rgba(20, 13, 35, 0.08) 100%);
}

/* line 1312, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-contacts-selected-list .contact-item .contact-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

/* line 1318, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-contacts-selected-list .contact-item .contact-info .contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(195, 135, 97, 0.15);
  border-radius: 50%;
  color: #C38761;
  font-size: 1rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

/* line 1332, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-contacts-selected-list .contact-item .contact-info .contact-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

/* line 1339, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-contacts-selected-list .contact-item .contact-info .contact-name {
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}

/* line 1345, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-delivery-choice .crm-quote-contacts-selected-list .contact-item .contact-info .contact-name {
  color: #140D23;
}

/* line 1350, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-contacts-selected-list .contact-item .contact-info .contact-email {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  font-weight: 400;
  margin: 0;
}

/* line 1356, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-delivery-choice .crm-quote-contacts-selected-list .contact-item .contact-info .contact-email {
  color: rgba(20, 13, 35, 0.7);
}

/* line 1362, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-contacts-selected-list .contact-item .contact-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(166, 2, 64, 0.1);
  border: 1px solid rgba(166, 2, 64, 0.3);
  border-radius: 50%;
  color: rgba(166, 2, 64, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* line 1377, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-contacts-selected-list .contact-item .contact-remove:hover {
  background: rgba(166, 2, 64, 0.2);
  border-color: #A60240;
  color: #A60240;
  transform: scale(1.1);
}

/* line 1385, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-contacts-selected-list .contact-item.contact-item-enter {
  animation: slideInFromTop 0.3s ease-out;
}

/* line 1389, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-contacts-selected-list .contact-item.contact-item-exit {
  animation: slideOutToRight 0.3s ease-in;
}

/* line 1396, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-signature-panel {
  width: 100%;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-bottom: none;
  background: transparent;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}

/* line 1410, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-delivery-choice .crm-quote-signature-panel {
  border-top-color: rgba(20, 13, 35, 0.15);
}

/* line 1415, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-signature-panel .signature-form__row {
  position: relative;
  margin-bottom: 0;
}

/* line 1420, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-signature-panel .signature-form__prestataire-search,
.crm-quote-delivery-choice .crm-quote-signature-panel .signature-form__client-search {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

/* line 1428, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-signature-panel .signature-representatives-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

/* line 1434, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-signature-panel .signature-representatives-list__title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px 0;
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
  position: relative;
}

/* line 1444, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-delivery-choice .crm-quote-signature-panel .signature-representatives-list__title {
  color: #140D23;
}

/* line 1448, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-signature-panel .signature-representatives-list__title i {
  color: #C38761;
  font-size: 0.95rem;
}

/* line 1456, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-signature-panel .signature-representatives-divider {
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  transform: translateX(-50%);
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.2) 10%, rgba(255, 255, 255, 0.2) 90%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* line 1473, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-delivery-choice .crm-quote-signature-panel .signature-representatives-divider {
  background: linear-gradient(to bottom, transparent 0%, rgba(20, 13, 35, 0.2) 10%, rgba(20, 13, 35, 0.2) 90%, transparent 100%);
}

/* line 1485, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-signature-panel .signature-prestataire-selected,
.crm-quote-delivery-choice .crm-quote-signature-panel .signature-clients-selected {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 250px;
  overflow-y: auto;
  padding-right: 8px;
}

/* line 1494, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-signature-panel .signature-prestataire-selected::-webkit-scrollbar,
.crm-quote-delivery-choice .crm-quote-signature-panel .signature-clients-selected::-webkit-scrollbar {
  width: 4px;
}

/* line 1498, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-signature-panel .signature-prestataire-selected::-webkit-scrollbar-track,
.crm-quote-delivery-choice .crm-quote-signature-panel .signature-clients-selected::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
}

/* line 1503, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-signature-panel .signature-prestataire-selected::-webkit-scrollbar-thumb,
.crm-quote-delivery-choice .crm-quote-signature-panel .signature-clients-selected::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

/* line 1508, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-signature-panel .signature-prestataire-selected::-webkit-scrollbar-thumb:hover,
.crm-quote-delivery-choice .crm-quote-signature-panel .signature-clients-selected::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* line 1512, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-signature-panel .signature-prestataire-selected p,
.crm-quote-delivery-choice .crm-quote-signature-panel .signature-clients-selected p {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  padding: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  margin: 0;
}

/* line 1521, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-delivery-choice .crm-quote-signature-panel .signature-prestataire-selected p, .lightmode .crm-quote-delivery-choice .crm-quote-signature-panel .signature-clients-selected p {
  color: rgba(20, 13, 35, 0.6);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 1528, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-signature-panel .signature-prestataire-selected .contact-item,
.crm-quote-delivery-choice .crm-quote-signature-panel .signature-clients-selected .contact-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  min-height: 60px;
  gap: 12px;
}

/* line 1542, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-delivery-choice .crm-quote-signature-panel .signature-prestataire-selected .contact-item, .lightmode .crm-quote-delivery-choice .crm-quote-signature-panel .signature-clients-selected .contact-item {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.1) 0%, rgba(20, 13, 35, 0.05) 100%);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 1547, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-signature-panel .signature-prestataire-selected .contact-item:hover,
.crm-quote-delivery-choice .crm-quote-signature-panel .signature-clients-selected .contact-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: rgba(195, 135, 97, 0.4);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

/* line 1553, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-delivery-choice .crm-quote-signature-panel .signature-prestataire-selected .contact-item:hover, .lightmode .crm-quote-delivery-choice .crm-quote-signature-panel .signature-clients-selected .contact-item:hover {
  border-color: rgba(195, 135, 97, 0.4);
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.15) 0%, rgba(20, 13, 35, 0.08) 100%);
}

/* line 1559, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-signature-panel .signature-prestataire-selected .contact-item .contact-info,
.crm-quote-delivery-choice .crm-quote-signature-panel .signature-clients-selected .contact-item .contact-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

/* line 1565, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-signature-panel .signature-prestataire-selected .contact-item .contact-info .contact-icon,
.crm-quote-delivery-choice .crm-quote-signature-panel .signature-clients-selected .contact-item .contact-info .contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(195, 135, 97, 0.15);
  border-radius: 50%;
  color: #C38761;
  font-size: 1rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

/* line 1579, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-signature-panel .signature-prestataire-selected .contact-item .contact-info .contact-details,
.crm-quote-delivery-choice .crm-quote-signature-panel .signature-clients-selected .contact-item .contact-info .contact-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

/* line 1586, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-signature-panel .signature-prestataire-selected .contact-item .contact-info .contact-name,
.crm-quote-delivery-choice .crm-quote-signature-panel .signature-clients-selected .contact-item .contact-info .contact-name {
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}

/* line 1592, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-delivery-choice .crm-quote-signature-panel .signature-prestataire-selected .contact-item .contact-info .contact-name, .lightmode .crm-quote-delivery-choice .crm-quote-signature-panel .signature-clients-selected .contact-item .contact-info .contact-name {
  color: #140D23;
}

/* line 1597, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-signature-panel .signature-prestataire-selected .contact-item .contact-info .contact-email,
.crm-quote-delivery-choice .crm-quote-signature-panel .signature-clients-selected .contact-item .contact-info .contact-email {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  font-weight: 400;
  margin: 0;
}

/* line 1603, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-delivery-choice .crm-quote-signature-panel .signature-prestataire-selected .contact-item .contact-info .contact-email, .lightmode .crm-quote-delivery-choice .crm-quote-signature-panel .signature-clients-selected .contact-item .contact-info .contact-email {
  color: rgba(20, 13, 35, 0.7);
}

/* line 1609, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-signature-panel .signature-prestataire-selected .contact-item .contact-remove,
.crm-quote-delivery-choice .crm-quote-signature-panel .signature-clients-selected .contact-item .contact-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(166, 2, 64, 0.1);
  border: 1px solid rgba(166, 2, 64, 0.3);
  border-radius: 50%;
  color: rgba(166, 2, 64, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* line 1624, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-signature-panel .signature-prestataire-selected .contact-item .contact-remove:hover,
.crm-quote-delivery-choice .crm-quote-signature-panel .signature-clients-selected .contact-item .contact-remove:hover {
  background: rgba(166, 2, 64, 0.2);
  border-color: #A60240;
  color: #A60240;
  transform: scale(1.1);
}

/* line 1632, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-signature-panel .signature-prestataire-selected .contact-item.contact-item-enter,
.crm-quote-delivery-choice .crm-quote-signature-panel .signature-clients-selected .contact-item.contact-item-enter {
  animation: slideInFromTop 0.3s ease-out;
}

/* line 1636, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .crm-quote-signature-panel .signature-prestataire-selected .contact-item.contact-item-exit,
.crm-quote-delivery-choice .crm-quote-signature-panel .signature-clients-selected .contact-item.contact-item-exit {
  animation: slideOutToRight 0.3s ease-in;
}

/* line 1643, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .signature-single-info {
  margin-bottom: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(195, 135, 97, 0.15);
  border: 1px solid rgba(195, 135, 97, 0.3);
  color: #FFFFFF;
}

/* line 1651, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-delivery-choice .signature-single-info {
  color: #140D23;
  background: rgba(195, 135, 97, 0.1);
  border-color: rgba(195, 135, 97, 0.4);
}

/* line 1657, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-delivery-choice .signature-single-info p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
}

/* line 1666, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-signature-panel {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  transition: all 0.3s ease;
}

/* line 1674, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-signature-panel {
  border-color: rgba(20, 13, 35, 0.15);
  background: rgba(20, 13, 35, 0.05);
}

/* line 1679, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-signature-panel .signature-panel {
  box-shadow: none;
  background: transparent;
  border: none;
  color: #FFFFFF;
}

/* line 1685, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-signature-panel .signature-panel {
  color: #140D23;
}

/* line 1689, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-signature-panel .signature-panel__title h3, .crm-quote-signature-panel .signature-panel__title .h3 {
  color: inherit;
}

/* line 1693, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-signature-panel .signature-panel__meta {
  color: rgba(255, 255, 255, 0.75);
}

/* line 1696, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-signature-panel .signature-panel__meta {
  color: rgba(20, 13, 35, 0.65);
}

/* line 1700, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-signature-panel .signature-panel__meta-item {
  background: rgba(255, 255, 255, 0.12);
}

/* line 1703, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-signature-panel .signature-panel__meta-item {
  background: rgba(20, 13, 35, 0.08);
}

/* line 1709, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-signature-panel .signature-panel__body--split {
  gap: 1.5rem;
}

/* line 1713, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-signature-panel .signature-panel__form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* line 1717, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-signature-panel .signature-panel__form {
  background: rgba(20, 13, 35, 0.04);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 1722, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-signature-panel .signature-panel__form h4, .crm-quote-signature-panel .signature-panel__form .h4 {
  color: inherit;
}

/* line 1727, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-signature-panel .signature-panel__hint {
  color: rgba(255, 255, 255, 0.65);
}

/* line 1730, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-signature-panel .signature-panel__hint {
  color: rgba(20, 13, 35, 0.6);
}

/* line 1735, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-signature-panel .signature-panel__timeline h4, .crm-quote-signature-panel .signature-panel__timeline .h4 {
  color: inherit;
}

/* line 1739, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-signature-panel .signature-panel__empty {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}

/* line 1743, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-signature-panel .signature-panel__empty {
  border-color: rgba(20, 13, 35, 0.2);
  color: rgba(20, 13, 35, 0.7);
}

/* line 1748, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-signature-panel .signature-panel__empty i {
  color: rgba(255, 255, 255, 0.6);
}

/* line 1751, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-signature-panel .signature-panel__empty i {
  color: rgba(20, 13, 35, 0.5);
}

/* line 1758, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-signature-panel .signature-form__label {
  color: inherit;
  opacity: 1;
}

/* line 1763, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-signature-panel .signature-form__input,
.crm-quote-signature-panel .signature-form__textarea,
.crm-quote-signature-panel .signature-form__select {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

/* line 1770, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-signature-panel .signature-form__input, .lightmode .crm-quote-signature-panel .signature-form__textarea, .lightmode .crm-quote-signature-panel .signature-form__select {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 1777, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-signature-panel .signature-form__help {
  color: rgba(255, 255, 255, 0.6);
}

/* line 1780, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-signature-panel .signature-form__help {
  color: rgba(20, 13, 35, 0.55);
}

/* line 1785, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-signature-panel .signature-form__disabled {
  color: rgba(255, 255, 255, 0.6);
}

/* line 1788, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-signature-panel .signature-form__disabled {
  color: rgba(20, 13, 35, 0.55);
}

/* line 1793, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-signature-panel .signature-timeline__item {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.04) 55%, rgba(255, 255, 255, 0.02) 100%);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 18px;
}

/* line 1806, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-signature-panel .signature-timeline__item {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.85) 100%);
  border-color: rgba(20, 13, 35, 0.12);
  box-shadow: 0 12px 24px rgba(20, 13, 35, 0.12);
}

/* line 1818, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-signature-panel .signature-timeline__header {
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* line 1823, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-signature-panel .signature-timeline__header {
  border-bottom-color: rgba(20, 13, 35, 0.12);
}

/* line 1827, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-signature-panel .signature-timeline__header strong {
  font-size: 0.95rem;
  color: #FFFFFF;
}

/* line 1831, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-signature-panel .signature-timeline__header strong {
  color: #140D23;
}

/* line 1836, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-signature-panel .signature-timeline__header .signature-timeline__meta span {
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* line 1845, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-signature-panel .signature-timeline__header .signature-timeline__meta span {
  color: rgba(20, 13, 35, 0.65);
  background: rgba(20, 13, 35, 0.08);
}

/* line 1852, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-signature-panel .signature-participant {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 10px 14px;
}

/* line 1858, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-signature-panel .signature-participant {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.12);
}

/* line 1864, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-signature-panel .signature-timeline__audit {
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 12px;
}

/* line 1870, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-signature-panel .signature-timeline__audit {
  background: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.18);
}

/* line 1875, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-signature-panel .signature-timeline__audit strong {
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.75);
}

/* line 1880, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-signature-panel .signature-timeline__audit strong {
  color: rgba(20, 13, 35, 0.7);
}

/* line 1885, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-signature-panel .signature-timeline__audit li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

/* line 1889, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-quote-signature-panel .signature-timeline__audit li {
  color: rgba(20, 13, 35, 0.65);
}

/* line 1896, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-signature-panel--hidden {
  display: none;
}

/* line 1900, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-actions {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

/* line 1907, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-actions span {
  color: #140D23 !important;
}

/* line 1910, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.nightmode .crm-quote-contacts-actions span {
  color: #FFFFFF !important;
}

/* line 1916, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-email-form {
  margin: 0;
}

/* line 1920, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row2 {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

/* line 1928, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-quote-contacts-row2 span {
  color: #140D23 !important;
}

/* line 1931, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.nightmode .crm-quote-contacts-row2 span {
  color: #FFFFFF !important;
}

/* line 1938, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-create-contact-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(4px);
}

/* line 1951, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-create-contact-modal-overlay.d-none {
  display: none !important;
}

/* line 1956, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-create-contact-modal {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(232, 232, 232, 0.3);
}

/* line 1966, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-create-contact-modal {
  background-color: rgba(255, 255, 255, 0.98);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 1971, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.nightmode .crm-create-contact-modal {
  background-color: rgba(20, 13, 35, 0.95);
}

/* line 1976, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-create-contact-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid rgba(232, 232, 232, 0.3);
}

/* line 1983, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-create-contact-modal-header {
  border-bottom-color: rgba(20, 13, 35, 0.2);
}

/* line 1987, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-create-contact-modal-header h3, .crm-create-contact-modal-header .h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: #140D23;
}

/* line 1993, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.nightmode .crm-create-contact-modal-header h3, .nightmode .crm-create-contact-modal-header .h3 {
  color: #FFFFFF;
}

/* line 1999, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-create-contact-modal-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: rgba(20, 13, 35, 0.6);
  padding: 5px;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

/* line 2014, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.nightmode .crm-create-contact-modal-close {
  color: rgba(255, 255, 255, 0.6);
}

/* line 2018, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-create-contact-modal-close:hover {
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 2022, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.nightmode .crm-create-contact-modal-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

/* line 2029, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-create-contact-modal-body {
  padding: 25px;
}

/* line 2033, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-create-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 2039, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 2045, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-form-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #140D23;
}

/* line 2050, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.nightmode .crm-form-label {
  color: #FFFFFF;
}

/* line 2055, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-form-input {
  padding: 12px 15px;
  border: 1px solid rgba(20, 13, 35, 0.3);
  border-radius: 8px;
  font-size: 0.9rem;
  background-color: rgba(255, 255, 255, 0.8);
  color: #140D23;
  transition: all 0.3s ease;
}

/* line 2064, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.nightmode .crm-form-input {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
}

/* line 2069, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.nightmode .crm-form-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* line 2074, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-form-input:focus {
  outline: none;
  border-color: #C38761;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 2080, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.nightmode .crm-form-input:focus {
  background-color: rgba(255, 255, 255, 0.15);
}

/* line 2085, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-form-input.is-invalid {
  border-color: #e74c3c;
}

/* line 2088, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-form-input.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

/* line 2094, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-form-error {
  font-size: 0.8rem;
  color: #e74c3c;
  min-height: 18px;
}

/* line 2099, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-form-error.show {
  display: block;
}

/* line 2104, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-create-contact-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(232, 232, 232, 0.3);
}

/* line 2112, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-create-contact-modal-actions {
  border-top-color: rgba(20, 13, 35, 0.2);
}

/* line 2117, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-button-secondary {
  padding: 10px 20px;
  background-color: transparent;
  border: 1px solid rgba(20, 13, 35, 0.3);
  border-radius: 8px;
  color: #140D23;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 2128, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.nightmode .crm-button-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
}

/* line 2133, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-button-secondary:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 2136, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.nightmode .crm-button-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 2142, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-button-primary {
  padding: 10px 20px;
  background-color: #C38761;
  border: 1px solid #C38761;
  border-radius: 8px;
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 2153, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-button-primary:hover {
  background-color: #af6c42;
  border-color: #af6c42;
  transform: translateY(-1px);
}

/* line 2159, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-button-primary:disabled {
  background-color: rgba(195, 135, 97, 0.5);
  border-color: rgba(195, 135, 97, 0.5);
  cursor: not-allowed;
  transform: none;
}

/* line 2168, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-searchbar {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 10px 16px 10px 45px;
  color: #FFFFFF;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

/* line 2178, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-searchbar {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 2184, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-searchbar::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 2187, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-searchbar::placeholder {
  color: rgba(20, 13, 35, 0.5);
}

/* line 2192, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-searchbar:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 2199, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-searchbar-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 2205, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-searchbar-container .search-form {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

/* line 2212, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-searchbar-container i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  z-index: 2;
}

/* line 2221, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.lightmode .crm-searchbar-container i {
  color: rgba(20, 13, 35, 0.6);
}

/* line 2226, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-searchbar-container button {
  all: unset;
  padding: 8px 12px;
  background: #C38761;
  border-radius: 8px;
  color: #140D23;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 2235, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-searchbar-container button:hover {
  background: #864B28;
  transform: scale(1.05);
}

/* line 2240, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-searchbar-container button i {
  position: static;
  transform: none;
  color: #140D23;
}

/* line 2249, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-button-regular, .crm-back-button {
  padding: 10px 20px;
  background-color: transparent;
  border: 1px solid rgba(20, 13, 35, 0.3);
  border-radius: 8px;
  color: #140D23;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* line 2265, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-button-regular:hover, .crm-back-button:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 2268, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.nightmode .crm-button-regular:hover, .nightmode .crm-back-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 2273, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-button-regular i, .crm-back-button i {
  color: inherit;
}

/* line 2278, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/_quote_contacts.scss */
.crm-button-small, .crm-back-button {
  padding: 8px 16px;
  font-size: 0.85rem;
}

/* CRM Articles Searchbar Styles */
/* Placeholder for future styles */
/* ==========================================================================
   GLOBAL DISCOUNT QUOTE - MODULE CRM
   Réutilise les styles du module ADV pour une cohérence visuelle totale
   ========================================================================== */
/* Import des styles principaux du module ADV */
/* ==========================================================================
   GLOBAL DISCOUNT QUOTE - MODULE ADV
   Structure principale et composants pour l'application d'une remise globale
   ========================================================================== */
/* line 6, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1200px;
  margin: 0px auto;
  padding: 20px;
  color: #fff;
}

/* line 15, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-container.lightmode {
  color: #140D23;
}

/* line 20, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-header {
  text-align: center;
  margin-bottom: 20px;
}

/* line 24, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-header h2, .adv-global-discount-quote-header .h2 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
}

/* line 33, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.lightmode .adv-global-discount-quote-header h2, .lightmode .adv-global-discount-quote-header .h2 {
  color: #140D23;
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 39, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-row1 {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

/* line 44, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 50, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  overflow: hidden;
}

/* line 56, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.lightmode .adv-global-discount-quote-table-section {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 60, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-articles-table {
  width: 100%;
  overflow-y: auto;
  max-height: 400px;
  /* Personnalisation de la barre de défilement */
}

/* line 66, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-articles-table::-webkit-scrollbar {
  width: 4px;
}

/* line 70, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-articles-table::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 75, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-articles-table::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 80, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-articles-table::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 85, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-show-invoice-capsule .adv-invoice-articles-section .adv-header-article, .adv-show-invoice-capsule .adv-invoice-articles-section .adv-global-discount-quote-table-section .adv-header-article, .adv-global-discount-quote-table-section .adv-show-invoice-capsule .adv-invoice-articles-section .adv-header-discount-perc, .adv-show-invoice-capsule .adv-invoice-articles-section .adv-global-discount-quote-table-section .adv-header-discount-perc, .adv-global-discount-quote-table-section .adv-show-invoice-capsule .adv-invoice-articles-section .adv-header-price-ht, .adv-show-invoice-capsule .adv-invoice-articles-section .adv-global-discount-quote-table-section .adv-header-price-ht, .adv-global-discount-quote-table-section .adv-show-invoice-capsule .adv-invoice-articles-section .adv-header-price-ttc, .adv-show-invoice-capsule .adv-invoice-articles-section .adv-global-discount-quote-table-section .adv-header-price-ttc, .adv-global-discount-quote-table-section .adv-show-invoice-capsule .adv-invoice-articles-section .adv-header-quantity, .adv-show-invoice-capsule .adv-invoice-articles-section .adv-global-discount-quote-table-section .adv-header-quantity, .adv-global-discount-quote-table-section .adv-show-invoice-capsule .adv-invoice-articles-section .adv-header-cgv, .adv-show-invoice-capsule .adv-invoice-articles-section .adv-global-discount-quote-table-section .adv-header-cgv, .adv-global-discount-quote-table-section .adv-show-invoice-capsule .adv-invoice-articles-section .adv-table-cell, .adv-show-invoice-capsule .adv-invoice-articles-section .adv-global-discount-quote-table-section .adv-table-cell, .adv-global-discount-quote-table-section .adv-credit-note-articles-section .adv-articles-table .adv-header-article, .adv-credit-note-articles-section .adv-articles-table .adv-global-discount-quote-table-section .adv-header-article, .adv-global-discount-quote-table-section .adv-credit-note-articles-section .adv-articles-table .adv-header-discount-perc, .adv-credit-note-articles-section .adv-articles-table .adv-global-discount-quote-table-section .adv-header-discount-perc, .adv-global-discount-quote-table-section .adv-credit-note-articles-section .adv-articles-table .adv-header-price-ht, .adv-credit-note-articles-section .adv-articles-table .adv-global-discount-quote-table-section .adv-header-price-ht, .adv-global-discount-quote-table-section .adv-credit-note-articles-section .adv-articles-table .adv-header-price-ttc, .adv-credit-note-articles-section .adv-articles-table .adv-global-discount-quote-table-section .adv-header-price-ttc, .adv-global-discount-quote-table-section .adv-credit-note-articles-section .adv-articles-table .adv-header-quantity, .adv-credit-note-articles-section .adv-articles-table .adv-global-discount-quote-table-section .adv-header-quantity, .adv-global-discount-quote-table-section .adv-credit-note-articles-section .adv-articles-table .adv-table-cell, .adv-credit-note-articles-section .adv-articles-table .adv-global-discount-quote-table-section .adv-table-cell, .adv-global-discount-quote-table-section .adv-show-quote-capsule .adv-quote-articles-section .adv-header-article, .adv-show-quote-capsule .adv-quote-articles-section .adv-global-discount-quote-table-section .adv-header-article, .adv-global-discount-quote-table-section .adv-show-quote-capsule .adv-quote-articles-section .adv-header-discount-perc, .adv-show-quote-capsule .adv-quote-articles-section .adv-global-discount-quote-table-section .adv-header-discount-perc, .adv-global-discount-quote-table-section .adv-show-quote-capsule .adv-quote-articles-section .adv-header-price-ht, .adv-show-quote-capsule .adv-quote-articles-section .adv-global-discount-quote-table-section .adv-header-price-ht, .adv-global-discount-quote-table-section .adv-show-quote-capsule .adv-quote-articles-section .adv-header-price-ttc, .adv-show-quote-capsule .adv-quote-articles-section .adv-global-discount-quote-table-section .adv-header-price-ttc, .adv-global-discount-quote-table-section .adv-show-quote-capsule .adv-quote-articles-section .adv-header-quantity, .adv-show-quote-capsule .adv-quote-articles-section .adv-global-discount-quote-table-section .adv-header-quantity, .adv-global-discount-quote-table-section .adv-show-quote-capsule .adv-quote-articles-section .adv-table-cell, .adv-show-quote-capsule .adv-quote-articles-section .adv-global-discount-quote-table-section .adv-table-cell, .adv-global-discount-quote-table-section .adv-header-article, .adv-global-discount-quote-table-section .adv-header-discount-perc, .adv-global-discount-quote-table-section .adv-header-price-ht, .adv-global-discount-quote-table-section .adv-header-price-ttc, .adv-global-discount-quote-table-section .adv-header-quantity, .adv-global-discount-quote-table-section .adv-header-cgv, .adv-global-discount-quote-table-section .adv-table-cell {
  padding: 8px 12px;
  display: flex;
  align-items: center;
}

/* line 91, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-articles-table-header {
  display: flex;
  background-color: rgba(255, 255, 255, 0.08);
  font-weight: 600;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* line 99, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.lightmode .adv-global-discount-quote-table-section .adv-articles-table-header {
  background-color: rgba(20, 13, 35, 0.08);
  color: rgba(20, 13, 35, 0.8);
  border-bottom: 1px solid rgba(20, 13, 35, 0.15);
}

/* line 106, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-articles-table-body {
  min-height: 200px;
  overflow-y: hidden;
}

/* line 110, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-articles-table-body .adv-articles-table-row {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

/* line 115, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-articles-table-body .adv-articles-table-row:last-child {
  border-bottom: none;
}

/* line 119, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-articles-table-body .adv-articles-table-row:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

/* line 123, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.lightmode .adv-global-discount-quote-table-section .adv-articles-table-body .adv-articles-table-row {
  border-bottom: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 126, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.lightmode .adv-global-discount-quote-table-section .adv-articles-table-body .adv-articles-table-row:hover {
  background-color: rgba(20, 13, 35, 0.03);
}

/* line 132, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-articles-table-body.adv-no-articles-container {
  text-align: center;
  padding: 2rem 15px;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  font-size: 0.85rem;
}

/* line 139, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.lightmode .adv-global-discount-quote-table-section .adv-articles-table-body.adv-no-articles-container {
  color: rgba(20, 13, 35, 0.6);
}

/* line 145, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-header-article {
  width: 30%;
  justify-content: flex-start;
}

/* line 150, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-header-discount-perc {
  width: 12%;
  justify-content: center;
}

/* line 155, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-header-price-ht {
  width: 16%;
  justify-content: center;
}

/* line 160, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-header-price-ttc {
  width: 16%;
  justify-content: center;
}

/* line 165, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-header-quantity {
  width: 10%;
  justify-content: center;
}

/* line 170, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-header-cgv {
  width: 16%;
  justify-content: center;
}

/* line 176, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-table-cell {
  color: #fff;
  font-size: 0.8rem;
}

/* line 181, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.lightmode .adv-global-discount-quote-table-section .adv-table-cell {
  color: #140D23;
}

/* line 186, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-cell-article {
  width: 30%;
  justify-content: flex-start;
}

/* line 190, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-cell-discount-perc {
  width: 12%;
  justify-content: center;
}

/* line 194, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-cell-price-ht {
  width: 16%;
  justify-content: center;
}

/* line 198, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-cell-price-ttc {
  width: 16%;
  justify-content: center;
}

/* line 202, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-cell-quantity {
  width: 10%;
  justify-content: center;
}

/* line 206, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-table-section .adv-cell-cgv {
  width: 16%;
  justify-content: center;
}

/* line 212, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-summary-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
}

/* line 221, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.lightmode .adv-global-discount-quote-summary-section {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 225, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-summary-section .adv-summary-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1 1 0;
}

/* line 233, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-summary-section .adv-summary-item .adv-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  display: block;
}

/* line 239, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.lightmode .adv-global-discount-quote-summary-section .adv-summary-item .adv-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 244, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-summary-section .adv-summary-item .adv-value {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  text-align: center;
}

/* line 251, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.lightmode .adv-global-discount-quote-summary-section .adv-summary-item .adv-value {
  color: #140D23;
}

/* line 257, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-summary-section .adv-summary-item.adv-summary-total-ttc .adv-value {
  color: #C38761;
  font-size: 1.2rem;
}

/* line 265, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-form {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 273, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.lightmode .adv-global-discount-quote-form {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 277, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-form .adv-global-discount-quote-form-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

/* line 283, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-form .adv-global-discount-quote-form-content .adv-discount-display {
  text-align: center;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 400px;
}

/* line 292, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.lightmode .adv-global-discount-quote-form .adv-global-discount-quote-form-content .adv-discount-display {
  background-color: rgba(20, 13, 35, 0.05);
  border: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 297, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-form .adv-global-discount-quote-form-content .adv-discount-display p {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

/* line 303, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.lightmode .adv-global-discount-quote-form .adv-global-discount-quote-form-content .adv-discount-display p {
  color: #140D23;
}

/* line 309, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-form .adv-global-discount-quote-form-content .adv-discount-input-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 400px;
}

/* line 317, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-form .adv-global-discount-quote-form-content .adv-discount-input-section .adv-discount-label {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  opacity: 1;
}

/* line 324, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.lightmode .adv-global-discount-quote-form .adv-global-discount-quote-form-content .adv-discount-input-section .adv-discount-label {
  color: rgba(20, 13, 35, 0.8) !important;
}

/* line 329, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-form .adv-global-discount-quote-form-content .adv-discount-input-section .adv-discount-input {
  width: 100px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  text-align: center;
}

/* line 339, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-form .adv-global-discount-quote-form-content .adv-discount-input-section .adv-discount-input:focus {
  outline: none;
  border-color: #C38761;
  background-color: rgba(255, 255, 255, 0.15);
}

/* line 345, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-form .adv-global-discount-quote-form-content .adv-discount-input-section .adv-discount-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 349, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.lightmode .adv-global-discount-quote-form .adv-global-discount-quote-form-content .adv-discount-input-section .adv-discount-input {
  border: 1px solid rgba(20, 13, 35, 0.3);
  background-color: rgba(20, 13, 35, 0.05);
  color: #140D23;
}

/* line 354, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.lightmode .adv-global-discount-quote-form .adv-global-discount-quote-form-content .adv-discount-input-section .adv-discount-input:focus {
  border-color: #C38761;
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 359, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.lightmode .adv-global-discount-quote-form .adv-global-discount-quote-form-content .adv-discount-input-section .adv-discount-input::placeholder {
  color: rgba(20, 13, 35, 0.5);
}

/* line 365, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-form .adv-global-discount-quote-form-content .adv-discount-input-section .adv-discount-unit {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-left: 5px;
}

/* line 370, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.lightmode .adv-global-discount-quote-form .adv-global-discount-quote-form-content .adv-discount-input-section .adv-discount-unit {
  color: rgba(20, 13, 35, 0.7);
}

/* line 377, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-form .adv-global-discount-quote-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

/* line 383, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-form .adv-global-discount-quote-actions .adv-action-button {
  padding: 12px 25px;
  border-radius: 20px;
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* line 398, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-form .adv-global-discount-quote-actions .adv-action-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

/* line 403, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-form .adv-global-discount-quote-actions .adv-action-button.adv-action-button-primary {
  background-color: #C38761;
  border-color: #C38761;
  color: #140D23;
}

/* line 408, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-form .adv-global-discount-quote-actions .adv-action-button.adv-action-button-primary:hover {
  background-color: #af6c42;
}

/* line 413, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-form .adv-global-discount-quote-actions .adv-action-button.adv-action-button-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

/* line 418, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.adv-global-discount-quote-form .adv-global-discount-quote-actions .adv-action-button.adv-action-button-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 422, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.lightmode .adv-global-discount-quote-form .adv-global-discount-quote-actions .adv-action-button.adv-action-button-secondary {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 427, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
.lightmode .adv-global-discount-quote-form .adv-global-discount-quote-actions .adv-action-button.adv-action-button-secondary:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* Responsive design */
@media (max-width: 768px) {
  /* line 438, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
  .adv-global-discount-quote-container {
    padding: 15px;
  }
  /* line 442, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
  .adv-global-discount-quote-summary-section {
    flex-direction: column;
    gap: 1rem;
  }
  /* line 447, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
  .adv-global-discount-quote-actions {
    flex-direction: column;
  }
  /* line 450, app/assets/stylesheets/pages/servicespace/commerce/crm/quotes_management/../../../../servicespace/back-office/adv/quote_management/_global_discount_quote.scss */
  .adv-global-discount-quote-actions .adv-action-button {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   CUSTOMERS BOARD - MODULE CRM
   Structure principale et composants pour la gestion des clients
   Utilise les mêmes styles que leads_board pour la cohérence
   ========================================================================== */
/* Importe tous les styles du module leads_board */
/* ==========================================================================
   LEADS BOARD - MODULE CRM
   Structure principale et composants pour la gestion des prospects
   ========================================================================== */
/* ==========================================================================
   LAYOUT PRINCIPAL - Structure générale du module
   ========================================================================== */
/* line 10, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-right: 15px;
  font-size: 1rem;
  gap: 5px;
  overflow: hidden;
}

/* line 22, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode {
  color: #140D23;
}

/* line 26, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.nightmode {
  color: #FFFFFF;
}

/* line 31, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 37, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule span:not(.crm-label-badge):not(.crm-label-filter-active-chip) {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* Variations de thème clair/sombre */
/* line 44, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode span:not(.crm-label-badge):not(.crm-label-filter-active-chip) {
  color: #C38761;
}

/* line 48, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.nightmode span:not(.crm-label-badge):not(.crm-label-filter-active-chip) {
  color: rgba(232, 232, 232, 0.7);
}

/* line 52, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode p {
  color: #140D23;
}

/* line 56, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.nightmode p {
  color: #FFFFFF;
}

/* line 60, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode i {
  color: #140D23;
}

/* line 64, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.nightmode i {
  color: #FFFFFF;
}

/* ==========================================================================
   BARRE SUPÉRIEURE - Recherche et bouton création
   ========================================================================== */
/* line 72, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-row1 {
  width: 100%;
  height: 50px;
  /* Hauteur réduite */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  /* Empêche la compression */
  margin-bottom: 5px;
  /* Ajoute un peu d'espace en bas */
}

/* line 83, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-row1 form {
  width: 100%;
  display: flex;
}

/* ==========================================================================
   BARRE DE RECHERCHE - Composants et fonctionnalités
   ========================================================================== */
/* line 93, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-row1-searchbar {
  width: 100%;
  background-color: rgba(254, 254, 254, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 106, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row1-searchbar {
  border-color: rgba(20, 13, 35, 0.5);
  color: #140D23;
}

/* line 111, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-row1-searchbar .crm-search-form {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 118, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-row1-searchbar .crm-search-input-wrapper {
  position: relative;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

/* line 125, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-row1-searchbar .crm-search-input {
  width: 100%;
  background: transparent;
  border: none;
  color: #FFFFFF;
  outline: none;
  padding-right: 25px;
  /* Espace pour l'icône de suppression */
}

/* line 133, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row1-searchbar .crm-search-input {
  color: #140D23;
}

/* line 136, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row1-searchbar .crm-search-input::placeholder {
  color: rgba(20, 13, 35, 0.6);
}

/* line 142, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-row1-searchbar .crm-clear-search-button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 0.6rem;
  text-decoration: none;
}

/* line 157, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row1-searchbar .crm-clear-search-button {
  color: #140D23;
}

/* line 161, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-row1-searchbar .crm-clear-search-button:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* line 164, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row1-searchbar .crm-clear-search-button:hover {
  color: rgba(20, 13, 35, 0.7);
}

/* line 170, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-row1-searchbar button {
  all: unset;
  cursor: pointer;
}

/* line 175, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-row1-searchbar .crm-search-button {
  padding: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 183, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-row1-searchbar i {
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 188, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row1-searchbar i {
  color: #140D23 !important;
}

/* line 193, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-row1-searchbar span {
  font-weight: normal !important;
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 199, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row1-searchbar span {
  color: #140D23 !important;
}

/* Bannière d'information sur la recherche en cours */
/* line 206, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.crm-search-info {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: #FFFFFF;
  margin-bottom: -10px;
  z-index: 5;
}

/* line 216, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .crm-search-info {
  color: #140D23;
}

/* line 220, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.crm-search-info span {
  opacity: 0.8;
}

/* line 224, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.crm-search-info .crm-reset-search-link {
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s ease;
}

/* line 235, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .crm-search-info .crm-reset-search-link {
  color: #140D23;
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 240, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.crm-search-info .crm-reset-search-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 243, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .crm-search-info .crm-reset-search-link:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* ==========================================================================
   ONGLETS DE NAVIGATION - Entre prospects actifs et archivés
   ========================================================================== */
/* line 254, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-tabs {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
  z-index: 10;
  position: relative;
  flex-shrink: 0;
  min-height: 35px;
}

/* line 265, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.tab-link {
  padding: 10px 20px;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  margin-right: 5px;
  font-size: 0.8rem;
  transition: background-color 0.3s ease;
  background-color: rgba(255, 255, 255, 0.05);
}

/* line 275, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .tab-link {
  color: #140D23;
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 280, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.tab-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

/* line 284, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .tab-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #140D23;
}

/* line 290, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.tab-link.active {
  background-color: rgba(255, 255, 255, 0.1);
  font-weight: bold;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 296, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .tab-link.active {
  background-color: rgba(20, 13, 35, 0.1);
  border: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 301, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.tab-link.active:after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
}

/* ==========================================================================
   CONTENEUR PRINCIPAL DES DONNÉES - Structure du tableau des prospects
   ========================================================================== */
/* line 316, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-row2 {
  width: 100%;
  flex: 1;
  /* Prend le reste de l'espace disponible */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  /* Aligne au sommet au lieu du centre */
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  /* Réduit le rayon pour gagner de l'espace */
  padding: 15px;
  /* Réduit le padding */
  overflow: hidden;
  /* Empêche le scroll sur ce conteneur */
}

/* line 329, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row2 {
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 334, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-row2-list {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  /* Cache tout débordement */
}

/* ==========================================================================
   EN-TÊTE DU TABLEAU - Titres des colonnes et tri
   ========================================================================== */
/* line 347, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-row2-list-head {
  width: 97%;
  display: flex;
  padding-right: 8px;
  flex-direction: row;
  font-weight: bold;
  font-size: 0.75rem;
  /* Taille réduite */
  margin-bottom: 5px;
  color: #FFFFFF;
}

/* line 357, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row2-list-head {
  color: #140D23;
}

/* line 362, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-row2-list-head .leads-board-row2-list-column {
  width: calc(80% / 3);
  text-align: center;
  justify-content: center;
}

/* line 367, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-row2-list-head .leads-board-row2-list-column:first-child {
  text-align: left;
  justify-content: flex-start;
  padding-left: 20px;
}

/* line 373, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-row2-list-head .leads-board-row2-list-column:last-child {
  width: 20%;
  text-align: right;
  justify-content: flex-end;
  padding-right: 15px;
}

/* line 380, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-row2-list-head .leads-board-row2-list-column.sortable {
  cursor: pointer;
  transition: background-color 0.2s ease;
}

/* line 384, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-row2-list-head .leads-board-row2-list-column.sortable:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

/* line 387, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row2-list-head .leads-board-row2-list-column.sortable:hover {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 392, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-row2-list-head .leads-board-row2-list-column.sortable .sort-link {
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 100%;
  height: 100%;
}

/* line 402, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row2-list-head .leads-board-row2-list-column.sortable .sort-link {
  color: #140D23;
}

/* line 406, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-row2-list-head .leads-board-row2-list-column.sortable .sort-link i {
  font-size: 0.6rem !important;
}

/* line 409, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row2-list-head .leads-board-row2-list-column.sortable .sort-link i {
  color: #140D23 !important;
}

/* line 415, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-row2-list-head .leads-board-row2-list-column.sortable:first-child .sort-link {
  justify-content: flex-start;
}

/* line 419, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-row2-list-head .leads-board-row2-list-column.sortable:last-child .sort-link {
  justify-content: flex-end;
}

/* Styles communs pour les colonnes */
/* line 426, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-row2-list-column {
  display: flex;
  align-items: center;
  font-size: 0.7rem;
  padding: 5px 10px;
}

/* ==========================================================================
   CORPS DU TABLEAU - Liste des prospects avec défilement
   ========================================================================== */
/* line 437, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-row2-list-entries {
  width: 100%;
  height: calc(100% - 30px);
  /* Hauteur calculée en fonction de l'en-tête réduit */
  display: flex;
  gap: 5px;
  /* Espace réduit entre les lignes */
  flex-direction: column;
  overflow-y: auto;
  /* Permet le scroll vertical uniquement dans cette section */
  /* Personnalisation de la barre de défilement */
}

/* line 445, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-row2-list-entries::-webkit-scrollbar {
  width: 8px;
  /* Largeur de la barre de défilement */
}

/* line 449, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-row2-list-entries::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  /* Couleur de l'arrière-plan de la barre */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 453, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row2-list-entries::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 458, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-row2-list-entries::-webkit-scrollbar-thumb {
  background: #C38761;
  /* Couleur de la barre de défilement */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 463, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-row2-list-entries::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
  /* Couleur de la barre au survol */
}

/* line 466, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row2-list-entries::-webkit-scrollbar-thumb:hover {
  background: #140D23;
}

/* Lignes du tableau des prospects */
/* line 473, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-row2-list-entry {
  width: 97%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  font-size: 0.7rem;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 2px;
  /* Ombre plus légère */
  cursor: pointer;
  transition: 0.3s ease-in-out;
  position: relative;
  border-radius: 6px;
  /* Réduit le rayon */
  overflow: hidden;
  min-height: 40px;
  /* Hauteur réduite */
  padding: 3px 0;
  /* Padding réduit */
  margin-bottom: 2px;
  /* Ajoute une petite marge en bas */
  color: #FFFFFF;
}

/* line 491, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row2-list-entry {
  color: #140D23;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 2px;
}

/* line 496, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-row2-list-entry:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 501, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row2-list-entry:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 506, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-row2-list-entry .leads-board-row2-list-column {
  text-align: center;
  justify-content: center;
}

/* line 510, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-row2-list-entry .leads-board-row2-list-column:first-child {
  text-align: left;
  justify-content: flex-start;
  padding-left: 20px;
}

/* line 517, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-row2-list-entry .leads-board-row2-list-column:last-child {
  width: 20%;
  justify-content: flex-end;
  display: flex;
  gap: 10px;
  padding-right: 15px;
  z-index: 10;
}

/* line 526, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-row2-list-entry .leads-board-row2-list-column:not(:last-child) {
  width: calc(80% / 3);
}

/* ==========================================================================
   BADGES DE STATUT - Styles pour les différents types de statuts
   ========================================================================== */
/* line 535, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.status-badge {
  padding: 4px 8px;
  border-radius: 8px !important;
  font-size: 0.65rem;
  font-weight: 500;
  display: inline-block;
  min-width: 70px;
  text-align: center;
  transition: all 0.2s ease-in-out;
}

/* line 545, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .status-badge {
  padding: 4px 10px !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* line 549, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .status-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* line 555, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.status-badge.qualifié {
  background-color: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
}

/* line 560, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.status-badge.non-qualifié {
  background-color: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
}

/* line 565, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.status-badge.archivé {
  background-color: rgba(149, 165, 166, 0.2);
  color: #95a5a6;
}

/* line 570, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.status-badge.devis\ envoyé, .status-badge.devis-envoyé {
  background-color: rgba(52, 152, 219, 0.2);
  color: #3498db;
}

/* line 575, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.status-badge.non-defini {
  background-color: rgba(241, 196, 15, 0.2);
  color: #f1c40f;
}

/* line 581, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.status-badge[class*="devis"] {
  background-color: rgba(52, 152, 219, 0.2);
  color: #3498db;
}

/* line 588, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .status-badge {
  /* Important: Ces styles complètent mais ne remplacent pas les styles de base */
}

/* line 590, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .status-badge.qualifié {
  background-color: rgba(46, 204, 113, 0.4);
  color: #1e8449;
  font-weight: 600;
  border: 1px solid rgba(46, 204, 113, 0.2);
}

/* line 597, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .status-badge.non-qualifié {
  background-color: rgba(231, 76, 60, 0.4);
  color: #a93226;
  font-weight: 600;
  border: 1px solid rgba(231, 76, 60, 0.2);
}

/* line 604, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .status-badge.archivé {
  background-color: rgba(149, 165, 166, 0.4);
  color: #616a6b;
  font-weight: 600;
  border: 1px solid rgba(149, 165, 166, 0.2);
}

/* line 611, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .status-badge.devis\ envoyé, .leads-board-capsule.lightmode .status-badge.devis-envoyé {
  background-color: rgba(52, 152, 219, 0.4);
  color: #1a5276;
  font-weight: 600;
  border: 1px solid rgba(52, 152, 219, 0.2);
}

/* line 618, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .status-badge.non-defini {
  background-color: rgba(241, 196, 15, 0.4);
  color: #b7950b;
  font-weight: 600;
  border: 1px solid rgba(241, 196, 15, 0.2);
}

/* line 626, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .status-badge[class*="devis"] {
  background-color: rgba(52, 152, 219, 0.4);
  color: #1a5276;
  font-weight: 600;
  border: 1px solid rgba(52, 152, 219, 0.2);
}

/* Assurez-vous que le padding des badges est toujours appliqué */
/* line 635, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-row2-list-column .status-badge {
  padding: 4px 8px !important;
}

/* line 638, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row2-list-column .status-badge {
  padding: 4px 10px !important;
}

/* Message quand aucun prospect n'est trouvé */
/* line 644, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.no-results {
  width: 100%;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-top: 10px;
}

/* line 654, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .no-results {
  color: #140D23;
  background-color: rgba(20, 13, 35, 0.05);
}

/* ==========================================================================
   BOUTONS D'ACTION - Édition et archivage des prospects
   ========================================================================== */
/* line 664, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.action-btn {
  padding: 5px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px;
  width: 25px;
  height: 25px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s ease;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 20;
}

/* line 680, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .action-btn {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 684, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.action-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* line 687, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .action-btn:hover {
  background-color: rgba(20, 13, 35, 0.3);
}

/* line 692, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.action-btn i {
  font-size: 0.8rem;
  color: #FFFFFF;
}

/* line 696, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .action-btn i {
  color: #140D23;
}

/* Styles pour les boutons de formulaire */
/* line 703, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
form.button_to {
  margin: 0;
  padding: 0;
  display: inline-block;
  background: none;
}

/* line 709, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
form.button_to button.action-btn {
  all: unset;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 720, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode form.button_to button.action-btn {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 724, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
form.button_to button.action-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* line 727, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode form.button_to button.action-btn:hover {
  background-color: rgba(20, 13, 35, 0.3);
}

/* ==========================================================================
   FORMULAIRES - Styles pour les écrans de création/édition de prospects
   ========================================================================== */
/* Styles pour les pages new, edit et show prospect */
/* line 739, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.new-prospect-capsule,
.edit-prospect-capsule,
.show-prospect-capsule {
  width: 80%;
  margin: 0 auto;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
}

/* line 749, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .new-prospect-capsule, .leads-board-capsule.lightmode .edit-prospect-capsule, .leads-board-capsule.lightmode .show-prospect-capsule {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 754, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.new-prospect-capsule h2, .new-prospect-capsule .h2,
.edit-prospect-capsule h2,
.edit-prospect-capsule .h2,
.show-prospect-capsule h2,
.show-prospect-capsule .h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: #FFFFFF;
}

/* line 762, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .new-prospect-capsule h2, .leads-board-capsule.lightmode .new-prospect-capsule .h2, .leads-board-capsule.lightmode .edit-prospect-capsule h2, .leads-board-capsule.lightmode .edit-prospect-capsule .h2, .leads-board-capsule.lightmode .show-prospect-capsule h2, .leads-board-capsule.lightmode .show-prospect-capsule .h2 {
  color: #140D23;
}

/* line 767, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.form-group {
  margin-bottom: 15px;
}

/* line 770, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.form-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.8rem;
  color: #FFFFFF;
}

/* line 776, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .form-group label {
  color: #140D23;
}

/* line 781, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.form-group .form-control {
  width: 100%;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-size: 0.8rem;
}

/* line 790, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .form-group .form-control {
  border: 1px solid rgba(20, 13, 35, 0.3);
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 798, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.form-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

/* line 804, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.btn-secondary, .crm-action-button.crm-action-button-secondary {
  background-color: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

/* line 808, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .btn-secondary, .leads-board-capsule.lightmode .crm-action-button.crm-action-button-secondary {
  background-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 814, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.btn-danger {
  background-color: #dc3545;
  color: #FFFFFF;
}

/* ==========================================================================
   DÉTAILS DU PROSPECT - Affichage des informations détaillées
   ========================================================================== */
/* line 823, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.prospect-details {
  margin-bottom: 25px;
}

/* line 827, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.detail-row {
  display: flex;
  margin-bottom: 10px;
  padding: 8px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

/* line 834, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .detail-row {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 839, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.detail-label {
  width: 40%;
  font-weight: bold;
  font-size: 0.8rem;
  color: #FFFFFF;
}

/* line 845, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .detail-label {
  color: #140D23;
}

/* line 850, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.detail-value {
  width: 60%;
  font-size: 0.8rem;
  color: #FFFFFF;
}

/* line 855, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .detail-value {
  color: #140D23;
}

/* line 860, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.prospect-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* ==========================================================================
   TOGGLE VUE - Bascule entre vue par prospect et vue par société
   ========================================================================== */
/* line 870, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-view-toggle {
  display: flex;
  gap: 8px;
  width: 80%;
  margin-bottom: 10px;
  flex-shrink: 0;
}

/* line 877, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-view-toggle .view-toggle-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.75rem;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: all 0.2s;
}

/* line 890, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-view-toggle .view-toggle-btn {
  color: #140D23;
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 896, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-view-toggle .view-toggle-btn:hover {
  background: rgba(195, 135, 97, 0.1);
  border-color: rgba(195, 135, 97, 0.3);
}

/* line 901, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-view-toggle .view-toggle-btn.active {
  background: rgba(195, 135, 97, 0.15);
  border-color: #C38761;
  color: #C38761;
}

/* line 906, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-view-toggle .view-toggle-btn.active {
  background: rgba(195, 135, 97, 0.2);
  color: #af6c42;
}

/* line 912, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-view-toggle .view-toggle-btn i {
  font-size: 0.8rem !important;
}

/* ==========================================================================
   VUE PAR SOCIÉTÉ - Affichage groupé par organisation
   ========================================================================== */
/* line 922, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-by-organization {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  /* Personnalisation de la barre de défilement */
}

/* line 931, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-by-organization::-webkit-scrollbar {
  width: 8px;
}

/* line 935, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-by-organization::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 939, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-by-organization::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 944, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-by-organization::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 949, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-by-organization::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 952, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-by-organization::-webkit-scrollbar-thumb:hover {
  background: #140D23;
}

/* line 958, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.organization-group {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

/* line 964, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .organization-group {
  background: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 969, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.organization-group.no-organization {
  border-left: 3px solid rgba(195, 135, 97, 0.5);
}

/* line 972, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.organization-group.no-organization .organization-header {
  background: rgba(195, 135, 97, 0.03);
}

/* line 978, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.organization-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(195, 135, 97, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 986, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .organization-header {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 990, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.organization-header .organization-name {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 995, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.organization-header .organization-name i {
  color: #C38761 !important;
  font-size: 1rem !important;
}

/* line 1000, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.organization-header .organization-name h3, .organization-header .organization-name .h3 {
  all: unset;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* line 1007, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .organization-header .organization-name h3, .leads-board-capsule.lightmode .organization-header .organization-name .h3 {
  color: #140D23;
}

/* line 1013, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.organization-header .organization-meta {
  display: flex;
  gap: 16px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  align-items: center;
}

/* line 1020, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .organization-header .organization-meta {
  color: rgba(20, 13, 35, 0.6);
}

/* line 1024, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.organization-header .organization-meta .prospect-count {
  background: rgba(195, 135, 97, 0.15);
  padding: 3px 10px;
  border-radius: 10px;
  color: #C38761;
  font-weight: 500;
}

/* line 1032, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.organization-header .organization-meta .org-email {
  font-size: 0.65rem;
}

/* line 1038, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.organization-prospects {
  padding: 8px;
}

/* line 1042, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.prospect-row {
  display: grid;
  grid-template-columns: 1fr 120px 100px 50px;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  align-items: center;
}

/* line 1052, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.prospect-row:hover {
  background: rgba(195, 135, 97, 0.08);
}

/* line 1056, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.prospect-row .prospect-name {
  font-weight: 500;
  font-size: 0.75rem;
  color: #FFFFFF;
}

/* line 1061, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .prospect-row .prospect-name {
  color: #140D23;
}

/* line 1066, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.prospect-row .prospect-status {
  display: flex;
  justify-content: center;
}

/* line 1071, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.prospect-row .prospect-date {
  text-align: right;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
}

/* line 1076, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .prospect-row .prospect-date {
  color: rgba(20, 13, 35, 0.5);
}

/* line 1081, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.prospect-row .prospect-actions {
  display: flex;
  justify-content: flex-end;
}

/* line 1087, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.no-prospects {
  padding: 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
  font-size: 0.75rem;
}

/* line 1094, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .no-prospects {
  color: rgba(20, 13, 35, 0.4);
}

/* ==========================================================================
   VUE PROSPECTS/CLIENTS AVEC ORGANISATIONS - Affichage hierarchique
   ========================================================================== */
/* line 1103, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-prospects-with-orgs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  /* Personnalisation de la barre de defilement */
}

/* line 1112, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-prospects-with-orgs::-webkit-scrollbar {
  width: 8px;
}

/* line 1116, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-prospects-with-orgs::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 1120, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-prospects-with-orgs::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 1125, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-prospects-with-orgs::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 1130, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-prospects-with-orgs::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 1133, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-prospects-with-orgs::-webkit-scrollbar-thumb:hover {
  background: #140D23;
}

/* line 1139, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.prospect-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

/* line 1146, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .prospect-card {
  background: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 1152, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.prospect-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: rgba(195, 135, 97, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background 0.2s;
}

/* line 1162, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.prospect-card-header:hover {
  background: rgba(195, 135, 97, 0.1);
}

/* line 1166, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .prospect-card-header {
  border-bottom-color: rgba(20, 13, 35, 0.08);
}

/* line 1171, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.prospect-card-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

/* line 1178, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.prospect-card-name {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 1183, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.prospect-card-name i {
  color: #C38761 !important;
  font-size: 1rem !important;
}

/* line 1188, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.prospect-card-name span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* line 1193, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .prospect-card-name span {
  color: #140D23;
}

/* line 1199, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.prospect-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 1205, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.prospect-card-date {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
}

/* line 1209, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .prospect-card-date {
  color: rgba(20, 13, 35, 0.5);
}

/* line 1214, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.prospect-card-actions {
  display: flex;
  gap: 8px;
}

/* line 1219, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.prospect-card-organizations {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.01);
}

/* line 1223, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .prospect-card-organizations {
  background: rgba(20, 13, 35, 0.01);
}

/* line 1228, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.org-child-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  margin-left: 20px;
  border-left: 2px solid rgba(195, 135, 97, 0.3);
  border-radius: 0 6px 6px 0;
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 4px;
  transition: background 0.2s;
}

/* line 1240, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.org-child-row:hover {
  background: rgba(195, 135, 97, 0.05);
}

/* line 1244, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.org-child-row:last-child {
  margin-bottom: 0;
}

/* line 1248, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .org-child-row {
  background: rgba(20, 13, 35, 0.02);
}

/* line 1251, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .org-child-row:hover {
  background: rgba(195, 135, 97, 0.08);
}

/* line 1257, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.org-child-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 1262, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.org-child-info i {
  color: rgba(195, 135, 97, 0.7) !important;
  font-size: 0.75rem !important;
}

/* line 1268, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.org-child-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: #FFFFFF;
}

/* line 1273, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .org-child-name {
  color: #140D23;
}

/* line 1278, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.org-child-details {
  display: flex;
  gap: 16px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
}

/* line 1284, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .org-child-details {
  color: rgba(20, 13, 35, 0.5);
}

/* line 1289, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.org-child-email,
.org-child-siret {
  font-size: 0.65rem;
}

/* line 1294, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.org-child-empty {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  margin-left: 20px;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
  font-size: 0.75rem;
}

/* line 1305, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.org-child-empty i {
  font-size: 0.8rem !important;
  color: rgba(255, 255, 255, 0.3) !important;
}

/* line 1310, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .org-child-empty {
  border-left-color: rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.4);
}

/* line 1314, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .org-child-empty i {
  color: rgba(20, 13, 35, 0.3) !important;
}

/* ==========================================================================
   AFFICHAGE COMPACT - Pour 0 ou 1 organisation
   ========================================================================== */
/* line 1325, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.prospect-card.compact .prospect-card-header {
  border-bottom: none;
}

/* line 1330, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.prospect-card.no-org {
  border-left: 3px solid rgba(195, 135, 97, 0.3);
}

/* line 1334, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.prospect-card-org-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
}

/* line 1342, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.prospect-card-org-inline i {
  color: rgba(195, 135, 97, 0.7) !important;
  font-size: 0.75rem !important;
}

/* line 1347, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .prospect-card-org-inline {
  background: rgba(20, 13, 35, 0.05);
}

/* line 1351, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.prospect-card-org-inline.empty {
  background: transparent;
  border: 1px dashed rgba(255, 255, 255, 0.15);
}

/* line 1355, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.prospect-card-org-inline.empty i {
  color: rgba(255, 255, 255, 0.4) !important;
}

/* line 1359, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .prospect-card-org-inline.empty {
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 1362, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .prospect-card-org-inline.empty i {
  color: rgba(20, 13, 35, 0.4) !important;
}

/* line 1369, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.org-inline-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: #FFFFFF;
}

/* line 1374, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .org-inline-name {
  color: #140D23;
}

/* line 1379, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.org-inline-siret {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  padding-left: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

/* line 1385, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .org-inline-siret {
  color: rgba(20, 13, 35, 0.5);
  border-left-color: rgba(20, 13, 35, 0.15);
}

/* line 1391, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.org-inline-empty {
  font-size: 0.75rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.4);
}

/* line 1396, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .org-inline-empty {
  color: rgba(20, 13, 35, 0.4);
}

/* line 1401, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.org-count-badge {
  background: rgba(195, 135, 97, 0.15);
  padding: 3px 8px;
  border-radius: 10px;
  color: #C38761;
  font-size: 0.65rem;
  font-weight: 500;
}

/* ==========================================================================
   CLASSES UTILITAIRES - Classes d'aide diverses
   ========================================================================== */
/* line 1414, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_leads_board.scss */
.d-none {
  display: none !important;
}

/* Styles spécifiques aux badges de statut des clients */
/* line 12, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_customers_board.scss */
.status-badge.available {
  background-color: rgba(46, 204, 113, 0.1);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.3);
}

/* line 17, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_customers_board.scss */
.leads-board-capsule.lightmode .status-badge.available {
  background-color: rgba(46, 204, 113, 0.15);
  color: #27ae60;
  border: 1px solid rgba(46, 204, 113, 0.4);
}

/* line 24, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_customers_board.scss */
.status-badge.archived {
  background-color: rgba(149, 165, 166, 0.1);
  color: #95a5a6;
  border: 1px solid rgba(149, 165, 166, 0.3);
}

/* line 29, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_customers_board.scss */
.leads-board-capsule.lightmode .status-badge.archived {
  background-color: rgba(149, 165, 166, 0.15);
  color: #7f8c8d;
  border: 1px solid rgba(149, 165, 166, 0.4);
}

/* Assurer que le padding des badges clients est toujours appliqué */
/* line 39, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_customers_board.scss */
.leads-board-row2-list-column .status-badge.available, .leads-board-row2-list-column .status-badge.archived {
  padding: 4px 8px !important;
}

/* ==========================================================================
   ORGANIZATION WIZARD MODAL - Styles partagés
   Utilisé par : Customer Space "Mes sociétés" et CRM Prospect "Société"
   ========================================================================== */
/* Overlay pour le contexte prospect (CRM) — le Customer Space utilise .mdp-modal */
/* line 7, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
#organizationModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
}

/* line 19, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
#organizationModal[style*="display: flex"], #organizationModal.d-flex {
  display: flex !important;
}

/* line 24, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
#organizationModal.d-none {
  display: none !important;
}

/* Contenu de la modal organisation — classe partagée */
/* line 30, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content {
  max-width: 900px;
  height: 85vh;
  max-height: 90vh;
  width: 95%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
  color: white;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
}

/* line 48, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content h2, .modal-content.organization-modal-content .h2 {
  margin: 0;
  padding: 16px 24px;
  font-size: 1.2rem;
  font-weight: 600;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 59, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .close {
  position: absolute;
  right: 16px;
  top: 12px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color 0.2s ease;
  margin: 0 !important;
  line-height: 1;
  padding: 0;
}

/* line 79, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .close:hover {
  color: #C38761;
}

/* line 85, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .progress-bar-container {
  margin: 0 24px;
  padding: 16px 0;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 91, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .progress-bar-container .progress-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  position: relative;
}

/* line 97, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .progress-bar-container .progress-steps .progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
}

/* line 104, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .progress-bar-container .progress-steps .progress-step .step-circle {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  margin-bottom: 0.5rem;
}

/* line 118, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .progress-bar-container .progress-steps .progress-step .step-circle.active {
  background-color: #C38761;
  color: #140D23;
}

/* line 123, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .progress-bar-container .progress-steps .progress-step .step-circle.completed {
  background-color: #22c55e;
  color: white;
}

/* line 129, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .progress-bar-container .progress-steps .progress-step .step-label {
  font-size: 0.7rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  max-width: 70px;
  line-height: 1.2;
}

/* line 139, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .progress-bar-container .progress-bar {
  height: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

/* line 145, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .progress-bar-container .progress-bar .progress-fill {
  height: 100%;
  background-color: #C38761;
  border-radius: 2px;
  transition: width 0.3s ease;
  width: 16.67%;
}

/* line 156, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .required-legend {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 12px 24px 0;
  font-style: italic;
}

/* line 162, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .required-legend .required-asterisk {
  color: #e74c3c;
  font-weight: 700;
}

/* line 169, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content form {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  padding: 0;
}

/* line 178, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content form .form-steps-container {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 0;
  padding: 0 24px;
}

/* line 186, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content form .form-steps-container::-webkit-scrollbar {
  width: 6px;
}

/* line 190, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content form .form-steps-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

/* line 195, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content form .form-steps-container::-webkit-scrollbar-thumb {
  background: rgba(195, 135, 97, 0.5);
  border-radius: 3px;
}

/* line 199, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content form .form-steps-container::-webkit-scrollbar-thumb:hover {
  background: rgba(195, 135, 97, 0.7);
}

/* line 205, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content form .form-step {
  overflow: visible;
  padding: 0.5rem 0;
  flex-shrink: 0;
  width: 100%;
}

/* line 211, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content form .form-step.hidden {
  display: none;
}

/* line 215, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content form .form-step .step-title {
  display: none;
}

/* line 222, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content::-webkit-scrollbar {
  width: 6px;
}

/* line 226, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

/* line 231, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content::-webkit-scrollbar-thumb {
  background: rgba(195, 135, 97, 0.5);
  border-radius: 3px;
}

/* line 235, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content::-webkit-scrollbar-thumb:hover {
  background: rgba(195, 135, 97, 0.7);
}

/* line 241, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  width: 100%;
  align-items: start;
}

@media (max-width: 768px) {
  /* line 241, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
  .modal-content.organization-modal-content .form-columns {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* line 253, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns .form-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* line 258, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns .form-column .form-group {
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 1rem;
  position: relative;
}

/* line 266, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns .form-column .form-group label {
  margin-bottom: 0.5rem;
  height: 1.2rem;
  display: flex;
  align-items: flex-end;
  line-height: 1.2rem;
}

/* line 274, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns .form-column .form-group .form-input, .modal-content.organization-modal-content .form-columns .form-column .form-group .form-select {
  height: 42px;
  margin-top: 0;
  margin-bottom: 0;
}

/* line 280, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns .form-column .form-group .spacer-hint, .modal-content.organization-modal-content .form-columns .form-column .form-group .form-hint {
  height: 1.2rem;
  margin-top: 0.5rem;
  display: flex;
  align-items: flex-start;
  line-height: 1.2rem;
}

/* line 289, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns .form-column .form-group:not(.siret-group) .spacer-hint {
  visibility: hidden;
}

/* line 294, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns .form-column .form-group.org-name-group {
  margin-top: 0;
}

/* line 298, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns .form-column .form-group.legal-status-group {
  margin-top: 0;
}

/* line 302, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns .form-column .form-group.industry-group {
  margin-top: 0;
}

/* line 303, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns .form-column .form-group.street-group {
  margin-top: 0;
}

/* line 304, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns .form-column .form-group.city-group {
  margin-top: 0;
}

/* line 305, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns .form-column .form-group.postal-code-group {
  margin-top: 0;
}

/* line 306, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns .form-column .form-group.country-group {
  margin-top: 0;
}

/* line 307, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns .form-column .form-group.billing-street-group {
  margin-top: 0;
}

/* line 308, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns .form-column .form-group.billing-city-group {
  margin-top: 0;
}

/* line 309, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns .form-column .form-group.billing-postal-code-group {
  margin-top: 0;
}

/* line 310, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns .form-column .form-group.billing-country-group {
  margin-top: 0;
}

/* line 311, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns .form-column .form-group.shipping-street-group {
  margin-top: 0;
}

/* line 312, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns .form-column .form-group.shipping-city-group {
  margin-top: 0;
}

/* line 313, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns .form-column .form-group.shipping-postal-code-group {
  margin-top: 0;
}

/* line 314, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns .form-column .form-group.shipping-country-group {
  margin-top: 0;
}

/* line 315, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-columns .form-column .form-group.topics-group {
  margin-bottom: 2rem;
}

/* line 320, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-group {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

/* line 325, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-group.horizontal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

/* line 331, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-group.horizontal .form-group-half {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}

/* line 339, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-group:not(.horizontal) .form-input, .modal-content.organization-modal-content .form-group:not(.horizontal) .form-select, .modal-content.organization-modal-content .form-group:not(.horizontal) textarea {
  width: 100%;
  box-sizing: border-box;
}

/* line 346, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.95);
  text-transform: lowercase;
}

/* line 354, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content label::first-letter {
  text-transform: uppercase;
}

/* line 358, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content label:first-letter {
  text-transform: uppercase;
}

/* line 363, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-input, .modal-content.organization-modal-content .form-select {
  width: 100%;
  height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(195, 135, 97, 0.4);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9rem;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

/* line 374, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-input:focus, .modal-content.organization-modal-content .form-select:focus {
  outline: none;
  border-color: rgba(195, 135, 97, 0.7);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.15);
}

/* line 381, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-input::placeholder, .modal-content.organization-modal-content .form-select::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* line 387, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content select.form-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

/* line 396, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content select.form-input option {
  background-color: #140D23;
  color: white;
}

/* line 402, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-hint {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6) !important;
  line-height: 1.3;
}

/* line 411, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content #siret-verification-result:empty {
  display: none;
}

/* line 416, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .siret-input-group {
  display: flex;
  width: 100%;
  gap: 0.5rem;
  align-items: stretch;
}

/* line 422, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .siret-input-group .form-input {
  flex: 1;
  width: 100%;
  height: 42px;
  margin: 0;
  padding: 10px 12px;
  box-sizing: border-box;
}

/* line 431, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .siret-input-group .verify-btn {
  white-space: nowrap;
  padding: 10px 16px;
  height: 42px;
  font-size: 0.85rem;
  background-color: #C38761;
  color: white;
  border: 1px solid #C38761;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
  margin: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

/* line 450, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .siret-input-group .verify-btn:hover {
  background: #bc794f;
}

/* line 457, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .siret-group .form-hint {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6) !important;
  line-height: 1.3;
}

/* line 465, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .spacer-hint {
  height: 1.2rem;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  line-height: 1.3;
}

/* line 473, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .registre-fields-container label,
.modal-content.organization-modal-content .rcs-field-group label,
.modal-content.organization-modal-content .rm-field-group label {
  text-transform: none;
}

/* line 480, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .segmented-input-group {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}

/* line 485, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .segmented-input-group .form-input,
.modal-content.organization-modal-content .segmented-input-group select.segment-city {
  height: 42px;
  margin: 0;
  padding: 10px 12px;
  box-sizing: border-box;
}

/* line 493, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .segmented-input-group select.segment-city {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 14px;
  padding-right: 28px;
}

/* line 503, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .segmented-input-group .segment-city {
  flex: 1;
}

/* line 507, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .segmented-input-group .segment-siren {
  flex: 1;
}

/* line 513, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1rem 0;
}

/* line 519, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .checkbox-wrapper .form-checkbox {
  margin: 0;
  transform: scale(1.1);
  accent-color: #C38761;
}

/* line 525, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .checkbox-wrapper .checkbox-label {
  margin: 0 !important;
  font-weight: normal;
  font-size: 0.9rem;
  cursor: pointer;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.95) !important;
  text-align: left !important;
  padding-left: 0 !important;
  opacity: 1 !important;
}

/* line 538, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .checkbox-group-inline {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin: 1rem 0;
}

/* line 544, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .checkbox-group-inline .checkbox-wrapper {
  margin: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 551, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .checkbox-group-inline .checkbox-wrapper .checkbox-label {
  white-space: nowrap;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  /* line 538, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
  .modal-content.organization-modal-content .checkbox-group-inline {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}

/* line 565, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .address-search-container {
  margin-bottom: 1rem;
}

/* line 568, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .address-search-container .form-input.address-autocomplete {
  position: relative;
}

/* line 574, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .address-fields .form-group {
  margin-bottom: 0.75rem;
}

/* line 580, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .btn-copy-address {
  padding: 8px 16px;
  font-size: 0.8rem;
  background-color: rgba(195, 135, 97, 0.2);
  color: #C38761;
  border: 1px solid rgba(195, 135, 97, 0.4);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

/* line 594, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .btn-copy-address:hover {
  background-color: rgba(195, 135, 97, 0.3);
  border-color: rgba(195, 135, 97, 0.6);
  transform: translateY(-1px);
}

/* line 600, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .btn-copy-address i {
  font-size: 0.75rem;
}

/* line 606, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .validation-error {
  display: block;
  margin-top: 0.5rem;
  padding: 0.5rem;
  background-color: rgba(231, 76, 60, 0.2);
  border: 1px solid rgba(231, 76, 60, 0.4);
  border-radius: 6px;
  color: #ff6b6b;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.3;
}

/* line 618, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .validation-error::before {
  content: "\26A0\FE0F ";
  margin-right: 0.25rem;
}

/* line 625, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-input.error, .modal-content.organization-modal-content .form-select.error, .modal-content.organization-modal-content select.error, .modal-content.organization-modal-content input.error {
  border: 2px solid #e74c3c !important;
  background-color: rgba(231, 76, 60, 0.1);
}

/* line 629, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-input.error:focus, .modal-content.organization-modal-content .form-select.error:focus, .modal-content.organization-modal-content select.error:focus, .modal-content.organization-modal-content input.error:focus {
  border-color: #e74c3c !important;
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

/* line 636, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-navigation {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  width: 100%;
}

/* line 646, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-navigation .form-button, .modal-content.organization-modal-content .form-navigation .users-management-container .users-header .add-user-btn, .users-management-container .users-header .modal-content.organization-modal-content .form-navigation .add-user-btn, .modal-content.organization-modal-content .form-navigation .crm-action-button {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  cursor: pointer;
  min-width: 120px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* line 659, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-navigation .form-button:not(.secondary):not(.primary):not(.cancel-btn), .modal-content.organization-modal-content .form-navigation .users-management-container .users-header .add-user-btn:not(.secondary):not(.primary):not(.cancel-btn), .users-management-container .users-header .modal-content.organization-modal-content .form-navigation .add-user-btn:not(.secondary):not(.primary):not(.cancel-btn), .modal-content.organization-modal-content .form-navigation .crm-action-button:not(.secondary):not(.primary):not(.cancel-btn) {
  background: #C38761;
  border: 1px solid #C38761;
  color: white;
}

/* line 664, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-navigation .form-button:not(.secondary):not(.primary):not(.cancel-btn):hover, .modal-content.organization-modal-content .form-navigation .users-management-container .users-header .add-user-btn:not(.secondary):not(.primary):not(.cancel-btn):hover, .users-management-container .users-header .modal-content.organization-modal-content .form-navigation .add-user-btn:not(.secondary):not(.primary):not(.cancel-btn):hover, .modal-content.organization-modal-content .form-navigation .crm-action-button:not(.secondary):not(.primary):not(.cancel-btn):hover {
  background: #bc794f;
}

/* line 669, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-navigation .form-button.secondary, .modal-content.organization-modal-content .form-navigation .users-management-container .users-header .secondary.add-user-btn, .users-management-container .users-header .modal-content.organization-modal-content .form-navigation .secondary.add-user-btn, .modal-content.organization-modal-content .form-navigation .secondary.crm-action-button {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}

/* line 674, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-navigation .form-button.secondary:hover, .modal-content.organization-modal-content .form-navigation .users-management-container .users-header .secondary.add-user-btn:hover, .users-management-container .users-header .modal-content.organization-modal-content .form-navigation .secondary.add-user-btn:hover, .modal-content.organization-modal-content .form-navigation .secondary.crm-action-button:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

/* line 680, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-navigation .form-button.primary, .modal-content.organization-modal-content .form-navigation .users-management-container .users-header .primary.add-user-btn, .users-management-container .users-header .modal-content.organization-modal-content .form-navigation .primary.add-user-btn, .modal-content.organization-modal-content .form-navigation .primary.crm-action-button {
  background-color: #22c55e;
  border: 1px solid #22c55e;
  color: white;
}

/* line 685, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-navigation .form-button.primary:hover, .modal-content.organization-modal-content .form-navigation .users-management-container .users-header .primary.add-user-btn:hover, .users-management-container .users-header .modal-content.organization-modal-content .form-navigation .primary.add-user-btn:hover, .modal-content.organization-modal-content .form-navigation .primary.crm-action-button:hover {
  background-color: #1eaf54;
}

/* line 690, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-navigation .form-button.cancel-btn, .modal-content.organization-modal-content .form-navigation .users-management-container .users-header .cancel-btn.add-user-btn, .users-management-container .users-header .modal-content.organization-modal-content .form-navigation .cancel-btn.add-user-btn, .modal-content.organization-modal-content .form-navigation .cancel-btn.crm-action-button {
  background: rgba(220, 53, 69, 0.2);
  border: 1px solid rgba(220, 53, 69, 0.4);
  color: #dc3545;
}

/* line 695, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .form-navigation .form-button.cancel-btn:hover, .modal-content.organization-modal-content .form-navigation .users-management-container .users-header .cancel-btn.add-user-btn:hover, .users-management-container .users-header .modal-content.organization-modal-content .form-navigation .cancel-btn.add-user-btn:hover, .modal-content.organization-modal-content .form-navigation .cancel-btn.crm-action-button:hover {
  background: rgba(220, 53, 69, 0.3);
  border-color: rgba(220, 53, 69, 0.6);
}

/* line 706, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.modal-content.organization-modal-content .is-reference-group .reference-info .reference-warning {
  font-size: 0.8rem;
}

/* ==========================================================================
   ORGANIZATION WIZARD MODAL - CRM OVERRIDES
   Scopé à #organizationModal pour ne PAS impacter l'espace client (#organization-modal)
   ========================================================================== */
/* line 720, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
#organizationModal .organization-modal-content .form-columns .form-column .form-group label {
  display: block;
}

/* line 725, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
#organizationModal .organization-modal-content .segmented-input-group {
  gap: 0.25rem;
}

/* line 728, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
#organizationModal .organization-modal-content .segmented-input-group .form-input,
#organizationModal .organization-modal-content .segmented-input-group select.segment-city {
  min-width: 0;
  padding: 10px 8px;
}

/* line 734, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
#organizationModal .organization-modal-content .segmented-input-group .segment-city {
  flex: 2;
  min-width: 0;
}

/* line 739, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
#organizationModal .organization-modal-content .segmented-input-group .segment-siren {
  flex: 1;
  min-width: 60px;
}

/* ==========================================================================
   ORGANIZATION WIZARD MODAL - LIGHT MODE
   ========================================================================== */
/* line 749, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(20, 13, 35, 0.15);
  box-shadow: 0 8px 32px rgba(20, 13, 35, 0.15);
  color: #140D23;
}

/* line 755, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content h2, .lightmode .modal-content.organization-modal-content .h2 {
  color: #140D23;
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 760, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .close {
  color: #140D23;
}

/* line 763, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .close:hover {
  color: #C38761;
}

/* line 768, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .progress-bar-container {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 772, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .progress-bar-container .progress-steps .progress-step .step-circle {
  background-color: rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.5);
}

/* line 776, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .progress-bar-container .progress-steps .progress-step .step-circle.active {
  background-color: #C38761;
  color: white;
}

/* line 781, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .progress-bar-container .progress-steps .progress-step .step-circle.completed {
  background-color: #22c55e;
  color: white;
}

/* line 787, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .progress-bar-container .progress-steps .progress-step .step-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 792, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .progress-bar-container .progress-bar {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 795, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .progress-bar-container .progress-bar .progress-fill {
  background-color: #C38761;
}

/* line 801, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .required-legend {
  color: rgba(20, 13, 35, 0.6);
}

/* line 806, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .form-steps-container::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.05);
}

/* line 810, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .form-steps-container::-webkit-scrollbar-thumb {
  background: rgba(195, 135, 97, 0.5);
}

/* line 813, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .form-steps-container::-webkit-scrollbar-thumb:hover {
  background: rgba(195, 135, 97, 0.7);
}

/* line 819, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content label {
  color: #140D23;
}

/* line 823, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .form-input, .lightmode .modal-content.organization-modal-content .form-select {
  background: #e8e8e8;
  border: 1px solid rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 828, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .form-input::placeholder, .lightmode .modal-content.organization-modal-content .form-select::placeholder {
  color: rgba(20, 13, 35, 0.5);
}

/* line 832, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .form-input:focus, .lightmode .modal-content.organization-modal-content .form-select:focus {
  border-color: #C38761;
  background: white;
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.15);
}

/* line 839, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content select.form-input {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
}

/* line 842, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content select.form-input option {
  background-color: white;
  color: #140D23;
}

/* line 848, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .segmented-input-group select.segment-city {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
}

/* line 852, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .form-hint {
  color: rgba(20, 13, 35, 0.6) !important;
}

/* line 856, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .siret-input-group .verify-btn {
  background: #C38761;
  border-color: #C38761;
  color: white;
}

/* line 861, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .siret-input-group .verify-btn:hover {
  background: #bc794f;
}

/* line 867, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .checkbox-wrapper .form-checkbox {
  accent-color: #C38761;
}

/* line 871, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .checkbox-wrapper .checkbox-label {
  color: #140D23 !important;
}

/* line 876, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .form-navigation {
  border-top-color: rgba(20, 13, 35, 0.1);
}

/* line 880, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .form-navigation .form-button:not(.secondary):not(.primary):not(.cancel-btn), .lightmode .modal-content.organization-modal-content .form-navigation .users-management-container .users-header .add-user-btn:not(.secondary):not(.primary):not(.cancel-btn), .users-management-container .users-header .lightmode .modal-content.organization-modal-content .form-navigation .add-user-btn:not(.secondary):not(.primary):not(.cancel-btn), .lightmode .modal-content.organization-modal-content .form-navigation .crm-action-button:not(.secondary):not(.primary):not(.cancel-btn) {
  background: #C38761;
  border-color: #C38761;
  color: white;
}

/* line 885, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .form-navigation .form-button:not(.secondary):not(.primary):not(.cancel-btn):hover, .lightmode .modal-content.organization-modal-content .form-navigation .users-management-container .users-header .add-user-btn:not(.secondary):not(.primary):not(.cancel-btn):hover, .users-management-container .users-header .lightmode .modal-content.organization-modal-content .form-navigation .add-user-btn:not(.secondary):not(.primary):not(.cancel-btn):hover, .lightmode .modal-content.organization-modal-content .form-navigation .crm-action-button:not(.secondary):not(.primary):not(.cancel-btn):hover {
  background: #bc794f;
}

/* line 890, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .form-navigation .form-button.secondary, .lightmode .modal-content.organization-modal-content .form-navigation .users-management-container .users-header .secondary.add-user-btn, .users-management-container .users-header .lightmode .modal-content.organization-modal-content .form-navigation .secondary.add-user-btn, .lightmode .modal-content.organization-modal-content .form-navigation .secondary.crm-action-button {
  background: #e8e8e8;
  border: 1px solid rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 895, app/assets/stylesheets/pages/servicespace/commerce/crm/../../../../shared/_organization_wizard_modal.scss */
.lightmode .modal-content.organization-modal-content .form-navigation .form-button.secondary:hover, .lightmode .modal-content.organization-modal-content .form-navigation .users-management-container .users-header .secondary.add-user-btn:hover, .users-management-container .users-header .lightmode .modal-content.organization-modal-content .form-navigation .secondary.add-user-btn:hover, .lightmode .modal-content.organization-modal-content .form-navigation .secondary.crm-action-button:hover {
  background: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
}

/* ==========================================================================
   IMPORT PROSPECT MODAL - Styles alignés sur organization_wizard_modal
   ========================================================================== */
/* Overlay */
/* line 6, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.import-prospect-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
}

/* line 18, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.import-prospect-modal.d-flex {
  display: flex !important;
}

/* line 22, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.import-prospect-modal.d-none {
  display: none !important;
}

/* Contenu de la modal */
/* line 28, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content,
.import-modal-content {
  max-width: 1100px;
  width: 95%;
  max-height: 85vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
  color: white;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
}

/* line 46, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content > form,
.import-modal-content > form {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

/* line 55, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content h2,
.import-modal-content h2,
.import-modal-content .h2 {
  margin: 0;
  padding: 16px 24px;
  padding-right: 60px;
  font-size: 1.2rem;
  font-weight: 600;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 70, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .import-modal-close,
.import-modal-content .import-modal-close {
  position: absolute;
  right: 16px;
  top: 12px;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  z-index: 100;
  padding: 0;
  margin: 0;
}

/* line 90, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .import-modal-close:hover,
.import-modal-content .import-modal-close:hover {
  color: #C38761;
  background: rgba(255, 255, 255, 0.1);
}

/* line 95, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .import-modal-close i,
.import-modal-content .import-modal-close i {
  margin: 0;
}

/* line 101, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .import-modal-body,
.import-modal-content .import-modal-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px 24px;
  min-height: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(195, 135, 97, 0.6) rgba(255, 255, 255, 0.05);
}

/* line 109, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .import-modal-body::-webkit-scrollbar,
.import-modal-content .import-modal-body::-webkit-scrollbar {
  width: 8px;
}

/* line 113, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .import-modal-body::-webkit-scrollbar-track,
.import-modal-content .import-modal-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

/* line 118, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .import-modal-body::-webkit-scrollbar-thumb,
.import-modal-content .import-modal-body::-webkit-scrollbar-thumb {
  background: rgba(195, 135, 97, 0.6);
  border-radius: 4px;
}

/* line 122, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .import-modal-body::-webkit-scrollbar-thumb:hover,
.import-modal-content .import-modal-body::-webkit-scrollbar-thumb:hover {
  background: rgba(195, 135, 97, 0.8);
}

/* line 133, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .import-guide-section,
.import-modal-content .import-guide-section {
  margin-bottom: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 140, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .import-guide-section .guide-row,
.import-modal-content .import-guide-section .guide-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 600px) {
  /* line 140, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
  .modal-content.import-modal-content .import-guide-section .guide-row,
.import-modal-content .import-guide-section .guide-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* line 152, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .import-guide-section .guide-column .guide-title,
.import-modal-content .import-guide-section .guide-column .guide-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
}

/* line 160, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .import-guide-section .guide-column .guide-title.success,
.import-modal-content .import-guide-section .guide-column .guide-title.success {
  color: #22c55e;
}

/* line 164, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .import-guide-section .guide-column .guide-title.warning,
.import-modal-content .import-guide-section .guide-column .guide-title.warning {
  color: #C38761;
}

/* line 168, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .import-guide-section .guide-column .guide-title i,
.import-modal-content .import-guide-section .guide-column .guide-title i {
  font-size: 0.9rem;
}

/* line 173, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .import-guide-section .guide-column .guide-list,
.import-modal-content .import-guide-section .guide-column .guide-list {
  margin: 0;
  padding-left: 16px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

/* line 179, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .import-guide-section .guide-column .guide-list li,
.import-modal-content .import-guide-section .guide-column .guide-list li {
  margin-bottom: 4px;
}

/* line 182, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .import-guide-section .guide-column .guide-list li strong,
.import-modal-content .import-guide-section .guide-column .guide-list li strong {
  color: rgba(255, 255, 255, 0.95);
}

/* line 191, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .template-download-section,
.import-modal-content .template-download-section {
  margin-bottom: 16px;
}

/* line 194, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .template-download-section .template-download-content,
.import-modal-content .template-download-section .template-download-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 8px;
}

/* line 203, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .template-download-section .template-download-content .template-icon,
.import-modal-content .template-download-section .template-download-content .template-icon {
  font-size: 1.5rem;
  color: #22c55e;
}

/* line 208, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .template-download-section .template-download-content .template-text,
.import-modal-content .template-download-section .template-download-content .template-text {
  flex: 1;
}

/* line 211, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .template-download-section .template-download-content .template-text strong,
.import-modal-content .template-download-section .template-download-content .template-text strong {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.95);
}

/* line 217, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .template-download-section .template-download-content .template-text span,
.import-modal-content .template-download-section .template-download-content .template-text span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

/* line 223, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .template-download-section .template-download-content .template-download-btn,
.import-modal-content .template-download-section .template-download-content .template-download-btn {
  padding: 8px 16px;
  background: #22c55e;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

/* line 235, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .template-download-section .template-download-content .template-download-btn:hover,
.import-modal-content .template-download-section .template-download-content .template-download-btn:hover {
  background: #1eaf54;
  transform: translateY(-1px);
}

/* line 244, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .upload-zone-container,
.import-modal-content .upload-zone-container {
  margin-bottom: 16px;
}

/* line 248, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .import-upload-zone,
.import-modal-content .import-upload-zone {
  border: 2px dashed rgba(195, 135, 97, 0.4);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.2s ease;
  cursor: pointer;
}

/* line 257, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .import-upload-zone:hover, .modal-content.import-modal-content .import-upload-zone.drag-over,
.import-modal-content .import-upload-zone:hover,
.import-modal-content .import-upload-zone.drag-over {
  border-color: #C38761;
  background: rgba(195, 135, 97, 0.05);
}

/* line 263, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .import-upload-zone.drag-over,
.import-modal-content .import-upload-zone.drag-over {
  transform: scale(1.01);
}

/* line 267, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .import-upload-zone .upload-zone-icon,
.import-modal-content .import-upload-zone .upload-zone-icon {
  margin-bottom: 12px;
}

/* line 270, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .import-upload-zone .upload-zone-icon i,
.import-modal-content .import-upload-zone .upload-zone-icon i {
  font-size: 2.5rem;
  color: #C38761;
}

/* line 276, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .import-upload-zone h5,
.import-modal-content .import-upload-zone h5,
.import-modal-content .import-upload-zone .h5 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}

/* line 283, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .import-upload-zone .upload-zone-separator,
.import-modal-content .import-upload-zone .upload-zone-separator {
  margin: 8px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* line 289, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .import-upload-zone .upload-browse-btn,
.import-modal-content .import-upload-zone .upload-browse-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: #C38761;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 302, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .import-upload-zone .upload-browse-btn:hover,
.import-modal-content .import-upload-zone .upload-browse-btn:hover {
  background: #bc794f;
}

/* line 307, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .import-upload-zone .upload-zone-hint,
.import-modal-content .import-upload-zone .upload-zone-hint {
  margin: 12px 0 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* line 316, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .selected-file-display .selected-file-info,
.import-modal-content .selected-file-display .selected-file-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(195, 135, 97, 0.3);
  border-radius: 8px;
}

/* line 325, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .selected-file-display .selected-file-info .selected-file-icon,
.import-modal-content .selected-file-display .selected-file-info .selected-file-icon {
  font-size: 1.5rem;
  color: #22c55e;
}

/* line 330, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .selected-file-display .selected-file-info .selected-file-details,
.import-modal-content .selected-file-display .selected-file-info .selected-file-details {
  flex: 1;
}

/* line 333, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .selected-file-display .selected-file-info .selected-file-details strong,
.import-modal-content .selected-file-display .selected-file-info .selected-file-details strong {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.95);
}

/* line 339, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .selected-file-display .selected-file-info .selected-file-details small,
.import-modal-content .selected-file-display .selected-file-info .selected-file-details small,
.import-modal-content .selected-file-display .selected-file-info .selected-file-details .small {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

/* line 345, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .selected-file-display .selected-file-info .remove-file-btn,
.import-modal-content .selected-file-display .selected-file-info .remove-file-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.2s ease;
}

/* line 354, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .selected-file-display .selected-file-info .remove-file-btn:hover,
.import-modal-content .selected-file-display .selected-file-info .remove-file-btn:hover {
  color: #dc3545;
  background: rgba(220, 53, 69, 0.1);
}

/* line 361, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .selected-file-display .validation-message,
.import-modal-content .selected-file-display .validation-message {
  margin-top: 8px;
  padding: 8px 12px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 6px;
  color: #22c55e;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
}

/* line 376, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .account-type-section .section-label,
.import-modal-content .account-type-section .section-label {
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.95);
}

/* line 384, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .account-type-section .account-type-options,
.import-modal-content .account-type-section .account-type-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 500px) {
  /* line 384, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
  .modal-content.import-modal-content .account-type-section .account-type-options,
.import-modal-content .account-type-section .account-type-options {
    grid-template-columns: 1fr;
  }
}

/* line 394, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .account-type-section .account-type-option,
.import-modal-content .account-type-section .account-type-option {
  cursor: pointer;
}

/* line 397, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .account-type-section .account-type-option .account-type-radio,
.import-modal-content .account-type-section .account-type-option .account-type-radio {
  display: none;
}

/* line 400, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .account-type-section .account-type-option .account-type-radio:checked + .account-type-card,
.import-modal-content .account-type-section .account-type-option .account-type-radio:checked + .account-type-card {
  border-color: #C38761;
  background: rgba(195, 135, 97, 0.1);
}

/* line 404, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .account-type-section .account-type-option .account-type-radio:checked + .account-type-card i,
.import-modal-content .account-type-section .account-type-option .account-type-radio:checked + .account-type-card i {
  color: #C38761;
}

/* line 410, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .account-type-section .account-type-option .account-type-card,
.import-modal-content .account-type-section .account-type-option .account-type-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  transition: all 0.2s ease;
}

/* line 420, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .account-type-section .account-type-option .account-type-card:hover,
.import-modal-content .account-type-section .account-type-option .account-type-card:hover {
  border-color: rgba(195, 135, 97, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

/* line 425, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .account-type-section .account-type-option .account-type-card i,
.import-modal-content .account-type-section .account-type-option .account-type-card i {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

/* line 432, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .account-type-section .account-type-option .account-type-card .account-type-text strong,
.import-modal-content .account-type-section .account-type-option .account-type-card .account-type-text strong {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.95);
}

/* line 438, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .account-type-section .account-type-option .account-type-card .account-type-text span,
.import-modal-content .account-type-section .account-type-option .account-type-card .account-type-text span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* line 448, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .form-navigation,
.import-modal-content .form-navigation {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* line 456, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .form-navigation .form-button,
.import-modal-content .form-navigation .form-button,
.import-modal-content .form-navigation .users-management-container .users-header .add-user-btn,
.users-management-container .users-header .import-modal-content .form-navigation .add-user-btn,
.import-modal-content .form-navigation .crm-action-button {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  cursor: pointer;
  min-width: 140px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
}

/* line 470, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .form-navigation .form-button:not(.cancel-btn),
.import-modal-content .form-navigation .form-button:not(.cancel-btn),
.import-modal-content .form-navigation .users-management-container .users-header .add-user-btn:not(.cancel-btn),
.users-management-container .users-header .import-modal-content .form-navigation .add-user-btn:not(.cancel-btn),
.import-modal-content .form-navigation .crm-action-button:not(.cancel-btn) {
  background: #C38761;
  color: #140D23;
}

/* line 474, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .form-navigation .form-button:not(.cancel-btn):hover:not(:disabled),
.import-modal-content .form-navigation .form-button:not(.cancel-btn):hover:not(:disabled),
.import-modal-content .form-navigation .users-management-container .users-header .add-user-btn:not(.cancel-btn):hover:not(:disabled),
.users-management-container .users-header .import-modal-content .form-navigation .add-user-btn:not(.cancel-btn):hover:not(:disabled),
.import-modal-content .form-navigation .crm-action-button:not(.cancel-btn):hover:not(:disabled) {
  background: #bc794f;
}

/* line 478, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .form-navigation .form-button:not(.cancel-btn):disabled,
.import-modal-content .form-navigation .form-button:not(.cancel-btn):disabled,
.import-modal-content .form-navigation .users-management-container .users-header .add-user-btn:not(.cancel-btn):disabled,
.users-management-container .users-header .import-modal-content .form-navigation .add-user-btn:not(.cancel-btn):disabled,
.import-modal-content .form-navigation .crm-action-button:not(.cancel-btn):disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* line 484, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .form-navigation .form-button.cancel-btn,
.import-modal-content .form-navigation .form-button.cancel-btn,
.import-modal-content .form-navigation .users-management-container .users-header .cancel-btn.add-user-btn,
.users-management-container .users-header .import-modal-content .form-navigation .cancel-btn.add-user-btn,
.import-modal-content .form-navigation .cancel-btn.crm-action-button {
  background: rgba(220, 53, 69, 0.2);
  border: 1px solid rgba(220, 53, 69, 0.4);
  color: #dc3545;
}

/* line 489, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.modal-content.import-modal-content .form-navigation .form-button.cancel-btn:hover,
.import-modal-content .form-navigation .form-button.cancel-btn:hover,
.import-modal-content .form-navigation .users-management-container .users-header .cancel-btn.add-user-btn:hover,
.users-management-container .users-header .import-modal-content .form-navigation .cancel-btn.add-user-btn:hover,
.import-modal-content .form-navigation .cancel-btn.crm-action-button:hover {
  background: rgba(220, 53, 69, 0.3);
  border-color: rgba(220, 53, 69, 0.6);
}

/* ==========================================================================
   IMPORT MODAL - LIGHT MODE
   ========================================================================== */
/* line 501, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.lightmode .import-modal-content {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(20, 13, 35, 0.15);
  box-shadow: 0 8px 32px rgba(20, 13, 35, 0.15);
  color: #140D23;
}

/* line 507, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.lightmode .import-modal-content h2, .lightmode .import-modal-content .h2 {
  color: #140D23;
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 512, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.lightmode .import-modal-content .close {
  color: #140D23;
}

/* line 515, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.lightmode .import-modal-content .close:hover {
  color: #C38761;
}

/* line 521, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.lightmode .import-modal-content .import-modal-body::-webkit-scrollbar-thumb {
  background: rgba(195, 135, 97, 0.5);
}

/* line 524, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.lightmode .import-modal-content .import-modal-body::-webkit-scrollbar-thumb:hover {
  background: rgba(195, 135, 97, 0.7);
}

/* line 530, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.lightmode .import-modal-content .import-guide-section {
  background: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 534, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.lightmode .import-modal-content .import-guide-section .guide-column .guide-list {
  color: rgba(20, 13, 35, 0.7);
}

/* line 537, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.lightmode .import-modal-content .import-guide-section .guide-column .guide-list strong {
  color: #140D23;
}

/* line 543, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.lightmode .import-modal-content .template-download-section .template-download-content {
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.2);
}

/* line 548, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.lightmode .import-modal-content .template-download-section .template-download-content .template-text strong {
  color: #140D23;
}

/* line 552, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.lightmode .import-modal-content .template-download-section .template-download-content .template-text span {
  color: rgba(20, 13, 35, 0.6);
}

/* line 558, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.lightmode .import-modal-content .import-upload-zone {
  border-color: rgba(195, 135, 97, 0.3);
  background: rgba(20, 13, 35, 0.02);
}

/* line 562, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.lightmode .import-modal-content .import-upload-zone:hover, .lightmode .import-modal-content .import-upload-zone.drag-over {
  border-color: #C38761;
  background: rgba(195, 135, 97, 0.05);
}

/* line 568, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.lightmode .import-modal-content .import-upload-zone .upload-zone-icon i {
  color: #C38761;
}

/* line 572, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.lightmode .import-modal-content .import-upload-zone h5, .lightmode .import-modal-content .import-upload-zone .h5 {
  color: #140D23;
}

/* line 576, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.lightmode .import-modal-content .import-upload-zone .upload-zone-separator {
  color: rgba(20, 13, 35, 0.5);
}

/* line 580, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.lightmode .import-modal-content .import-upload-zone .upload-browse-btn {
  background: #C38761;
}

/* line 583, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.lightmode .import-modal-content .import-upload-zone .upload-browse-btn:hover {
  background: #bc794f;
}

/* line 588, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.lightmode .import-modal-content .import-upload-zone .upload-zone-hint {
  color: rgba(20, 13, 35, 0.5);
}

/* line 594, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.lightmode .import-modal-content .selected-file-display .selected-file-info {
  background: rgba(20, 13, 35, 0.03);
  border-color: rgba(195, 135, 97, 0.3);
}

/* line 599, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.lightmode .import-modal-content .selected-file-display .selected-file-info .selected-file-details strong {
  color: #140D23;
}

/* line 603, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.lightmode .import-modal-content .selected-file-display .selected-file-info .selected-file-details small, .lightmode .import-modal-content .selected-file-display .selected-file-info .selected-file-details .small {
  color: rgba(20, 13, 35, 0.6);
}

/* line 608, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.lightmode .import-modal-content .selected-file-display .selected-file-info .remove-file-btn {
  color: rgba(20, 13, 35, 0.5);
}

/* line 615, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.lightmode .import-modal-content .account-type-section .section-label {
  color: #140D23;
}

/* line 620, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.lightmode .import-modal-content .account-type-section .account-type-option .account-type-radio:checked + .account-type-card {
  border-color: #C38761;
  background: rgba(195, 135, 97, 0.08);
}

/* line 624, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.lightmode .import-modal-content .account-type-section .account-type-option .account-type-radio:checked + .account-type-card i {
  color: #C38761;
}

/* line 629, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.lightmode .import-modal-content .account-type-section .account-type-option .account-type-card {
  background: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 633, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.lightmode .import-modal-content .account-type-section .account-type-option .account-type-card:hover {
  border-color: rgba(195, 135, 97, 0.4);
  background: rgba(20, 13, 35, 0.04);
}

/* line 638, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.lightmode .import-modal-content .account-type-section .account-type-option .account-type-card i {
  color: rgba(20, 13, 35, 0.5);
}

/* line 643, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.lightmode .import-modal-content .account-type-section .account-type-option .account-type-card .account-type-text strong {
  color: #140D23;
}

/* line 647, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.lightmode .import-modal-content .account-type-section .account-type-option .account-type-card .account-type-text span {
  color: rgba(20, 13, 35, 0.5);
}

/* line 655, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.lightmode .import-modal-content .form-navigation {
  border-top-color: rgba(20, 13, 35, 0.1);
}

/* line 658, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.lightmode .import-modal-content .form-navigation .form-button:not(.cancel-btn), .lightmode .import-modal-content .form-navigation .users-management-container .users-header .add-user-btn:not(.cancel-btn), .users-management-container .users-header .lightmode .import-modal-content .form-navigation .add-user-btn:not(.cancel-btn), .lightmode .import-modal-content .form-navigation .crm-action-button:not(.cancel-btn) {
  background: #C38761;
}

/* line 661, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.lightmode .import-modal-content .form-navigation .form-button:not(.cancel-btn):hover:not(:disabled), .lightmode .import-modal-content .form-navigation .users-management-container .users-header .add-user-btn:not(.cancel-btn):hover:not(:disabled), .users-management-container .users-header .lightmode .import-modal-content .form-navigation .add-user-btn:not(.cancel-btn):hover:not(:disabled), .lightmode .import-modal-content .form-navigation .crm-action-button:not(.cancel-btn):hover:not(:disabled) {
  background: #bc794f;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PAGES WIZARD (Mapping & Preview) - Full page avec style modal sombre
   ═══════════════════════════════════════════════════════════════════════════ */
/* line 672, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.import-wizard-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: linear-gradient(151deg, #090610 25%, #4b011d 100%);
}

/* line 681, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.import-modal-large {
  max-width: 1100px;
  width: 100%;
  max-height: 90vh;
}

/* line 686, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.import-modal-large h2, .import-modal-large .h2 {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 691, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.import-modal-large h2 .step-badge, .import-modal-large .h2 .step-badge {
  margin-left: auto;
  font-size: 0.75rem;
  padding: 4px 12px;
  background: rgba(195, 135, 97, 0.2);
  color: #C38761;
  border-radius: 20px;
  font-weight: 500;
}

/* line 704, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.file-info-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
}

/* line 714, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.file-info-banner i {
  font-size: 1.5rem;
  color: #C38761;
}

/* line 721, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.section-title {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

/* line 728, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.section-title i {
  color: #C38761;
}

/* line 733, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.section-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

/* line 742, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.mapping-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0;
}

/* line 750, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.mapping-tab {
  padding: 10px 20px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: -1px;
}

/* line 762, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.mapping-tab i {
  opacity: 0.7;
}

/* line 766, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.mapping-tab:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* line 770, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.mapping-tab.active {
  color: #C38761;
  border-bottom-color: #C38761;
}

/* line 774, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.mapping-tab.active i {
  opacity: 1;
}

/* line 780, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.mapping-tab-content {
  flex: 1;
  min-height: 0;
}

/* line 785, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.tab-panel {
  display: none;
}

/* line 788, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.tab-panel.active {
  display: block;
}

/* line 794, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.mapping-legend {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px;
}

/* line 799, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.mapping-legend .legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

/* line 807, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.mapping-legend .legend-item.required i {
  color: #C38761;
  font-size: 0.6rem;
}

/* line 816, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.preview-info {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

/* line 821, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.preview-info i {
  color: #C38761;
}

/* line 826, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.mapping-section {
  margin-bottom: 24px;
}

/* line 830, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.mapping-table-container {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
  max-height: 400px;
  overflow-y: auto;
}

/* line 837, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.mapping-table-container::-webkit-scrollbar {
  width: 6px;
}

/* line 841, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.mapping-table-container::-webkit-scrollbar-thumb {
  background: rgba(195, 135, 97, 0.5);
  border-radius: 3px;
}

/* line 847, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.mapping-table {
  width: 100%;
  border-collapse: collapse;
}

/* line 851, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.mapping-table thead {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(30, 20, 50, 0.98);
  backdrop-filter: blur(8px);
}

/* line 858, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.mapping-table thead tr {
  background: transparent;
}

/* line 862, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.mapping-table thead th {
  padding: 10px 16px;
  text-align: left;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(30, 20, 50, 0.98);
}

/* line 873, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.mapping-table thead th i {
  color: #C38761;
  opacity: 0.9;
}

/* line 880, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.mapping-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s;
}

/* line 884, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.mapping-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* line 888, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.mapping-table tbody tr td {
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

/* line 895, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.mapping-table .column-name {
  font-weight: 600;
  color: white;
}

/* line 900, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.mapping-table .preview-cell {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  font-style: italic;
}

/* line 907, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.mapping-select {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.3);
  color: white;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}

/* line 918, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.mapping-select:hover {
  border-color: rgba(195, 135, 97, 0.5);
}

/* line 922, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.mapping-select:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.2);
}

/* line 928, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.mapping-select option {
  background: #140D23;
  color: white;
}

/* line 933, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.mapping-select optgroup {
  background: #090610;
  color: #C38761;
  font-weight: 600;
}

/* line 941, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.preview-section {
  margin-bottom: 20px;
}

/* line 945, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.preview-table-container {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
  max-height: 280px;
  overflow-y: auto;
}

/* line 952, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.preview-table-container.full-height {
  max-height: 350px;
}

/* line 956, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.preview-table-container::-webkit-scrollbar {
  width: 6px;
}

/* line 960, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.preview-table-container::-webkit-scrollbar-thumb {
  background: rgba(195, 135, 97, 0.5);
  border-radius: 3px;
}

/* line 966, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.preview-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

/* line 971, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.preview-table thead {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(30, 20, 50, 0.98);
  backdrop-filter: blur(8px);
}

/* line 978, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.preview-table thead tr {
  background: transparent;
}

/* line 982, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.preview-table thead th {
  padding: 10px 12px;
  text-align: left;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(30, 20, 50, 0.98);
}

/* line 995, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.preview-table thead .row-num-header {
  width: 50px;
}

/* line 1000, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.preview-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* line 1003, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.preview-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

/* line 1007, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.preview-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* line 1011, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.preview-table tbody tr td {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

/* line 1021, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.preview-table .row-number {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

/* line 1029, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.validation-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

/* line 1036, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.validation-summary.compact {
  gap: 8px;
  margin-bottom: 12px;
}

/* line 1040, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.validation-summary.compact .summary-card {
  padding: 10px 12px;
}

/* line 1043, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.validation-summary.compact .summary-card .card-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4px;
}

/* line 1050, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.validation-summary.compact .summary-card .card-main i {
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* line 1055, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.validation-summary.compact .summary-card .card-main .count {
  font-size: 1.2rem;
  margin-bottom: 0;
}

/* line 1061, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.validation-summary.compact .summary-card .label {
  font-size: 0.7rem;
}

/* line 1068, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.summary-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
}

/* line 1076, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.summary-card i {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

/* line 1081, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.summary-card .count {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 2px;
}

/* line 1087, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.summary-card .label {
  font-size: 0.75rem;
  opacity: 0.8;
}

/* line 1092, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.summary-card.valid {
  background: rgba(40, 167, 69, 0.15);
  border: 1px solid rgba(40, 167, 69, 0.3);
  color: #5cb85c;
}

/* line 1098, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.summary-card.error {
  background: rgba(220, 53, 69, 0.15);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #e74c3c;
}

/* line 1104, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.summary-card.duplicate {
  background: rgba(255, 193, 7, 0.15);
  border: 1px solid rgba(255, 193, 7, 0.3);
  color: #f39c12;
}

/* line 1110, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.summary-card.warning {
  background: rgba(23, 162, 184, 0.15);
  border: 1px solid rgba(23, 162, 184, 0.3);
  color: #3498db;
}

/* line 1118, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.detail-section {
  margin-bottom: 24px;
}

/* line 1122, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.detail-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 12px;
}

/* line 1131, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.filter-buttons {
  display: flex;
  gap: 8px;
}

/* line 1136, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.filter-btn {
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
}

/* line 1146, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.filter-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* line 1150, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.filter-btn.active {
  background: rgba(195, 135, 97, 0.2);
  border-color: #C38761;
  color: #C38761;
}

/* line 1157, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.filter-btn.error:hover, .filter-btn.error.active {
  background: rgba(220, 53, 69, 0.2);
  border-color: #dc3545;
  color: #e74c3c;
}

/* line 1165, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.filter-btn.duplicate:hover, .filter-btn.duplicate.active {
  background: rgba(255, 193, 7, 0.2);
  border-color: #ffc107;
  color: #f39c12;
}

/* line 1173, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.detail-table-container {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
  max-height: 200px;
  overflow-y: auto;
}

/* line 1180, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.detail-table-container::-webkit-scrollbar {
  width: 6px;
}

/* line 1184, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.detail-table-container::-webkit-scrollbar-thumb {
  background: rgba(195, 135, 97, 0.5);
  border-radius: 3px;
}

/* line 1190, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.detail-table {
  width: 100%;
  border-collapse: collapse;
}

/* line 1194, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.detail-table thead {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(30, 20, 50, 0.98);
  backdrop-filter: blur(8px);
}

/* line 1201, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.detail-table thead tr {
  background: transparent;
}

/* line 1205, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.detail-table thead th {
  padding: 8px 14px;
  text-align: left;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(30, 20, 50, 0.98);
}

/* line 1216, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.detail-table thead th i {
  color: #C38761;
  opacity: 0.9;
}

/* line 1223, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.detail-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* line 1226, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.detail-table tbody tr.row-error {
  background: rgba(220, 53, 69, 0.1);
}

/* line 1230, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.detail-table tbody tr.row-duplicate {
  background: rgba(255, 193, 7, 0.1);
}

/* line 1234, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.detail-table tbody tr td {
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
}

/* line 1241, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.detail-table .row-number {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  width: 60px;
}

/* line 1247, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.detail-table .status-cell {
  width: 60px;
}

/* line 1252, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 0.75rem;
}

/* line 1261, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.status-badge.valid {
  background: rgba(40, 167, 69, 0.2);
  color: #5cb85c;
}

/* line 1266, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.status-badge.error {
  background: rgba(220, 53, 69, 0.2);
  color: #e74c3c;
}

/* line 1271, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.status-badge.duplicate {
  background: rgba(255, 193, 7, 0.2);
  color: #f39c12;
}

/* line 1276, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.status-badge.warning {
  background: rgba(23, 162, 184, 0.2);
  color: #3498db;
}

/* line 1282, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.messages-cell .message {
  font-size: 0.8rem;
  padding: 2px 0;
}

/* line 1286, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.messages-cell .message i {
  margin-right: 6px;
}

/* line 1290, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.messages-cell .message.error {
  color: #e74c3c;
}

/* line 1294, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.messages-cell .message.warning {
  color: #f39c12;
}

/* line 1298, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.messages-cell .message.valid {
  color: #5cb85c;
}

/* line 1304, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.options-section {
  margin-bottom: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}

/* line 1310, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.options-section .section-title {
  margin-bottom: 10px;
}

/* line 1313, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.options-section .section-title .options-hint {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  margin-left: 8px;
}

/* line 1322, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  /* line 1322, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
  .options-grid {
    grid-template-columns: 1fr;
  }
}

/* line 1332, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.options-single {
  display: flex;
  justify-content: center;
}

/* line 1337, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.option-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

/* line 1347, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.option-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* line 1351, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.option-item .option-checkbox {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  accent-color: #C38761;
}

/* line 1358, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.option-item .option-content {
  flex: 1;
}

/* line 1361, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.option-item .option-content strong {
  display: block;
  color: white;
  font-size: 0.9rem;
  margin-bottom: 4px;
  text-transform: none;
}

/* line 1369, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.option-item .option-content span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  text-transform: none;
}

/* line 1378, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.duplicate-option {
  display: flex;
  justify-content: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 1386, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.option-item-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 8px;
  transition: all 0.2s;
}

/* line 1395, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.option-item-inline:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* line 1399, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.option-item-inline .option-checkbox {
  width: 18px;
  height: 18px;
  accent-color: #C38761;
}

/* line 1405, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.option-item-inline .option-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

/* line 1412, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.form-navigation.with-recap {
  flex-direction: column;
  gap: 12px;
}

/* line 1416, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.form-navigation.with-recap .recap-text {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin: 0;
}

/* line 1422, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.form-navigation.with-recap .recap-text strong {
  color: #C38761;
}

/* line 1426, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.form-navigation.with-recap .recap-text small, .form-navigation.with-recap .recap-text .small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.5);
}

/* line 1433, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.form-navigation.with-recap .navigation-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

/* line 1441, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.recap-section {
  padding: 16px;
  background: rgba(195, 135, 97, 0.1);
  border: 1px solid rgba(195, 135, 97, 0.3);
  border-radius: 8px;
  margin-bottom: 20px;
}

/* line 1448, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.recap-section h5, .recap-section .h5 {
  color: #C38761;
  margin-bottom: 8px;
  font-size: 1rem;
}

/* line 1454, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.recap-section p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  font-size: 0.9rem;
}

/* line 1459, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.recap-section p:last-child {
  margin-bottom: 0;
}

/* line 1464, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.recap-section .error-note {
  color: #e74c3c;
  font-size: 0.85rem;
}

/* line 1468, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.recap-section .error-note i {
  margin-right: 6px;
}

/* line 1475, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.form-button.success, .users-management-container .users-header .success.add-user-btn, .success.crm-action-button {
  background: #28a745;
}

/* line 1478, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.form-button.success:hover:not(:disabled), .users-management-container .users-header .success.add-user-btn:hover:not(:disabled), .success.crm-action-button:hover:not(:disabled) {
  background: #208637;
}

/* line 1485, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.import-progress-section {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

/* line 1490, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.import-progress-section .progress-indicator {
  text-align: center;
}

/* line 1493, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.import-progress-section .progress-indicator .spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(195, 135, 97, 0.2);
  border-top-color: #C38761;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

/* line 1503, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.import-progress-section .progress-indicator h4, .import-progress-section .progress-indicator .h4 {
  color: white;
  margin-bottom: 12px;
}

/* line 1508, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.import-progress-section .progress-indicator .progress-text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

/* line 1513, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.import-progress-section .progress-indicator .progress-bar-container {
  width: 300px;
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  overflow: hidden;
  margin: 0 auto 12px;
}

/* line 1521, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.import-progress-section .progress-indicator .progress-bar-container .progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #C38761, #d1a386);
  border-radius: 5px;
  transition: width 0.3s ease;
}

/* line 1529, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.import-progress-section .progress-indicator .progress-hint {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* line 1542, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.import-result-summary {
  margin-bottom: 24px;
}

/* line 1545, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.import-result-summary .result-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

@media (max-width: 600px) {
  /* line 1545, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
  .import-result-summary .result-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* line 1556, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.import-result-summary .result-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 12px;
  border-radius: 10px;
  text-align: center;
}

/* line 1564, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.import-result-summary .result-card i {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

/* line 1569, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.import-result-summary .result-card .count {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 4px;
}

/* line 1575, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.import-result-summary .result-card .label {
  font-size: 0.75rem;
  opacity: 0.8;
}

/* line 1580, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.import-result-summary .result-card.success {
  background: rgba(40, 167, 69, 0.15);
  border: 1px solid rgba(40, 167, 69, 0.3);
  color: #5cb85c;
}

/* line 1586, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.import-result-summary .result-card.info {
  background: rgba(23, 162, 184, 0.15);
  border: 1px solid rgba(23, 162, 184, 0.3);
  color: #3498db;
}

/* line 1592, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.import-result-summary .result-card.warning {
  background: rgba(255, 193, 7, 0.15);
  border: 1px solid rgba(255, 193, 7, 0.3);
  color: #f39c12;
}

/* line 1598, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.import-result-summary .result-card.error {
  background: rgba(220, 53, 69, 0.15);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #e74c3c;
}

/* line 1605, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.import-result-summary .import-duration {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

/* line 1610, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.import-result-summary .import-duration i {
  margin-right: 6px;
  color: #C38761;
}

/* line 1617, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.errors-section {
  margin-bottom: 24px;
}

/* line 1620, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.errors-section .section-title.error {
  color: #e74c3c;
}

/* line 1623, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.errors-section .section-title.error i {
  color: #e74c3c;
}

/* line 1628, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.errors-section .errors-table-container {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.2);
  border-radius: 8px;
  overflow: hidden;
  max-height: 180px;
  overflow-y: auto;
}

/* line 1636, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.errors-section .errors-table-container::-webkit-scrollbar {
  width: 6px;
}

/* line 1640, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.errors-section .errors-table-container::-webkit-scrollbar-thumb {
  background: rgba(220, 53, 69, 0.5);
  border-radius: 3px;
}

/* line 1646, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.errors-section .errors-table {
  width: 100%;
  border-collapse: collapse;
}

/* line 1650, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.errors-section .errors-table thead {
  background: rgba(220, 53, 69, 0.15);
}

/* line 1653, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.errors-section .errors-table thead th {
  padding: 10px 14px;
  text-align: left;
  color: #e74c3c;
  font-weight: 600;
  font-size: 0.85rem;
}

/* line 1662, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.errors-section .errors-table tbody tr {
  border-bottom: 1px solid rgba(220, 53, 69, 0.1);
}

/* line 1665, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.errors-section .errors-table tbody tr td {
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

/* line 1672, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.errors-section .errors-table .error-message {
  color: #e74c3c;
  font-size: 0.8rem;
}

/* line 1678, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.errors-section .more-errors {
  text-align: center;
  padding: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  background: rgba(220, 53, 69, 0.05);
}

/* line 1688, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.created-accounts-section .section-title.success {
  color: #5cb85c;
}

/* line 1691, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.created-accounts-section .section-title.success i {
  color: #5cb85c;
  margin-right: 8px;
}

/* line 1697, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.created-accounts-section .accounts-preview-list {
  background: rgba(40, 167, 69, 0.08);
  border: 1px solid rgba(40, 167, 69, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

/* line 1704, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.created-accounts-section .account-preview-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(40, 167, 69, 0.1);
}

/* line 1711, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.created-accounts-section .account-preview-item:last-child {
  border-bottom: none;
}

/* line 1715, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.created-accounts-section .account-preview-item .account-info {
  display: flex;
  flex-direction: column;
}

/* line 1719, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.created-accounts-section .account-preview-item .account-info strong {
  color: white;
  font-size: 0.9rem;
}

/* line 1724, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.created-accounts-section .account-preview-item .account-info .contact-name {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

/* line 1730, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.created-accounts-section .account-preview-item .account-email {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

/* line 1736, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
.created-accounts-section .more-accounts {
  text-align: center;
  padding: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  background: rgba(40, 167, 69, 0.05);
  margin: 0;
}

/* line 1747, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
turbo-frame#import-wizard {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

/* line 1755, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
turbo-frame#import-wizard > form {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

/* line 1764, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
turbo-frame#import-wizard > div[data-controller] {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

/* line 1771, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
turbo-frame#import-wizard > div[data-controller] > h2, turbo-frame#import-wizard > div[data-controller] > .h2 {
  margin: 0;
  padding: 16px 24px;
  padding-right: 60px;
  font-size: 1.2rem;
  font-weight: 600;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 1785, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
turbo-frame#import-wizard > div[data-controller] > .import-modal-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px 24px;
  min-height: 0;
}

/* line 1793, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
turbo-frame#import-wizard > div[data-controller] > .form-navigation {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* line 1804, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
turbo-frame#import-wizard > h2, turbo-frame#import-wizard > .h2 {
  margin: 0;
  padding: 16px 24px;
  padding-right: 60px;
  font-size: 1.2rem;
  font-weight: 600;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 1818, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
turbo-frame#import-wizard > .import-modal-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px 24px;
  min-height: 0;
}

/* line 1826, app/assets/stylesheets/pages/servicespace/commerce/crm/accounts_management/_import_modal.scss */
turbo-frame#import-wizard > .form-navigation {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* ==========================================================================
   NEW CUSTOMER - MODULE CRM (Harmonisé avec ADV)
   ========================================================================== */
/* line 5, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-capsule {
  width: 98%;
  height: 97%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  box-shadow: 0 2px 16px 0 rgba(20, 13, 35, 0.08);
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.8rem;
  gap: 0;
  min-height: auto;
}

/* line 22, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-capsule .crm-new-customer-capsule-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 32px 28px 24px 28px;
}

/* line 32, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .crm-new-customer-capsule {
  background-color: rgba(240, 242, 245, 0.7);
  border-color: rgba(20, 13, 35, 0.12);
  color: #140D23;
}

/* line 39, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-form {
  width: 100%;
}

/* line 43, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-header {
  width: 100%;
  text-align: left;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 50, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-header h2, .crm-new-customer-header .h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: inherit;
  letter-spacing: -0.01em;
}

/* line 57, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-header .crm-new-customer-description {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

/* line 61, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .crm-new-customer-header .crm-new-customer-description {
  color: rgba(20, 13, 35, 0.5);
}

/* line 66, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .crm-new-customer-header {
  border-bottom-color: rgba(20, 13, 35, 0.08);
}

/* line 71, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-form-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 10px;
}

/* line 79, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-section-group {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

/* line 83, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-section-group:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  /* line 79, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
  .crm-new-customer-section-group {
    flex-direction: column;
  }
}

/* line 91, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-card {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* line 99, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-card.crm-new-customer-card-full-width {
  width: 100%;
}

/* line 103, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .crm-new-customer-card {
  background-color: rgba(255, 255, 255, 0.65);
  border-color: rgba(20, 13, 35, 0.12);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* line 110, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-card-header,
.crm-new-customer-card-header-with-action {
  padding: 8px 14px;
  font-size: 0.65rem;
  font-weight: 700;
  color: #C38761;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background-color: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
}

/* line 122, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .crm-new-customer-card-header, .lightmode .crm-new-customer-card-header-with-action {
  color: #C38761;
  background-color: rgba(20, 13, 35, 0.03);
  border-bottom-color: rgba(20, 13, 35, 0.08);
}

/* line 129, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-card-header-with-action {
  justify-content: space-between;
  align-items: center;
}

/* line 134, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-card-title {
  font-size: 0.65rem;
  font-weight: 700;
  color: #C38761;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* line 142, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-card-content {
  padding: 14px;
}

/* line 146, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-input {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
  color: #FFFFFF;
  padding: 10px 14px;
  margin: 0 auto;
  box-sizing: border-box;
  font-family: inherit;
  text-align: left;
  transition: border-color 0.2s, box-shadow 0.2s;
}

/* line 160, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-input:focus {
  outline: none;
  border-color: rgba(195, 135, 97, 0.5);
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

/* line 166, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.72rem;
  font-family: inherit;
}

/* line 171, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .crm-new-customer-input {
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.12);
  background: rgba(255, 255, 255, 0.6);
}

/* line 175, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .crm-new-customer-input:focus {
  border-color: rgba(195, 135, 97, 0.5);
  background: #FFFFFF;
}

/* line 179, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .crm-new-customer-input::placeholder {
  color: rgba(20, 13, 35, 0.3);
}

/* line 185, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='4' viewBox='0 0 8 4'%3E%3Cpath fill='rgba(255,255,255,0.4)' d='M8 0H0l4 4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 8px 4px;
  padding-right: 30px;
}

/* line 196, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .crm-new-customer-select {
  background-color: rgba(255, 255, 255, 0.6);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='4' viewBox='0 0 8 4'%3E%3Cpath fill='rgba(20,13,35,0.4)' d='M8 0H0l4 4z'/%3E%3C/svg%3E");
}

/* line 202, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-circular-add-btn {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(195, 135, 97, 0.15);
  border: 1px solid rgba(195, 135, 97, 0.3);
  color: #C38761;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  margin: 0;
  outline: none;
  transition: all 0.2s ease;
}

/* line 221, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-circular-add-btn:hover {
  background-color: rgba(195, 135, 97, 0.3);
  color: white;
}

/* line 226, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .crm-new-customer-circular-add-btn {
  background-color: rgba(195, 135, 97, 0.1);
  border-color: rgba(195, 135, 97, 0.25);
  color: #C38761;
}

/* line 231, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .crm-new-customer-circular-add-btn:hover {
  background-color: rgba(195, 135, 97, 0.2);
}

/* line 237, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-organizations-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-height: 300px;
  overflow-y: auto;
}

/* line 246, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-empty-state {
  padding: 20px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* line 251, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .crm-new-customer-empty-state {
  color: rgba(20, 13, 35, 0.6);
}

/* line 256, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
#organizations-table-container {
  max-height: 250px;
  overflow-y: auto;
  width: 100%;
}

/* line 262, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
#organizations-table-container::-webkit-scrollbar {
  width: 6px;
}

/* line 266, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
#organizations-table-container::-webkit-scrollbar-track {
  background: rgba(232, 232, 232, 0.1);
  border-radius: 10px;
}

/* line 269, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode #organizations-table-container::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 274, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
#organizations-table-container::-webkit-scrollbar-thumb {
  background: rgba(195, 135, 97, 0.5);
  border-radius: 10px;
}

/* line 277, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
#organizations-table-container::-webkit-scrollbar-thumb:hover {
  background: #C38761;
}

/* line 283, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-actions {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

/* line 294, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .crm-new-customer-actions {
  border-top-color: rgba(20, 13, 35, 0.08);
}

/* line 300, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.instance-index {
  width: 100%;
}

/* line 302, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.instance-index .instance-header {
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid rgba(232, 232, 232, 0.2);
}

/* line 306, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.instance-index .instance-header .instance-column {
  flex: 1;
  font-weight: 500;
  font-size: 0.85rem;
  color: #FFFFFF;
  text-transform: capitalize;
}

/* line 312, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .instance-index .instance-header .instance-column {
  color: #140D23;
}

/* line 317, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.instance-index .instance-row {
  display: flex;
  padding: 8px 0;
  border-bottom: 1px solid rgba(232, 232, 232, 0.1);
}

/* line 321, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.instance-index .instance-row .instance-column {
  flex: 1;
  padding: 2px 10px;
  font-size: 0.75rem;
  color: #FFFFFF;
}

/* line 326, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .instance-index .instance-row .instance-column {
  color: #140D23;
}

/* line 333, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.delete-btn {
  background-color: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.2s;
  padding: 4px 8px;
  font-size: 0.8rem;
  border-radius: 4px;
}

/* line 342, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.delete-btn:hover {
  color: #C38761;
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 346, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .delete-btn {
  color: rgba(20, 13, 35, 0.7);
}

/* line 348, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .delete-btn:hover {
  color: #C38761;
  background-color: rgba(20, 13, 35, 0.1);
}

/* ==========================================================================
   MODAL WIZARD ORGANIZATION - MODULE CRM
   ========================================================================== */
/* line 360, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
#organizationModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto;
  padding: 50px 0;
}

/* line 376, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.modal-content {
  background-color: rgba(20, 13, 35, 0.65);
  height: auto;
  width: 700px;
  max-width: 90%;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(232, 232, 232, 0.31);
}

/* line 390, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .modal-content {
  background-color: rgba(255, 255, 255, 0.85);
  border-color: rgba(20, 13, 35, 0.31);
}

/* line 397, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #FFFFFF;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 406, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .crm-modal-header {
  color: #140D23;
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 411, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-modal-header h2, .crm-modal-header .h2 {
  color: #FFFFFF !important;
  font-size: 1.2rem;
  margin: 0;
  font-weight: 600;
}

/* line 416, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .crm-modal-header h2, .lightmode .crm-modal-header .h2 {
  color: #140D23 !important;
}

/* line 422, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.modal-close {
  color: #FFFFFF !important;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease, color 0.2s;
}

/* line 429, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .modal-close {
  color: #140D23 !important;
}

/* line 433, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.modal-close:hover {
  opacity: 1;
  color: #C38761 !important;
}

/* line 440, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.progress-bar {
  height: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 20px;
}

/* line 447, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .progress-bar {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 451, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.progress-bar .progress-fill {
  height: 100%;
  background-color: #C38761;
  transition: width 0.3s ease;
  border-radius: 2px;
}

/* line 460, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.wizard-step {
  display: none;
}

/* line 463, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.wizard-step.active {
  display: block;
}

/* line 469, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.form-group {
  margin-bottom: 15px;
}

/* line 472, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.form-group label {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

/* line 479, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .form-group label {
  color: rgba(20, 13, 35, 0.9);
}

/* line 484, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

/* line 494, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .form-group input, .lightmode .form-group select, .lightmode .form-group textarea {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 500, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: #C38761;
  background-color: rgba(255, 255, 255, 0.15);
}

/* line 505, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .form-group input:focus, .lightmode .form-group select:focus, .lightmode .form-group textarea:focus {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 510, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.form-group input::placeholder, .form-group select::placeholder, .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 512, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .form-group input::placeholder, .lightmode .form-group select::placeholder, .lightmode .form-group textarea::placeholder {
  color: rgba(20, 13, 35, 0.5);
}

/* line 520, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.siret-input-group {
  display: flex;
  gap: 10px;
}

/* line 524, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.siret-input-group input {
  flex: 1;
}

/* line 528, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.siret-input-group .verify-btn {
  padding: 10px 15px;
  background-color: #C38761;
  color: #140D23;
  border: none;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

/* line 540, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.siret-input-group .verify-btn:hover {
  background-color: #af6c42;
}

/* line 546, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
#siret-verification-result {
  margin-top: 8px;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* line 553, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
#siret-verification-result.siret-result-loading {
  background-color: rgba(195, 135, 97, 0.2);
  color: #C38761;
  border: 1px solid rgba(195, 135, 97, 0.3);
}

/* line 559, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
#siret-verification-result.siret-result-success {
  background-color: rgba(76, 175, 80, 0.2);
  color: #4CAF50;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

/* line 565, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
#siret-verification-result.siret-result-error {
  background-color: rgba(244, 67, 54, 0.2);
  color: #f44336;
  border: 1px solid rgba(244, 67, 54, 0.3);
}

/* line 573, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.address-copy-container {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

/* line 579, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.btn-copy-address {
  padding: 8px 16px;
  font-size: 0.8rem;
  background-color: rgba(195, 135, 97, 0.2);
  color: #C38761;
  border: 1px solid rgba(195, 135, 97, 0.4);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

/* line 593, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.btn-copy-address:hover {
  background-color: rgba(195, 135, 97, 0.3);
  border-color: rgba(195, 135, 97, 0.6);
  transform: translateY(-1px);
}

/* line 599, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.btn-copy-address i {
  font-size: 0.75rem;
}

/* line 605, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.modal-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
  gap: 10px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 613, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .modal-footer {
  border-top-color: rgba(20, 13, 35, 0.1);
}

/* line 619, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.btn-prev,
.btn-next,
.btn-submit {
  padding: 8px 20px;
  font-size: 0.8rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  border: none;
}

/* line 635, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.btn-prev:hover,
.btn-next:hover,
.btn-submit:hover {
  opacity: 0.9;
}

/* line 640, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.btn-prev {
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* line 645, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.btn-prev:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 649, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .btn-prev {
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 652, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .btn-prev:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 658, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.btn-next,
.btn-submit {
  background-color: #C38761;
  color: #FFFFFF;
}

/* line 663, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.btn-next:hover,
.btn-submit:hover {
  background-color: #d1a386;
}

/* line 667, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .btn-next, .lightmode .btn-submit {
  color: #FFFFFF;
}

/* ==========================================================================
   SECTION CONTACT PRINCIPAL
   ========================================================================== */
/* line 676, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-contact-toggle-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #FFFFFF;
}

/* line 686, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .crm-contact-toggle-label {
  color: #140D23;
}

/* line 691, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-contact-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #C38761;
}

/* line 698, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-optional-badge {
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: lowercase;
  opacity: 0.7;
  margin-left: 5px;
}

/* line 706, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

@media (max-width: 768px) {
  /* line 706, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
  .crm-contact-form-grid {
    grid-template-columns: 1fr;
  }
}

/* line 716, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-contact-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* line 722, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-field-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

/* line 727, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .crm-field-label {
  color: rgba(20, 13, 35, 0.8);
}

/* line 732, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-contact-fields {
  transition: all 0.3s ease;
}

/* line 735, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-contact-fields.hidden {
  display: none;
}

@media (max-width: 768px) {
  /* line 742, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
  .crm-new-customer-capsule {
    width: 95%;
    padding: 20px 16px;
  }
  /* line 747, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
  .crm-new-customer-actions {
    flex-direction: column;
    gap: 10px;
  }
  /* line 751, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
  .crm-new-customer-actions .form-button, .crm-new-customer-actions .users-management-container .users-header .add-user-btn, .users-management-container .users-header .crm-new-customer-actions .add-user-btn, .crm-new-customer-actions .crm-action-button {
    width: 100%;
  }
  /* line 756, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
  .modal-content {
    width: 95%;
    padding: 16px;
  }
  /* line 761, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
  .modal-footer {
    flex-direction: column;
  }
  /* line 765, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
  .btn-prev,
.btn-next,
.btn-submit {
    width: 100%;
    margin-bottom: 5px;
  }
  /* line 772, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
  .siret-input-group {
    flex-direction: column;
  }
  /* line 775, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
  .siret-input-group .verify-btn {
    width: 100%;
  }
}

/* ==========================================================================
   SHOW CUSTOMER - MODULE CRM
   Styles pour la page de détail d'un customer dans le CRM
   Réutilise les styles des prospects pour la cohérence
   ========================================================================== */
/* Importe tous les styles du module leads_show */
/* ==========================================================================
   FICHE PROSPECT - AFFICHAGE DÉTAILLÉ
   Styles pour la page de visualisation détaillée d'un prospect
   ========================================================================== */
/* Importe les styles des commentaires depuis show_contact */
/* ==========================================================================
   CONTACT SHOW - MODERN BENTO DESIGN
   Design inspiré des meilleures pratiques UX (Notion, Linear, Apple)
   ========================================================================== */
/* line 22, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: white;
  font-size: 0.875rem;
  min-height: calc(100vh - 120px);
}

/* line 34, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode {
  color: #140D23;
}

@media (max-width: 768px) {
  /* line 22, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
  .contact-show-capsule {
    padding: 16px;
    gap: 16px;
  }
}

/* line 48, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.profile-header, .account-page-profile-header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

/* line 61, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.profile-header::before, .account-page-profile-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* line 71, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .profile-header, .contact-show-capsule.lightmode .account-page-profile-header {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.04) 0%, rgba(20, 13, 35, 0.02) 100%);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 75, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .profile-header::before, .contact-show-capsule.lightmode .account-page-profile-header::before {
  background: linear-gradient(90deg, transparent, rgba(20, 13, 35, 0.1), transparent);
}

@media (max-width: 768px) {
  /* line 48, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
  .profile-header, .account-page-profile-header {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 16px;
  }
}

/* line 89, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.profile-header__photo {
  position: relative;
  flex-shrink: 0;
}

/* line 94, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.profile-header__image {
  width: 100px;
  height: 100px;
  border-radius: 16px;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 103, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.profile-header__image:hover {
  transform: scale(1.02);
  border-color: #C38761;
}

/* line 108, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .profile-header__image {
  border-color: rgba(20, 13, 35, 0.15);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* line 114, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.profile-header__placeholder {
  width: 100px;
  height: 100px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.3) 0%, rgba(195, 135, 97, 0.15) 100%);
  border: 3px solid rgba(195, 135, 97, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* line 125, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .profile-header__placeholder {
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.2) 0%, rgba(195, 135, 97, 0.1) 100%);
}

/* line 130, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.profile-header__initials {
  font-size: 2rem;
  font-weight: 700;
  color: #C38761;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* line 138, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.profile-header__photo-btn {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #C38761;
  border: 2px solid white;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* line 156, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.profile-header__photo-btn:hover {
  transform: scale(1.1);
  background: #b67145;
}

/* line 163, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.profile-header__info {
  flex: 1;
  min-width: 0;
}

/* line 168, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.profile-header__name {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 4px 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

/* line 175, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .profile-header__name {
  color: #140D23;
}

/* line 180, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.profile-header__role {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* line 189, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .profile-header__role {
  color: rgba(20, 13, 35, 0.7);
}

@media (max-width: 768px) {
  /* line 180, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
  .profile-header__role {
    justify-content: center;
  }
}

/* line 198, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.profile-header__company {
  font-weight: 600;
  color: #C38761;
}

/* line 203, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.profile-header__separator {
  color: rgba(255, 255, 255, 0.3);
}

/* line 206, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .profile-header__separator {
  color: rgba(20, 13, 35, 0.3);
}

/* line 211, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.profile-header__job {
  font-weight: 500;
}

/* line 216, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.profile-header__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  /* line 216, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
  .profile-header__actions {
    justify-content: center;
  }
}

/* line 226, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.action-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: 0.2s ease;
  white-space: nowrap;
}

/* line 240, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.action-pill i {
  font-size: 0.9rem;
}

/* line 244, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.action-pill--email {
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.25) 0%, rgba(52, 152, 219, 0.15) 100%);
  color: #3498db;
  border: 1px solid rgba(52, 152, 219, 0.3);
}

/* line 249, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.action-pill--email:hover {
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.35) 0%, rgba(52, 152, 219, 0.25) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.25);
}

/* line 256, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.action-pill--phone {
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.25) 0%, rgba(46, 204, 113, 0.15) 100%);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.3);
}

/* line 261, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.action-pill--phone:hover {
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.35) 0%, rgba(46, 204, 113, 0.25) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 204, 113, 0.25);
}

/* line 268, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.action-pill--linkedin {
  background: linear-gradient(135deg, rgba(0, 119, 181, 0.25) 0%, rgba(0, 119, 181, 0.15) 100%);
  color: #0077b5;
  border: 1px solid rgba(0, 119, 181, 0.3);
}

/* line 273, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.action-pill--linkedin:hover {
  background: linear-gradient(135deg, rgba(0, 119, 181, 0.35) 0%, rgba(0, 119, 181, 0.25) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 119, 181, 0.25);
}

/* line 280, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.action-pill--muted {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  border: 1px dashed rgba(255, 255, 255, 0.2);
}

/* line 285, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .action-pill--muted {
  background: rgba(20, 13, 35, 0.05);
  color: rgba(20, 13, 35, 0.5);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 291, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.action-pill--muted:hover {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  border-style: solid;
}

/* line 296, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .action-pill--muted:hover {
  background: rgba(20, 13, 35, 0.08);
  color: rgba(20, 13, 35, 0.8);
}

/* line 308, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  /* line 308, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
  .bento-grid {
    grid-template-columns: 1fr;
  }
}

/* line 322, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.bento-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

/* line 331, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .bento-card {
  background: rgba(20, 13, 35, 0.04);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 336, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.bento-card:hover {
  border-color: rgba(195, 135, 97, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* line 340, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .bento-card:hover {
  border-color: rgba(195, 135, 97, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* line 347, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.bento-card--organizations {
  grid-column: span 2;
}

@media (max-width: 900px) {
  /* line 347, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
  .bento-card--organizations {
    grid-column: span 1;
  }
}

/* line 355, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.bento-card--linkedin {
  grid-row: span 2;
}

@media (max-width: 900px) {
  /* line 355, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
  .bento-card--linkedin {
    grid-row: span 1;
  }
}

/* line 364, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.bento-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* line 372, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .bento-card__header {
  background: rgba(20, 13, 35, 0.03);
  border-bottom-color: rgba(20, 13, 35, 0.06);
}

/* line 378, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.bento-card__title {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 383, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.bento-card__title i {
  font-size: 1rem;
  color: #C38761;
}

/* line 388, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.bento-card__title h2, .bento-card__title .h2 {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 397, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.bento-card__count {
  background: rgba(195, 135, 97, 0.2);
  color: #C38761;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 700;
}

/* line 406, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.bento-card__add {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #C38761 0%, #af6c42 100%);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: 0.2s ease;
  box-shadow: 0 2px 8px rgba(195, 135, 97, 0.3);
}

/* line 421, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.bento-card__add:hover {
  transform: scale(1.1) rotate(90deg);
}

/* line 425, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.bento-card__add:active {
  transform: scale(0.95);
}

/* line 430, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.bento-card__content {
  padding: 16px 20px;
  flex: 1;
  overflow-y: auto;
  max-height: 350px;
}

/* line 437, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.bento-card__content::-webkit-scrollbar {
  width: 6px;
}

/* line 441, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.bento-card__content::-webkit-scrollbar-track {
  background: transparent;
}

/* line 445, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.bento-card__content::-webkit-scrollbar-thumb {
  background: rgba(195, 135, 97, 0.4);
  border-radius: 3px;
}

/* line 449, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.bento-card__content::-webkit-scrollbar-thumb:hover {
  background: rgba(195, 135, 97, 0.6);
}

/* line 459, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.org-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* line 465, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.org-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  flex: 1;
  min-width: 280px;
  transition: 0.2s ease;
}

/* line 477, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .org-item {
  background: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.08);
}

/* line 482, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.org-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(195, 135, 97, 0.3);
}

/* line 486, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .org-item:hover {
  background: rgba(20, 13, 35, 0.06);
}

/* line 490, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.org-item:hover .org-item__actions {
  opacity: 1;
}

/* line 496, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.org-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.2) 0%, rgba(195, 135, 97, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* line 506, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.org-item__icon i {
  color: #C38761;
  font-size: 1rem;
}

/* line 512, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.org-item__info {
  flex: 1;
  min-width: 0;
}

/* line 517, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.org-item__name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 526, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.org-item__meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

/* line 532, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.org-item__tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
}

/* line 540, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.org-item__tag--job {
  background: rgba(195, 135, 97, 0.15);
  color: #C38761;
  border: 1px solid rgba(195, 135, 97, 0.25);
}

/* line 546, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.org-item__tag--role {
  background: rgba(52, 152, 219, 0.15);
  color: #3498db;
  border: 1px solid rgba(52, 152, 219, 0.25);
}

/* line 553, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.org-item__actions {
  display: flex;
  gap: 4px;
  opacity: 0.5;
  transition: 0.2s ease;
}

/* line 564, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.crm-linkedin-sections {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 570, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.crm-linkedin-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  overflow: hidden;
}

/* line 576, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .crm-linkedin-section {
  background: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.06);
}

/* line 582, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.crm-linkedin-section__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* line 595, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .crm-linkedin-section__header {
  color: rgba(20, 13, 35, 0.7);
  background: rgba(20, 13, 35, 0.02);
  border-bottom-color: rgba(20, 13, 35, 0.04);
}

/* line 601, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.crm-linkedin-section__header i {
  font-size: 0.8rem;
  color: #C38761;
}

/* line 607, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.crm-linkedin-section__content {
  padding: 12px 14px;
}

/* line 611, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.crm-linkedin-section__placeholder {
  text-align: center;
}

/* line 614, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.crm-linkedin-section__placeholder p {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

/* line 620, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .crm-linkedin-section__placeholder p {
  color: rgba(20, 13, 35, 0.4);
}

/* line 630, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 636, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-field {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  transition: 0.2s ease;
}

/* line 646, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .contact-field {
  background: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.06);
}

/* line 651, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-field:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* line 654, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .contact-field:hover {
  background: rgba(20, 13, 35, 0.04);
}

/* line 660, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-field__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.15) 0%, rgba(195, 135, 97, 0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* line 670, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-field__icon i {
  color: #C38761;
  font-size: 0.9rem;
}

/* line 676, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-field__content {
  flex: 1;
  min-width: 0;
}

/* line 681, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-field__label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2px;
}

/* line 689, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .contact-field__label {
  color: rgba(20, 13, 35, 0.5);
}

/* line 694, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-field__value {
  font-size: 0.9rem;
  font-weight: 500;
}

/* line 698, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-field__value--link {
  color: #C38761;
  text-decoration: none;
  transition: 0.2s ease;
}

/* line 703, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-field__value--link:hover {
  text-decoration: underline;
}

/* line 708, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-field__value--empty {
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

/* line 712, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .contact-field__value--empty {
  color: rgba(20, 13, 35, 0.4);
}

/* line 722, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.comments-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 728, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.comment-item {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  border-left: 3px solid #C38761;
}

/* line 735, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .comment-item {
  background: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.06);
  border-left-color: #C38761;
}

/* line 742, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.comment-item__content {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 8px;
  word-break: break-word;
}

/* line 749, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.comment-item__date {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* line 756, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .comment-item__date {
  color: rgba(20, 13, 35, 0.4);
}

/* line 760, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.comment-item__date i {
  font-size: 0.65rem;
}

/* line 769, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.appointments-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 775, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.appointment-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  transition: 0.2s ease;
}

/* line 785, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .appointment-item {
  background: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.06);
}

/* line 790, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.appointment-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* line 793, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .appointment-item:hover {
  background: rgba(20, 13, 35, 0.04);
}

/* line 799, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.appointment-item__date {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.2) 0%, rgba(195, 135, 97, 0.1) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* line 811, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.appointment-item__day {
  font-size: 1.1rem;
  font-weight: 700;
  color: #C38761;
  line-height: 1;
}

/* line 818, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.appointment-item__month {
  font-size: 0.6rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
}

/* line 824, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .appointment-item__month {
  color: rgba(20, 13, 35, 0.6);
}

/* line 829, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.appointment-item__info {
  flex: 1;
  min-width: 0;
}

/* line 834, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.appointment-item__title {
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 843, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.appointment-item__meta {
  display: flex;
  gap: 12px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* line 849, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .appointment-item__meta {
  color: rgba(20, 13, 35, 0.5);
}

/* line 853, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.appointment-item__meta i {
  margin-right: 4px;
  font-size: 0.7rem;
}

/* line 859, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.appointment-item__status {
  flex-shrink: 0;
}

/* line 864, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 874, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.status-badge--a_venir {
  background: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.3);
}

/* line 880, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.status-badge--termine {
  background: rgba(52, 152, 219, 0.2);
  color: #3498db;
  border: 1px solid rgba(52, 152, 219, 0.3);
}

/* line 886, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.status-badge--abandonne {
  background: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.3);
}

/* line 897, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.crm-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

/* line 905, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.crm-empty-state--compact {
  padding: 24px 16px;
}

/* line 910, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.empty-state__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

/* line 921, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .empty-state__icon {
  background: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 926, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.empty-state__icon--linkedin {
  background: rgba(0, 119, 181, 0.1);
  border-color: rgba(0, 119, 181, 0.2);
}

/* line 931, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.empty-state__icon i {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.3);
}

/* line 935, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .empty-state__icon i {
  color: rgba(20, 13, 35, 0.3);
}

/* line 941, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.empty-state__text {
  margin: 0 0 16px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* line 946, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .empty-state__text {
  color: rgba(20, 13, 35, 0.5);
}

/* line 951, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.empty-state__action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.2) 0%, rgba(195, 135, 97, 0.1) 100%);
  border: 1px solid rgba(195, 135, 97, 0.3);
  color: #C38761;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

/* line 965, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.empty-state__action:hover {
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.3) 0%, rgba(195, 135, 97, 0.2) 100%);
  transform: translateY(-1px);
}

/* line 970, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.empty-state__action i {
  font-size: 0.7rem;
}

/* line 979, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.icon-btn {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  transition: 0.2s ease;
  text-decoration: none;
}

/* line 994, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .icon-btn {
  background: rgba(20, 13, 35, 0.06);
  border-color: rgba(20, 13, 35, 0.12);
  color: rgba(20, 13, 35, 0.7);
}

/* line 1000, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.icon-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

/* line 1004, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .icon-btn:hover {
  background: rgba(20, 13, 35, 0.12);
  color: #140D23;
}

/* line 1010, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.icon-btn--edit:hover {
  color: #C38761;
  border-color: rgba(195, 135, 97, 0.3);
}

/* line 1016, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.icon-btn--delete:hover {
  background: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
  border-color: rgba(231, 76, 60, 0.3);
}

/* line 1028, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.see-more-btn {
  width: 100%;
  margin-top: 12px;
  padding: 10px;
  background: transparent;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  font-size: 0.75rem;
  cursor: pointer;
  transition: 0.2s ease;
}

/* line 1040, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .see-more-btn {
  border-color: rgba(20, 13, 35, 0.15);
  color: rgba(20, 13, 35, 0.6);
}

/* line 1045, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.see-more-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(195, 135, 97, 0.3);
  color: #C38761;
}

/* line 1050, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .see-more-btn:hover {
  background: rgba(20, 13, 35, 0.03);
}

/* line 1060, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.page-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
}

/* line 1068, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .page-actions {
  border-top-color: rgba(20, 13, 35, 0.08);
}

@media (max-width: 480px) {
  /* line 1060, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
  .page-actions {
    flex-direction: column;
  }
  /* line 1075, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
  .page-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* line 1082, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.inline-form {
  display: inline;
}

/* line 1090, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
  border: none;
  text-decoration: none;
}

/* line 1103, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.btn i {
  font-size: 0.8rem;
}

/* line 1107, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.btn--primary {
  background: linear-gradient(135deg, #C38761 0%, #af6c42 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(195, 135, 97, 0.3);
}

/* line 1112, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(195, 135, 97, 0.4);
}

/* line 1118, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* line 1123, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .btn--secondary {
  background: rgba(20, 13, 35, 0.06);
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 1129, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* line 1132, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .btn--secondary:hover {
  background: rgba(20, 13, 35, 0.1);
}

/* line 1138, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.btn--success {
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  color: white;
}

/* line 1142, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.btn--success:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

/* line 1148, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.btn--danger {
  background: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.25);
}

/* line 1153, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.btn--danger:hover {
  background: rgba(231, 76, 60, 0.25);
}

/* line 1158, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.btn--small {
  padding: 6px 12px;
  font-size: 0.75rem;
}

/* line 1168, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 20px;
}

/* line 1182, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.modal-overlay.active {
  display: flex;
  animation: fadeIn 0.2s ease;
}

/* line 1188, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.modal-overlay .modal-content {
  background: linear-gradient(180deg, rgba(50, 50, 55, 0.98) 0%, rgba(40, 40, 45, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  opacity: 0;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 1202, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.modal-overlay.active .modal-content {
  transform: translateY(0);
  opacity: 1;
}

/* line 1207, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 1215, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.modal-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
}

/* line 1222, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.modal-close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}

/* line 1236, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.modal-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

/* line 1242, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.modal-body {
  padding: 24px;
}

/* line 1250, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.form-field {
  margin-bottom: 20px;
}

/* line 1253, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.form-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 1264, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.form-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: white;
  font-size: 0.9rem;
  transition: 0.2s ease;
  box-sizing: border-box;
}

/* line 1275, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.form-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

/* line 1279, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.form-input:focus {
  outline: none;
  border-color: #C38761;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.15);
}

/* line 1286, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.form-input--textarea {
  min-height: 100px;
  resize: vertical;
}

/* line 1291, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.form-input--file {
  padding: 10px;
}

/* line 1296, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.form-hint {
  display: block;
  margin-top: 6px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
}

/* line 1303, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.form-error {
  margin-top: 8px;
  padding: 10px 12px;
  background: rgba(231, 76, 60, 0.15);
  border: 1px solid rgba(231, 76, 60, 0.25);
  border-radius: 8px;
  color: #e74c3c;
  font-size: 0.8rem;
}

/* line 1313, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 1322, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.photo-preview {
  margin-top: 12px;
  border-radius: 10px;
  overflow: hidden;
}

/* line 1327, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/../contacts_management/_show_contact.scss */
.photo-preview img {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.05);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ==========================================================================
   CONTENEUR PRINCIPAL
   ========================================================================== */
/* line 13, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.prospect-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  max-width: 1280px;
  margin-right: 15px;
  font-size: 0.8rem;
  max-height: calc( 100vh - 100px);
  /* Limite la hauteur pour éviter le scroll global */
  overflow: hidden;
  /* Empêche le scroll sur le conteneur principal */
}

/* line 26, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.prospect-main-content {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  /* Étire les enfants sur la même hauteur */
  gap: 15px;
  overflow: hidden;
  /* Lorsque l'historique est masqué et que le menu est ouvert */
}

/* line 35, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.prospect-main-content.wide-margins {
  padding-left: 40px;
  padding-right: 40px;
}

/* line 41, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule,
.new-prospect-capsule {
  flex: 1;
  display: flex;
  flex-direction: column;
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 15px;
  height: 76vh;
}

/* line 52, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode,
.new-prospect-capsule.lightmode {
  color: #140D23;
  background-color: rgba(240, 242, 245, 0.7);
}

/* ==========================================================================
   GRILLE DE MISE EN PAGE
   Structure en grille pour organiser les différentes sections d'information
   ========================================================================== */
/* line 63, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.prospect-grid-layout {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr;
  grid-template-rows: auto 1fr 1fr;
  /* Lignes 2 et 3 se partagent l'espace restant */
  gap: 12px;
  flex: 1;
  /* Remplit l'espace de la capsule */
  min-height: 0;
  /* Permet le scroll interne des sections */
}

/* Positionnement des sections selon le schéma */
/* line 73, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-grid-societes {
  grid-column: 1;
  grid-row: 2;
}

/* line 78, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-grid-contacts {
  grid-column: 2 / span 2;
  grid-row: 2;
}

/* Ligne 3 */
/* line 84, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-grid-commentaires {
  grid-column: 1 / span 2;
  grid-row: 3;
}

/* line 89, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-grid-rendezvous {
  grid-column: 3;
  grid-row: 3;
}

/* Mode mono-organisation : nouveau layout 3 rows (hero, détails, activité) */
/* line 95, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.prospect-grid-layout--mono {
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto 1fr 1fr;
  /* Row 1 - Hero Zone */
  /* Row 2 - Detail Zone */
  /* Row 3 - Activity Zone */
}

/* line 100, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.prospect-grid-layout--mono .crm-grid-hero {
  grid-column: 1 / span 2;
  grid-row: 1;
}

/* line 105, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.prospect-grid-layout--mono .crm-grid-contacts {
  grid-column: 3;
  grid-row: 1;
}

/* line 111, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.prospect-grid-layout--mono .crm-grid-coordonnees {
  grid-column: 1;
  grid-row: 2;
}

/* line 116, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.prospect-grid-layout--mono .crm-grid-pipeline {
  grid-column: 2;
  grid-row: 2;
}

/* line 121, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.prospect-grid-layout--mono .crm-grid-legal-detail {
  grid-column: 2;
  grid-row: 2;
}

/* line 126, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.prospect-grid-layout--mono .crm-grid-rendezvous {
  grid-column: 3;
  grid-row: 2;
}

/* line 132, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.prospect-grid-layout--mono .crm-grid-historique {
  grid-column: 1 / span 2;
  grid-row: 3;
}

/* line 137, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.prospect-grid-layout--mono .crm-grid-commentaires {
  grid-column: 3;
  grid-row: 3;
}

/* ==========================================================================
   SECTIONS DE LA GRILLE
   Styles communs et variations pour les cellules de la grille
   ========================================================================== */
/* Style de base pour chaque section */
/* line 149, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-grid-section {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  /* Sections contenant un dropdown (label picker) : overflow visible */
  /* Mode multi-orga : fixer le dropdown au coin droit de la section */
  /* Sections de la première ligne (plus petites) */
  /* Sections des lignes 2 et 3 - hauteur flexible */
}

/* line 159, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-grid-section.crm-grid-hero, .crm-grid-section.crm-grid-status {
  overflow: visible;
}

/* line 166, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-grid-section.crm-grid-status .crm-section-content {
  position: relative;
}

/* line 170, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-grid-section.crm-grid-status .crm-label-picker-anchor {
  position: static;
}

/* line 174, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-grid-section.crm-grid-status .crm-label-picker-dropdown {
  right: 0;
  left: auto;
}

/* line 181, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-grid-section.crm-grid-nom, .crm-grid-section.crm-grid-organisation, .crm-grid-section.crm-grid-status {
  height: auto;
}

/* line 188, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-grid-section.crm-grid-societes, .crm-grid-section.crm-grid-contacts, .crm-grid-section.crm-grid-commentaires, .crm-grid-section.crm-grid-rendezvous, .crm-grid-section.crm-grid-coordonnees, .crm-grid-section.crm-grid-pipeline, .crm-grid-section.crm-grid-legal-detail, .crm-grid-section.crm-grid-historique {
  min-height: 0;
  /* Permet le scroll interne */
  /* Contenu des sections avec défilement interne */
}

/* line 199, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-grid-section.crm-grid-societes .crm-section-content, .crm-grid-section.crm-grid-contacts .crm-section-content, .crm-grid-section.crm-grid-commentaires .crm-section-content, .crm-grid-section.crm-grid-rendezvous .crm-section-content, .crm-grid-section.crm-grid-coordonnees .crm-section-content, .crm-grid-section.crm-grid-pipeline .crm-section-content, .crm-grid-section.crm-grid-legal-detail .crm-section-content, .crm-grid-section.crm-grid-historique .crm-section-content {
  overflow-y: auto;
  flex: 1;
  min-height: 0;
  /* Permet le scroll */
  /* Personnalisation de la barre de défilement */
}

/* line 205, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-grid-section.crm-grid-societes .crm-section-content::-webkit-scrollbar, .crm-grid-section.crm-grid-contacts .crm-section-content::-webkit-scrollbar, .crm-grid-section.crm-grid-commentaires .crm-section-content::-webkit-scrollbar, .crm-grid-section.crm-grid-rendezvous .crm-section-content::-webkit-scrollbar, .crm-grid-section.crm-grid-coordonnees .crm-section-content::-webkit-scrollbar, .crm-grid-section.crm-grid-pipeline .crm-section-content::-webkit-scrollbar, .crm-grid-section.crm-grid-legal-detail .crm-section-content::-webkit-scrollbar, .crm-grid-section.crm-grid-historique .crm-section-content::-webkit-scrollbar {
  width: 6px;
  /* Barre plus fine */
}

/* line 209, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-grid-section.crm-grid-societes .crm-section-content::-webkit-scrollbar-track, .crm-grid-section.crm-grid-contacts .crm-section-content::-webkit-scrollbar-track, .crm-grid-section.crm-grid-commentaires .crm-section-content::-webkit-scrollbar-track, .crm-grid-section.crm-grid-rendezvous .crm-section-content::-webkit-scrollbar-track, .crm-grid-section.crm-grid-coordonnees .crm-section-content::-webkit-scrollbar-track, .crm-grid-section.crm-grid-pipeline .crm-section-content::-webkit-scrollbar-track, .crm-grid-section.crm-grid-legal-detail .crm-section-content::-webkit-scrollbar-track, .crm-grid-section.crm-grid-historique .crm-section-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 213, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-grid-section.crm-grid-societes .crm-section-content::-webkit-scrollbar-track, .new-prospect-capsule.lightmode .crm-grid-section.crm-grid-societes .crm-section-content::-webkit-scrollbar-track, .show-prospect-capsule.lightmode .crm-grid-section.crm-grid-contacts .crm-section-content::-webkit-scrollbar-track, .new-prospect-capsule.lightmode .crm-grid-section.crm-grid-contacts .crm-section-content::-webkit-scrollbar-track, .show-prospect-capsule.lightmode .crm-grid-section.crm-grid-commentaires .crm-section-content::-webkit-scrollbar-track, .new-prospect-capsule.lightmode .crm-grid-section.crm-grid-commentaires .crm-section-content::-webkit-scrollbar-track, .show-prospect-capsule.lightmode .crm-grid-section.crm-grid-rendezvous .crm-section-content::-webkit-scrollbar-track, .new-prospect-capsule.lightmode .crm-grid-section.crm-grid-rendezvous .crm-section-content::-webkit-scrollbar-track, .show-prospect-capsule.lightmode .crm-grid-section.crm-grid-coordonnees .crm-section-content::-webkit-scrollbar-track, .new-prospect-capsule.lightmode .crm-grid-section.crm-grid-coordonnees .crm-section-content::-webkit-scrollbar-track, .show-prospect-capsule.lightmode .crm-grid-section.crm-grid-pipeline .crm-section-content::-webkit-scrollbar-track, .new-prospect-capsule.lightmode .crm-grid-section.crm-grid-pipeline .crm-section-content::-webkit-scrollbar-track, .show-prospect-capsule.lightmode .crm-grid-section.crm-grid-legal-detail .crm-section-content::-webkit-scrollbar-track, .new-prospect-capsule.lightmode .crm-grid-section.crm-grid-legal-detail .crm-section-content::-webkit-scrollbar-track, .show-prospect-capsule.lightmode .crm-grid-section.crm-grid-historique .crm-section-content::-webkit-scrollbar-track, .new-prospect-capsule.lightmode .crm-grid-section.crm-grid-historique .crm-section-content::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 219, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-grid-section.crm-grid-societes .crm-section-content::-webkit-scrollbar-thumb, .crm-grid-section.crm-grid-contacts .crm-section-content::-webkit-scrollbar-thumb, .crm-grid-section.crm-grid-commentaires .crm-section-content::-webkit-scrollbar-thumb, .crm-grid-section.crm-grid-rendezvous .crm-section-content::-webkit-scrollbar-thumb, .crm-grid-section.crm-grid-coordonnees .crm-section-content::-webkit-scrollbar-thumb, .crm-grid-section.crm-grid-pipeline .crm-section-content::-webkit-scrollbar-thumb, .crm-grid-section.crm-grid-legal-detail .crm-section-content::-webkit-scrollbar-thumb, .crm-grid-section.crm-grid-historique .crm-section-content::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 224, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-grid-section.crm-grid-societes .crm-section-content::-webkit-scrollbar-thumb:hover, .crm-grid-section.crm-grid-contacts .crm-section-content::-webkit-scrollbar-thumb:hover, .crm-grid-section.crm-grid-commentaires .crm-section-content::-webkit-scrollbar-thumb:hover, .crm-grid-section.crm-grid-rendezvous .crm-section-content::-webkit-scrollbar-thumb:hover, .crm-grid-section.crm-grid-coordonnees .crm-section-content::-webkit-scrollbar-thumb:hover, .crm-grid-section.crm-grid-pipeline .crm-section-content::-webkit-scrollbar-thumb:hover, .crm-grid-section.crm-grid-legal-detail .crm-section-content::-webkit-scrollbar-thumb:hover, .crm-grid-section.crm-grid-historique .crm-section-content::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 227, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-grid-section.crm-grid-societes .crm-section-content::-webkit-scrollbar-thumb:hover, .new-prospect-capsule.lightmode .crm-grid-section.crm-grid-societes .crm-section-content::-webkit-scrollbar-thumb:hover, .show-prospect-capsule.lightmode .crm-grid-section.crm-grid-contacts .crm-section-content::-webkit-scrollbar-thumb:hover, .new-prospect-capsule.lightmode .crm-grid-section.crm-grid-contacts .crm-section-content::-webkit-scrollbar-thumb:hover, .show-prospect-capsule.lightmode .crm-grid-section.crm-grid-commentaires .crm-section-content::-webkit-scrollbar-thumb:hover, .new-prospect-capsule.lightmode .crm-grid-section.crm-grid-commentaires .crm-section-content::-webkit-scrollbar-thumb:hover, .show-prospect-capsule.lightmode .crm-grid-section.crm-grid-rendezvous .crm-section-content::-webkit-scrollbar-thumb:hover, .new-prospect-capsule.lightmode .crm-grid-section.crm-grid-rendezvous .crm-section-content::-webkit-scrollbar-thumb:hover, .show-prospect-capsule.lightmode .crm-grid-section.crm-grid-coordonnees .crm-section-content::-webkit-scrollbar-thumb:hover, .new-prospect-capsule.lightmode .crm-grid-section.crm-grid-coordonnees .crm-section-content::-webkit-scrollbar-thumb:hover, .show-prospect-capsule.lightmode .crm-grid-section.crm-grid-pipeline .crm-section-content::-webkit-scrollbar-thumb:hover, .new-prospect-capsule.lightmode .crm-grid-section.crm-grid-pipeline .crm-section-content::-webkit-scrollbar-thumb:hover, .show-prospect-capsule.lightmode .crm-grid-section.crm-grid-legal-detail .crm-section-content::-webkit-scrollbar-thumb:hover, .new-prospect-capsule.lightmode .crm-grid-section.crm-grid-legal-detail .crm-section-content::-webkit-scrollbar-thumb:hover, .show-prospect-capsule.lightmode .crm-grid-section.crm-grid-historique .crm-section-content::-webkit-scrollbar-thumb:hover, .new-prospect-capsule.lightmode .crm-grid-section.crm-grid-historique .crm-section-content::-webkit-scrollbar-thumb:hover {
  background: #140D23;
}

/* Titre de chaque section */
/* line 237, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-section-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  background-color: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #C38761;
}

/* line 247, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-section-label, .new-prospect-capsule.lightmode .crm-section-label {
  background-color: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.08);
  color: #C38761;
}

/* En-tête de section avec bouton d'ajout */
/* line 256, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  background-color: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #C38761;
}

/* line 269, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-section-header .crm-section-label {
  border-bottom: none;
  flex-grow: 1;
  padding: 0;
  background-color: transparent;
}

/* line 275, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-section-header .crm-section-label, .new-prospect-capsule.lightmode .crm-section-header .crm-section-label {
  background-color: transparent;
}

/* line 281, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-section-header .crm-add-btn {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(195, 135, 97, 0.15);
  border: 1px solid rgba(195, 135, 97, 0.3);
  color: #C38761;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  margin: 0;
  outline: none;
}

/* line 297, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-section-header .crm-add-btn:hover {
  background-color: rgba(195, 135, 97, 0.3);
  color: white;
}

/* line 303, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-section-header, .new-prospect-capsule.lightmode .crm-section-header {
  background-color: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.08);
  color: #C38761;
}

/* line 309, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-section-header .crm-add-btn, .new-prospect-capsule.lightmode .crm-section-header .crm-add-btn {
  background-color: rgba(195, 135, 97, 0.1);
  border-color: rgba(195, 135, 97, 0.25);
  color: #C38761;
}

/* line 314, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-section-header .crm-add-btn:hover, .new-prospect-capsule.lightmode .crm-section-header .crm-add-btn:hover {
  background-color: rgba(195, 135, 97, 0.2);
}

/* Contenu de chaque section */
/* line 322, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-section-content {
  padding: 12px;
  color: #ffffff;
  font-size: 0.7rem;
}

/* Message affiché quand une section est vide */
/* line 329, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-no-content {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  font-size: 0.7rem;
}

/* ==========================================================================
   MODE CLAIR (LIGHTMODE)
   Adaptation des styles pour le thème clair
   ========================================================================== */
/* line 340, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode,
.new-prospect-capsule.lightmode {
  color: #140D23;
  /* Styles pour les sections en mode clair */
  /* Titres des sections en mode clair */
  /* Contenu des sections en mode clair */
  /* Message pour contenu vide en mode clair */
}

/* line 345, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-grid-section,
.new-prospect-capsule.lightmode .crm-grid-section {
  border-color: rgba(20, 13, 35, 0.12);
  background-color: rgba(255, 255, 255, 0.65);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* line 352, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-section-label,
.new-prospect-capsule.lightmode .crm-section-label {
  background-color: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.08);
  color: #C38761;
}

/* line 359, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-section-content,
.new-prospect-capsule.lightmode .crm-section-content {
  color: #140D23;
}

/* line 364, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-no-content,
.new-prospect-capsule.lightmode .crm-no-content {
  color: rgba(20, 13, 35, 0.6);
}

/* ==========================================================================
   HERO CARD (Company Overview)
   Styles pour la carte héros en mode mono
   ========================================================================== */
/* line 375, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-grid-hero .crm-hero-header {
  padding: 14px 16px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 380, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-grid-hero .crm-hero-name-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 6px;
}

/* line 388, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-grid-hero .crm-hero-name {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex: 1;
  min-width: 0;
}

/* line 396, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-grid-hero .crm-hero-badges {
  flex-shrink: 0;
}

/* line 400, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-grid-hero .crm-hero-rattachement {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* line 407, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-grid-hero .crm-hero-rattachement .crm-hero-rattachement-label {
  font-weight: 600;
}

/* line 412, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-grid-hero .crm-hero-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px 16px;
}

/* line 419, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-grid-hero .crm-hero-detail-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 426, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-grid-hero .crm-hero-detail-item .crm-hero-detail-label {
  font-size: 0.7rem;
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

/* line 433, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-grid-hero .crm-hero-detail-item .crm-hero-detail-label i {
  color: #C38761;
  width: 14px;
  text-align: center;
  flex-shrink: 0;
}

/* line 440, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-grid-hero .crm-hero-detail-item .crm-hero-detail-label strong {
  font-weight: 600;
  white-space: nowrap;
}

/* line 445, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-grid-hero .crm-hero-detail-item .crm-hero-detail-label .no-data {
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

/* Hero card en mode clair */
/* line 455, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-grid-hero .crm-hero-header {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 459, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-grid-hero .crm-hero-rattachement {
  color: rgba(20, 13, 35, 0.6);
}

/* line 465, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-grid-hero .crm-hero-detail-item .crm-hero-detail-label i {
  color: #af6c42;
}

/* line 469, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-grid-hero .crm-hero-detail-item .crm-hero-detail-label .no-data {
  color: rgba(20, 13, 35, 0.4);
}

/* ==========================================================================
   ORGANISATION DETAILS (sections coordonnées, adresses, juridique)
   Styles pour les listes de détails des sections organisation
   ========================================================================== */
/* line 481, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-org-details-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 488, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-org-detail-item .crm-org-detail-label {
  font-size: 0.7rem;
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

/* line 495, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-org-detail-item .crm-org-detail-label i {
  color: #C38761;
  width: 14px;
  text-align: center;
  flex-shrink: 0;
}

/* line 502, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-org-detail-item .crm-org-detail-label strong {
  font-weight: 600;
  white-space: nowrap;
}

/* line 507, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-org-detail-item .crm-org-detail-label .no-data {
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

/* line 512, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-org-detail-item .crm-org-detail-label .phone-link,
.crm-org-detail-item .crm-org-detail-label .email-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

/* line 518, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-org-detail-item .crm-org-detail-label .phone-link:hover,
.crm-org-detail-item .crm-org-detail-label .email-link:hover {
  color: #C38761;
}

/* Organisation details en mode clair */
/* line 528, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-org-detail-item .crm-org-detail-label i {
  color: #af6c42;
}

/* line 532, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-org-detail-item .crm-org-detail-label .no-data {
  color: rgba(20, 13, 35, 0.4);
}

/* line 538, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-org-detail-item .crm-org-detail-label .phone-link:hover,
.show-prospect-capsule.lightmode .crm-org-detail-item .crm-org-detail-label .email-link:hover {
  color: #af6c42;
}

/* ==========================================================================
   CONTACTS CARDS (mode mono)
   Styles pour les cartes contacts avec initiales
   ========================================================================== */
/* line 550, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-contacts-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* line 556, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-contact-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  border-radius: 6px;
  text-decoration: none;
  color: inherit !important;
  transition: background-color 0.2s;
}

/* line 566, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-contact-card:hover {
  background-color: rgba(255, 255, 255, 0.08);
  text-decoration: none;
  color: inherit !important;
}

/* line 573, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-contact-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C38761, #E5A82E);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* line 583, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-contact-avatar span {
  font-size: 0.6rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.5px;
}

/* line 591, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-contact-info {
  min-width: 0;
  flex: 1;
}

/* line 596, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-contact-name {
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 604, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-contact-detail {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Contact cards en mode clair */
/* line 614, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-contact-card:hover {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 618, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-contact-detail {
  color: rgba(20, 13, 35, 0.5);
}

/* line 622, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-contact-avatar span {
  color: white;
}

/* ==========================================================================
   PIPELINE (progression des stages)
   Composant visuel de progression du lifecycle
   ========================================================================== */
/* line 632, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.pipeline-stages {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 4px 0;
}

/* line 639, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.pipeline-stage {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 8px;
  position: relative;
  /* Ligne connectrice entre les dots */
}

/* line 646, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.pipeline-stage .pipeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

/* line 658, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.pipeline-stage .pipeline-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

/* line 665, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.pipeline-stage:not(:first-child)::before {
  content: '';
  position: absolute;
  left: 13px;
  top: 0;
  width: 2px;
  height: 10px;
  background: rgba(255, 255, 255, 0.12);
}

/* line 676, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.pipeline-stage.completed .pipeline-dot {
  background: #C38761;
  border-color: #C38761;
}

/* line 681, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.pipeline-stage.completed .pipeline-label {
  color: rgba(255, 255, 255, 0.7);
}

/* line 685, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.pipeline-stage.completed:not(:first-child)::before {
  background: #C38761;
}

/* line 691, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.pipeline-stage.active .pipeline-dot {
  background: #E5A82E;
  border-color: #E5A82E;
  box-shadow: 0 0 10px rgba(229, 168, 46, 0.5);
}

/* line 697, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.pipeline-stage.active .pipeline-label {
  color: white;
  font-weight: 600;
}

/* line 702, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.pipeline-stage.active:not(:first-child)::before {
  background: #C38761;
}

/* Pipeline en mode clair */
/* line 710, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .pipeline-stage .pipeline-dot {
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 714, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .pipeline-stage .pipeline-label {
  color: rgba(20, 13, 35, 0.4);
}

/* line 718, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .pipeline-stage:not(:first-child)::before {
  background: rgba(20, 13, 35, 0.1);
}

/* line 723, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .pipeline-stage.completed .pipeline-dot {
  background: #C38761;
  border-color: #C38761;
}

/* line 728, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .pipeline-stage.completed .pipeline-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 732, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .pipeline-stage.completed:not(:first-child)::before {
  background: #C38761;
}

/* line 738, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .pipeline-stage.active .pipeline-dot {
  background: #E5A82E;
  border-color: #E5A82E;
}

/* line 743, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .pipeline-stage.active .pipeline-label {
  color: #140D23;
  font-weight: 600;
}

/* line 748, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .pipeline-stage.active:not(:first-child)::before {
  background: #C38761;
}

/* ==========================================================================
   COORDONNÉES DIVIDER
   Séparateur visuel entre coordonnées et adresses
   ========================================================================== */
/* line 759, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-coordonnees-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 6px 0;
}

/* line 764, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-coordonnees-divider {
  background: rgba(20, 13, 35, 0.1);
}

/* ==========================================================================
   BADGES DE STATUT
   Styles pour les indicateurs visuels de statut des prospects
   ========================================================================== */
/* Style de base pour tous les badges de statut */
/* line 775, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.status-badge {
  padding: 4px 8px;
  border-radius: 8px !important;
  font-size: 0.65rem;
  font-weight: 500;
  display: inline-block;
  min-width: 70px;
  text-align: center;
  transition: all 0.2s ease-in-out;
  /* Styles spécifiques selon le statut */
  /* Gestion des variantes pour "Devis Envoyé" */
}

/* line 786, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.status-badge.qualifié {
  background-color: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
}

/* line 791, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.status-badge.non-qualifié {
  background-color: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
}

/* line 796, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.status-badge.archivé {
  background-color: rgba(149, 165, 166, 0.2);
  color: #95a5a6;
}

/* line 801, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.status-badge.devis\ envoyé, .status-badge.devis-envoyé {
  background-color: rgba(52, 152, 219, 0.2);
  color: #3498db;
}

/* line 807, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.status-badge.non-defini {
  background-color: rgba(241, 196, 15, 0.2);
  color: #f1c40f;
}

/* line 813, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.status-badge[class*="devis"] {
  background-color: rgba(52, 152, 219, 0.2);
  color: #3498db;
}

/* Badges de statut en mode clair */
/* line 820, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .status-badge {
  padding: 4px 10px !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  /* Animation au survol */
  /* Styles spécifiques selon le statut en mode clair */
  /* Gestion des variantes pour "Devis Envoyé" en mode clair */
}

/* line 825, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .status-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* line 831, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .status-badge.qualifié {
  background-color: rgba(46, 204, 113, 0.4);
  color: #1e8449;
  font-weight: 600;
  border: 1px solid rgba(46, 204, 113, 0.2);
}

/* line 838, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .status-badge.non-qualifié {
  background-color: rgba(231, 76, 60, 0.4);
  color: #a93226;
  font-weight: 600;
  border: 1px solid rgba(231, 76, 60, 0.2);
}

/* line 845, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .status-badge.archivé {
  background-color: rgba(149, 165, 166, 0.4);
  color: #616a6b;
  font-weight: 600;
  border: 1px solid rgba(149, 165, 166, 0.2);
}

/* line 852, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .status-badge.devis\ envoyé, .show-prospect-capsule.lightmode .status-badge.devis-envoyé {
  background-color: rgba(52, 152, 219, 0.4);
  color: #1a5276;
  font-weight: 600;
  border: 1px solid rgba(52, 152, 219, 0.2);
}

/* line 860, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .status-badge.non-defini {
  background-color: rgba(241, 196, 15, 0.4);
  color: #b7950b;
  font-weight: 600;
  border: 1px solid rgba(241, 196, 15, 0.2);
}

/* line 868, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .status-badge[class*="devis"] {
  background-color: rgba(52, 152, 219, 0.4);
  color: #1a5276;
  font-weight: 600;
  border: 1px solid rgba(52, 152, 219, 0.2);
}

/* ==========================================================================
   LISTES D'INFORMATIONS
   Styles pour les listes de sociétés, contacts et rendez-vous
   ========================================================================== */
/* Style commun pour toutes les listes */
/* line 882, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.related-companies-list,
.contacts-list,
.appointments-list {
  padding-left: 20px;
  margin: 0;
}

/* line 888, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.related-companies-list li,
.contacts-list li,
.appointments-list li {
  margin-bottom: 8px;
  font-size: 0.7rem;
}

/* ==========================================================================
   BADGES DE STATUT DES RENDEZ-VOUS
   Styles pour les indicateurs visuels de statut des rendez-vous
   ========================================================================== */
/* Style de base pour les badges de statut des rendez-vous */
/* line 900, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.appointment-status {
  font-size: 0.65rem;
  padding: 3px 8px;
  border-radius: 4px;
  margin-left: 10px;
  /* Styles spécifiques selon le statut */
}

/* line 907, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.appointment-status.a_venir {
  background-color: rgba(23, 162, 184, 0.2);
  color: #17a2b8;
}

/* line 912, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.appointment-status.termine {
  background-color: rgba(40, 167, 69, 0.2);
  color: #28a745;
}

/* line 917, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.appointment-status.abandonne {
  background-color: rgba(220, 53, 69, 0.2);
  color: #dc3545;
}

/* Badges de statut des rendez-vous en mode clair */
/* line 924, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .appointment-status {
  font-weight: 600;
  border: 1px solid transparent;
  /* Styles spécifiques selon le statut en mode clair */
}

/* line 929, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .appointment-status.a_venir {
  background-color: rgba(23, 162, 184, 0.3);
  color: #0f6674;
  border-color: rgba(23, 162, 184, 0.2);
}

/* line 935, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .appointment-status.termine {
  background-color: rgba(40, 167, 69, 0.3);
  color: #19692c;
  border-color: rgba(40, 167, 69, 0.2);
}

/* line 941, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .appointment-status.abandonne {
  background-color: rgba(220, 53, 69, 0.3);
  color: #a71d2a;
  border-color: rgba(220, 53, 69, 0.2);
}

/* ==========================================================================
   BOUTONS D'ACTION
   Styles pour les boutons d'action en bas de la fiche prospect
   ========================================================================== */
/* line 953, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.prospect-actions {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 10px;
  transition: padding 0.3s ease;
  /* Lorsque l'historique est masqué et que le menu est ouvert */
  /* Styles pour le bouton "Créer un devis" */
}

/* line 961, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.prospect-actions.wide-margins {
  padding-left: 40px;
  padding-right: 40px;
}

/* line 967, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.prospect-actions .btn-primary, .prospect-actions .crm-action-button.crm-action-button-primary {
  background-color: #E5A82E;
  border: 1px solid #E5A82E;
  color: #140D23;
}

/* line 972, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.prospect-actions .btn-primary:hover, .prospect-actions .crm-action-button.crm-action-button-primary:hover {
  background-color: #c78d19;
  border-color: #c78d19;
}

/* line 977, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .prospect-actions .btn-primary, .show-prospect-capsule.lightmode .prospect-actions .crm-action-button.crm-action-button-primary {
  background-color: #E5A82E;
  border-color: #E5A82E;
}

/* line 981, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .prospect-actions .btn-primary:hover, .show-prospect-capsule.lightmode .prospect-actions .crm-action-button.crm-action-button-primary:hover {
  background-color: #c78d19;
  border-color: #c78d19;
}

/* line 989, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.form-button, .users-management-container .users-header .add-user-btn, .crm-action-button {
  padding: 8px 15px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  font-size: 0.7rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 1000, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.form-button:hover, .users-management-container .users-header .add-user-btn:hover, .crm-action-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 1004, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.form-button.btn-secondary, .users-management-container .users-header .btn-secondary.add-user-btn, .btn-secondary.crm-action-button, .users-management-container .users-header .add-user-btn.crm-action-button.crm-action-button-secondary, .crm-action-button.crm-action-button-secondary {
  background-color: rgba(155, 155, 155, 0.2);
}

/* line 1008, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.form-button.btn-danger, .users-management-container .users-header .btn-danger.add-user-btn, .btn-danger.crm-action-button {
  background-color: rgba(231, 76, 60, 0.3);
  border-color: rgba(231, 76, 60, 0.5);
}

/* line 1012, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.form-button.btn-danger:hover, .users-management-container .users-header .btn-danger.add-user-btn:hover, .btn-danger.crm-action-button:hover {
  background-color: rgba(231, 76, 60, 0.5);
}

/* line 1017, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode + .prospect-actions .form-button, .show-prospect-capsule.lightmode + .prospect-actions .users-management-container .users-header .add-user-btn, .users-management-container .users-header .show-prospect-capsule.lightmode + .prospect-actions .add-user-btn, .show-prospect-capsule.lightmode + .prospect-actions .crm-action-button {
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 1021, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode + .prospect-actions .form-button:hover, .show-prospect-capsule.lightmode + .prospect-actions .users-management-container .users-header .add-user-btn:hover, .users-management-container .users-header .show-prospect-capsule.lightmode + .prospect-actions .add-user-btn:hover, .show-prospect-capsule.lightmode + .prospect-actions .crm-action-button:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 1025, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode + .prospect-actions .form-button.btn-secondary, .show-prospect-capsule.lightmode + .prospect-actions .users-management-container .users-header .btn-secondary.add-user-btn, .users-management-container .users-header .show-prospect-capsule.lightmode + .prospect-actions .btn-secondary.add-user-btn, .show-prospect-capsule.lightmode + .prospect-actions .btn-secondary.crm-action-button, .show-prospect-capsule.lightmode + .prospect-actions .crm-action-button.crm-action-button-secondary {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 1029, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode + .prospect-actions .form-button.btn-danger, .show-prospect-capsule.lightmode + .prospect-actions .users-management-container .users-header .btn-danger.add-user-btn, .users-management-container .users-header .show-prospect-capsule.lightmode + .prospect-actions .btn-danger.add-user-btn, .show-prospect-capsule.lightmode + .prospect-actions .btn-danger.crm-action-button {
  color: #a82315;
  background-color: rgba(231, 76, 60, 0.1);
  border-color: rgba(231, 76, 60, 0.3);
}

/* line 1034, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode + .prospect-actions .form-button.btn-danger:hover, .show-prospect-capsule.lightmode + .prospect-actions .users-management-container .users-header .btn-danger.add-user-btn:hover, .users-management-container .users-header .show-prospect-capsule.lightmode + .prospect-actions .btn-danger.add-user-btn:hover, .show-prospect-capsule.lightmode + .prospect-actions .btn-danger.crm-action-button:hover {
  background-color: rgba(231, 76, 60, 0.2);
}

/* ==========================================================================
   BARRE HISTORIQUE
   Styles pour la barre latérale d'historique
   ========================================================================== */
/* line 1046, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.prospect-history-sidebar {
  flex: 0 0 300px;
  min-width: 240px;
  max-width: 300px;
  height: 100%;
  align-self: stretch;
  /* S'étire pour matcher la hauteur de la capsule */
  display: flex;
  /* Permet au contenu interne de s'étirer verticalement */
  transition: all 1s ease;
  opacity: 1;
  overflow: hidden;
  /* Cache tout débordement */
  /* Comportement quand la barre est masquée */
}

/* line 1058, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.prospect-history-sidebar.hidden {
  opacity: 0;
  visibility: hidden;
  max-width: 0;
  min-width: 0;
  flex: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

/* line 1070, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.history-section {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 70vh !important;
  flex: 1;
  padding: 20px;
}

/* line 1081, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode + .history-section {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 1086, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.history-section .crm-section-label {
  background-color: transparent;
  border-bottom: none;
  padding: 0 0 10px 0;
  font-size: 0.9rem;
  text-transform: capitalize;
  font-weight: normal;
  height: 10%;
}

/* line 1094, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode + .prospect-history-sidebar .history-section .crm-section-label {
  color: #140D23;
}

/* line 1099, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.history-section .crm-section-content {
  color: white;
}

/* line 1102, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode + .prospect-history-sidebar .history-section .crm-section-content {
  color: #140D23;
}

/* line 1106, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.history-section .crm-section-content p {
  margin-bottom: 15px;
  font-size: 0.7rem;
}

/* line 1110, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.history-section .crm-section-content p strong {
  font-weight: 600;
  opacity: 0.8;
}

/* ==========================================================================
   RESPONSIVE
   Adaptations pour différentes tailles d'écran
   ========================================================================== */
/* Tablettes et écrans moyens */
@media (max-width: 992px) {
  /* line 1125, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
  .prospect-main-content {
    flex-direction: column;
    max-height: none;
  }
  /* line 1129, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
  .prospect-main-content.wide-margins {
    padding-left: 30px;
    padding-right: 30px;
  }
  /* line 1136, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
  .prospect-actions.wide-margins {
    padding-left: 30px;
    padding-right: 30px;
  }
  /* Mode groupe : tablette */
  /* line 1143, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
  .prospect-grid-layout {
    grid-template-columns: 1fr 1fr;
  }
  /* line 1147, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
  .crm-grid-organisation {
    margin-left: 0;
    grid-column: 2;
  }
  /* line 1152, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
  .crm-grid-status {
    grid-column: 1 / 3;
    grid-row: 2;
  }
  /* line 1157, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
  .crm-grid-societes {
    grid-row: 3;
  }
  /* line 1161, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
  .crm-grid-contacts {
    grid-row: 3;
  }
  /* line 1165, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
  .crm-grid-commentaires {
    grid-row: 4;
  }
  /* line 1169, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
  .crm-grid-rendezvous {
    grid-row: 4;
  }
  /* Mode mono : tablette - 2 colonnes */
  /* line 1174, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
  .prospect-grid-layout--mono {
    grid-template-columns: 1fr 1fr;
  }
  /* line 1177, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
  .prospect-grid-layout--mono .crm-grid-hero {
    grid-column: 1 / span 2;
    grid-row: 1;
  }
  /* line 1182, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
  .prospect-grid-layout--mono .crm-grid-contacts {
    grid-column: 1 / span 2;
    grid-row: 2;
  }
  /* line 1187, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
  .prospect-grid-layout--mono .crm-grid-coordonnees {
    grid-column: 1;
    grid-row: 3;
  }
  /* line 1192, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
  .prospect-grid-layout--mono .crm-grid-pipeline,
.prospect-grid-layout--mono .crm-grid-legal-detail {
    grid-column: 2;
    grid-row: 3;
  }
  /* line 1198, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
  .prospect-grid-layout--mono .crm-grid-rendezvous {
    grid-column: 1 / span 2;
    grid-row: 4;
  }
  /* line 1203, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
  .prospect-grid-layout--mono .crm-grid-historique {
    grid-column: 1 / span 2;
    grid-row: 5;
  }
  /* line 1208, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
  .prospect-grid-layout--mono .crm-grid-commentaires {
    grid-column: 1 / span 2;
    grid-row: 6;
  }
  /* line 1214, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
  .prospect-history-sidebar {
    width: 100%;
    flex: 0 0 auto;
    min-width: 100%;
    max-width: 100%;
    margin-top: 20px;
    height: 300px;
    max-height: 300px;
  }
  /* line 1223, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
  .prospect-history-sidebar.hidden {
    max-height: 0;
    height: 0;
    margin-top: 0;
    padding: 0;
  }
  /* Hero card responsive */
  /* line 1232, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
  .crm-grid-hero .crm-hero-details {
    grid-template-columns: 1fr;
  }
}

/* Mobiles et petits écrans */
@media (max-width: 576px) {
  /* line 1240, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
  .prospect-main-content.wide-margins {
    padding-left: 20px;
    padding-right: 20px;
  }
  /* line 1246, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
  .prospect-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  /* line 1247, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
  .prospect-actions.wide-margins {
    padding-left: 20px;
    padding-right: 20px;
  }
  /* Mode groupe : mobile */
  /* line 1258, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
  .prospect-grid-layout {
    grid-template-columns: 1fr;
    padding: 10px;
  }
  /* line 1263, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
  .crm-grid-organisation,
.crm-grid-status,
.crm-grid-contacts,
.crm-grid-rendezvous {
    grid-column: 1;
  }
  /* line 1270, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
  .crm-grid-organisation {
    grid-row: 2;
  }
  /* line 1271, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
  .crm-grid-status {
    grid-row: 3;
  }
  /* line 1272, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
  .crm-grid-societes {
    grid-row: 4;
  }
  /* line 1273, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
  .crm-grid-contacts {
    grid-row: 5;
  }
  /* line 1274, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
  .crm-grid-commentaires {
    grid-row: 6;
  }
  /* line 1275, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
  .crm-grid-rendezvous {
    grid-row: 7;
  }
  /* Mode mono : mobile - 1 colonne */
  /* line 1278, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
  .prospect-grid-layout--mono {
    grid-template-columns: 1fr;
  }
  /* line 1281, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
  .prospect-grid-layout--mono .crm-grid-hero,
.prospect-grid-layout--mono .crm-grid-contacts,
.prospect-grid-layout--mono .crm-grid-coordonnees,
.prospect-grid-layout--mono .crm-grid-pipeline,
.prospect-grid-layout--mono .crm-grid-legal-detail,
.prospect-grid-layout--mono .crm-grid-rendezvous,
.prospect-grid-layout--mono .crm-grid-historique,
.prospect-grid-layout--mono .crm-grid-commentaires {
    grid-column: 1;
  }
  /* Hero name responsive */
  /* line 1295, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
  .crm-grid-hero .crm-hero-name-row {
    flex-direction: column;
    gap: 6px;
  }
  /* line 1300, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
  .crm-grid-hero .crm-hero-details {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   INSTANCES INDEX
   Styles pour l'affichage des données sous forme de tableau (sociétés, contacts, commentaires)
   ========================================================================== */
/* line 1311, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-instance-index {
  width: 100%;
  overflow: auto;
  margin-bottom: 0.5rem;
  /* Personnalisation de la barre de défilement */
}

/* line 1317, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-instance-index::-webkit-scrollbar {
  width: 8px;
  /* Largeur de la barre de défilement */
  height: 8px;
  /* Hauteur pour le défilement horizontal */
}

/* line 1322, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-instance-index::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  /* Couleur de l'arrière-plan de la barre */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 1331, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-instance-index::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 1336, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-instance-index::-webkit-scrollbar-thumb {
  background: #C38761;
  /* Couleur de la barre de défilement */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 1341, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-instance-index::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
  /* Couleur de la barre au survol */
}

/* line 1344, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-instance-index::-webkit-scrollbar-thumb:hover {
  background: #140D23;
}

/* line 1350, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-instance-header {
  display: flex;
  background-color: rgba(255, 255, 255, 0.1);
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 1357, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-instance-row {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 1361, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-instance-row:last-child {
  border-bottom: none;
}

/* line 1370, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-instance-column {
  flex: 1;
  padding: 6px 8px;
  font-size: 0.7rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  min-width: 0;
  /* Permet le shrinking de la flex box */
}

/* line 1380, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-instance-column-large {
  flex: 3;
  padding: 6px 8px;
  font-size: 0.7rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  min-width: 0;
  /* Permet le shrinking de la flex box */
}

/* Styles en mode clair */
/* line 1392, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-instance-index {
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 1396, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-instance-header {
  background-color: rgba(20, 13, 35, 0.05);
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 1402, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .crm-instance-row {
  border-color: rgba(20, 13, 35, 0.1);
}

/* Responsive design pour les index d'instances */
@media (max-width: 768px) {
  /* line 1413, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
  .crm-instance-header,
.crm-instance-row {
    flex-direction: column;
  }
  /* line 1418, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
  .crm-instance-column,
.crm-instance-column-large {
    width: 100%;
    flex: none;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  }
  /* line 1424, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
  .crm-instance-column:last-child,
.crm-instance-column-large:last-child {
    border-bottom: none;
  }
  /* line 1429, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
  .crm-instance-header .crm-instance-column {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
  }
  /* Adaptations en mode clair */
  /* line 1436, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
  .show-prospect-capsule.lightmode .crm-instance-column,
.show-prospect-capsule.lightmode .crm-instance-column-large {
    border-color: rgba(20, 13, 35, 0.1);
  }
  /* line 1441, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
  .show-prospect-capsule.lightmode .crm-instance-header .crm-instance-column {
    border-color: rgba(20, 13, 35, 0.2);
  }
}

/* Liens vers les contacts et organisations */
/* line 1448, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.contact-link,
.organization-link {
  text-decoration: none;
  color: inherit !important;
  display: flex;
  width: 100%;
}

/* line 1455, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.contact-link:hover,
.organization-link:hover {
  text-decoration: none;
  color: inherit !important;
}

/* line 1459, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.contact-link:hover .crm-instance-column,
.organization-link:hover .crm-instance-column {
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 1465, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.show-prospect-capsule.lightmode .contact-link:hover .crm-instance-column, .new-prospect-capsule.lightmode .contact-link:hover .crm-instance-column, .show-prospect-capsule.lightmode .organization-link:hover .crm-instance-column, .new-prospect-capsule.lightmode .organization-link:hover .crm-instance-column {
  background-color: rgba(20, 13, 35, 0.1);
}

/* ==========================================================================
   FORMULAIRE D'ÉDITION PROSPECT / CUSTOMER
   Layout propre, regroupé par sections logiques
   ========================================================================== */
/* line 1477, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-edit-container {
  width: 100%;
  max-width: 1200px;
  padding: 0 15px 0 0;
}

/* line 1483, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-edit-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 1491, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-edit-header .crm-edit-back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.2s;
  flex-shrink: 0;
}

/* line 1504, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-edit-header .crm-edit-back:hover {
  background: rgba(195, 135, 97, 0.15);
  color: #C38761;
}

/* line 1510, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-edit-header h2, .crm-edit-header .h2 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

/* line 1518, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.lightmode .crm-edit-header {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 1521, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.lightmode .crm-edit-header .crm-edit-back {
  background: rgba(20, 13, 35, 0.06);
  color: rgba(20, 13, 35, 0.4);
}

/* line 1524, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.lightmode .crm-edit-header .crm-edit-back:hover {
  background: rgba(195, 135, 97, 0.15);
  color: #C38761;
}

/* line 1529, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.lightmode .crm-edit-header h2, .lightmode .crm-edit-header .h2 {
  color: #140D23;
}

/* line 1533, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-edit-section {
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

/* line 1540, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.lightmode .crm-edit-section {
  background: rgba(20, 13, 35, 0.04);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 1546, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-edit-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #C38761;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 1559, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-edit-section-title i {
  font-size: 0.7rem;
  opacity: 0.8;
}

/* line 1564, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.lightmode .crm-edit-section-title {
  color: #C38761;
  background: rgba(20, 13, 35, 0.03);
  border-bottom-color: rgba(20, 13, 35, 0.08);
}

/* line 1571, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-edit-section-body {
  padding: 16px 20px;
}

/* line 1575, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-edit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* line 1580, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-edit-grid.crm-edit-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
  /* line 1575, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
  .crm-edit-grid {
    grid-template-columns: 1fr;
  }
}

/* line 1589, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-edit-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* line 1595, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-edit-label {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.8);
  padding-left: 2px;
}

/* line 1603, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.lightmode .crm-edit-label {
  color: rgba(20, 13, 35, 0.5);
}

/* line 1608, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-edit-input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
  color: #FFFFFF;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  resize: vertical;
}

/* line 1621, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-edit-input:focus {
  outline: none;
  border-color: rgba(195, 135, 97, 0.5);
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

/* line 1628, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-edit-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.72rem;
}

/* line 1633, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.lightmode .crm-edit-input {
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.12);
  background: rgba(255, 255, 255, 0.6);
}

/* line 1638, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.lightmode .crm-edit-input:focus {
  border-color: rgba(195, 135, 97, 0.5);
  background: #FFFFFF;
}

/* line 1643, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.lightmode .crm-edit-input::placeholder {
  color: rgba(20, 13, 35, 0.3);
}

/* line 1649, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
select.crm-edit-input {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='4' viewBox='0 0 8 4'%3E%3Cpath fill='rgba(255,255,255,0.4)' d='M8 0H0l4 4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 30px;
}

/* line 1657, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.lightmode select.crm-edit-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='4' viewBox='0 0 8 4'%3E%3Cpath fill='rgba(20,13,35,0.4)' d='M8 0H0l4 4z'/%3E%3C/svg%3E");
}

/* line 1662, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
textarea.crm-edit-input {
  min-height: 56px;
  line-height: 1.5;
}

/* line 1667, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-edit-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* line 1675, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.lightmode .crm-edit-actions {
  border-top-color: rgba(20, 13, 35, 0.08);
}

/* line 1680, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-edit-btn {
  padding: 9px 22px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

/* line 1690, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-edit-btn--primary {
  background: #E5A82E;
  color: #140D23;
}

/* line 1694, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-edit-btn--primary:hover {
  background: #d0931a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(229, 168, 46, 0.3);
}

/* line 1701, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-edit-btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 1706, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-edit-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
}

/* line 1711, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.lightmode .crm-edit-btn--secondary {
  background: rgba(20, 13, 35, 0.05);
  color: rgba(20, 13, 35, 0.6);
  border-color: rgba(20, 13, 35, 0.12);
}

/* line 1716, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.lightmode .crm-edit-btn--secondary:hover {
  background: rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 1724, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-edit-error-messages {
  margin-bottom: 20px;
  padding: 12px 16px;
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.2);
  border-radius: 8px;
  color: #e74c3c;
  font-size: 0.75rem;
}

/* line 1733, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-edit-error-messages ul {
  margin: 0;
  padding-left: 16px;
}

/* line 1736, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_lead_show.scss */
.crm-edit-error-messages ul li {
  margin-bottom: 2px;
}

/* Importe les styles des modales custom */
/* ==========================================================================
   CUSTOM MODAL - Base styles CRM (overlay + modal + header/body/footer)
   Aligné sur organization_wizard_modal (gradient, border-radius 12px, goldsummer)
   ========================================================================== */
/* Overlay */
/* line 7, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_custom_modal.scss */
.custom-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1050;
}

/* line 19, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_custom_modal.scss */
.custom-modal-overlay.active {
  display: flex;
  animation: customModalFadeIn 0.3s;
}

@keyframes customModalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Modal */
/* line 31, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_custom_modal.scss */
.custom-modal {
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: white;
  border: none;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  height: fit-content;
  max-height: 90vh;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  scrollbar-width: thin;
  scrollbar-color: rgba(195, 135, 97, 0.6) rgba(255, 255, 255, 0.05);
}

/* line 48, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_custom_modal.scss */
.custom-modal-overlay.active .custom-modal {
  transform: translateY(0);
  opacity: 1;
}

/* line 54, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_custom_modal.scss */
.custom-modal::-webkit-scrollbar {
  width: 8px;
}

/* line 58, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_custom_modal.scss */
.custom-modal::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

/* line 63, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_custom_modal.scss */
.custom-modal::-webkit-scrollbar-thumb {
  background: rgba(195, 135, 97, 0.6);
  border-radius: 4px;
}

/* line 67, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_custom_modal.scss */
.custom-modal::-webkit-scrollbar-thumb:hover {
  background: rgba(195, 135, 97, 0.8);
}

/* Header */
/* line 77, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_custom_modal.scss */
.custom-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 85, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_custom_modal.scss */
.custom-modal-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

/* line 91, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_custom_modal.scss */
.custom-modal-title i {
  color: #C38761;
}

/* line 96, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_custom_modal.scss */
.custom-modal-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

/* line 110, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_custom_modal.scss */
.custom-modal-close:hover {
  color: #C38761;
  background: rgba(255, 255, 255, 0.1);
}

/* Body */
/* line 117, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_custom_modal.scss */
.custom-modal-body {
  padding: 20px 24px;
}

/* line 120, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_custom_modal.scss */
.custom-modal-body .form-group {
  margin-bottom: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* line 126, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_custom_modal.scss */
.custom-modal-body .form-group:last-child {
  margin-bottom: 0;
}

/* line 132, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_custom_modal.scss */
.custom-modal-body label,
.custom-modal-body .modal-label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9rem;
  text-align: left;
}

/* line 141, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_custom_modal.scss */
.custom-modal-body label i,
.custom-modal-body .modal-label i {
  color: #C38761;
}

/* line 145, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_custom_modal.scss */
.custom-modal-body label .required-indicator,
.custom-modal-body .modal-label .required-indicator {
  color: #C38761;
}

/* line 151, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_custom_modal.scss */
.custom-modal-body .form-control,
.custom-modal-body input[type="text"],
.custom-modal-body input[type="email"],
.custom-modal-body input[type="tel"],
.custom-modal-body textarea,
.custom-modal-body select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(195, 135, 97, 0.4);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 0.9rem;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

/* line 167, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_custom_modal.scss */
.custom-modal-body .form-control::placeholder,
.custom-modal-body input[type="text"]::placeholder,
.custom-modal-body input[type="email"]::placeholder,
.custom-modal-body input[type="tel"]::placeholder,
.custom-modal-body textarea::placeholder,
.custom-modal-body select::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 171, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_custom_modal.scss */
.custom-modal-body .form-control:focus,
.custom-modal-body input[type="text"]:focus,
.custom-modal-body input[type="email"]:focus,
.custom-modal-body input[type="tel"]:focus,
.custom-modal-body textarea:focus,
.custom-modal-body select:focus {
  border-color: rgba(195, 135, 97, 0.7);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.15);
  outline: none;
}

/* line 180, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_custom_modal.scss */
.custom-modal-body select.form-control,
.custom-modal-body select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C38761' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

/* line 189, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_custom_modal.scss */
.custom-modal-body select.form-control option,
.custom-modal-body select option {
  background: #140D23;
  color: white;
}

/* line 195, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_custom_modal.scss */
.custom-modal-body textarea.form-control,
.custom-modal-body textarea {
  height: auto;
  min-height: 80px;
  resize: vertical;
}

/* line 203, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_custom_modal.scss */
.custom-modal-body .form-error {
  color: #ff6b6b;
  font-size: 0.8rem;
  margin-top: 4px;
}

/* line 208, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_custom_modal.scss */
.custom-modal-body .form-error.hidden {
  display: none;
}

/* Footer */
/* line 215, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_custom_modal.scss */
.custom-modal-footer {
  padding: 16px 24px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 222, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_custom_modal.scss */
.custom-modal-footer .form-button, .custom-modal-footer .users-management-container .users-header .add-user-btn, .users-management-container .users-header .custom-modal-footer .add-user-btn, .custom-modal-footer .crm-action-button {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

/* line 231, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_custom_modal.scss */
.custom-modal-footer .form-button.btn-secondary, .custom-modal-footer .users-management-container .users-header .btn-secondary.add-user-btn, .users-management-container .users-header .custom-modal-footer .btn-secondary.add-user-btn, .custom-modal-footer .btn-secondary.crm-action-button, .custom-modal-footer .crm-action-button.crm-action-button-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}

/* line 236, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_custom_modal.scss */
.custom-modal-footer .form-button.btn-secondary:hover, .custom-modal-footer .users-management-container .users-header .btn-secondary.add-user-btn:hover, .users-management-container .users-header .custom-modal-footer .btn-secondary.add-user-btn:hover, .custom-modal-footer .btn-secondary.crm-action-button:hover, .custom-modal-footer .crm-action-button.crm-action-button-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

/* line 242, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_custom_modal.scss */
.custom-modal-footer .form-button.btn-primary, .custom-modal-footer .users-management-container .users-header .btn-primary.add-user-btn, .users-management-container .users-header .custom-modal-footer .btn-primary.add-user-btn, .custom-modal-footer .btn-primary.crm-action-button, .custom-modal-footer .crm-action-button.crm-action-button-primary, .custom-modal-footer .form-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary), .custom-modal-footer .users-management-container .users-header .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary), .users-management-container .users-header .custom-modal-footer .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary), .custom-modal-footer .crm-action-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary) {
  background: #C38761;
  color: #140D23;
}

/* line 247, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../leads_management/_custom_modal.scss */
.custom-modal-footer .form-button.btn-primary:hover, .custom-modal-footer .users-management-container .users-header .btn-primary.add-user-btn:hover, .users-management-container .users-header .custom-modal-footer .btn-primary.add-user-btn:hover, .custom-modal-footer .btn-primary.crm-action-button:hover, .custom-modal-footer .crm-action-button.crm-action-button-primary:hover, .custom-modal-footer .form-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover, .custom-modal-footer .users-management-container .users-header .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover, .users-management-container .users-header .custom-modal-footer .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover, .custom-modal-footer .crm-action-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover {
  background: #bc794f;
  transform: translateY(-1px);
}

/* Importe les styles des commentaires depuis show_contact */
/* ==========================================================================
   CONTACT SHOW - MODERN BENTO DESIGN
   Design inspiré des meilleures pratiques UX (Notion, Linear, Apple)
   ========================================================================== */
/* line 22, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-show-capsule {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: white;
  font-size: 0.875rem;
  min-height: calc(100vh - 120px);
}

/* line 34, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode {
  color: #140D23;
}

@media (max-width: 768px) {
  /* line 22, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
  .contact-show-capsule {
    padding: 16px;
    gap: 16px;
  }
}

/* line 48, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.profile-header, .account-page-profile-header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

/* line 61, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.profile-header::before, .account-page-profile-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* line 71, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .profile-header, .contact-show-capsule.lightmode .account-page-profile-header {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.04) 0%, rgba(20, 13, 35, 0.02) 100%);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 75, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .profile-header::before, .contact-show-capsule.lightmode .account-page-profile-header::before {
  background: linear-gradient(90deg, transparent, rgba(20, 13, 35, 0.1), transparent);
}

@media (max-width: 768px) {
  /* line 48, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
  .profile-header, .account-page-profile-header {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 16px;
  }
}

/* line 89, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.profile-header__photo {
  position: relative;
  flex-shrink: 0;
}

/* line 94, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.profile-header__image {
  width: 100px;
  height: 100px;
  border-radius: 16px;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 103, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.profile-header__image:hover {
  transform: scale(1.02);
  border-color: #C38761;
}

/* line 108, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .profile-header__image {
  border-color: rgba(20, 13, 35, 0.15);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* line 114, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.profile-header__placeholder {
  width: 100px;
  height: 100px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.3) 0%, rgba(195, 135, 97, 0.15) 100%);
  border: 3px solid rgba(195, 135, 97, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* line 125, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .profile-header__placeholder {
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.2) 0%, rgba(195, 135, 97, 0.1) 100%);
}

/* line 130, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.profile-header__initials {
  font-size: 2rem;
  font-weight: 700;
  color: #C38761;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* line 138, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.profile-header__photo-btn {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #C38761;
  border: 2px solid white;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* line 156, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.profile-header__photo-btn:hover {
  transform: scale(1.1);
  background: #b67145;
}

/* line 163, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.profile-header__info {
  flex: 1;
  min-width: 0;
}

/* line 168, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.profile-header__name {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 4px 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

/* line 175, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .profile-header__name {
  color: #140D23;
}

/* line 180, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.profile-header__role {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* line 189, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .profile-header__role {
  color: rgba(20, 13, 35, 0.7);
}

@media (max-width: 768px) {
  /* line 180, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
  .profile-header__role {
    justify-content: center;
  }
}

/* line 198, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.profile-header__company {
  font-weight: 600;
  color: #C38761;
}

/* line 203, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.profile-header__separator {
  color: rgba(255, 255, 255, 0.3);
}

/* line 206, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .profile-header__separator {
  color: rgba(20, 13, 35, 0.3);
}

/* line 211, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.profile-header__job {
  font-weight: 500;
}

/* line 216, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.profile-header__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  /* line 216, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
  .profile-header__actions {
    justify-content: center;
  }
}

/* line 226, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.action-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: 0.2s ease;
  white-space: nowrap;
}

/* line 240, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.action-pill i {
  font-size: 0.9rem;
}

/* line 244, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.action-pill--email {
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.25) 0%, rgba(52, 152, 219, 0.15) 100%);
  color: #3498db;
  border: 1px solid rgba(52, 152, 219, 0.3);
}

/* line 249, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.action-pill--email:hover {
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.35) 0%, rgba(52, 152, 219, 0.25) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.25);
}

/* line 256, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.action-pill--phone {
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.25) 0%, rgba(46, 204, 113, 0.15) 100%);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.3);
}

/* line 261, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.action-pill--phone:hover {
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.35) 0%, rgba(46, 204, 113, 0.25) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 204, 113, 0.25);
}

/* line 268, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.action-pill--linkedin {
  background: linear-gradient(135deg, rgba(0, 119, 181, 0.25) 0%, rgba(0, 119, 181, 0.15) 100%);
  color: #0077b5;
  border: 1px solid rgba(0, 119, 181, 0.3);
}

/* line 273, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.action-pill--linkedin:hover {
  background: linear-gradient(135deg, rgba(0, 119, 181, 0.35) 0%, rgba(0, 119, 181, 0.25) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 119, 181, 0.25);
}

/* line 280, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.action-pill--muted {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  border: 1px dashed rgba(255, 255, 255, 0.2);
}

/* line 285, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .action-pill--muted {
  background: rgba(20, 13, 35, 0.05);
  color: rgba(20, 13, 35, 0.5);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 291, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.action-pill--muted:hover {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  border-style: solid;
}

/* line 296, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .action-pill--muted:hover {
  background: rgba(20, 13, 35, 0.08);
  color: rgba(20, 13, 35, 0.8);
}

/* line 308, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  /* line 308, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
  .bento-grid {
    grid-template-columns: 1fr;
  }
}

/* line 322, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.bento-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

/* line 331, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .bento-card {
  background: rgba(20, 13, 35, 0.04);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 336, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.bento-card:hover {
  border-color: rgba(195, 135, 97, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* line 340, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .bento-card:hover {
  border-color: rgba(195, 135, 97, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* line 347, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.bento-card--organizations {
  grid-column: span 2;
}

@media (max-width: 900px) {
  /* line 347, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
  .bento-card--organizations {
    grid-column: span 1;
  }
}

/* line 355, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.bento-card--linkedin {
  grid-row: span 2;
}

@media (max-width: 900px) {
  /* line 355, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
  .bento-card--linkedin {
    grid-row: span 1;
  }
}

/* line 364, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.bento-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* line 372, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .bento-card__header {
  background: rgba(20, 13, 35, 0.03);
  border-bottom-color: rgba(20, 13, 35, 0.06);
}

/* line 378, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.bento-card__title {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 383, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.bento-card__title i {
  font-size: 1rem;
  color: #C38761;
}

/* line 388, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.bento-card__title h2, .bento-card__title .h2 {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 397, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.bento-card__count {
  background: rgba(195, 135, 97, 0.2);
  color: #C38761;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 700;
}

/* line 406, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.bento-card__add {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #C38761 0%, #af6c42 100%);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: 0.2s ease;
  box-shadow: 0 2px 8px rgba(195, 135, 97, 0.3);
}

/* line 421, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.bento-card__add:hover {
  transform: scale(1.1) rotate(90deg);
}

/* line 425, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.bento-card__add:active {
  transform: scale(0.95);
}

/* line 430, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.bento-card__content {
  padding: 16px 20px;
  flex: 1;
  overflow-y: auto;
  max-height: 350px;
}

/* line 437, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.bento-card__content::-webkit-scrollbar {
  width: 6px;
}

/* line 441, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.bento-card__content::-webkit-scrollbar-track {
  background: transparent;
}

/* line 445, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.bento-card__content::-webkit-scrollbar-thumb {
  background: rgba(195, 135, 97, 0.4);
  border-radius: 3px;
}

/* line 449, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.bento-card__content::-webkit-scrollbar-thumb:hover {
  background: rgba(195, 135, 97, 0.6);
}

/* line 459, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.org-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* line 465, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.org-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  flex: 1;
  min-width: 280px;
  transition: 0.2s ease;
}

/* line 477, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .org-item {
  background: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.08);
}

/* line 482, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.org-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(195, 135, 97, 0.3);
}

/* line 486, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .org-item:hover {
  background: rgba(20, 13, 35, 0.06);
}

/* line 490, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.org-item:hover .org-item__actions {
  opacity: 1;
}

/* line 496, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.org-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.2) 0%, rgba(195, 135, 97, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* line 506, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.org-item__icon i {
  color: #C38761;
  font-size: 1rem;
}

/* line 512, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.org-item__info {
  flex: 1;
  min-width: 0;
}

/* line 517, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.org-item__name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 526, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.org-item__meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

/* line 532, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.org-item__tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
}

/* line 540, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.org-item__tag--job {
  background: rgba(195, 135, 97, 0.15);
  color: #C38761;
  border: 1px solid rgba(195, 135, 97, 0.25);
}

/* line 546, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.org-item__tag--role {
  background: rgba(52, 152, 219, 0.15);
  color: #3498db;
  border: 1px solid rgba(52, 152, 219, 0.25);
}

/* line 553, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.org-item__actions {
  display: flex;
  gap: 4px;
  opacity: 0.5;
  transition: 0.2s ease;
}

/* line 564, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.crm-linkedin-sections {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 570, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.crm-linkedin-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  overflow: hidden;
}

/* line 576, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .crm-linkedin-section {
  background: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.06);
}

/* line 582, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.crm-linkedin-section__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* line 595, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .crm-linkedin-section__header {
  color: rgba(20, 13, 35, 0.7);
  background: rgba(20, 13, 35, 0.02);
  border-bottom-color: rgba(20, 13, 35, 0.04);
}

/* line 601, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.crm-linkedin-section__header i {
  font-size: 0.8rem;
  color: #C38761;
}

/* line 607, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.crm-linkedin-section__content {
  padding: 12px 14px;
}

/* line 611, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.crm-linkedin-section__placeholder {
  text-align: center;
}

/* line 614, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.crm-linkedin-section__placeholder p {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

/* line 620, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .crm-linkedin-section__placeholder p {
  color: rgba(20, 13, 35, 0.4);
}

/* line 630, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 636, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-field {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  transition: 0.2s ease;
}

/* line 646, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .contact-field {
  background: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.06);
}

/* line 651, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-field:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* line 654, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .contact-field:hover {
  background: rgba(20, 13, 35, 0.04);
}

/* line 660, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-field__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.15) 0%, rgba(195, 135, 97, 0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* line 670, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-field__icon i {
  color: #C38761;
  font-size: 0.9rem;
}

/* line 676, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-field__content {
  flex: 1;
  min-width: 0;
}

/* line 681, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-field__label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2px;
}

/* line 689, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .contact-field__label {
  color: rgba(20, 13, 35, 0.5);
}

/* line 694, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-field__value {
  font-size: 0.9rem;
  font-weight: 500;
}

/* line 698, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-field__value--link {
  color: #C38761;
  text-decoration: none;
  transition: 0.2s ease;
}

/* line 703, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-field__value--link:hover {
  text-decoration: underline;
}

/* line 708, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-field__value--empty {
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

/* line 712, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .contact-field__value--empty {
  color: rgba(20, 13, 35, 0.4);
}

/* line 722, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.comments-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 728, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.comment-item {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  border-left: 3px solid #C38761;
}

/* line 735, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .comment-item {
  background: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.06);
  border-left-color: #C38761;
}

/* line 742, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.comment-item__content {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 8px;
  word-break: break-word;
}

/* line 749, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.comment-item__date {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* line 756, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .comment-item__date {
  color: rgba(20, 13, 35, 0.4);
}

/* line 760, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.comment-item__date i {
  font-size: 0.65rem;
}

/* line 769, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.appointments-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 775, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.appointment-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  transition: 0.2s ease;
}

/* line 785, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .appointment-item {
  background: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.06);
}

/* line 790, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.appointment-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* line 793, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .appointment-item:hover {
  background: rgba(20, 13, 35, 0.04);
}

/* line 799, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.appointment-item__date {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.2) 0%, rgba(195, 135, 97, 0.1) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* line 811, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.appointment-item__day {
  font-size: 1.1rem;
  font-weight: 700;
  color: #C38761;
  line-height: 1;
}

/* line 818, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.appointment-item__month {
  font-size: 0.6rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
}

/* line 824, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .appointment-item__month {
  color: rgba(20, 13, 35, 0.6);
}

/* line 829, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.appointment-item__info {
  flex: 1;
  min-width: 0;
}

/* line 834, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.appointment-item__title {
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 843, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.appointment-item__meta {
  display: flex;
  gap: 12px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* line 849, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .appointment-item__meta {
  color: rgba(20, 13, 35, 0.5);
}

/* line 853, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.appointment-item__meta i {
  margin-right: 4px;
  font-size: 0.7rem;
}

/* line 859, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.appointment-item__status {
  flex-shrink: 0;
}

/* line 864, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 874, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.status-badge--a_venir {
  background: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.3);
}

/* line 880, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.status-badge--termine {
  background: rgba(52, 152, 219, 0.2);
  color: #3498db;
  border: 1px solid rgba(52, 152, 219, 0.3);
}

/* line 886, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.status-badge--abandonne {
  background: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.3);
}

/* line 897, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.crm-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

/* line 905, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.crm-empty-state--compact {
  padding: 24px 16px;
}

/* line 910, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.empty-state__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

/* line 921, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .empty-state__icon {
  background: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 926, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.empty-state__icon--linkedin {
  background: rgba(0, 119, 181, 0.1);
  border-color: rgba(0, 119, 181, 0.2);
}

/* line 931, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.empty-state__icon i {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.3);
}

/* line 935, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .empty-state__icon i {
  color: rgba(20, 13, 35, 0.3);
}

/* line 941, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.empty-state__text {
  margin: 0 0 16px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* line 946, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .empty-state__text {
  color: rgba(20, 13, 35, 0.5);
}

/* line 951, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.empty-state__action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.2) 0%, rgba(195, 135, 97, 0.1) 100%);
  border: 1px solid rgba(195, 135, 97, 0.3);
  color: #C38761;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

/* line 965, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.empty-state__action:hover {
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.3) 0%, rgba(195, 135, 97, 0.2) 100%);
  transform: translateY(-1px);
}

/* line 970, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.empty-state__action i {
  font-size: 0.7rem;
}

/* line 979, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.icon-btn {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  transition: 0.2s ease;
  text-decoration: none;
}

/* line 994, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .icon-btn {
  background: rgba(20, 13, 35, 0.06);
  border-color: rgba(20, 13, 35, 0.12);
  color: rgba(20, 13, 35, 0.7);
}

/* line 1000, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.icon-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

/* line 1004, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .icon-btn:hover {
  background: rgba(20, 13, 35, 0.12);
  color: #140D23;
}

/* line 1010, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.icon-btn--edit:hover {
  color: #C38761;
  border-color: rgba(195, 135, 97, 0.3);
}

/* line 1016, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.icon-btn--delete:hover {
  background: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
  border-color: rgba(231, 76, 60, 0.3);
}

/* line 1028, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.see-more-btn {
  width: 100%;
  margin-top: 12px;
  padding: 10px;
  background: transparent;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  font-size: 0.75rem;
  cursor: pointer;
  transition: 0.2s ease;
}

/* line 1040, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .see-more-btn {
  border-color: rgba(20, 13, 35, 0.15);
  color: rgba(20, 13, 35, 0.6);
}

/* line 1045, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.see-more-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(195, 135, 97, 0.3);
  color: #C38761;
}

/* line 1050, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .see-more-btn:hover {
  background: rgba(20, 13, 35, 0.03);
}

/* line 1060, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.page-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
}

/* line 1068, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .page-actions {
  border-top-color: rgba(20, 13, 35, 0.08);
}

@media (max-width: 480px) {
  /* line 1060, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
  .page-actions {
    flex-direction: column;
  }
  /* line 1075, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
  .page-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* line 1082, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.inline-form {
  display: inline;
}

/* line 1090, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
  border: none;
  text-decoration: none;
}

/* line 1103, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.btn i {
  font-size: 0.8rem;
}

/* line 1107, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.btn--primary {
  background: linear-gradient(135deg, #C38761 0%, #af6c42 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(195, 135, 97, 0.3);
}

/* line 1112, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(195, 135, 97, 0.4);
}

/* line 1118, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* line 1123, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .btn--secondary {
  background: rgba(20, 13, 35, 0.06);
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 1129, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* line 1132, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.contact-show-capsule.lightmode .btn--secondary:hover {
  background: rgba(20, 13, 35, 0.1);
}

/* line 1138, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.btn--success {
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  color: white;
}

/* line 1142, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.btn--success:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

/* line 1148, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.btn--danger {
  background: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.25);
}

/* line 1153, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.btn--danger:hover {
  background: rgba(231, 76, 60, 0.25);
}

/* line 1158, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.btn--small {
  padding: 6px 12px;
  font-size: 0.75rem;
}

/* line 1168, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 20px;
}

/* line 1182, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.modal-overlay.active {
  display: flex;
  animation: fadeIn 0.2s ease;
}

/* line 1188, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.modal-overlay .modal-content {
  background: linear-gradient(180deg, rgba(50, 50, 55, 0.98) 0%, rgba(40, 40, 45, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  opacity: 0;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 1202, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.modal-overlay.active .modal-content {
  transform: translateY(0);
  opacity: 1;
}

/* line 1207, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 1215, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.modal-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
}

/* line 1222, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.modal-close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}

/* line 1236, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.modal-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

/* line 1242, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.modal-body {
  padding: 24px;
}

/* line 1250, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.form-field {
  margin-bottom: 20px;
}

/* line 1253, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.form-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 1264, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.form-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: white;
  font-size: 0.9rem;
  transition: 0.2s ease;
  box-sizing: border-box;
}

/* line 1275, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.form-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

/* line 1279, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.form-input:focus {
  outline: none;
  border-color: #C38761;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.15);
}

/* line 1286, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.form-input--textarea {
  min-height: 100px;
  resize: vertical;
}

/* line 1291, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.form-input--file {
  padding: 10px;
}

/* line 1296, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.form-hint {
  display: block;
  margin-top: 6px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
}

/* line 1303, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.form-error {
  margin-top: 8px;
  padding: 10px 12px;
  background: rgba(231, 76, 60, 0.15);
  border: 1px solid rgba(231, 76, 60, 0.25);
  border-radius: 8px;
  color: #e74c3c;
  font-size: 0.8rem;
}

/* line 1313, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 1322, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.photo-preview {
  margin-top: 12px;
  border-radius: 10px;
  overflow: hidden;
}

/* line 1327, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/../contacts_management/_show_contact.scss */
.photo-preview img {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.05);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Styles spécifiques pour les customers si nécessaire */
/* line 17, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_show_customer.scss */
.prospect-container[data-controller*="customer-manager"] {
  /* Styles spécifiques aux customers */
  /* Styles pour le bouton "Créer un devis" */
}

/* line 21, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_show_customer.scss */
.prospect-container[data-controller*="customer-manager"] .prospect-actions {
  /* Styles pour le message d'alerte de validation - affiché au-dessus du bouton */
}

/* line 22, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_show_customer.scss */
.prospect-container[data-controller*="customer-manager"] .prospect-actions .btn-primary, .prospect-container[data-controller*="customer-manager"] .prospect-actions .crm-action-button.crm-action-button-primary {
  background-color: #E5A82E;
  border: 1px solid #E5A82E;
  color: #140D23;
}

/* line 27, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_show_customer.scss */
.prospect-container[data-controller*="customer-manager"] .prospect-actions .btn-primary:hover, .prospect-container[data-controller*="customer-manager"] .prospect-actions .crm-action-button.crm-action-button-primary:hover {
  background-color: #c78d19;
  border-color: #c78d19;
}

/* line 32, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_show_customer.scss */
.show-prospect-capsule.lightmode .prospect-container[data-controller*="customer-manager"] .prospect-actions .btn-primary, .show-prospect-capsule.lightmode .prospect-container[data-controller*="customer-manager"] .prospect-actions .crm-action-button.crm-action-button-primary {
  background-color: #E5A82E;
  border-color: #E5A82E;
}

/* line 36, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_show_customer.scss */
.show-prospect-capsule.lightmode .prospect-container[data-controller*="customer-manager"] .prospect-actions .btn-primary:hover, .show-prospect-capsule.lightmode .prospect-container[data-controller*="customer-manager"] .prospect-actions .crm-action-button.crm-action-button-primary:hover {
  background-color: #c78d19;
  border-color: #c78d19;
}

/* line 44, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_show_customer.scss */
.prospect-container[data-controller*="customer-manager"] .prospect-actions .quote-button-wrapper {
  position: relative;
  display: inline-block;
}

/* line 48, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_show_customer.scss */
.prospect-container[data-controller*="customer-manager"] .prospect-actions .quote-button-wrapper .quote-validation-message {
  position: absolute;
  top: -150px;
  right: 0;
  min-width: 300px;
  max-width: 400px;
  z-index: 1000;
  animation: slideUp 0.3s ease;
  display: none;
  white-space: normal;
  word-wrap: break-word;
}

/* line 60, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_show_customer.scss */
.prospect-container[data-controller*="customer-manager"] .prospect-actions .quote-button-wrapper .quote-validation-message.visible {
  display: block;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Styles pour les badges de statut des customers */
/* line 81, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_show_customer.scss */
.status-badge.available {
  background-color: rgba(46, 204, 113, 0.1);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.3);
}

/* line 86, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_show_customer.scss */
.show-prospect-capsule.lightmode .status-badge.available {
  background-color: rgba(46, 204, 113, 0.15);
  color: #27ae60;
  border: 1px solid rgba(46, 204, 113, 0.4);
}

/* line 93, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_show_customer.scss */
.status-badge.archived {
  background-color: rgba(149, 165, 166, 0.1);
  color: #95a5a6;
  border: 1px solid rgba(149, 165, 166, 0.3);
}

/* line 98, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_show_customer.scss */
.show-prospect-capsule.lightmode .status-badge.archived {
  background-color: rgba(149, 165, 166, 0.15);
  color: #7f8c8d;
  border: 1px solid rgba(149, 165, 166, 0.4);
}

/* Styles pour la gestion des contrats du module CRM */
/* ==========================================================================
   CONTRACT LIST - MODULE CRM
   Structure principale et composants pour la gestion des contrats
   ========================================================================== */
/* ==========================================================================
   LAYOUT PRINCIPAL - Structure générale du module
   ========================================================================== */
/* line 9, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list {
  width: 100%;
  height: 98%;
}

/* line 13, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-capsule {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-right: 15px;
  font-size: 0.8rem;
  gap: 10px;
  overflow: hidden;
}

/* line 25, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-capsule.lightmode {
  color: #140D23;
}

/* line 29, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-capsule.nightmode {
  color: #FFFFFF;
}

/* line 34, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 40, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-capsule span {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* Variations de thème clair/sombre */
/* line 47, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-capsule.lightmode span {
  color: #C38761;
}

/* line 51, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-capsule.nightmode span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 55, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-capsule.lightmode p {
  color: #140D23;
}

/* line 59, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-capsule.nightmode p {
  color: #FFFFFF;
}

/* line 63, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-capsule.lightmode i {
  color: #140D23;
}

/* line 67, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-capsule.nightmode i {
  color: #FFFFFF;
}

/* ==========================================================================
   SECTION SUPÉRIEURE - Recherche et liste des contrats
   ========================================================================== */
/* line 75, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-upper-section {
  width: 100%;
  flex: 1;
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

/* ==========================================================================
   BARRE SUPÉRIEURE - Recherche et bouton création
   ========================================================================== */
/* line 89, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-row1 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
  min-height: 40px;
}

/* Styles pour les informations de recherche */
/* line 100, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-search-info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 15px;
}

/* line 110, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-search-info.lightmode {
  background-color: rgba(195, 135, 97, 0.1);
  color: #140D23;
}

/* line 115, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-search-info.nightmode {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

/* line 120, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-search-info span {
  font-weight: 500;
}

/* line 125, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-reset-search-link {
  color: #C38761;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  transition: all 0.2s ease;
}

/* line 134, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-reset-search-link:hover {
  color: #fd7e14;
  text-decoration: underline;
}

/* line 139, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-reset-search-link i {
  font-size: 12px;
}

/* Bannière d'information sur la recherche en cours */
/* line 145, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-search-info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: #FFFFFF;
  margin-bottom: -10px;
  z-index: 5;
}

/* line 155, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-capsule.lightmode .crm-contract-list-search-info {
  color: #140D23;
}

/* line 159, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-search-info span {
  opacity: 0.8;
}

/* line 163, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-search-info .crm-contract-list-reset-search-link {
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s ease;
}

/* line 174, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-capsule.lightmode .crm-contract-list-search-info .crm-contract-list-reset-search-link {
  color: #140D23;
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 179, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-search-info .crm-contract-list-reset-search-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 182, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-capsule.lightmode .crm-contract-list-search-info .crm-contract-list-reset-search-link:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* line 189, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-tabs {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

/* ==========================================================================
   CONTENEUR DU TABLEAU - Structure du tableau des contrats
   ========================================================================== */
/* line 202, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-table-container {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 15px;
  overflow: hidden;
}

/* line 212, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-capsule.lightmode .crm-contract-list-table-container {
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 217, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-row2-list {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

/* ==========================================================================
   EN-TÊTE DU TABLEAU - Titres des colonnes et tri
   ========================================================================== */
/* line 230, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-row2-list-head {
  width: 97%;
  display: flex;
  padding-right: 8px;
  flex-direction: row;
  font-weight: bold;
  font-size: 0.75rem;
  margin-bottom: 5px;
  color: #FFFFFF;
}

/* line 240, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-capsule.lightmode .crm-contract-list-row2-list-head {
  color: #140D23;
}

/* line 245, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-row2-list-head .crm-contract-list-row2-list-column {
  width: 20%;
  text-align: center;
  justify-content: center;
}

/* line 250, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-row2-list-head .crm-contract-list-row2-list-column.sortable {
  cursor: pointer;
  transition: background-color 0.2s ease;
}

/* line 254, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-row2-list-head .crm-contract-list-row2-list-column.sortable:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

/* line 257, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-capsule.lightmode .crm-contract-list-row2-list-head .crm-contract-list-row2-list-column.sortable:hover {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 262, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-row2-list-head .crm-contract-list-row2-list-column.sortable .sort-link {
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 100%;
  height: 100%;
}

/* line 272, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-capsule.lightmode .crm-contract-list-row2-list-head .crm-contract-list-row2-list-column.sortable .sort-link {
  color: #140D23;
}

/* line 276, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-row2-list-head .crm-contract-list-row2-list-column.sortable .sort-link i {
  font-size: 0.6rem !important;
}

/* line 279, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-capsule.lightmode .crm-contract-list-row2-list-head .crm-contract-list-row2-list-column.sortable .sort-link i {
  color: #140D23 !important;
}

/* Styles communs pour les colonnes */
/* line 288, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-row2-list-column {
  display: flex;
  align-items: center;
  font-size: 0.7rem;
  padding: 5px 10px;
}

/* ==========================================================================
   CORPS DU TABLEAU - Liste des contrats avec défilement
   ========================================================================== */
/* line 299, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-row2-list-entries {
  width: 100%;
  height: calc(100% - 30px);
  display: flex;
  gap: 5px;
  flex-direction: column;
  overflow-y: auto;
}

/* line 307, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-row2-list-entries::-webkit-scrollbar {
  width: 8px;
}

/* line 311, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-row2-list-entries::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 315, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-capsule.lightmode .crm-contract-list-row2-list-entries::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 320, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-row2-list-entries::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 325, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-row2-list-entries::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 328, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-capsule.lightmode .crm-contract-list-row2-list-entries::-webkit-scrollbar-thumb:hover {
  background: #140D23;
}

/* Lignes du tableau des contrats */
/* line 335, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-row2-list-entry {
  width: 97%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  font-size: 0.7rem;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 2px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 40px;
  padding: 3px 0;
  margin-bottom: 2px;
  color: #FFFFFF;
}

/* line 353, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-capsule.lightmode .crm-contract-list-row2-list-entry {
  color: #140D23;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 2px;
}

/* line 358, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-row2-list-entry:hover {
  transform: scale(1.01);
  transition: transform 0.3s ease;
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 363, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-capsule.lightmode .crm-contract-list-row2-list-entry:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 368, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-row2-list-entry .crm-contract-list-row2-list-column {
  width: 20%;
  text-align: center;
  justify-content: center;
}

/* Message quand aucun contrat n'est trouvé */
/* line 376, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.no-results {
  width: 100%;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-top: 10px;
}

/* line 386, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-capsule.lightmode .no-results {
  color: #140D23;
  background-color: rgba(20, 13, 35, 0.05);
}

/* ==========================================================================
   SECTION INFÉRIEURE - Templates de contrats (repliée par défaut)
   ========================================================================== */
/* line 396, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-lower-section {
  width: 100%;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

/* line 407, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-capsule.lightmode .crm-contract-list-lower-section {
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 411, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-lower-section.expanded {
  min-height: 300px;
}

/* ==========================================================================
   BOUTON TOGGLE DES TEMPLATES - En-tête cliquable
   ========================================================================== */
/* line 420, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-templates-toggle {
  width: 100%;
  min-height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  background-color: rgba(255, 255, 255, 0.05);
}

/* line 431, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-capsule.lightmode .crm-contract-list-templates-toggle {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 435, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-templates-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 438, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-capsule.lightmode .crm-contract-list-templates-toggle:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 442, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-templates-toggle:hover i {
  color: #C38761;
}

/* line 447, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-templates-toggle h3, .crm-contract-list-templates-toggle .h3 {
  all: unset;
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFFFFF;
  text-align: center;
  letter-spacing: 0.5px;
}

/* line 455, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-capsule.lightmode .crm-contract-list-templates-toggle h3, .crm-contract-list-capsule.lightmode .crm-contract-list-templates-toggle .h3 {
  color: #140D23;
}

/* line 460, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-templates-toggle i {
  font-size: 0.8rem;
  color: #FFFFFF;
  transition: all 0.3s ease-in-out;
}

/* line 465, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-capsule.lightmode .crm-contract-list-templates-toggle i {
  color: #140D23;
}

/* line 470, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-templates-toggle.expanded i {
  transform: rotate(180deg);
}

/* ==========================================================================
   CONTENU DES TEMPLATES - Section extensible
   ========================================================================== */
/* line 479, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-templates-content {
  width: 100%;
  max-height: 0;
  overflow: auto;
  transition: max-height 0.3s ease-in-out;
  background-color: rgba(255, 255, 255, 0.05);
}

/* line 486, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-capsule.lightmode .crm-contract-list-templates-content {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 490, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-templates-content.expanded {
  max-height: 500px;
}

/* line 494, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-templates-content::-webkit-scrollbar {
  width: 8px;
}

/* line 498, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-templates-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 503, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-templates-content::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 508, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.crm-contract-list-templates-content::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* ==========================================================================
   MODÈLES DE CONTRATS - Styles partagés via contract_template_index (ADV)
   Les classes .contract-template-index-* sont définies dans le SCSS ADV importé.
   ========================================================================== */
/* ==========================================================================
   BOUTON DE CRÉATION
   ========================================================================== */
/* line 522, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.form-button, .users-management-container .users-header .add-user-btn, .crm-action-button {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  border: none;
  cursor: pointer;
  background-color: #C38761;
  color: #FFFFFF;
}

/* line 537, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.form-button:hover, .users-management-container .users-header .add-user-btn:hover, .crm-action-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Classes utilitaires */
/* line 544, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_list.scss */
.d-none {
  display: none !important;
}

/* line 4, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_document_validation_alerts.scss */
.quote-button-wrapper {
  position: relative;
  display: inline-block;
}

/* line 9, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_document_validation_alerts.scss */
.quote-validation-alert,
.adv-contract-validation-alert {
  position: absolute;
  top: -8px;
  right: -8px;
  z-index: 10;
}

/* line 17, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_document_validation_alerts.scss */
.quote-validation-icon,
.adv-contract-validation-icon {
  color: #f59e0b;
  cursor: pointer;
  font-size: 0.9rem;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 50%;
  padding: 5px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}

/* line 33, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_document_validation_alerts.scss */
.quote-validation-icon:hover,
.adv-contract-validation-icon:hover {
  background: rgba(245, 158, 11, 0.25);
  border-color: rgba(245, 158, 11, 0.5);
}

/* line 38, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_document_validation_alerts.scss */
.lightmode .quote-validation-icon, .lightmode .adv-contract-validation-icon {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.25);
}

/* line 42, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_document_validation_alerts.scss */
.lightmode .quote-validation-icon:hover, .lightmode .adv-contract-validation-icon:hover {
  background: rgba(245, 158, 11, 0.2);
  border-color: rgba(245, 158, 11, 0.4);
}

/* line 49, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_document_validation_alerts.scss */
.quote-validation-message,
.adv-contract-validation-message {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 300px;
  max-width: 400px;
  z-index: 1000;
  animation: slideDown 0.3s ease;
  display: none;
}

/* line 60, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_document_validation_alerts.scss */
.quote-validation-message.visible,
.adv-contract-validation-message.visible {
  display: block;
}

/* line 65, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_document_validation_alerts.scss */
.quote-validation-message.above-button,
.adv-contract-validation-message.above-button {
  top: auto;
  bottom: calc(100% + 10px);
  animation: slideUp 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* line 94, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_document_validation_alerts.scss */
.quote-validation-message-content,
.adv-contract-validation-message-content {
  background-color: rgba(245, 158, 11, 0.1);
  border: 2px solid #f59e0b;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.875rem;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

/* line 108, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_document_validation_alerts.scss */
.quote-validation-message-content span,
.adv-contract-validation-message-content span {
  font-size: 0.8rem;
  text-align: center;
  color: #FFFFFF;
}

/* line 114, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_document_validation_alerts.scss */
.quote-validation-message-content i,
.adv-contract-validation-message-content i {
  color: #f59e0b;
  margin-right: 6px;
}

/* line 120, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_document_validation_alerts.scss */
.lightmode .quote-validation-message-content, .lightmode .adv-contract-validation-message-content {
  background-color: rgba(245, 158, 11, 0.15);
  border-color: #f59e0b;
}

/* line 124, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_document_validation_alerts.scss */
.lightmode .quote-validation-message-content span, .lightmode .adv-contract-validation-message-content span {
  color: #140D23;
}

/* line 130, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_document_validation_alerts.scss */
.quote-validation-link,
.adv-contract-validation-link {
  color: #f59e0b;
  text-decoration: underline;
  font-weight: 500;
  margin-top: 4px;
  display: inline-block;
  transition: color 0.2s ease;
}

/* line 139, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_document_validation_alerts.scss */
.quote-validation-link:hover,
.adv-contract-validation-link:hover {
  color: #FF9800;
  text-decoration: none;
}

/* line 145, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_document_validation_alerts.scss */
.lightmode .quote-validation-link, .lightmode .adv-contract-validation-link {
  color: #c57f08;
}

/* line 148, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_document_validation_alerts.scss */
.lightmode .quote-validation-link:hover, .lightmode .adv-contract-validation-link:hover {
  color: #cc7a00;
}

/* line 157, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_document_validation_alerts.scss */
.quote-button-wrapper .crm-button-regular.adv-button-disabled, .quote-button-wrapper .adv-button-disabled.crm-back-button,
.adv-contract-button-wrapper .crm-button-regular.adv-button-disabled,
.adv-contract-button-wrapper .adv-button-disabled.crm-back-button {
  background-color: rgba(128, 128, 128, 0.3);
  border-color: rgba(128, 128, 128, 0.5);
  color: rgba(255, 255, 255, 0.6);
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: none;
}

/* line 165, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_document_validation_alerts.scss */
.lightmode .quote-button-wrapper .crm-button-regular.adv-button-disabled, .lightmode .quote-button-wrapper .adv-button-disabled.crm-back-button, .lightmode .adv-contract-button-wrapper .crm-button-regular.adv-button-disabled, .lightmode .adv-contract-button-wrapper .adv-button-disabled.crm-back-button {
  background-color: rgba(128, 128, 128, 0.2);
  border-color: rgba(128, 128, 128, 0.4);
  color: rgba(20, 13, 35, 0.5);
}

/* line 171, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_document_validation_alerts.scss */
.quote-button-wrapper .crm-button-regular.adv-button-disabled:hover, .quote-button-wrapper .adv-button-disabled.crm-back-button:hover,
.adv-contract-button-wrapper .crm-button-regular.adv-button-disabled:hover,
.adv-contract-button-wrapper .adv-button-disabled.crm-back-button:hover {
  background-color: rgba(128, 128, 128, 0.3);
  transform: none;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.6);
}

/* line 177, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_document_validation_alerts.scss */
.lightmode .quote-button-wrapper .crm-button-regular.adv-button-disabled:hover, .lightmode .quote-button-wrapper .adv-button-disabled.crm-back-button:hover, .lightmode .adv-contract-button-wrapper .crm-button-regular.adv-button-disabled:hover, .lightmode .adv-contract-button-wrapper .adv-button-disabled.crm-back-button:hover {
  background-color: rgba(128, 128, 128, 0.2);
  color: rgba(20, 13, 35, 0.5);
}

/* line 186, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_document_validation_alerts.scss */
.adv-contract-button-wrapper {
  margin-right: 10px;
  overflow: visible;
}

@media (max-width: 768px) {
  /* line 193, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_document_validation_alerts.scss */
  .quote-validation-message,
.adv-contract-validation-message {
    min-width: 250px;
    max-width: 300px;
    right: auto;
    left: 0;
  }
}

/* line 3, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-show-contract-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 20px;
  overflow-y: auto;
  overflow-x: hidden;
  /* Personnalisation de la barre de défilement */
}

/* line 14, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-show-contract-container::-webkit-scrollbar {
  width: 8px;
}

/* line 18, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-show-contract-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 23, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-show-contract-container::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 28, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-show-contract-container::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 32, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-show-contract-container.lightmode {
  color: #140D23;
}

/* line 37, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-show-contract-main-content {
  display: flex;
  height: 100%;
  flex-direction: row;
  gap: 30px;
  align-items: flex-start;
  width: 100%;
}

/* line 46, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-show-contract-capsule {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-width: 0;
  width: 100%;
  height: 100%;
}

/* line 58, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.lightmode .crm-show-contract-capsule {
  color: #140D23;
}

/* line 64, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-contract-header-tabs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

/* line 71, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-contract-info-header {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 5px;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

/* line 79, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.lightmode .crm-contract-info-header {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 83, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-contract-info-header .crm-header-section, .crm-contract-info-header .crm-contract-number-section,
.crm-contract-info-header .crm-market-type-section {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  justify-content: flex-start;
  white-space: nowrap;
}

/* line 91, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-contract-info-header .crm-header-section .crm-label, .crm-contract-info-header .crm-contract-number-section .crm-label,
.crm-contract-info-header .crm-market-type-section .crm-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  display: block;
}

/* line 96, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.lightmode .crm-contract-info-header .crm-header-section .crm-label, .lightmode .crm-contract-info-header .crm-contract-number-section .crm-label,
.lightmode .crm-contract-info-header .crm-market-type-section .crm-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 101, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-contract-info-header .crm-header-section .crm-value, .crm-contract-info-header .crm-contract-number-section .crm-value,
.crm-contract-info-header .crm-market-type-section .crm-value {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
}

/* line 106, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.lightmode .crm-contract-info-header .crm-header-section .crm-value, .lightmode .crm-contract-info-header .crm-contract-number-section .crm-value,
.lightmode .crm-contract-info-header .crm-market-type-section .crm-value {
  color: #140D23;
}

/* line 111, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-contract-info-header .crm-header-section.crm-recipient-name-section, .crm-contract-info-header .crm-recipient-name-section.crm-contract-number-section,
.crm-contract-info-header .crm-recipient-name-section.crm-market-type-section {
  text-align: center;
}

/* line 114, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-contract-info-header .crm-header-section.crm-recipient-name-section .crm-value, .crm-contract-info-header .crm-recipient-name-section.crm-contract-number-section .crm-value,
.crm-contract-info-header .crm-recipient-name-section.crm-market-type-section .crm-value {
  font-size: 0.8rem;
}

/* line 122, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-contract-tabs {
  display: flex;
  gap: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 127, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.lightmode .crm-contract-tabs {
  border-bottom: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 132, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-tab-button {
  padding: 10px 20px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 2px solid transparent;
}

/* line 143, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.lightmode .crm-tab-button {
  color: rgba(20, 13, 35, 0.6);
}

/* line 147, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-tab-button:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* line 150, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.lightmode .crm-tab-button:hover {
  color: rgba(20, 13, 35, 0.8);
}

/* line 155, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-tab-button.active {
  color: #C38761;
  border-bottom-color: #C38761;
  font-weight: 600;
}

/* line 163, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-contract-tab-content {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  /* Personnalisation de la barre de défilement */
}

/* line 169, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-contract-tab-content::-webkit-scrollbar {
  width: 4px;
}

/* line 173, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-contract-tab-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 178, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-contract-tab-content::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 183, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-contract-tab-content::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 188, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-tab-panel {
  display: none;
}

/* line 191, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-tab-panel.active {
  display: block;
}

/* line 197, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-tab-content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

/* line 206, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.lightmode .crm-tab-content-header {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 210, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-tab-content-header h3, .crm-tab-content-header .h3 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

/* line 216, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.lightmode .crm-tab-content-header h3, .lightmode .crm-tab-content-header .h3 {
  color: #140D23;
}

/* line 222, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-create-button {
  padding: 8px 16px;
  background-color: #C38761;
  color: #140D23;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

/* line 232, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-create-button:hover {
  background-color: #af6c42;
  transform: translateY(-1px);
}

/* line 238, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-tab-content-body {
  min-height: 200px;
}

/* line 242, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-documents-grid {
  display: grid;
  gap: 10px;
}

/* line 248, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-contract-infos-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 254, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-contract-infos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  width: 100%;
}

/* line 261, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-contract-info-card {
  background: rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 90px;
}

/* line 272, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.lightmode .crm-contract-info-card {
  background: rgba(20, 13, 35, 0.13);
}

/* line 276, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-contract-info-card .crm-contract-card-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #C38761;
  margin-bottom: 0.5rem;
}

/* line 283, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-contract-info-card .crm-contract-card-content {
  font-size: 0.8rem;
  color: #fff;
  font-weight: 500;
  word-break: break-word;
  text-align: center;
}

/* line 290, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.lightmode .crm-contract-info-card .crm-contract-card-content {
  color: #140D23;
}

/* line 297, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-contract-sidebar {
  width: 400px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  height: 100%;
  margin-top: 0;
  transition: all 0.3s ease;
  overflow-y: auto;
}

/* line 307, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.lightmode .crm-contract-sidebar {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 311, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-contract-sidebar::-webkit-scrollbar {
  width: 6px;
}

/* line 314, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-contract-sidebar::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 318, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-contract-sidebar::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 322, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-contract-sidebar::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 326, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-contract-sidebar.hidden {
  display: none;
}

/* line 331, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.contract-documents-section {
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
}

/* line 336, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.contract-documents-section .section-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

/* line 342, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.lightmode .contract-documents-section .section-label {
  color: #140D23;
}

/* line 347, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.contract-documents-section .documents-section-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 352, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.contract-documents-section .documents-section-content .document-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* line 357, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.contract-documents-section .documents-section-content .document-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}

/* line 361, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.lightmode .contract-documents-section .documents-section-content .document-item:not(:last-child) {
  border-bottom: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 366, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.contract-documents-section .documents-section-content .document-item .document-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 370, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.lightmode .contract-documents-section .documents-section-content .document-item .document-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 375, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.contract-documents-section .documents-section-content .document-item .document-value {
  font-size: 0.85rem;
  color: #fff;
}

/* line 379, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.lightmode .contract-documents-section .documents-section-content .document-item .document-value {
  color: #140D23;
}

/* line 384, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.contract-documents-section .documents-section-content .document-item .crm-document-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
}

/* line 398, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.contract-documents-section .documents-section-content .document-item .crm-document-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.3);
}

/* line 404, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.lightmode .contract-documents-section .documents-section-content .document-item .crm-document-link {
  border: 1px solid rgba(20, 13, 35, 0.2);
  background-color: rgba(20, 13, 35, 0.05);
  color: #140D23;
}

/* line 409, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.lightmode .contract-documents-section .documents-section-content .document-item .crm-document-link:hover {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 419, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.schedule-view-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #C38761;
  text-decoration: underline;
  font-size: 0.8rem;
  transition: opacity 0.2s ease;
}

/* line 428, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.schedule-view-link:hover {
  opacity: 0.8;
}

/* line 432, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-contract-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  padding: 0;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  background: none;
}

/* line 443, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.lightmode .crm-contract-actions {
  border-top: 1px solid rgba(20, 13, 35, 0.12);
}

/* line 448, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-action-button {
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* line 461, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-action-button.crm-action-button-primary {
  background: #C38761;
  color: #140D23;
}

/* line 465, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-action-button.crm-action-button-primary:hover {
  background: #af6c42;
  transform: translateY(-1px);
}

/* line 471, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-action-button.crm-action-button-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 476, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.lightmode .crm-action-button.crm-action-button-secondary {
  background: rgba(20, 13, 35, 0.1);
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 482, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-action-button.crm-action-button-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

/* line 486, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.lightmode .crm-action-button.crm-action-button-secondary:hover {
  background: rgba(20, 13, 35, 0.2);
}

/* line 491, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-action-button.crm-action-button-secondary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* line 500, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
}

/* line 508, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.status-badge.success {
  background-color: #4CAF50;
  color: white;
}

/* line 513, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.status-badge.warning {
  background-color: #FF9800;
  color: white;
}

/* line 518, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.status-badge.info {
  background-color: #2196F3;
  color: white;
}

/* line 523, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.status-badge.danger {
  background-color: #f44336;
  color: white;
}

/* line 528, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.status-badge.secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

/* line 533, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.status-badge.active {
  background-color: #4CAF50;
  color: white;
}

/* line 538, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.status-badge.inactive {
  background-color: #f44336;
  color: white;
}

/* line 545, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-value {
  color: #C38761;
  font-weight: 500;
}

/* line 551, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-button-regular, .crm-back-button {
  padding: 8px 16px;
  background-color: #E5A82E;
  color: #140D23;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

/* line 566, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-button-regular:hover, .crm-back-button:hover {
  background-color: #c78d19;
  transform: translateY(-1px);
}

/* line 572, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-button-small, .crm-back-button {
  padding: 6px 12px;
  font-size: 0.75rem;
}

/* line 577, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-cancel-button {
  padding: 8px 16px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

/* line 592, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.lightmode .crm-cancel-button {
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 598, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-cancel-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

/* line 602, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.lightmode .crm-cancel-button:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* line 608, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-back-button {
  padding: 8px 16px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

/* line 623, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.lightmode .crm-back-button {
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 629, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-back-button:hover:not(:disabled) {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

/* line 633, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.lightmode .crm-back-button:hover:not(:disabled) {
  background-color: rgba(20, 13, 35, 0.2);
}

/* line 638, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
.crm-back-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 768px) {
  /* line 651, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
  .crm-show-contract-main-content {
    flex-direction: column;
  }
  /* line 655, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
  .crm-contract-sidebar {
    width: 100%;
  }
  /* line 659, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
  .crm-contract-tabs {
    flex-wrap: wrap;
  }
  /* line 663, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_show_contract.scss */
  .crm-tab-button {
    flex: 1;
    min-width: 120px;
  }
}

/* line 1, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-capsule {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 10px 20px 10px 20px;
  font-size: 1rem;
  gap: 10px;
}

/* line 12, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-capsule.lightmode {
  color: #140D23;
}

/* line 14, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-capsule.lightmode .discount-input {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 18, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-capsule.lightmode .price-input {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 22, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-capsule.lightmode .price-ttc-container {
  color: #140D23;
}

/* line 25, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-capsule.lightmode .edit-contract-transaction-choice {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 29, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-capsule.lightmode .search-input {
  border-color: transparent !important;
}

/* line 31, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-capsule.lightmode .search-input:focus {
  border-color: transparent !important;
  box-shadow: none !important;
}

/* line 36, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-capsule.lightmode .recipient-choice {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 40, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-capsule.lightmode #publicMarket {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 44, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-capsule.lightmode #privateMarket {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 50, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-capsule .form-group {
  margin: 0;
}

/* line 54, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-capsule form {
  display: flex !important;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  align-items: center;
  height: 100%;
}

/* Card de Configuration */
/* line 65, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-configuration-card {
  width: 100%;
  max-width: 1400px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

/* line 77, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.lightmode .crm-edit-contract-configuration-card {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.08) 0%, rgba(20, 13, 35, 0.03) 100%);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 83, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-config-header {
  text-align: center;
  margin-bottom: 30px;
}

/* line 87, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-config-header h2, .crm-edit-contract-config-header .h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

/* line 93, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.lightmode .crm-edit-contract-config-header h2, .lightmode .crm-edit-contract-config-header .h2 {
  color: #140D23;
}

/* line 98, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-config-header p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 102, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.lightmode .crm-edit-contract-config-header p {
  color: rgba(20, 13, 35, 0.7);
}

/* line 108, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-config-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* line 114, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-config-section {
  width: 100%;
}

/* line 118, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-config-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  /* line 118, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
  .crm-edit-contract-config-row {
    grid-template-columns: 1fr;
  }
}

/* line 128, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-config-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 134, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-config-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 139, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-config-label i {
  font-size: 1.1rem;
  color: #C38761;
}

/* line 144, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-config-label h3, .crm-edit-contract-config-label .h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
}

/* line 150, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.lightmode .crm-edit-contract-config-label h3, .lightmode .crm-edit-contract-config-label .h3 {
  color: #140D23;
}

/* line 156, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-config-select {
  width: auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  color: #FFFFFF;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

/* line 166, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.lightmode .crm-edit-contract-config-select {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 172, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-config-select:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 178, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-config-select option {
  background: #140D23;
  color: #FFFFFF;
}

/* line 184, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-market-type-selector {
  display: flex;
  gap: 12px;
}

/* line 188, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-market-type-selector .crm-edit-contract-market-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 204, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.lightmode .crm-edit-contract-market-type-selector .crm-edit-contract-market-option {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 210, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-market-type-selector .crm-edit-contract-market-option i {
  font-size: 1rem;
  color: #C38761;
}

/* line 215, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-market-type-selector .crm-edit-contract-market-option:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

/* line 220, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.lightmode .crm-edit-contract-market-type-selector .crm-edit-contract-market-option:hover {
  background: rgba(20, 13, 35, 0.12);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 226, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-market-type-selector .crm-edit-contract-market-option.selected {
  background: #C38761;
  border-color: #C38761;
  color: #140D23;
}

/* line 231, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-market-type-selector .crm-edit-contract-market-option.selected i {
  color: #140D23;
}

/* line 238, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-search-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}

/* line 245, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-search-input {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 251, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-search-input .search-form {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

/* line 258, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-search-input i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  z-index: 2;
}

/* line 267, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.lightmode .crm-edit-contract-search-input i {
  color: rgba(20, 13, 35, 0.6);
}

/* line 272, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-search-input button {
  all: unset;
  padding: 8px 12px;
  background: #C38761;
  border-radius: 8px;
  color: #140D23;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 281, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-search-input button:hover {
  background: #864B28;
  transform: scale(1.05);
}

/* line 286, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-search-input button i {
  position: static;
  transform: none;
  color: #140D23;
}

/* Utilise maintenant la classe générique adv-searchbar */
/* line 296, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-search-results {
  min-height: 120px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}

/* line 304, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.lightmode .crm-edit-contract-search-results {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 310, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-search-results .userChoice {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* line 317, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-search-results .userChoice .no-recipient, .crm-edit-contract-search-results .userChoice .no-document {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
}

/* line 324, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.lightmode .crm-edit-contract-search-results .userChoice .no-recipient, .lightmode .crm-edit-contract-search-results .userChoice .no-document {
  color: rgba(20, 13, 35, 0.6);
}

/* line 328, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-search-results .userChoice .no-recipient::before, .crm-edit-contract-search-results .userChoice .no-document::before {
  content: '\f007';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.4);
}

/* line 335, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.lightmode .crm-edit-contract-search-results .userChoice .no-recipient::before, .lightmode .crm-edit-contract-search-results .userChoice .no-document::before {
  color: rgba(20, 13, 35, 0.4);
}

/* Styles pour la section Transaction */
/* line 344, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-transaction-selector {
  display: flex;
  gap: 12px;
}

/* line 348, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-transaction-selector .edit-contract-transaction-choice {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 364, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.lightmode .crm-edit-contract-transaction-selector .edit-contract-transaction-choice {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 370, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-transaction-selector .edit-contract-transaction-choice i {
  font-size: 1rem;
  color: #C38761;
}

/* line 375, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-transaction-selector .edit-contract-transaction-choice:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

/* line 380, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.lightmode .crm-edit-contract-transaction-selector .edit-contract-transaction-choice:hover {
  background: rgba(20, 13, 35, 0.12);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 386, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-transaction-selector .edit-contract-transaction-choice.selected {
  background: #C38761;
  border-color: #C38761;
  color: #140D23;
}

/* line 391, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-transaction-selector .edit-contract-transaction-choice.selected i {
  color: #140D23;
}

/* Styles pour le contenu des transactions */
/* line 399, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-transaction-content {
  margin-top: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
}

/* line 406, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.lightmode .crm-edit-contract-transaction-content {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 412, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-transaction-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

/* line 420, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.lightmode .crm-edit-contract-transaction-info {
  background: rgba(20, 13, 35, 0.08);
}

/* line 424, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-transaction-info i {
  color: #C38761;
  font-size: 1.1rem;
}

/* line 429, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-transaction-info span {
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 500;
}

/* line 434, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.lightmode .crm-edit-contract-transaction-info span {
  color: #140D23;
}

/* line 441, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-document-search h4, .crm-edit-contract-document-search .h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 15px;
}

/* line 447, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.lightmode .crm-edit-contract-document-search h4, .lightmode .crm-edit-contract-document-search .h4 {
  color: #140D23;
}

/* line 452, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-document-search .search-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* line 458, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-document-search .form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 464, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-document-search .filter {
  width: auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  color: #FFFFFF;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

/* line 474, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.lightmode .crm-edit-contract-document-search .filter {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 480, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-document-search .filter:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 486, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-document-search .filter option {
  background: #140D23;
  color: #FFFFFF;
}

/* Styles pour les clauses du contrat */
/* line 494, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-clauses-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  width: 100%;
}

/* Styles pour les sections de clauses existantes */
/* line 502, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-row1-subrow4-preamble,
.crm-edit-contract-row1-subrow4-designation,
.crm-edit-contract-row1-subrow4-contract-object,
.crm-edit-contract-row1-subrow4-duration,
.crm-edit-contract-row1-subrow4-financial-condition,
.crm-edit-contract-row1-subrow4-obligations,
.crm-edit-contract-row1-subrow4-confidentiality,
.crm-edit-contract-row1-subrow4-responsibility,
.crm-edit-contract-row1-subrow4-force-majeure,
.crm-edit-contract-row1-subrow4-termination,
.crm-edit-contract-row1-subrow4-applicable-law,
.crm-edit-contract-row1-subrow4-signatures {
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  gap: 10px;
}

/* line 527, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.lightmode .crm-edit-contract-row1-subrow4-preamble, .lightmode .crm-edit-contract-row1-subrow4-designation, .lightmode .crm-edit-contract-row1-subrow4-contract-object, .lightmode .crm-edit-contract-row1-subrow4-duration, .lightmode .crm-edit-contract-row1-subrow4-financial-condition, .lightmode .crm-edit-contract-row1-subrow4-obligations, .lightmode .crm-edit-contract-row1-subrow4-confidentiality, .lightmode .crm-edit-contract-row1-subrow4-responsibility, .lightmode .crm-edit-contract-row1-subrow4-force-majeure, .lightmode .crm-edit-contract-row1-subrow4-termination, .lightmode .crm-edit-contract-row1-subrow4-applicable-law, .lightmode .crm-edit-contract-row1-subrow4-signatures {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* Boutons d'actions */
/* line 534, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-row2 {
  width: 80%;
  height: 7.5%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
}

/* line 544, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-row2 #fakeSubmitButton {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  border: none;
  cursor: pointer;
  background-color: #C38761;
  color: #140D23;
}

/* line 559, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-row2 #fakeSubmitButton:hover {
  background-color: #864B28;
  transform: scale(1.05);
}

/* line 565, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-row2 form {
  display: flex !important;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  align-items: center;
  height: 100%;
}

/* Classes utilitaires */
/* line 576, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.userChoice {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 15px;
}

/* line 583, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.userChoice .no-recipient, .userChoice .no-document {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-color-primary);
}

/* line 600, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.lightmode .userChoice .no-recipient, .lightmode .userChoice .no-document {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.1) 0%, rgba(20, 13, 35, 0.05) 100%);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 607, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.userChoice .item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* line 621, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.lightmode .userChoice .item {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.1) 0%, rgba(20, 13, 35, 0.05) 100%);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 626, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.userChoice .item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  border-color: rgba(232, 232, 232, 0.6);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

/* line 632, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.lightmode .userChoice .item:hover {
  border-color: rgba(20, 13, 35, 0.4);
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.15) 0%, rgba(20, 13, 35, 0.08) 100%);
}

/* line 638, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.userChoice .item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #C38761, #864B28);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* line 650, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.userChoice .item:hover::before {
  opacity: 1;
}

/* line 654, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.userChoice .item .item-header {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-grow: 1;
}

/* line 660, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.userChoice .item .item-header i {
  color: green;
  font-size: 1rem;
  padding: 8px;
  background-color: rgba(195, 135, 97, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* line 669, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.userChoice .item .item-header p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-color-primary);
  line-height: 1.4;
  transition: color 0.3s ease;
}

/* line 677, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.lightmode .userChoice .item .item-header p {
  color: #140D23;
}

/* line 684, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.userChoice .item:hover .item-header i {
  color: #864B28;
  background-color: rgba(134, 75, 40, 0.15);
  transform: scale(1.1);
}

/* line 690, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.userChoice .item:hover .item-header p {
  color: #FFFFFF;
}

/* line 693, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.lightmode .userChoice .item:hover .item-header p {
  color: #140D23;
}

/* line 699, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.userChoice .item .item-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* line 706, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.userChoice .item .item-actions button {
  all: unset;
  padding: 6px;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-size: 0.7rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 716, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.lightmode .userChoice .item .item-actions button {
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 721, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.userChoice .item .item-actions button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

/* line 725, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.lightmode .userChoice .item .item-actions button:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* line 732, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.userChoice .item:hover .item-actions {
  opacity: 1;
}

/* Style spécifique pour les résultats de recherche de clients/prospects */
/* line 743, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.trash {
  cursor: pointer;
  font-size: 0.8rem;
}

/* line 746, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.trash:hover {
  color: #A60240;
}

/* Responsive */
@media (max-width: 768px) {
  /* line 753, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
  .crm-edit-contract-config-row {
    grid-template-columns: 1fr;
  }
  /* line 757, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
  .crm-edit-contract-market-type-selector {
    flex-direction: column;
  }
  /* line 761, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
  .crm-edit-contract-transaction-selector {
    flex-direction: column;
  }
  /* line 765, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
  .crm-edit-contract-clauses-container {
    grid-template-columns: 1fr;
  }
}

/* Styles hérités pour compatibilité */
/* line 771, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 777, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-capsule span {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 785, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.lightmode .crm-edit-contract-capsule span {
  color: #140D23;
}

/* line 788, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.nightmode .crm-edit-contract-capsule span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 794, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.lightmode .crm-edit-contract-capsule p {
  color: #140D23;
}

/* line 797, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.nightmode .crm-edit-contract-capsule p {
  color: #FFFFFF;
}

/* line 803, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.lightmode .crm-edit-contract-capsule i {
  color: #140D23;
}

/* line 806, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.nightmode .crm-edit-contract-capsule i {
  color: #FFFFFF;
}

/* Styles pour les champs de recherche existants */
/* line 813, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-row1-searchbar {
  width: 100%;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
  height: 30px;
}

/* line 827, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.lightmode .crm-edit-contract-row1-searchbar {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 832, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-row1-searchbar button {
  all: unset;
}

/* line 836, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-row1-searchbar i {
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 841, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.lightmode .crm-edit-contract-row1-searchbar i {
  color: #140D23 !important;
}

/* line 846, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-row1-searchbar span {
  font-weight: normal !important;
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 852, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.lightmode .crm-edit-contract-row1-searchbar span {
  color: #140D23 !important;
}

/* Styles pour les champs de saisie existants */
/* line 859, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-clauses-input {
  all: unset;
  height: auto;
  width: auto;
  background-color: transparent;
  font-size: 0.7rem;
  color: #FFFFFF;
}

/* line 867, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.lightmode .crm-edit-contract-clauses-input {
  color: #140D23;
}

/* line 871, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.crm-edit-contract-clauses-input:focus {
  all: unset;
  height: auto;
  width: auto;
  background-color: transparent;
  font-size: 0.7rem;
  color: #FFFFFF;
}

/* line 879, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.lightmode .crm-edit-contract-clauses-input:focus {
  color: #140D23;
}

/* Styles pour les sélecteurs existants */
/* line 886, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
select {
  all: unset;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: normal;
  padding: 5px 15px;
}

/* line 899, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.lightmode select {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 904, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
select:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 908, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.lightmode select:focus {
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 914, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
select option {
  all: unset;
  background-color: #E8E8E8;
  color: #000000;
}

/* Styles pour les champs de recherche existants */
/* line 922, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.search-input {
  all: unset;
  height: 100%;
  width: 100%;
  background-color: transparent;
  font-size: 0.7rem;
  padding: 5px 10px;
  border-radius: 30px;
  font-weight: bold;
  color: #FFFFFF;
}

/* line 934, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.lightmode .search-input {
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 939, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-weight: normal;
}

/* line 943, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.lightmode .search-input::placeholder {
  color: rgba(20, 13, 35, 0.5);
}

/* line 948, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.search-input:focus {
  all: unset;
  height: 100%;
  width: 100%;
  background-color: transparent;
  font-size: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 5px 10px;
  border-radius: 30px;
  font-weight: bold;
  color: #FFFFFF;
}

/* line 960, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
.lightmode .search-input:focus {
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 967, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_edit_contract.scss */
textarea.search-input {
  min-height: 60px;
  resize: vertical;
  border-radius: 10px;
  padding: 10px;
  font-family: inherit;
  line-height: 1.4;
}

/* line 1, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-capsule {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 30px 10px 30px;
  font-size: 0.8rem;
  gap: 10px;
}

/* line 11, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-capsule .form-group {
  margin: 0;
}

/* line 15, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-capsule.lightmode {
  color: #140D23;
}

/* line 17, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-capsule.lightmode h2, .crm-new-contract-template-capsule.lightmode .h2 {
  color: #140D23 !important;
}

/* line 20, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-capsule.lightmode ul {
  color: #140D23 !important;
}

/* line 23, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-capsule.lightmode strong {
  color: #140D23 !important;
}

/* line 26, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-capsule.lightmode label {
  color: #140D23 !important;
}

/* line 29, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-capsule.lightmode #contract_template_title {
  color: #140D23 !important;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 33, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-capsule.lightmode .crm-new-contract-template-keywords {
  color: #C38761 !important;
}

/* line 38, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-capsule.nightmode {
  color: #FFFFFF;
}

/* line 42, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-main-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 47, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.new-contract-template-capsule-content {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: flex-start;
  gap: 20px;
}

/* line 57, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 63, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-capsule span {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 69, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-capsule.lightmode span {
  color: #C38761;
}

/* line 73, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-capsule.nightmode span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 77, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-capsule.lightmode p {
  color: #140D23;
}

/* line 81, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-capsule.nightmode p {
  color: #FFFFFF;
}

/* line 85, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-capsule.lightmode i {
  color: #140D23;
}

/* line 89, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-capsule.nightmode i {
  color: #FFFFFF;
}

/* line 93, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1 {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 17px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(232, 232, 232, 0.5);
  border-radius: 20px;
  padding: 20px;
}

/* line 104, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1 form {
  width: 100%;
  display: flex;
}

/* line 109, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1 form input:focus {
  background-color: transparent;
}

/* line 115, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1 .selected {
  background-color: #e8e8e8 !important;
}

/* line 118, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1 .selected p {
  color: #140D23 !important;
}

/* line 122, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1 .special-toggle {
  width: 200px !important;
  background-color: transparent;
  color: #140D23;
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: space-evenly;
  transition: transform 0.3s ease;
  border: 1px solid rgba(232, 232, 232, 0.5);
}

/* line 133, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1 .special-toggle span {
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: normal;
  padding: 5px;
  white-space: nowrap;
}

/* line 142, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1 .special-toggle:hover {
  transform: scale(1.04);
}

/* line 146, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1 .choosen-one {
  background-color: #e8e8e8;
}

/* line 148, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1 .choosen-one span {
  color: #140D23;
}

/* line 154, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1 .selected {
  background-color: #e8e8e8;
}

/* line 157, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1 .selected span {
  color: #140D23;
}

/* line 164, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row2 {
  width: 80%;
  height: 7.5%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
}

/* line 174, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row2 #fakeSubmitButton {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  border: none;
  cursor: pointer;
  background-color: #C38761;
  color: #140D23;
}

/* line 189, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row2 #fakeSubmitButton:hover {
  background-color: #864B28;
  transform: scale(1.05);
}

/* line 196, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-searchbar {
  width: 100%;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 211, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-searchbar button {
  all: unset;
}

/* line 214, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-searchbar i {
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 221, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-searchbar span {
  font-weight: normal !important;
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 228, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow1 {
  width: 100%;
  height: 10%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

/* line 237, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow2 {
  width: 100%;
  height: 10%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

/* line 246, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow2 .selected {
  background-color: #e8e8e8 !important;
}

/* line 249, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow2 .selected p {
  color: #140D23 !important;
}

/* line 254, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow2 .crm-new-contract-template-row1-subrow2-market {
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 256, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow2 .crm-new-contract-template-row1-subrow2-market h3, .crm-new-contract-template-row1-subrow2 .crm-new-contract-template-row1-subrow2-market .h3 {
  all: unset;
  font-size: 0.7rem;
  font-weight: normal;
  white-space: nowrap;
}

/* line 267, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow2 .crm-new-contract-template-row1-subrow2-market-choice {
  width: 200px !important;
  background-color: transparent;
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: space-evenly;
  transition: transform 0.3s ease;
  border: 1px solid rgba(232, 232, 232, 0.5);
  cursor: pointer;
}

/* line 280, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow3 {
  width: 100%;
  height: 10%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

/* line 290, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow3 .special-toggle-sales-cycle {
  width: 270px !important;
  background-color: transparent;
  color: #140D23;
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: space-evenly;
  transition: transform 0.3s ease;
  border: 1px solid rgba(232, 232, 232, 0.5);
}

/* line 301, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow3 .special-toggle-sales-cycle span {
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: normal;
  padding: 5px;
  white-space: nowrap;
}

/* line 310, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow3 .special-toggle:hover {
  transform: scale(1.04);
}

/* line 314, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow3 .selected {
  background-color: #e8e8e8;
}

/* line 317, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow3 .selected span {
  color: #140D23;
}

/* line 323, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow3-new-transaction {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* line 328, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow3-new-transaction p {
  all: unset;
  font-size: 0.7rem;
  text-align: center;
}

/* line 335, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow3-searchbar {
  width: 100%;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 349, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow3-searchbar .results p {
  all: unset;
  font-size: 0.7rem !important;
  margin: 0;
  font-weight: normal !important;
  color: #140D23 !important;
}

/* line 359, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow3-searchbar button {
  all: unset;
}

/* line 362, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow3-searchbar i {
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 369, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow3-searchbar span {
  font-weight: normal !important;
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 375, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow4 {
  width: 100%;
  height: 10%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

/* line 384, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow5 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* line 391, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-vertical-line {
  width: 90%;
  border-bottom: 1px solid rgba(232, 232, 232, 0.5);
}

/* line 396, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.userChoice {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* line 401, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.userChoice .no-recipient {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-color-primary);
}

/* line 418, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.userChoice .item {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  padding: 5px 40px 5px 15px;
}

/* line 426, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.userChoice .item .item-header {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* line 430, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.userChoice .item .item-header i {
  color: green;
  font-size: 0.7rem;
}

/* line 434, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.userChoice .item .item-header p {
  margin: 0;
  font-size: 0.7rem;
  font-weight: normal;
}

/* line 443, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.customerChoice {
  display: flex;
  justify-content: end;
  align-items: center;
  width: 100%;
}

/* line 448, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.customerChoice .no-recipient {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-color-primary);
}

/* line 465, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.customerChoice .item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* line 479, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.customerChoice .item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  border-color: rgba(232, 232, 232, 0.6);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

/* line 486, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.customerChoice .item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #C38761, #864B28);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* line 498, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.customerChoice .item:hover::before {
  opacity: 1;
}

/* line 502, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.customerChoice .item .item-header {
  display: flex;
  justify-content: center;
  gap: 15px;
  align-items: center;
  flex-grow: 1;
}

/* line 509, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.customerChoice .item .item-header i {
  color: green;
  font-size: 1rem;
  padding: 8px;
  background-color: rgba(195, 135, 97, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* line 518, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.customerChoice .item .item-header p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-color-primary);
  line-height: 1.4;
  transition: color 0.3s ease;
}

/* line 529, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.customerChoice .item:hover .item-header i {
  color: #864B28;
  background-color: rgba(134, 75, 40, 0.15);
  transform: scale(1.1);
}

/* line 535, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.customerChoice .item:hover .item-header p {
  color: #FFFFFF;
}

/* line 540, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.customerChoice .item .item-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* line 547, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.customerChoice .item .item-actions button {
  all: unset;
  padding: 6px;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-size: 0.7rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 557, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.customerChoice .item .item-actions button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

/* line 564, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.customerChoice .item:hover .item-actions {
  opacity: 1;
}

/* line 570, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow4-list {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 578, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow4-list-head {
  width: 100%;
  display: flex;
  flex-direction: row;
  font-weight: bold;
  font-size: 0.8rem;
}

/* line 586, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow4-list-column {
  width: 12%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.6rem;
  padding: 2px 5px;
}

/* line 594, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow4-list-column-article {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.6rem;
  padding: 2px 5px;
}

/* line 603, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow4-list-entries {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 1;
}

/* line 613, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.entry {
  width: 100%;
  display: flex;
}

/* line 617, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.entry .quantity-input {
  all: unset;
  width: 70%;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 630, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.entry .quantity-input:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 635, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.entry .discount-input {
  all: unset;
  width: 50%;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 648, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.entry .discount-input:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 655, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.totalPrice {
  font-size: 0.8rem;
  font-weight: bold;
  text-align: center;
  color: #140D23;
  border-radius: 20px;
  background-color: #e8e8e8;
}

/* line 662, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.totalPrice p {
  color: #000000 !important;
}

/* line 667, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.search-results-articles {
  display: flex;
  min-height: 30px;
  width: 97% !important;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  padding: 5px;
  border-radius: 0.375rem;
  flex-wrap: nowrap;
}

/* line 677, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.search-results-articles label {
  opacity: 1;
}

/* line 680, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.search-results-articles p {
  all: unset;
  font-size: 0.7rem !important;
  margin: 0;
  font-weight: normal !important;
  color: #140D23 !important;
}

/* line 688, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.search-results-articles:hover {
  background-color: rgba(255, 255, 255, 0.5);
  transition: transform 0.3s ease;
}

/* line 694, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.articles {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

/* line 702, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-form-field {
  display: flex;
  width: 100%;
  height: 10%;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 20px;
}

/* line 710, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-form-field label {
  all: unset;
  font-size: 0.7rem;
  font-weight: normal;
  color: #FFFFFF;
}

/* line 719, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow4-contract {
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 721, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow4-contract h3, .crm-new-contract-template-row1-subrow4-contract .h3 {
  all: unset;
  font-size: 0.7rem;
  font-weight: normal;
  white-space: nowrap;
}

/* line 731, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow4-contract label {
  all: unset;
  font-size: 0.7rem;
  font-weight: normal;
  color: #FFFFFF;
}

/* line 739, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow4-contract-choice {
  width: 200px !important;
  background-color: transparent;
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: space-evenly;
  transition: transform 0.3s ease;
  border: 1px solid rgba(232, 232, 232, 0.5);
  cursor: pointer;
}

/* line 752, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow5-RFA-capsule {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 15px;
}

/* line 760, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow5-RFA-objectifs {
  display: flex;
  gap: 10px;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

/* line 767, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow5-RFA-reward {
  display: flex;
  gap: 10px;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

/* line 774, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow5-RFA-calculation-base {
  display: flex;
  gap: 10px;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

/* line 781, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.label-group {
  display: flex;
  gap: 5px;
}

/* line 785, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.label-group label {
  all: unset;
  font-size: 0.7rem;
  font-weight: normal;
  color: #FFFFFF;
}

/* line 793, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow5-licence-capsule {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 15px;
}

/* line 800, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow5-licence-capsule .crm-new-contract-template-row1-subrow5-licence-cycle {
  display: flex;
  gap: 10px;
  width: 100%;
  height: 100%;
}

/* line 805, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow5-licence-capsule .crm-new-contract-template-row1-subrow5-licence-cycle label {
  all: unset;
  font-size: 0.7rem;
  font-weight: normal;
  color: #FFFFFF;
}

/* line 813, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow5-licence-capsule .crm-new-contract-template-row1-subrow5-licence-users {
  display: flex;
  gap: 10px;
  width: 100%;
  height: 100%;
}

/* line 818, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow5-licence-capsule .crm-new-contract-template-row1-subrow5-licence-users label {
  all: unset;
  font-size: 0.7rem;
  font-weight: normal;
  color: #FFFFFF;
}

/* line 826, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow5-licence-capsule .crm-new-contract-template-row1-subrow5-licence-modules {
  display: flex;
  gap: 10px;
  width: 100%;
  height: 100%;
}

/* line 831, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow5-licence-capsule .crm-new-contract-template-row1-subrow5-licence-modules label {
  all: unset;
  font-size: 0.7rem;
  font-weight: normal;
  color: #FFFFFF;
}

/* line 839, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow5-licence-capsule .crm-new-contract-template-row1-subrow5-licence-suspension {
  display: flex;
  gap: 10px;
  width: 100%;
  height: 100%;
}

/* line 844, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow5-licence-capsule .crm-new-contract-template-row1-subrow5-licence-suspension label {
  all: unset;
  font-size: 0.7rem;
  font-weight: normal;
  color: #FFFFFF;
}

/* line 852, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow5-licence-capsule .crm-new-contract-template-row1-subrow5-licence-activation {
  display: flex;
  gap: 10px;
  width: 100%;
  height: 100%;
}

/* line 857, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow5-licence-capsule .crm-new-contract-template-row1-subrow5-licence-activation label {
  all: unset;
  font-size: 0.7rem;
  font-weight: normal;
  color: #FFFFFF;
}

/* line 866, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-row1-subrow5-licence-capsule .form-check label {
  all: unset;
  font-size: 0.7rem;
  font-weight: normal;
  color: #FFFFFF;
}

/* line 874, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.contract-template-steps {
  display: grid;
  grid-template-rows: repeat(14, 1fr);
  width: 20%;
  height: 100%;
}

/* line 880, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.contract-template-steps .contract-template-step {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.5s ease;
}

/* line 889, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.contract-template-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* line 894, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.contract-template-content #template {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 10px;
}

/* line 903, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.contract-template-content h2, .contract-template-content .h2 {
  all: unset;
  font-size: 1.2rem;
  font-weight: bold;
  color: #FFFFFF;
  text-align: center;
}

/* line 911, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.contract-template-content label {
  all: unset;
  font-size: 0.8rem;
  font-weight: normal;
  color: #FFFFFF;
}

/* line 919, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.new-contract-template-question-suivante {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* line 924, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.new-contract-template-title {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

/* line 931, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.new-contract-template-select-container {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.75rem;
  text-transform: capitalize;
  font-weight: 600;
  padding: 8px 12px;
  background-color: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 10px;
}

/* line 946, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.new-contract-template-select-container .new-contract-template-select-container {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 953, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.new-contract-template-version-content {
  padding: 12px;
  color: #ffffff;
  font-size: 0.7rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  line-height: 30px;
}

/* line 960, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.new-contract-template-version-content p {
  all: unset;
  font-size: 0.7rem;
  font-weight: normal;
  color: #FFFFFF;
}

/* line 968, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.new-contract-template-column1 {
  width: 30%;
  height: 100%;
}

/* line 972, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.new-contract-template-column2 {
  width: 70%;
  height: 100%;
}

/* line 977, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.new-contract-template-personnal-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 20px;
}

/* line 984, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.new-contract-template-personnal-actions .new-contract-template-personnal-variable {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 990, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.new-contract-template-personnal-actions .new-contract-template-personnal-variable .contract-template-custom-variable-input {
  width: 100%;
  padding: 10px 14px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-size: 0.8rem;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

/* line 1001, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.new-contract-template-personnal-actions .new-contract-template-personnal-variable .contract-template-custom-variable-input:focus {
  outline: none;
  border-color: rgba(195, 135, 97, 0.5);
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.15);
}

/* line 1008, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.new-contract-template-personnal-actions .new-contract-template-personnal-variable .contract-template-custom-variable-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

/* line 1013, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.lightmode .new-contract-template-personnal-actions .new-contract-template-personnal-variable .contract-template-custom-variable-input {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 1018, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.lightmode .new-contract-template-personnal-actions .new-contract-template-personnal-variable .contract-template-custom-variable-input::placeholder {
  color: rgba(20, 13, 35, 0.5);
}

/* line 1022, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.lightmode .new-contract-template-personnal-actions .new-contract-template-personnal-variable .contract-template-custom-variable-input:focus {
  border-color: rgba(195, 135, 97, 0.5);
  background-color: rgba(20, 13, 35, 0.15);
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.15);
}

/* line 1030, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.new-contract-template-personnal-actions .new-contract-template-personnal-variable input {
  width: 100%;
  color: #FFFFFF;
}

/* line 1033, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.lightmode .new-contract-template-personnal-actions .new-contract-template-personnal-variable input::placeholder {
  color: #140D23;
}

/* line 1037, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.new-contract-template-personnal-actions .new-contract-template-personnal-variable .form-button, .new-contract-template-personnal-actions .new-contract-template-personnal-variable .users-management-container .users-header .add-user-btn, .users-management-container .users-header .new-contract-template-personnal-actions .new-contract-template-personnal-variable .add-user-btn, .new-contract-template-personnal-actions .new-contract-template-personnal-variable .crm-action-button {
  all: unset;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 4px 12px;
  color: #FFFFFF;
  font-size: 0.75rem;
  text-transform: capitalize;
  font-weight: 600;
  cursor: pointer;
}

/* line 1052, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.new-contract-template-personnal-actions .new-contract-template-personnal-variable .form-button:hover, .new-contract-template-personnal-actions .new-contract-template-personnal-variable .users-management-container .users-header .add-user-btn:hover, .users-management-container .users-header .new-contract-template-personnal-actions .new-contract-template-personnal-variable .add-user-btn:hover, .new-contract-template-personnal-actions .new-contract-template-personnal-variable .crm-action-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 1055, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.lightmode .new-contract-template-personnal-actions .new-contract-template-personnal-variable .form-button, .lightmode .new-contract-template-personnal-actions .new-contract-template-personnal-variable .users-management-container .users-header .add-user-btn, .users-management-container .users-header .lightmode .new-contract-template-personnal-actions .new-contract-template-personnal-variable .add-user-btn, .lightmode .new-contract-template-personnal-actions .new-contract-template-personnal-variable .crm-action-button {
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 1061, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.lightmode .new-contract-template-personnal-actions .new-contract-template-personnal-variable .form-control {
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 1067, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.new-contract-template-personnal-actions .new-contract-template-dropdown-variable {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* line 1074, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.new-contract-template-personnal-actions .new-contract-template-dropdown-variable .new-contract-template-dropdown-button {
  all: unset;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 8px 12px;
  color: #FFFFFF;
  font-size: 0.75rem;
  text-transform: capitalize;
  font-weight: 600;
  cursor: pointer;
}

/* line 1090, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.new-contract-template-personnal-actions .new-contract-template-dropdown-variable .new-contract-template-dropdown-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 1093, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.lightmode .new-contract-template-personnal-actions .new-contract-template-dropdown-variable .new-contract-template-dropdown-button {
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 1098, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.new-contract-template-personnal-actions .new-contract-template-dropdown-variable .absolute-dropdown-list-container {
  position: absolute;
  top: 100%;
  left: 0;
  padding: 10px;
  width: 100%;
  max-height: 300px;
  z-index: 10;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 1111, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.new-contract-template-personnal-actions .new-contract-template-dropdown-variable .absolute-dropdown-list {
  padding: 5px;
  display: flex;
  flex-direction: column;
  max-height: 250px;
  gap: 5px;
  overflow-y: auto;
  /* Personnalisation de la barre de défilement */
}

/* line 1119, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.new-contract-template-personnal-actions .new-contract-template-dropdown-variable .absolute-dropdown-list::-webkit-scrollbar {
  width: 8px;
  /* Largeur de la barre de défilement */
}

/* line 1123, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.new-contract-template-personnal-actions .new-contract-template-dropdown-variable .absolute-dropdown-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  /* Couleur de l'arrière-plan de la barre */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 1128, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.new-contract-template-personnal-actions .new-contract-template-dropdown-variable .absolute-dropdown-list::-webkit-scrollbar-thumb {
  background: #C38761;
  /* Couleur de la barre de défilement */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 1133, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.new-contract-template-personnal-actions .new-contract-template-dropdown-variable .absolute-dropdown-list::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
  /* Couleur de la barre au survol */
}

/* line 1136, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.new-contract-template-personnal-actions .new-contract-template-dropdown-variable .absolute-dropdown-list .dropdown-item {
  all: unset;
  cursor: pointer;
  padding: 5px;
}

/* line 1140, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.new-contract-template-personnal-actions .new-contract-template-dropdown-variable .absolute-dropdown-list .dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 1147, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.contract-builder-intro {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 2rem;
  overflow-y: auto;
  /* Personnalisation de la barre de défilement */
}

/* line 1156, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.contract-builder-intro::-webkit-scrollbar {
  width: 8px;
  /* Largeur de la barre de défilement */
}

/* line 1160, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.contract-builder-intro::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  /* Couleur de l'arrière-plan de la barre */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 1165, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.contract-builder-intro::-webkit-scrollbar-thumb {
  background: #C38761;
  /* Couleur de la barre de défilement */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 1170, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.contract-builder-intro::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
  /* Couleur de la barre au survol */
}

/* line 1173, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.contract-builder-intro h2, .contract-builder-intro .h2 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* line 1179, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.contract-builder-intro h3, .contract-builder-intro .h3 {
  font-size: 0.8rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

/* line 1186, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.contract-builder-intro p {
  font-size: 0.7rem;
  margin-bottom: 1rem;
}

/* line 1192, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.contract-builder-intro ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

/* line 1196, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.contract-builder-intro ul li {
  font-size: 0.7rem;
  margin-bottom: 0.5rem;
}

/* line 1201, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.contract-builder-intro ul li strong {
  color: #FFFFFF;
}

/* line 1209, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.new-contract-template-actions-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* line 1216, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.new-contract-template-question-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

/* line 1223, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.new-contract-template-question-container label {
  font-weight: bold;
}

/* line 1226, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.new-contract-template-question-container input {
  all: unset;
  margin: 0 5px;
  width: 100%;
  background-color: transparent;
  font-size: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 5px 10px;
  border-radius: 30px;
  font-weight: bold;
  text-align: center;
}

/* line 1237, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.new-contract-template-question-container input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-weight: normal;
}

/* line 1244, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.new-contract-template-intro-container {
  padding: 5px;
  height: 90%;
  margin-bottom: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
}

/* line 1253, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-new-contract-template-keywords {
  color: #864B28;
}

/* line 1258, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-contract-template-progress-bar {
  width: 100%;
  padding: 1rem 0;
  margin-bottom: 1.5rem;
}

/* line 1264, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-progress-bar-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  padding: 1.25rem;
  transition: all 0.3s ease;
}

/* line 1275, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-progress-bar-container:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: rgba(195, 135, 97, 0.3);
}

/* line 1281, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-progress-bar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.25rem;
}

/* line 1287, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-progress-bar-header .crm-progress-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.3px;
}

/* line 1294, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-progress-bar-header .crm-progress-percentage {
  font-size: 0.9rem;
  font-weight: 700;
  color: #C38761;
  background: rgba(195, 135, 97, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
}

/* line 1304, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-progress-bar-track {
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* line 1314, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-progress-bar-fill {
  height: 100%;
  width: var(--dynamic-width, 0%);
  background: linear-gradient(90deg, #C38761 0%, #864B28 100%);
  border-radius: 1rem;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 2px 8px rgba(195, 135, 97, 0.4);
}

/* line 1323, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-progress-bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  animation: crm-shimmer 2s infinite;
}

@keyframes crm-shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* line 1347, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-progress-steps-indicators {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
  gap: 0.25rem;
}

/* line 1355, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-progress-step-indicator {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  max-width: 36px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  position: relative;
}

/* line 1372, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-progress-step-indicator span {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 1378, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-progress-step-indicator i {
  font-size: 0.7rem;
  color: #140D23;
}

/* line 1383, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-progress-step-indicator.completed {
  background: linear-gradient(135deg, #C38761 0%, #864B28 100%);
  border-color: #864B28;
  color: #140D23;
  box-shadow: 0 2px 8px rgba(195, 135, 97, 0.4);
  transform: scale(1.05);
}

/* line 1390, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-progress-step-indicator.completed i {
  color: #140D23;
  font-weight: bold;
}

/* line 1396, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-progress-step-indicator.current {
  background: linear-gradient(135deg, #C38761 0%, #864B28 100%);
  border-color: #864B28;
  color: #140D23;
  box-shadow: 0 0 0 4px rgba(195, 135, 97, 0.2), 0 4px 12px rgba(195, 135, 97, 0.5);
  transform: scale(1.15);
  animation: crm-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  z-index: 1;
}

/* line 1406, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-progress-step-indicator.current span {
  font-weight: 700;
}

/* line 1411, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.crm-progress-step-indicator:hover:not(.completed):not(.current) {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.08);
}

@keyframes crm-pulse {
  0%, 100% {
    box-shadow: 0 0 0 4px rgba(195, 135, 97, 0.2), 0 4px 12px rgba(195, 135, 97, 0.5);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(195, 135, 97, 0.1), 0 4px 12px rgba(195, 135, 97, 0.3);
  }
}

/* line 1431, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.lightmode .crm-progress-bar-container {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.05) 0%, rgba(20, 13, 35, 0.02) 100%);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 1435, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.lightmode .crm-progress-bar-container:hover {
  border-color: rgba(195, 135, 97, 0.4);
}

/* line 1441, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.lightmode .crm-progress-bar-header .crm-progress-label {
  color: #140D23;
}

/* line 1445, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.lightmode .crm-progress-bar-header .crm-progress-percentage {
  color: #864B28;
  background: rgba(195, 135, 97, 0.15);
}

/* line 1451, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.lightmode .crm-progress-bar-track {
  background: rgba(20, 13, 35, 0.08);
}

/* line 1455, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.lightmode .crm-progress-step-indicator {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
  color: rgba(20, 13, 35, 0.6);
}

/* line 1461, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.lightmode .crm-progress-step-indicator.completed i {
  color: #140D23;
}

/* line 1467, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.lightmode .crm-progress-step-indicator.current span {
  color: #140D23;
}

/* line 1472, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.lightmode .crm-progress-step-indicator:hover:not(.completed):not(.current) {
  background: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
}

@media (max-width: 768px) {
  /* line 1481, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
  .crm-progress-steps-indicators {
    gap: 0.15rem;
  }
  /* line 1485, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
  .crm-progress-step-indicator {
    min-width: 24px;
    max-width: 30px;
    height: 24px;
    font-size: 0.6rem;
  }
  /* line 1491, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
  .crm-progress-step-indicator i {
    font-size: 0.6rem;
  }
  /* line 1495, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
  .crm-progress-step-indicator.current {
    transform: scale(1.1);
  }
  /* line 1501, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
  .crm-progress-bar-header .crm-progress-label {
    font-size: 0.75rem;
  }
  /* line 1505, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
  .crm-progress-bar-header .crm-progress-percentage {
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
  }
}

/* line 1513, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.tiptap-editor-container {
  min-height: 200px;
  border: 1px solid #ccc;
  padding: 1rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
}

/* line 1521, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.tiptap-editor-container:focus-within {
  border-color: rgba(195, 135, 97, 0.5);
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 1527, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.tiptap-editor-container .ProseMirror {
  outline: none;
}

/* line 1530, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.tiptap-editor-container .ProseMirror p {
  margin: 0;
  margin-bottom: 0.5em;
}

/* line 1534, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.tiptap-editor-container .ProseMirror p:last-child {
  margin-bottom: 0;
}

/* line 1540, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.tiptap-editor-container .ProseMirror .crm-new-contract-template-keywords {
  color: #864B28;
  user-select: all;
  cursor: default;
}

/* line 1549, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.tiptap-editor-container .ProseMirror ul, .tiptap-editor-container .ProseMirror ol {
  padding-left: 1.5em;
  margin: 0.5em 0;
}

/* line 1554, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.tiptap-editor-container .ProseMirror h1, .tiptap-editor-container .ProseMirror .h1, .tiptap-editor-container .ProseMirror h2, .tiptap-editor-container .ProseMirror .h2, .tiptap-editor-container .ProseMirror h3, .tiptap-editor-container .ProseMirror .h3, .tiptap-editor-container .ProseMirror h4, .tiptap-editor-container .ProseMirror .h4, .tiptap-editor-container .ProseMirror h5, .tiptap-editor-container .ProseMirror .h5, .tiptap-editor-container .ProseMirror h6, .tiptap-editor-container .ProseMirror .h6 {
  margin: 0.5em 0;
  font-weight: bold;
}

/* line 1559, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.tiptap-editor-container .ProseMirror h1, .tiptap-editor-container .ProseMirror .h1 {
  font-size: 2em;
}

/* line 1560, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.tiptap-editor-container .ProseMirror h2, .tiptap-editor-container .ProseMirror .h2 {
  font-size: 1.5em;
}

/* line 1561, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.tiptap-editor-container .ProseMirror h3, .tiptap-editor-container .ProseMirror .h3 {
  font-size: 1.17em;
}

/* line 1562, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.tiptap-editor-container .ProseMirror h4, .tiptap-editor-container .ProseMirror .h4 {
  font-size: 1em;
}

/* line 1563, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.tiptap-editor-container .ProseMirror h5, .tiptap-editor-container .ProseMirror .h5 {
  font-size: 0.83em;
}

/* line 1564, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.tiptap-editor-container .ProseMirror h6, .tiptap-editor-container .ProseMirror .h6 {
  font-size: 0.67em;
}

/* line 1566, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.tiptap-editor-container .ProseMirror blockquote {
  border-left: 3px solid rgba(255, 255, 255, 0.3);
  padding-left: 1em;
  margin: 0.5em 0;
}

/* line 1572, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.tiptap-editor-container .ProseMirror code {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.2em 0.4em;
  border-radius: 3px;
  font-family: monospace;
}

/* line 1579, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.tiptap-editor-container .ProseMirror pre {
  background: rgba(255, 255, 255, 0.1);
  padding: 1em;
  border-radius: 4px;
  overflow-x: auto;
}

/* line 1585, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.tiptap-editor-container .ProseMirror pre code {
  background: none;
  padding: 0;
}

/* line 1591, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.tiptap-editor-container .ProseMirror strong {
  font-weight: bold;
}

/* line 1595, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.tiptap-editor-container .ProseMirror em {
  font-style: italic;
}

/* line 1599, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.tiptap-editor-container .ProseMirror u {
  text-decoration: underline;
}

/* line 1603, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.tiptap-editor-container .ProseMirror s {
  text-decoration: line-through;
}

/* line 1610, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.lightmode .tiptap-editor-container {
  background: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 1614, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.lightmode .tiptap-editor-container:focus-within {
  border-color: rgba(195, 135, 97, 0.6);
}

/* line 1619, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.lightmode .tiptap-editor-container .crm-new-contract-template-keywords {
  color: #C38761;
}

/* line 1626, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.custom-contract-editor {
  min-height: 400px;
  background: rgba(255, 255, 255, 0.05);
}

/* line 1630, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.custom-contract-editor.lightmode {
  background: rgba(20, 13, 35, 0.03);
  color: #140D23;
}

/* line 1636, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.custom-contract-presentation {
  width: 100%;
  padding: 1rem 2rem;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 1645, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.custom-sections-container {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0 1rem;
  margin-bottom: 2rem;
  box-sizing: border-box;
  overflow-x: hidden;
}

/* line 1657, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.custom-section {
  width: 100%;
  max-width: 100%;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  transition: all 0.3s ease;
  position: relative;
  box-sizing: border-box;
  overflow-x: hidden;
}

/* line 1669, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.custom-section:hover {
  border-color: rgba(195, 135, 97, 0.3);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* line 1675, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 1685, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.section-title-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* line 1691, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.section-title-container .section-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 1699, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.section-title-container .section-title-input {
  all: unset;
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

/* line 1711, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.section-title-container .section-title-input:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(195, 135, 97, 0.5);
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 1717, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.section-title-container .section-title-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-weight: normal;
}

/* line 1724, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.delete-section-button {
  all: unset;
  padding: 0.5rem 1rem;
  background: rgba(195, 135, 97, 0.2);
  border: 1px solid rgba(195, 135, 97, 0.3);
  border-radius: 0.5rem;
  color: #C38761;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 1738, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.delete-section-button:hover {
  background: rgba(195, 135, 97, 0.3);
  transform: scale(1.05);
}

/* line 1744, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.section-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* line 1754, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.add-section-button-container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 1rem;
  margin-bottom: 2rem;
}

/* line 1762, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.add-section-button {
  all: unset;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #C38761 0%, #864B28 100%);
  border: none;
  border-radius: 0.75rem;
  color: #140D23;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(195, 135, 97, 0.3);
}

/* line 1778, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.add-section-button span {
  font-size: 1.2rem;
}

/* line 1782, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.add-section-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(195, 135, 97, 0.4);
}

/* line 1787, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.add-section-button:active {
  transform: translateY(0);
}

/* line 1794, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.lightmode .custom-contract-presentation {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.05) 0%, rgba(20, 13, 35, 0.02) 100%);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 1799, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.lightmode .custom-section {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.08) 0%, rgba(20, 13, 35, 0.03) 100%);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 1803, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.lightmode .custom-section:hover {
  border-color: rgba(195, 135, 97, 0.4);
}

/* line 1808, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.lightmode .section-header {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 1813, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.lightmode .section-title-container .section-label {
  color: #140D23;
}

/* line 1817, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.lightmode .section-title-container .section-title-input {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 1822, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.lightmode .section-title-container .section-title-input:focus {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(195, 135, 97, 0.6);
}

/* line 1827, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.lightmode .section-title-container .section-title-input::placeholder {
  color: rgba(20, 13, 35, 0.4);
}

/* line 1833, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.lightmode .custom-contract-editor {
  background: white;
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 1841, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.custom-variable-item {
  position: relative;
  font-style: italic;
  background: rgba(195, 135, 97, 0.05);
}

/* line 1846, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.custom-variable-item:hover {
  background: rgba(195, 135, 97, 0.15);
}

/* line 1852, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.lightmode .custom-variable-item {
  background: rgba(195, 135, 97, 0.08);
}

/* line 1855, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.lightmode .custom-variable-item:hover {
  background: rgba(195, 135, 97, 0.2);
}

/* line 1862, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.annexes-sections-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem 0;
  margin-top: 1.5rem;
}

/* line 1875, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.custom-section-editor-container {
  min-height: 300px;
  width: 100%;
  max-width: 100%;
  border: 1px solid #ccc;
  padding: 1.5rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: pre-wrap;
  overflow-x: hidden;
  overflow-y: auto;
}

/* line 1893, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.custom-section-editor-container:focus, .custom-section-editor-container:focus-within {
  border-color: rgba(195, 135, 97, 0.5);
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
  outline: none;
}

/* line 1901, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.custom-section-editor-container .crm-new-contract-template-keywords {
  color: #864B28;
  user-select: all;
  cursor: default;
}

/* line 1909, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.lightmode .custom-section-editor-container {
  background: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 1913, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.lightmode .custom-section-editor-container:focus, .lightmode .custom-section-editor-container:focus-within {
  border-color: rgba(195, 135, 97, 0.6);
}

/* line 1919, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.lightmode .custom-section-editor-container .crm-new-contract-template-keywords {
  color: #C38761;
}

/* line 1926, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.variable-badge {
  color: #C38761;
  font-weight: bold;
  padding: 2px 6px;
  background-color: rgba(195, 135, 97, 0.1);
  border-radius: 3px;
}

/* line 1933, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.variable-badge.custom-variable {
  color: #f39c12;
  background-color: rgba(243, 156, 18, 0.1);
}

/* ==========================================================================
   NOTIFICATIONS - Variables personnalisées
   ========================================================================== */
/* line 1943, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.contract-template-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  padding: 12px 16px;
  border-radius: 8px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 350px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

/* line 1961, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.contract-template-notification i {
  font-size: 16px;
  opacity: 0.9;
}

/* line 1966, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.contract-template-notification span {
  flex: 1;
}

/* line 1970, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.contract-template-notification.contract-template-notification-success {
  background: rgba(40, 167, 69, 0.9);
}

/* line 1974, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.contract-template-notification.contract-template-notification-error {
  background: rgba(220, 53, 69, 0.9);
}

/* line 1978, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.contract-template-notification.contract-template-notification-info {
  background: rgba(23, 162, 184, 0.9);
}

/* line 1982, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.contract-template-notification.contract-template-notification-show {
  transform: translateX(0);
}

/* line 1986, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.contract-template-notification.contract-template-notification-hide {
  transform: translateX(100%);
}

/* line 1992, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.contract-template-choice-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  width: 100%;
  margin-top: 2rem;
  padding: 1rem;
}

/* line 2001, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.contract-template-choice-option {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* line 2013, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.contract-template-choice-option::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #C38761, #864B28);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* line 2025, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.contract-template-choice-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border-color: rgba(195, 135, 97, 0.5);
}

/* line 2030, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.contract-template-choice-option:hover::before {
  opacity: 1;
}

/* line 2035, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.contract-template-choice-option .choice-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

/* line 2041, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.contract-template-choice-option .choice-header .choice-icon {
  font-size: 2.5rem;
  line-height: 1;
}

/* line 2046, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.contract-template-choice-option .choice-header h3, .contract-template-choice-option .choice-header .h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #FFFFFF;
  margin: 0;
}

/* line 2054, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.contract-template-choice-option p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* line 2061, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.contract-template-choice-option ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

/* line 2066, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.contract-template-choice-option ul li {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
}

/* line 2074, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.contract-template-choice-option .choice-button {
  margin-top: auto;
  width: 100%;
  text-align: center;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #C38761 0%, #864B28 100%);
  color: #140D23;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* line 2088, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.contract-template-choice-option .choice-button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(195, 135, 97, 0.4);
}

/* line 2097, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.lightmode .contract-template-choice-option {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.05) 0%, rgba(20, 13, 35, 0.02) 100%);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 2101, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.lightmode .contract-template-choice-option .choice-header h3, .lightmode .contract-template-choice-option .choice-header .h3 {
  color: #140D23;
}

/* line 2105, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.lightmode .contract-template-choice-option p {
  color: rgba(20, 13, 35, 0.9);
}

/* line 2109, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.lightmode .contract-template-choice-option ul li {
  color: rgba(20, 13, 35, 0.85);
}

/* line 2113, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.lightmode .contract-template-choice-option:hover {
  border-color: rgba(195, 135, 97, 0.5);
}

/* ==========================================================================
   TIPTAP LOADING OVERLAY
   ========================================================================== */
/* line 2123, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.tiptap-loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  z-index: 10;
}

/* line 2138, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.tiptap-loading-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 500;
}

/* line 2147, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.tiptap-loading-spinner i {
  font-size: 1.5rem;
  color: #C38761;
}

/* line 2152, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.tiptap-loading-spinner span {
  opacity: 0.9;
}

/* line 2158, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.lightmode .tiptap-loading-overlay {
  background: rgba(255, 255, 255, 0.7);
}

/* line 2162, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.lightmode .tiptap-loading-spinner {
  color: #140D23;
}

/* line 2165, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_new_contract_template.scss */
.lightmode .tiptap-loading-spinner i {
  color: #864B28;
}

/* line 1, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-capsule {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 10px 30px 10px 30px;
  font-size: 0.8rem;
  gap: 10px;
}

/* line 11, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-capsule.lightmode {
  color: #140D23;
}

/* line 16, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-contacts-capsule span {
  color: #140D23;
}

/* line 19, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.nightmode .crm-contract-contacts-capsule span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 25, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-contacts-capsule p {
  color: #140D23;
}

/* line 28, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.nightmode .crm-contract-contacts-capsule p {
  color: #FFFFFF;
}

/* line 34, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-contacts-capsule i {
  color: #140D23;
}

/* line 37, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.nightmode .crm-contract-contacts-capsule i {
  color: #FFFFFF;
}

/* line 43, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-icon-inherit-color {
  color: inherit;
}

/* line 47, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 54, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-tabs {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(232, 232, 232, 0.3);
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}

/* line 65, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-contacts-tabs {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 71, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-tab-button {
  flex: 1;
  padding: 15px 20px;
  background-color: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* line 86, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-tab-button {
  color: rgba(20, 13, 35, 0.6);
}

/* line 90, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-tab-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

/* line 94, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-tab-button:hover {
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 100, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-tab-button.crm-tab-active {
  background-color: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  font-weight: 600;
}

/* line 105, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-tab-button.crm-tab-active {
  background-color: rgba(20, 13, 35, 0.15);
  color: #140D23;
}

/* line 111, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-tab-button i {
  font-size: 1rem;
}

/* line 116, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-content {
  width: 100%;
  height: 85%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(232, 232, 232, 0.5);
  border-top: none;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
}

/* line 125, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-contacts-content {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 131, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-tab-content {
  display: none;
  height: 100%;
  width: 100%;
}

/* line 136, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-tab-content.crm-tab-active {
  display: block;
}

/* line 141, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-details-row {
  width: 100%;
  padding: 25px;
  display: flex;
  justify-content: center;
}

/* line 148, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-details-main {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 155, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-details-header {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* line 164, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-details-header {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 169, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-details-header .crm-header-section, .crm-contract-details-header .crm-contract-number-section,
.crm-contract-details-header .crm-market-type-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

/* line 176, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-details-header .crm-header-section .crm-label, .crm-contract-details-header .crm-contract-number-section .crm-label,
.crm-contract-details-header .crm-market-type-section .crm-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

/* line 180, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-details-header .crm-header-section .crm-label, .lightmode .crm-contract-details-header .crm-contract-number-section .crm-label,
.lightmode .crm-contract-details-header .crm-market-type-section .crm-label {
  color: rgba(20, 13, 35, 0.65);
}

/* line 185, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-details-header .crm-header-section .crm-value, .crm-contract-details-header .crm-contract-number-section .crm-value,
.crm-contract-details-header .crm-market-type-section .crm-value {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.95rem;
}

/* line 190, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-details-header .crm-header-section .crm-value, .lightmode .crm-contract-details-header .crm-contract-number-section .crm-value,
.lightmode .crm-contract-details-header .crm-market-type-section .crm-value {
  color: #140D23;
}

/* line 202, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

/* line 208, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* line 219, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-card {
  background: rgba(20, 13, 35, 0.06);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 225, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-card__label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 229, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-card__label {
  color: rgba(20, 13, 35, 0.65);
}

/* line 234, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-card__value {
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* line 239, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-card__value {
  color: #140D23;
}

/* line 243, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-card__value a {
  color: #C38761;
  text-decoration: none;
}

/* line 247, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-card__value a:hover {
  text-decoration: underline;
}

/* line 253, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-summary-section {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* line 262, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-summary-section {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 268, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-summary-item {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1 1 0;
}

/* line 277, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-summary-item .crm-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  margin-bottom: 0;
  display: block;
  white-space: nowrap;
}

/* line 284, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-summary-item .crm-label {
  color: rgba(20, 13, 35, 0.65);
}

/* line 289, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-summary-item .crm-value {
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 600;
  display: block;
  white-space: nowrap;
}

/* line 296, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-summary-item .crm-value {
  color: #140D23;
}

/* line 303, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
}

/* line 312, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1 .crm-contract-contacts-row1-column2 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 10px;
}

/* line 323, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column1 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
}

/* line 333, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column1-searchbar {
  width: 100%;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 346, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-contacts-row1-column1-searchbar {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 351, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column1-searchbar button {
  all: unset;
}

/* line 354, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column1-searchbar i {
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 359, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-contacts-row1-column1-searchbar i {
  color: #140D23 !important;
}

/* line 363, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column1-searchbar span {
  font-weight: normal !important;
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 369, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-contacts-row1-column1-searchbar span {
  color: #140D23 !important;
}

/* line 375, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column1-create-contact {
  width: 100%;
  margin-bottom: 10px;
}

/* line 380, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-quote-contacts-search-actions {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 8px;
  margin-top: 8px;
}

/* line 388, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-create-contact-button {
  flex: 1;
  padding: 10px 15px;
  background-color: rgba(195, 135, 97, 0.2);
  border: 1px solid rgba(195, 135, 97, 0.4);
  border-radius: 8px;
  color: #C38761;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* line 404, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-create-contact-button {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 410, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-create-contact-button:hover {
  background-color: rgba(195, 135, 97, 0.3);
  border-color: rgba(195, 135, 97, 0.6);
  transform: translateY(-1px);
}

/* line 415, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-create-contact-button:hover {
  background-color: rgba(20, 13, 35, 0.2);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 421, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-create-contact-button i {
  font-size: 0.8rem;
  color: inherit;
}

/* line 428, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column1-results {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 100%;
}

/* line 437, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column1-results h3, .crm-contract-contacts-row1-column1-results .h3 {
  all: unset;
  font-size: 0.8rem;
}

/* line 441, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-contacts-row1-column1-results h3, .lightmode .crm-contract-contacts-row1-column1-results .h3 {
  color: #140D23;
}

/* line 446, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column1-results .results {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  min-height: 60px;
  max-height: 60%;
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
  /* Personnalisation de la barre de défilement */
  /* Style pour le message "Aucun contact sélectionné" */
  /* Style pour chaque contact sélectionné */
}

/* line 460, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-contacts-row1-column1-results .results {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 466, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column1-results .results::-webkit-scrollbar {
  width: 6px;
}

/* line 470, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column1-results .results::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 475, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column1-results .results::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
  border: 2px solid transparent;
}

/* line 481, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column1-results .results::-webkit-scrollbar-thumb:hover {
  background: #864B28;
}

/* line 486, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column1-results .results p[data-contacts-of-document-target="noContacts"] {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  text-align: center;
  margin: 0;
  padding: 20px;
}

/* line 493, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-contacts-row1-column1-results .results p[data-contacts-of-document-target="noContacts"] {
  color: rgba(20, 13, 35, 0.6);
}

/* line 499, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column1-results .results .contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 80px;
  gap: 5px;
  /* Contenu du contact */
  /* Bouton de suppression */
  /* Animation d'entrée */
  /* Animation de sortie */
}

/* line 514, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-contacts-row1-column1-results .results .contact-item {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.1) 0%, rgba(20, 13, 35, 0.05) 100%);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 519, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column1-results .results .contact-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: rgba(195, 135, 97, 0.4);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

/* line 525, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-contacts-row1-column1-results .results .contact-item:hover {
  border-color: rgba(195, 135, 97, 0.4);
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.15) 0%, rgba(20, 13, 35, 0.08) 100%);
}

/* line 532, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column1-results .results .contact-item .contact-info {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
  width: 100%;
}

/* line 539, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column1-results .results .contact-item .contact-info .contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(195, 135, 97, 0.15);
  border-radius: 50%;
  color: #C38761;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

/* line 552, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column1-results .results .contact-item .contact-info .contact-email {
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0;
  text-align: center;
}

/* line 559, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-contacts-row1-column1-results .results .contact-item .contact-info .contact-email {
  color: #140D23;
}

/* line 566, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column1-results .results .contact-item .contact-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(166, 2, 64, 0.1);
  border: 1px solid rgba(166, 2, 64, 0.3);
  border-radius: 50%;
  color: rgba(166, 2, 64, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
}

/* line 580, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column1-results .results .contact-item .contact-remove:hover {
  background: rgba(166, 2, 64, 0.2);
  border-color: #A60240;
  color: #A60240;
  transform: scale(1.1);
}

/* line 587, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column1-results .results .contact-item .contact-remove i {
  font-size: 0.8rem;
}

/* line 593, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column1-results .results .contact-item.contact-item-enter {
  animation: slideInFromTop 0.3s ease-out;
}

/* line 598, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column1-results .results .contact-item.contact-item-exit {
  animation: slideOutToRight 0.3s ease-in;
}

/* Animations pour les contacts */
@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideOutToRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

/* Styles responsives pour la liste des contacts */
@media (max-width: 768px) {
  /* line 631, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
  .crm-contract-contacts-row1-column1-results .results {
    padding: 8px;
    gap: 6px;
    max-height: 250px;
  }
  /* line 636, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
  .crm-contract-contacts-row1-column1-results .results .contact-item {
    padding: 5px;
    gap: 5px;
  }
  /* line 640, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
  .crm-contract-contacts-row1-column1-results .results .contact-item .contact-info {
    gap: 8px;
  }
  /* line 643, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
  .crm-contract-contacts-row1-column1-results .results .contact-item .contact-info .contact-icon {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
  /* line 649, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
  .crm-contract-contacts-row1-column1-results .results .contact-item .contact-info .contact-email {
    font-size: 0.8rem;
  }
  /* line 654, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
  .crm-contract-contacts-row1-column1-results .results .contact-item .contact-remove {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  /* line 666, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
  .crm-contract-contacts-row1-column1-results .results {
    padding: 6px;
    gap: 4px;
    max-height: 200px;
  }
  /* line 671, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
  .crm-contract-contacts-row1-column1-results .results .contact-item {
    padding: 5px;
    gap: 5px;
  }
  /* line 675, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
  .crm-contract-contacts-row1-column1-results .results .contact-item .contact-info {
    gap: 6px;
  }
  /* line 678, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
  .crm-contract-contacts-row1-column1-results .results .contact-item .contact-info .contact-icon {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
  }
  /* line 684, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
  .crm-contract-contacts-row1-column1-results .results .contact-item .contact-info .contact-email {
    font-size: 0.75rem;
    word-break: break-all;
  }
  /* line 690, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
  .crm-contract-contacts-row1-column1-results .results .contact-item .contact-remove {
    width: 22px;
    height: 22px;
    font-size: 0.65rem;
  }
}

/* line 701, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column2-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  width: 100%;
  margin-bottom: 5px;
  height: 15%;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
}

/* line 714, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-contacts-row1-column2-header {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 718, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column2-header .crm-header-section, .crm-contract-contacts-row1-column2-header .crm-contract-number-section,
.crm-contract-contacts-row1-column2-header .crm-market-type-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  gap: 5px;
}

/* line 725, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column2-header .crm-header-section .crm-label, .crm-contract-contacts-row1-column2-header .crm-contract-number-section .crm-label,
.crm-contract-contacts-row1-column2-header .crm-market-type-section .crm-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  margin-bottom: 0;
  display: block;
  white-space: nowrap;
}

/* line 732, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-contacts-row1-column2-header .crm-header-section .crm-label, .lightmode .crm-contract-contacts-row1-column2-header .crm-contract-number-section .crm-label,
.lightmode .crm-contract-contacts-row1-column2-header .crm-market-type-section .crm-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 736, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column2-header .crm-header-section .crm-value, .crm-contract-contacts-row1-column2-header .crm-contract-number-section .crm-value,
.crm-contract-contacts-row1-column2-header .crm-market-type-section .crm-value {
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  display: block;
  white-space: nowrap;
}

/* line 742, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-contacts-row1-column2-header .crm-header-section .crm-value, .lightmode .crm-contract-contacts-row1-column2-header .crm-contract-number-section .crm-value,
.lightmode .crm-contract-contacts-row1-column2-header .crm-market-type-section .crm-value {
  color: #140D23;
}

/* line 747, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column2-header .crm-header-section.crm-recipient-name-section .crm-value, .crm-contract-contacts-row1-column2-header .crm-recipient-name-section.crm-contract-number-section .crm-value,
.crm-contract-contacts-row1-column2-header .crm-recipient-name-section.crm-market-type-section .crm-value {
  font-size: 0.7rem;
}

/* line 753, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column2-header .crm-articles-table {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  width: 100%;
  height: 80%;
  overflow-y: hidden;
  margin-bottom: 10px;
}

/* line 761, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-contacts-row1-column2-header .crm-articles-table {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 767, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column2-header .crm-articles-table-header {
  display: flex;
  background-color: rgba(255, 255, 255, 0.08);
  font-weight: 600;
  white-space: nowrap;
  font-size: 0.75rem;
  padding: 5px;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* line 777, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-contacts-row1-column2-header .crm-articles-table-header {
  background-color: rgba(20, 13, 35, 0.08);
  color: rgba(20, 13, 35, 0.8);
  border-bottom-color: rgba(20, 13, 35, 0.15);
}

/* line 782, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column2-header .crm-articles-table-header .crm-table-cell {
  white-space: nowrap;
  padding: 5px;
}

/* line 788, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column2-header .crm-articles-table-body {
  min-height: 120px;
  overflow-y: auto;
}

/* line 791, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column2-header .crm-articles-table-body.crm-no-articles-container {
  text-align: center;
  padding: 2rem 15px;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  font-size: 0.85rem;
}

/* line 798, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-contacts-row1-column2-header .crm-articles-table-body.crm-no-articles-container {
  color: rgba(20, 13, 35, 0.6);
}

/* line 802, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column2-header .crm-articles-table-body::-webkit-scrollbar {
  width: 4px;
}

/* line 805, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column2-header .crm-articles-table-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 809, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column2-header .crm-articles-table-body::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 813, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column2-header .crm-articles-table-body::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 818, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column2-header .crm-articles-table-row {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

/* line 823, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-contacts-row1-column2-header .crm-articles-table-row {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 827, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column2-header .crm-articles-table-row:last-child {
  border-bottom: none;
}

/* line 830, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column2-header .crm-articles-table-row:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

/* line 833, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-contacts-row1-column2-header .crm-articles-table-row:hover {
  background-color: rgba(20, 13, 35, 0.03);
}

/* line 839, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column2-header .crm-table-cell {
  color: #fff;
  font-size: 0.8rem;
  padding: 8px 12px;
  display: flex;
  align-items: center;
}

/* line 846, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-contacts-row1-column2-header .crm-table-cell {
  color: #140D23;
}

/* line 851, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column2-header .crm-header-article, .crm-contract-contacts-row1-column2-header .crm-cell-article {
  width: 40%;
  justify-content: flex-start;
}

/* line 852, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column2-header .crm-header-discount-perc, .crm-contract-contacts-row1-column2-header .crm-cell-discount-perc {
  width: 15%;
  justify-content: center;
}

/* line 853, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column2-header .crm-header-price-ht, .crm-contract-contacts-row1-column2-header .crm-cell-price-ht {
  width: 15%;
  justify-content: center;
}

/* line 854, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column2-header .crm-header-price-ttc, .crm-contract-contacts-row1-column2-header .crm-cell-price-ttc {
  width: 15%;
  justify-content: center;
}

/* line 855, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column2-header .crm-header-quantity, .crm-contract-contacts-row1-column2-header .crm-cell-quantity {
  width: 15%;
  justify-content: center;
}

/* line 857, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column2-header .crm-invoice-summary-section {
  width: 100%;
  height: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

/* line 868, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-contacts-row1-column2-header .crm-invoice-summary-section {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 872, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column2-header .crm-invoice-summary-section .crm-summary-item {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1 1 0;
}

/* line 880, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column2-header .crm-invoice-summary-section .crm-summary-item .crm-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  margin-bottom: 0;
  display: block;
  white-space: nowrap;
}

/* line 887, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-contacts-row1-column2-header .crm-invoice-summary-section .crm-summary-item .crm-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 891, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column2-header .crm-invoice-summary-section .crm-summary-item .crm-value {
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  display: block;
  text-align: center;
  white-space: nowrap;
}

/* line 898, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-contacts-row1-column2-header .crm-invoice-summary-section .crm-summary-item .crm-value {
  color: #140D23;
}

/* line 903, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row1-column2-header .crm-invoice-summary-section .crm-summary-item.crm-summary-total-ttc .crm-value {
  color: #d4a574;
  font-size: 0.8rem;
}

/* line 913, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-cgv-tab-content {
  width: 100%;
  height: 100%;
  padding: 30px;
  overflow-y: auto;
}

/* line 919, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-cgv-tab-content::-webkit-scrollbar {
  width: 6px;
}

/* line 922, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-cgv-tab-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 926, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-cgv-tab-content::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 930, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-cgv-tab-content::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 935, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-cgv-header {
  text-align: center;
  margin-bottom: 30px;
}

/* line 939, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-cgv-header h2, .crm-cgv-header .h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #FFFFFF;
}

/* line 945, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-cgv-header h2, .lightmode .crm-cgv-header .h2 {
  color: #140D23;
}

/* line 950, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-cgv-header p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 954, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-cgv-header p {
  color: rgba(20, 13, 35, 0.7);
}

/* line 960, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-cgv-list-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 966, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-cgv-item {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(232, 232, 232, 0.3);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
}

/* line 973, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-cgv-item {
  background-color: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 978, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-cgv-item:hover {
  background-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* line 983, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-cgv-item:hover {
  background-color: rgba(20, 13, 35, 0.12);
}

/* line 989, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-cgv-item-header {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}

/* line 996, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-cgv-item-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(195, 135, 97, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* line 1006, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-cgv-item-icon i {
  font-size: 1.5rem;
  color: #C38761;
}

/* line 1012, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-cgv-item-info {
  flex: 1;
}

/* line 1015, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-cgv-item-info h3, .crm-cgv-item-info .h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #FFFFFF;
}

/* line 1021, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-cgv-item-info h3, .lightmode .crm-cgv-item-info .h3 {
  color: #140D23;
}

/* line 1027, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-cgv-documents {
  margin-top: 15px;
}

/* line 1030, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-cgv-documents h4, .crm-cgv-documents .h4 {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
}

/* line 1036, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-cgv-documents h4, .lightmode .crm-cgv-documents .h4 {
  color: rgba(20, 13, 35, 0.8);
}

/* line 1042, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-cgv-documents-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 1048, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-cgv-document-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 12px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
}

/* line 1057, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-cgv-document-item {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 1062, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-cgv-document-info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

/* line 1068, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-cgv-document-info i {
  color: #e74c3c;
  font-size: 0.9rem;
}

/* line 1073, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-cgv-document-info .crm-cgv-document-name {
  font-size: 0.85rem;
  color: #FFFFFF;
}

/* line 1077, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-cgv-document-info .crm-cgv-document-name {
  color: #140D23;
}

/* line 1082, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-cgv-document-info .crm-cgv-document-pages {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

/* line 1089, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-cgv-document-info .crm-cgv-document-pages {
  color: rgba(20, 13, 35, 0.6);
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 1096, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-cgv-document-view-button {
  color: #C38761;
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 6px;
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background-color: transparent;
  border: 1px solid rgba(195, 135, 97, 0.3);
}

/* line 1111, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-cgv-document-view-button:hover {
  background: #C38761;
  color: #FFFFFF;
  transform: scale(1.05);
  border-color: #C38761;
}

/* line 1118, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-cgv-document-view-button i {
  font-size: 0.8rem;
  color: inherit;
}

/* line 1123, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-cgv-document-view-button {
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 1127, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-cgv-document-view-button:hover {
  background: #140D23;
  color: #FFFFFF;
  border-color: #140D23;
}

/* line 1135, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-cgv-no-documents {
  margin-top: 15px;
  text-align: center;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
}

/* line 1142, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-cgv-no-documents {
  background-color: rgba(20, 13, 35, 0.03);
}

/* line 1146, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-cgv-no-documents p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

/* line 1151, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-cgv-no-documents p {
  color: rgba(20, 13, 35, 0.5);
}

/* line 1157, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-cgv-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 40px;
}

/* line 1167, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-cgv-empty-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* line 1177, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-cgv-empty-icon {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 1181, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-cgv-empty-icon i {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.4);
}

/* line 1185, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-cgv-empty-icon i {
  color: rgba(20, 13, 35, 0.4);
}

/* line 1191, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-cgv-empty-state h3, .crm-cgv-empty-state .h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFFFFF;
}

/* line 1197, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-cgv-empty-state h3, .lightmode .crm-cgv-empty-state .h3 {
  color: #140D23;
}

/* line 1202, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-cgv-empty-state p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 400px;
  line-height: 1.5;
}

/* line 1208, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-cgv-empty-state p {
  color: rgba(20, 13, 35, 0.6);
}

/* line 1214, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-actions-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  align-items: center;
}

/* line 1223, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 100%;
}

/* line 1234, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-delivery-choice {
  background: rgba(20, 13, 35, 0.06);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 1240, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 1246, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-delivery-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(195, 135, 97, 0.2);
  color: #C38761;
}

/* line 1256, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-delivery-icon {
  background: rgba(20, 13, 35, 0.12);
  color: #140D23;
}

/* line 1261, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-delivery-icon i {
  font-size: 1.1rem;
}

/* line 1266, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-delivery-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 1271, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-delivery-text h3, .crm-delivery-text .h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* line 1277, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-delivery-text h3, .lightmode .crm-delivery-text .h3 {
  color: #140D23;
}

/* line 1282, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-delivery-text p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 1287, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-delivery-text p {
  color: rgba(20, 13, 35, 0.65);
}

/* line 1293, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice-options {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* line 1300, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-delivery-option,
.crm-contract-delivery-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  flex: 1 1 45%;
  min-width: 0;
}

/* line 1318, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-delivery-option, .lightmode .crm-contract-delivery-option {
  color: rgba(20, 13, 35, 0.7);
}

/* line 1322, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-delivery-option:hover,
.crm-contract-delivery-option:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* line 1325, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-delivery-option:hover, .lightmode .crm-contract-delivery-option:hover {
  background: rgba(20, 13, 35, 0.12);
}

/* line 1330, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-delivery-option i,
.crm-contract-delivery-option i {
  font-size: 0.9rem;
}

/* line 1335, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-delivery-option--active,
.crm-contract-delivery-option--active {
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.25), rgba(195, 135, 97, 0.15));
  color: #FFFFFF;
  border-color: rgba(195, 135, 97, 0.5);
  box-shadow: 0 4px 10px rgba(195, 135, 97, 0.2);
}

/* line 1342, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-delivery-option--active, .lightmode .crm-contract-delivery-option--active {
  color: #140D23;
}

/* line 1348, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.full-width {
  width: 100%;
}

/* line 1352, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-searchbar-container {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

/* line 1360, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-searchbar {
  flex: 1;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

/* line 1370, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-searchbar {
  background: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 1376, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-searchbar:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.2);
}

/* line 1383, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.results-capsule {
  position: absolute;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

/* line 1394, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .results-capsule {
  background: rgba(20, 13, 35, 0.04);
  border-color: rgba(20, 13, 35, 0.12);
}

/* line 1399, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.results-capsule.d-none {
  display: none;
}

/* line 1403, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.results-capsule .results {
  max-height: 260px;
  overflow-y: auto;
}

/* line 1410, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-contacts-search-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* line 1419, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-delivery-choice .crm-contract-contacts-search-section {
  border-top-color: rgba(20, 13, 35, 0.15);
}

/* line 1423, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-contacts-search-section .crm-contract-contacts-search-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 1429, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-contacts-search-section .crm-contract-contacts-search-actions {
  width: 100%;
}

/* line 1433, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-contacts-search-section .crm-create-contact-button {
  width: 100%;
}

/* line 1439, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-contacts-selected-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* line 1448, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-delivery-choice .crm-contract-contacts-selected-section {
  border-top-color: rgba(20, 13, 35, 0.15);
}

/* line 1452, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-contacts-selected-section h3, .crm-contract-delivery-choice .crm-contract-contacts-selected-section .h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* line 1458, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-delivery-choice .crm-contract-contacts-selected-section h3, .lightmode .crm-contract-delivery-choice .crm-contract-contacts-selected-section .h3 {
  color: #140D23;
}

/* line 1463, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-contacts-selected-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 8px;
}

/* line 1471, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-contacts-selected-list::-webkit-scrollbar {
  width: 4px;
}

/* line 1475, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-contacts-selected-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
}

/* line 1480, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-contacts-selected-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

/* line 1485, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-contacts-selected-list::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* line 1489, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-contacts-selected-list p {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  padding: 16px;
}

/* line 1495, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-delivery-choice .crm-contract-contacts-selected-list p {
  color: rgba(20, 13, 35, 0.6);
}

/* line 1501, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-contacts-selected-list .contact-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  min-height: 60px;
  gap: 12px;
}

/* line 1515, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-delivery-choice .crm-contract-contacts-selected-list .contact-item {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.1) 0%, rgba(20, 13, 35, 0.05) 100%);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 1520, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-contacts-selected-list .contact-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: rgba(195, 135, 97, 0.4);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

/* line 1526, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-delivery-choice .crm-contract-contacts-selected-list .contact-item:hover {
  border-color: rgba(195, 135, 97, 0.4);
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.15) 0%, rgba(20, 13, 35, 0.08) 100%);
}

/* line 1532, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-contacts-selected-list .contact-item .contact-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

/* line 1538, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-contacts-selected-list .contact-item .contact-info .contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(195, 135, 97, 0.15);
  border-radius: 50%;
  color: #C38761;
  font-size: 1rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

/* line 1552, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-contacts-selected-list .contact-item .contact-info .contact-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

/* line 1559, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-contacts-selected-list .contact-item .contact-info .contact-name {
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}

/* line 1565, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-delivery-choice .crm-contract-contacts-selected-list .contact-item .contact-info .contact-name {
  color: #140D23;
}

/* line 1570, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-contacts-selected-list .contact-item .contact-info .contact-email {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  font-weight: 400;
  margin: 0;
}

/* line 1576, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-delivery-choice .crm-contract-contacts-selected-list .contact-item .contact-info .contact-email {
  color: rgba(20, 13, 35, 0.7);
}

/* line 1582, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-contacts-selected-list .contact-item .contact-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(166, 2, 64, 0.1);
  border: 1px solid rgba(166, 2, 64, 0.3);
  border-radius: 50%;
  color: rgba(166, 2, 64, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* line 1597, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-contacts-selected-list .contact-item .contact-remove:hover {
  background: rgba(166, 2, 64, 0.2);
  border-color: #A60240;
  color: #A60240;
  transform: scale(1.1);
}

/* line 1605, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-contacts-selected-list .contact-item.contact-item-enter {
  animation: slideInFromTop 0.3s ease-out;
}

/* line 1609, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-contacts-selected-list .contact-item.contact-item-exit {
  animation: slideOutToRight 0.3s ease-in;
}

/* line 1616, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-signature-panel {
  width: 100%;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-bottom: none;
  background: transparent;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}

/* line 1630, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-delivery-choice .crm-contract-signature-panel {
  border-top-color: rgba(20, 13, 35, 0.15);
}

/* line 1635, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-signature-panel .signature-form__row {
  position: relative;
  margin-bottom: 0;
}

/* line 1640, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-signature-panel .signature-form__prestataire-search,
.crm-contract-delivery-choice .crm-contract-signature-panel .signature-form__client-search {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

/* line 1648, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-signature-panel .signature-representatives-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

/* line 1654, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-signature-panel .signature-representatives-list__title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px 0;
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
  position: relative;
}

/* line 1664, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-delivery-choice .crm-contract-signature-panel .signature-representatives-list__title {
  color: #140D23;
}

/* line 1668, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-signature-panel .signature-representatives-list__title i {
  color: #C38761;
  font-size: 0.95rem;
}

/* line 1676, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-signature-panel .signature-representatives-divider {
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  transform: translateX(-50%);
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.2) 10%, rgba(255, 255, 255, 0.2) 90%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* line 1693, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-delivery-choice .crm-contract-signature-panel .signature-representatives-divider {
  background: linear-gradient(to bottom, transparent 0%, rgba(20, 13, 35, 0.2) 10%, rgba(20, 13, 35, 0.2) 90%, transparent 100%);
}

/* line 1705, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-signature-panel .signature-prestataire-selected,
.crm-contract-delivery-choice .crm-contract-signature-panel .signature-clients-selected {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 250px;
  overflow-y: auto;
  padding-right: 8px;
}

/* line 1714, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-signature-panel .signature-prestataire-selected::-webkit-scrollbar,
.crm-contract-delivery-choice .crm-contract-signature-panel .signature-clients-selected::-webkit-scrollbar {
  width: 4px;
}

/* line 1718, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-signature-panel .signature-prestataire-selected::-webkit-scrollbar-track,
.crm-contract-delivery-choice .crm-contract-signature-panel .signature-clients-selected::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
}

/* line 1723, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-signature-panel .signature-prestataire-selected::-webkit-scrollbar-thumb,
.crm-contract-delivery-choice .crm-contract-signature-panel .signature-clients-selected::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

/* line 1728, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-signature-panel .signature-prestataire-selected::-webkit-scrollbar-thumb:hover,
.crm-contract-delivery-choice .crm-contract-signature-panel .signature-clients-selected::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* line 1732, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-signature-panel .signature-prestataire-selected p,
.crm-contract-delivery-choice .crm-contract-signature-panel .signature-clients-selected p {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  padding: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  margin: 0;
}

/* line 1741, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-delivery-choice .crm-contract-signature-panel .signature-prestataire-selected p, .lightmode .crm-contract-delivery-choice .crm-contract-signature-panel .signature-clients-selected p {
  color: rgba(20, 13, 35, 0.6);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 1748, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-signature-panel .signature-prestataire-selected .contact-item,
.crm-contract-delivery-choice .crm-contract-signature-panel .signature-clients-selected .contact-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  min-height: 60px;
  gap: 12px;
}

/* line 1762, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-delivery-choice .crm-contract-signature-panel .signature-prestataire-selected .contact-item, .lightmode .crm-contract-delivery-choice .crm-contract-signature-panel .signature-clients-selected .contact-item {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.1) 0%, rgba(20, 13, 35, 0.05) 100%);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 1767, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-signature-panel .signature-prestataire-selected .contact-item:hover,
.crm-contract-delivery-choice .crm-contract-signature-panel .signature-clients-selected .contact-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: rgba(195, 135, 97, 0.4);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

/* line 1773, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-delivery-choice .crm-contract-signature-panel .signature-prestataire-selected .contact-item:hover, .lightmode .crm-contract-delivery-choice .crm-contract-signature-panel .signature-clients-selected .contact-item:hover {
  border-color: rgba(195, 135, 97, 0.4);
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.15) 0%, rgba(20, 13, 35, 0.08) 100%);
}

/* line 1779, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-signature-panel .signature-prestataire-selected .contact-item .contact-info,
.crm-contract-delivery-choice .crm-contract-signature-panel .signature-clients-selected .contact-item .contact-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

/* line 1785, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-signature-panel .signature-prestataire-selected .contact-item .contact-info .contact-icon,
.crm-contract-delivery-choice .crm-contract-signature-panel .signature-clients-selected .contact-item .contact-info .contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(195, 135, 97, 0.15);
  border-radius: 50%;
  color: #C38761;
  font-size: 1rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

/* line 1799, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-signature-panel .signature-prestataire-selected .contact-item .contact-info .contact-details,
.crm-contract-delivery-choice .crm-contract-signature-panel .signature-clients-selected .contact-item .contact-info .contact-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

/* line 1806, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-signature-panel .signature-prestataire-selected .contact-item .contact-info .contact-name,
.crm-contract-delivery-choice .crm-contract-signature-panel .signature-clients-selected .contact-item .contact-info .contact-name {
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}

/* line 1812, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-delivery-choice .crm-contract-signature-panel .signature-prestataire-selected .contact-item .contact-info .contact-name, .lightmode .crm-contract-delivery-choice .crm-contract-signature-panel .signature-clients-selected .contact-item .contact-info .contact-name {
  color: #140D23;
}

/* line 1817, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-signature-panel .signature-prestataire-selected .contact-item .contact-info .contact-email,
.crm-contract-delivery-choice .crm-contract-signature-panel .signature-clients-selected .contact-item .contact-info .contact-email {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  font-weight: 400;
  margin: 0;
}

/* line 1823, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-delivery-choice .crm-contract-signature-panel .signature-prestataire-selected .contact-item .contact-info .contact-email, .lightmode .crm-contract-delivery-choice .crm-contract-signature-panel .signature-clients-selected .contact-item .contact-info .contact-email {
  color: rgba(20, 13, 35, 0.7);
}

/* line 1829, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-signature-panel .signature-prestataire-selected .contact-item .contact-remove,
.crm-contract-delivery-choice .crm-contract-signature-panel .signature-clients-selected .contact-item .contact-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(166, 2, 64, 0.1);
  border: 1px solid rgba(166, 2, 64, 0.3);
  border-radius: 50%;
  color: rgba(166, 2, 64, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* line 1844, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-signature-panel .signature-prestataire-selected .contact-item .contact-remove:hover,
.crm-contract-delivery-choice .crm-contract-signature-panel .signature-clients-selected .contact-item .contact-remove:hover {
  background: rgba(166, 2, 64, 0.2);
  border-color: #A60240;
  color: #A60240;
  transform: scale(1.1);
}

/* line 1852, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-signature-panel .signature-prestataire-selected .contact-item.contact-item-enter,
.crm-contract-delivery-choice .crm-contract-signature-panel .signature-clients-selected .contact-item.contact-item-enter {
  animation: slideInFromTop 0.3s ease-out;
}

/* line 1856, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-delivery-choice .crm-contract-signature-panel .signature-prestataire-selected .contact-item.contact-item-exit,
.crm-contract-delivery-choice .crm-contract-signature-panel .signature-clients-selected .contact-item.contact-item-exit {
  animation: slideOutToRight 0.3s ease-in;
}

/* line 1865, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-signature-panel {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  transition: all 0.3s ease;
}

/* line 1873, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-signature-panel {
  border-color: rgba(20, 13, 35, 0.15);
  background: rgba(20, 13, 35, 0.05);
}

/* line 1878, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-signature-panel .signature-panel {
  box-shadow: none;
  background: transparent;
  border: none;
  color: #FFFFFF;
}

/* line 1884, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-signature-panel .signature-panel {
  color: #140D23;
}

/* line 1888, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-signature-panel .signature-panel__title h3, .crm-contract-signature-panel .signature-panel__title .h3 {
  color: inherit;
}

/* line 1892, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-signature-panel .signature-panel__meta {
  color: rgba(255, 255, 255, 0.75);
}

/* line 1895, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-signature-panel .signature-panel__meta {
  color: rgba(20, 13, 35, 0.65);
}

/* line 1899, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-signature-panel .signature-panel__meta-item {
  background: rgba(255, 255, 255, 0.12);
}

/* line 1902, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-signature-panel .signature-panel__meta-item {
  background: rgba(20, 13, 35, 0.08);
}

/* line 1908, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-signature-panel .signature-panel__body--split {
  gap: 1.5rem;
}

/* line 1912, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-signature-panel .signature-panel__form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* line 1916, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-signature-panel .signature-panel__form {
  background: rgba(20, 13, 35, 0.04);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 1921, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-signature-panel .signature-panel__form h4, .crm-contract-signature-panel .signature-panel__form .h4 {
  color: inherit;
}

/* line 1926, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-signature-panel .signature-panel__hint {
  color: rgba(255, 255, 255, 0.65);
}

/* line 1929, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-signature-panel .signature-panel__hint {
  color: rgba(20, 13, 35, 0.6);
}

/* line 1934, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-signature-panel .signature-panel__timeline h4, .crm-contract-signature-panel .signature-panel__timeline .h4 {
  color: inherit;
}

/* line 1938, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-signature-panel .signature-panel__empty {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}

/* line 1942, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-signature-panel .signature-panel__empty {
  border-color: rgba(20, 13, 35, 0.2);
  color: rgba(20, 13, 35, 0.7);
}

/* line 1947, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-signature-panel .signature-panel__empty i {
  color: rgba(255, 255, 255, 0.6);
}

/* line 1950, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-signature-panel .signature-panel__empty i {
  color: rgba(20, 13, 35, 0.5);
}

/* line 1957, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-signature-panel .signature-form__label {
  color: inherit;
  opacity: 1;
}

/* line 1962, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-signature-panel .signature-form__input,
.crm-contract-signature-panel .signature-form__textarea,
.crm-contract-signature-panel .signature-form__select {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

/* line 1969, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-signature-panel .signature-form__input, .lightmode .crm-contract-signature-panel .signature-form__textarea, .lightmode .crm-contract-signature-panel .signature-form__select {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 1976, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-signature-panel .signature-form__help {
  color: rgba(255, 255, 255, 0.6);
}

/* line 1979, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-signature-panel .signature-form__help {
  color: rgba(20, 13, 35, 0.55);
}

/* line 1984, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-signature-panel .signature-form__disabled {
  color: rgba(255, 255, 255, 0.6);
}

/* line 1987, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-signature-panel .signature-form__disabled {
  color: rgba(20, 13, 35, 0.55);
}

/* line 1992, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-signature-panel .signature-timeline__item {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.04) 55%, rgba(255, 255, 255, 0.02) 100%);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 18px;
}

/* line 2005, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-signature-panel .signature-timeline__item {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.85) 100%);
  border-color: rgba(20, 13, 35, 0.12);
  box-shadow: 0 12px 24px rgba(20, 13, 35, 0.12);
}

/* line 2017, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-signature-panel .signature-timeline__header {
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* line 2022, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-signature-panel .signature-timeline__header {
  border-bottom-color: rgba(20, 13, 35, 0.12);
}

/* line 2026, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-signature-panel .signature-timeline__header strong {
  font-size: 0.95rem;
  color: #FFFFFF;
}

/* line 2030, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-signature-panel .signature-timeline__header strong {
  color: #140D23;
}

/* line 2035, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-signature-panel .signature-timeline__header .signature-timeline__meta span {
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* line 2044, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-signature-panel .signature-timeline__header .signature-timeline__meta span {
  color: rgba(20, 13, 35, 0.65);
  background: rgba(20, 13, 35, 0.08);
}

/* line 2051, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-signature-panel .signature-participant {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 10px 14px;
}

/* line 2057, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-signature-panel .signature-participant {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.12);
}

/* line 2063, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-signature-panel .signature-timeline__audit {
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 12px;
}

/* line 2069, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-signature-panel .signature-timeline__audit {
  background: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.18);
}

/* line 2074, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-signature-panel .signature-timeline__audit strong {
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.75);
}

/* line 2079, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-signature-panel .signature-timeline__audit strong {
  color: rgba(20, 13, 35, 0.7);
}

/* line 2084, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-signature-panel .signature-timeline__audit li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

/* line 2088, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-signature-panel .signature-timeline__audit li {
  color: rgba(20, 13, 35, 0.65);
}

/* line 2095, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.signature-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* line 2103, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .signature-panel__header {
  border-bottom-color: rgba(20, 13, 35, 0.12);
}

/* line 2108, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.signature-panel__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
}

/* line 2115, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.signature-panel__title i {
  color: #C38761;
  font-size: 1rem;
}

/* line 2121, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.signature-panel__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* line 2127, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.signature-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 2133, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.signature-form__group--half {
  flex: 1;
  min-width: 0;
}

/* line 2138, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.signature-form__client-search-form,
.signature-form__prestataire-search-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 2145, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.signature-form__use-current-user {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 2158, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .signature-form__use-current-user {
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 2163, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.signature-form__use-current-user:hover {
  background: rgba(195, 135, 97, 0.2);
  border-color: rgba(195, 135, 97, 0.35);
  color: #FFFFFF;
}

/* line 2170, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.signature-representatives-list--client,
.signature-representatives-list--prestataire {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 2177, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.signature-representatives-list__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}

/* line 2185, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.signature-clients-empty,
.signature-prestataire-empty {
  margin: 0;
  padding: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

/* line 2195, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .signature-clients-empty, .lightmode .signature-prestataire-empty {
  border-color: rgba(20, 13, 35, 0.2);
  color: rgba(20, 13, 35, 0.6);
}

/* line 2201, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-signature-panel--hidden {
  display: none;
}

/* line 2205, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-actions {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

/* line 2212, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-actions span {
  color: #140D23 !important;
}

/* line 2215, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.nightmode .crm-contract-contacts-actions span {
  color: #FFFFFF !important;
}

/* line 2221, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-button-regular, .crm-back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #140D23;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 2236, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-button-regular, .lightmode .crm-back-button {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 2242, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-button-regular:hover, .crm-back-button:hover {
  background: rgba(195, 135, 97, 0.2);
  border-color: rgba(195, 135, 97, 0.35);
  box-shadow: 0 6px 14px rgba(195, 135, 97, 0.25);
  color: #FFFFFF;
}

/* line 2248, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-button-regular:hover, .lightmode .crm-back-button:hover {
  color: #140D23;
}

/* line 2254, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-button-small, .crm-back-button {
  padding: 8px 16px;
  font-size: 0.85rem;
}

/* line 2259, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-back-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #FFFFFF;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* line 2272, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-back-button {
  border-color: rgba(20, 13, 35, 0.25);
  color: #140D23;
}

/* line 2277, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-back-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* line 2280, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-back-button:hover {
  background: rgba(20, 13, 35, 0.1);
}

/* line 2286, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-email-form {
  margin: 0;
}

/* line 2290, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row2 {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

/* line 2298, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-row2 span {
  color: #140D23 !important;
}

/* line 2301, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.nightmode .crm-contract-contacts-row2 span {
  color: #FFFFFF !important;
}

/* line 2308, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-create-contact-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(4px);
}

/* line 2321, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-create-contact-modal-overlay.d-none {
  display: none !important;
}

/* line 2326, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-create-contact-modal {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(232, 232, 232, 0.3);
}

/* line 2336, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-create-contact-modal {
  background-color: rgba(255, 255, 255, 0.98);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 2341, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.nightmode .crm-create-contact-modal {
  background-color: rgba(20, 13, 35, 0.95);
}

/* line 2346, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-create-contact-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid rgba(232, 232, 232, 0.3);
}

/* line 2353, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-create-contact-modal-header {
  border-bottom-color: rgba(20, 13, 35, 0.2);
}

/* line 2357, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-create-contact-modal-header h3, .crm-create-contact-modal-header .h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: #140D23;
}

/* line 2363, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.nightmode .crm-create-contact-modal-header h3, .nightmode .crm-create-contact-modal-header .h3 {
  color: #FFFFFF;
}

/* line 2369, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-create-contact-modal-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: rgba(20, 13, 35, 0.6);
  padding: 5px;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

/* line 2384, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.nightmode .crm-create-contact-modal-close {
  color: rgba(255, 255, 255, 0.6);
}

/* line 2388, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-create-contact-modal-close:hover {
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 2392, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.nightmode .crm-create-contact-modal-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

/* line 2399, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-create-contact-modal-body {
  padding: 25px;
}

/* line 2403, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-create-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 2409, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 2415, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-form-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #140D23;
}

/* line 2420, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.nightmode .crm-form-label {
  color: #FFFFFF;
}

/* line 2425, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-form-input {
  padding: 12px 15px;
  border: 1px solid rgba(20, 13, 35, 0.3);
  border-radius: 8px;
  font-size: 0.9rem;
  background-color: rgba(255, 255, 255, 0.8);
  color: #140D23;
  transition: all 0.3s ease;
}

/* line 2434, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.nightmode .crm-form-input {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
}

/* line 2439, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.nightmode .crm-form-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* line 2444, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-form-input:focus {
  outline: none;
  border-color: #C38761;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 2450, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.nightmode .crm-form-input:focus {
  background-color: rgba(255, 255, 255, 0.15);
}

/* line 2455, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-form-input.is-invalid {
  border-color: #e74c3c;
}

/* line 2458, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-form-input.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

/* line 2464, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-form-error {
  font-size: 0.8rem;
  color: #e74c3c;
  min-height: 18px;
}

/* line 2469, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-form-error.show {
  display: block;
}

/* line 2474, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-create-contact-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(232, 232, 232, 0.3);
}

/* line 2482, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-create-contact-modal-actions {
  border-top-color: rgba(20, 13, 35, 0.2);
}

/* line 2487, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-button-secondary {
  padding: 10px 20px;
  background-color: transparent;
  border: 1px solid rgba(20, 13, 35, 0.3);
  border-radius: 8px;
  color: #140D23;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 2498, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.nightmode .crm-button-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
}

/* line 2503, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-button-secondary:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 2506, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.nightmode .crm-button-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 2512, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-button-primary {
  padding: 10px 20px;
  background-color: #C38761;
  border: 1px solid #C38761;
  border-radius: 8px;
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 2523, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-button-primary:hover {
  background-color: #af6c42;
  border-color: #af6c42;
  transform: translateY(-1px);
}

/* line 2529, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-button-primary:disabled {
  background-color: rgba(195, 135, 97, 0.5);
  border-color: rgba(195, 135, 97, 0.5);
  cursor: not-allowed;
  transform: none;
}

/* line 2538, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-contacts-content [data-tab="documents"] {
  padding: 25px;
}

/* line 2542, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-documents-tab {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 2548, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-documents-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* line 2554, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-document-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 2563, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-document-card {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.12);
}

/* line 2568, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-document-card .section-label-contract {
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* line 2573, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-document-card .section-label-contract {
  color: #140D23;
}

/* line 2578, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.crm-contract-document-card .section-content-contract {
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 12px;
}

/* line 2584, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/_contract_contacts.scss */
.lightmode .crm-contract-document-card .section-content-contract {
  border-color: rgba(20, 13, 35, 0.2);
}

/* ==========================================================================
   SECTION DE RECHERCHE ADV - Style avec dégradé
   ========================================================================== */
/* line 5, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/_adv_searchbar.scss */
.adv-search-section {
  background: none;
  border: none;
  border-radius: 12px;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

/* Classe générique pour les barres de recherche ADV */
/* line 17, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/_adv_searchbar.scss */
.adv-searchbar {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 10px 16px 10px 45px;
  color: #FFFFFF;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

/* line 27, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/_adv_searchbar.scss */
.lightmode .adv-searchbar {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 33, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/_adv_searchbar.scss */
.adv-searchbar::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 36, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/_adv_searchbar.scss */
.lightmode .adv-searchbar::placeholder {
  color: rgba(20, 13, 35, 0.5);
}

/* line 41, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/_adv_searchbar.scss */
.adv-searchbar:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* Container pour les barres de recherche avec bouton */
/* line 49, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/_adv_searchbar.scss */
.adv-searchbar-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

/* line 56, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/_adv_searchbar.scss */
.adv-searchbar-container .search-form {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

/* line 63, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/_adv_searchbar.scss */
.adv-searchbar-container i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  z-index: 2;
}

/* line 72, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/_adv_searchbar.scss */
.lightmode .adv-searchbar-container i {
  color: rgba(20, 13, 35, 0.6);
}

/* line 77, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/_adv_searchbar.scss */
.adv-searchbar-container button {
  all: unset;
  padding: 8px 12px;
  background: #C38761;
  border-radius: 8px;
  color: #140D23;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 86, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/_adv_searchbar.scss */
.adv-searchbar-container button:hover {
  background: #864B28;
  transform: scale(1.05);
}

/* line 91, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/_adv_searchbar.scss */
.adv-searchbar-container button i {
  position: static;
  transform: none;
  color: #140D23;
}

/* Classe pour forcer la largeur complète */
/* line 100, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/_adv_searchbar.scss */
.full-width {
  width: 100% !important;
}

/* ==========================================================================
   TURBO FRAME POUR RÉSULTATS DE RECHERCHE
   ========================================================================== */
/* Turbo Frame pour les résultats de recherche dynamique */
/* line 109, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/_adv_searchbar.scss */
turbo-frame#search-results {
  display: block;
  width: 100%;
  min-height: 200px;
  height: 100%;
  /* État de chargement */
  /* Animation de transition */
}

/* line 116, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/_adv_searchbar.scss */
turbo-frame#search-results.is-loading {
  opacity: 0.6;
  pointer-events: none;
}

/* line 122, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/_adv_searchbar.scss */
turbo-frame#search-results > * {
  animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Indicateur de chargement dans la barre de recherche */
/* line 139, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/_adv_searchbar.scss */
.adv-search-loading {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #C38761;
  font-size: 1rem;
  z-index: 2;
}

/* line 148, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/_adv_searchbar.scss */
.adv-search-loading.d-none {
  display: none;
}

/* line 1, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 10px 20px 10px 20px;
  font-size: 0.8rem;
  gap: 10px;
}

/* line 12, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule.lightmode {
  color: #140D23;
}

/* line 14, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule.lightmode .discount-input {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 18, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule.lightmode .price-input {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 22, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule.lightmode .price-ttc-container {
  color: #140D23;
}

/* line 25, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule.lightmode .new-contract-transaction-choice {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 29, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule.lightmode .search-input {
  border-color: transparent !important;
}

/* line 31, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule.lightmode .search-input:focus {
  border-color: transparent !important;
  box-shadow: none !important;
}

/* line 36, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule.lightmode .recipient-choice {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 40, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule.lightmode #publicMarket {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 44, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule.lightmode #privateMarket {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 50, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule .form-group {
  margin: 0;
}

/* line 54, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule form {
  display: flex !important;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  align-items: center;
  height: 100%;
}

/* Nouvelle Card de Configuration */
/* line 65, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-configuration-card {
  width: 100%;
  max-width: 1400px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

/* line 77, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-configuration-card {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.08) 0%, rgba(20, 13, 35, 0.03) 100%);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 84, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-config-header {
  text-align: center;
  margin-bottom: 30px;
}

/* line 88, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-config-header h2, .adv-new-contract-config-header .h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

/* line 94, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-config-header h2, .lightmode .adv-new-contract-config-header .h2 {
  color: #140D23;
}

/* line 99, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-config-header p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 103, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-config-header p {
  color: rgba(20, 13, 35, 0.7);
}

/* line 109, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-config-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* line 115, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-config-section {
  width: 100%;
}

/* line 119, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-config-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  /* line 119, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
  .adv-new-contract-config-row {
    grid-template-columns: 1fr;
  }
}

/* line 129, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-config-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 135, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-config-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 140, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-config-label i {
  font-size: 1.1rem;
  color: #C38761;
}

/* line 145, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-config-label h3, .adv-new-contract-config-label .h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
}

/* line 151, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-config-label h3, .lightmode .adv-new-contract-config-label .h3 {
  color: #140D23;
}

/* line 157, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-config-select {
  width: auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  color: #FFFFFF;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

/* line 167, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-config-select {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 173, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-config-select:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 179, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-config-select option {
  background: #140D23;
  color: #FFFFFF;
}

/* line 185, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-market-type-selector {
  display: flex;
  gap: 12px;
}

/* line 189, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-market-type-selector .adv-new-contract-market-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 205, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-market-type-selector .adv-new-contract-market-option {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 211, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-market-type-selector .adv-new-contract-market-option i {
  font-size: 1rem;
  color: #C38761;
}

/* line 216, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-market-type-selector .adv-new-contract-market-option:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

/* line 221, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-market-type-selector .adv-new-contract-market-option:hover {
  background: rgba(20, 13, 35, 0.12);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 227, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-market-type-selector .adv-new-contract-market-option.selected {
  background: #C38761;
  border-color: #C38761;
  color: #140D23;
}

/* line 232, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-market-type-selector .adv-new-contract-market-option.selected i {
  color: #140D23;
}

/* line 241, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-search-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}

/* line 248, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-search-input {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 254, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-search-input .search-form {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

/* line 261, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-search-input i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  z-index: 2;
}

/* line 270, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-search-input i {
  color: rgba(20, 13, 35, 0.6);
}

/* line 275, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-search-input button {
  all: unset;
  padding: 8px 12px;
  background: #C38761;
  border-radius: 8px;
  color: #140D23;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 284, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-search-input button:hover {
  background: #864B28;
  transform: scale(1.05);
}

/* line 289, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-search-input button i {
  position: static;
  transform: none;
  color: #140D23;
}

/* Utilise maintenant la classe générique adv-searchbar */
/* line 299, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-search-results {
  min-height: 120px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}

/* line 307, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-search-results {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 314, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-search-results .userChoice {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* line 321, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-search-results .userChoice .no-recipient, .adv-new-contract-search-results .userChoice .no-document {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
}

/* line 328, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-search-results .userChoice .no-recipient, .lightmode .adv-new-contract-search-results .userChoice .no-document {
  color: rgba(20, 13, 35, 0.6);
}

/* line 332, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-search-results .userChoice .no-recipient::before, .adv-new-contract-search-results .userChoice .no-document::before {
  content: '\f007';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.4);
}

/* line 339, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-search-results .userChoice .no-recipient::before, .lightmode .adv-new-contract-search-results .userChoice .no-document::before {
  color: rgba(20, 13, 35, 0.4);
}

/* Styles pour la section Transaction */
/* line 348, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-transaction-selector {
  display: flex;
  gap: 12px;
}

/* line 352, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-transaction-selector .new-contract-transaction-choice {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 368, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-transaction-selector .new-contract-transaction-choice {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 374, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-transaction-selector .new-contract-transaction-choice i {
  font-size: 1rem;
  color: #C38761;
}

/* line 379, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-transaction-selector .new-contract-transaction-choice:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

/* line 384, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-transaction-selector .new-contract-transaction-choice:hover {
  background: rgba(20, 13, 35, 0.12);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 390, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-transaction-selector .new-contract-transaction-choice.selected {
  background: #C38761;
  border-color: #C38761;
  color: #140D23;
}

/* line 395, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-transaction-selector .new-contract-transaction-choice.selected i {
  color: #140D23;
}

/* Styles pour le contenu des transactions */
/* line 403, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-transaction-content {
  margin-top: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
}

/* line 410, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-transaction-content {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 416, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-transaction-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

/* line 424, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-transaction-info {
  background: rgba(20, 13, 35, 0.08);
}

/* line 428, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-transaction-info i {
  color: #C38761;
  font-size: 1.1rem;
}

/* line 433, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-transaction-info span {
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 500;
}

/* line 438, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-transaction-info span {
  color: #140D23;
}

/* line 445, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-document-search h4, .adv-new-contract-document-search .h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 15px;
}

/* line 451, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-document-search h4, .lightmode .adv-new-contract-document-search .h4 {
  color: #140D23;
}

/* line 456, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-document-search .search-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* line 462, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-document-search .form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 468, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-document-search .filter {
  width: auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  color: #FFFFFF;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

/* line 478, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-document-search .filter {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 484, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-document-search .filter:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 490, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-document-search .filter option {
  background: #140D23;
  color: #FFFFFF;
}

/* Styles pour les clauses du contrat */
/* line 498, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-clauses-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  width: 100%;
}

/* Styles pour les sections de clauses existantes */
/* line 506, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-row1-subrow4-preamble,
.adv-new-contract-row1-subrow4-designation,
.adv-new-contract-row1-subrow4-contract-object,
.adv-new-contract-row1-subrow4-duration,
.adv-new-contract-row1-subrow4-financial-condition,
.adv-new-contract-row1-subrow4-obligations,
.adv-new-contract-row1-subrow4-confidentiality,
.adv-new-contract-row1-subrow4-responsibility,
.adv-new-contract-row1-subrow4-force-majeure,
.adv-new-contract-row1-subrow4-termination,
.adv-new-contract-row1-subrow4-applicable-law,
.adv-new-contract-row1-subrow4-signatures {
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
  gap: 10px;
}

/* line 527, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-row1-subrow4-preamble, .lightmode .adv-new-contract-row1-subrow4-designation, .lightmode .adv-new-contract-row1-subrow4-contract-object, .lightmode .adv-new-contract-row1-subrow4-duration, .lightmode .adv-new-contract-row1-subrow4-financial-condition, .lightmode .adv-new-contract-row1-subrow4-obligations, .lightmode .adv-new-contract-row1-subrow4-confidentiality, .lightmode .adv-new-contract-row1-subrow4-responsibility, .lightmode .adv-new-contract-row1-subrow4-force-majeure, .lightmode .adv-new-contract-row1-subrow4-termination, .lightmode .adv-new-contract-row1-subrow4-applicable-law, .lightmode .adv-new-contract-row1-subrow4-signatures {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* Boutons d'actions */
/* line 534, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-row2 {
  width: 80%;
  height: 7.5%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
}

/* line 544, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-row2 #fakeSubmitButton {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  border: none;
  cursor: pointer;
  background-color: #C38761;
  color: #140D23;
}

/* line 559, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-row2 #fakeSubmitButton:hover {
  background-color: #864B28;
  transform: scale(1.05);
}

/* line 565, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-row2 form {
  display: flex !important;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  align-items: center;
  height: 100%;
}

/* Classes utilitaires */
/* line 576, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.userChoice {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 15px;
}

/* line 583, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.userChoice .no-recipient, .userChoice .no-document {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-color-primary);
}

/* line 600, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.lightmode .userChoice .no-recipient, .lightmode .userChoice .no-document {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.1) 0%, rgba(20, 13, 35, 0.05) 100%);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 607, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.userChoice .item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* line 621, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.lightmode .userChoice .item {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.1) 0%, rgba(20, 13, 35, 0.05) 100%);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 626, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.userChoice .item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  border-color: rgba(232, 232, 232, 0.6);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

/* line 632, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.lightmode .userChoice .item:hover {
  border-color: rgba(20, 13, 35, 0.4);
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.15) 0%, rgba(20, 13, 35, 0.08) 100%);
}

/* line 638, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.userChoice .item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #C38761, #864B28);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* line 650, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.userChoice .item:hover::before {
  opacity: 1;
}

/* line 654, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.userChoice .item .item-header {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-grow: 1;
}

/* line 660, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.userChoice .item .item-header i {
  color: green;
  font-size: 1rem;
  padding: 8px;
  background-color: rgba(195, 135, 97, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* line 669, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.userChoice .item .item-header p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-color-primary);
  line-height: 1.4;
  transition: color 0.3s ease;
}

/* line 677, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.lightmode .userChoice .item .item-header p {
  color: #140D23;
}

/* line 684, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.userChoice .item:hover .item-header i {
  color: #864B28;
  background-color: rgba(134, 75, 40, 0.15);
  transform: scale(1.1);
}

/* line 690, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.userChoice .item:hover .item-header p {
  color: #FFFFFF;
}

/* line 693, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.lightmode .userChoice .item:hover .item-header p {
  color: #140D23;
}

/* line 699, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.userChoice .item .item-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* line 706, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.userChoice .item .item-actions button {
  all: unset;
  padding: 6px;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-size: 0.7rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 716, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.lightmode .userChoice .item .item-actions button {
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 721, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.userChoice .item .item-actions button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

/* line 725, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.lightmode .userChoice .item .item-actions button:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* line 732, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.userChoice .item:hover .item-actions {
  opacity: 1;
}

/* line 739, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.trash {
  cursor: pointer;
  font-size: 0.8rem;
}

/* line 742, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.trash:hover {
  color: #A60240;
}

/* Responsive */
@media (max-width: 768px) {
  /* line 749, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
  .adv-new-contract-config-row {
    grid-template-columns: 1fr;
  }
  /* line 753, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
  .adv-new-contract-market-type-selector {
    flex-direction: column;
  }
  /* line 757, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
  .adv-new-contract-transaction-selector {
    flex-direction: column;
  }
  /* line 761, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
  .adv-new-contract-clauses-container {
    grid-template-columns: 1fr;
  }
}

/* Styles hérités pour compatibilité */
/* line 767, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 773, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule span {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 781, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-capsule span {
  color: #140D23;
}

/* line 784, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.nightmode .adv-new-contract-capsule span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 790, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-capsule p {
  color: #140D23;
}

/* line 793, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.nightmode .adv-new-contract-capsule p {
  color: #FFFFFF;
}

/* line 799, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-capsule i {
  color: #140D23;
}

/* line 802, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.nightmode .adv-new-contract-capsule i {
  color: #FFFFFF;
}

/* Styles pour les champs de recherche existants */
/* line 809, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-row1-searchbar {
  width: 100%;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
  height: 30px;
}

/* line 823, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-row1-searchbar {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 828, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-row1-searchbar button {
  all: unset;
}

/* line 832, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-row1-searchbar i {
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 837, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-row1-searchbar i {
  color: #140D23 !important;
}

/* line 842, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-row1-searchbar span {
  font-weight: normal !important;
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 848, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-row1-searchbar span {
  color: #140D23 !important;
}

/* Styles pour les champs de saisie existants */
/* line 856, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-clauses-input {
  all: unset;
  height: auto;
  width: auto;
  background-color: transparent;
  font-size: 0.7rem;
  color: #FFFFFF;
}

/* line 864, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-clauses-input {
  color: #140D23;
}

/* line 868, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-clauses-input:focus {
  all: unset;
  height: auto;
  width: auto;
  background-color: transparent;
  font-size: 0.7rem;
  color: #FFFFFF;
}

/* line 876, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-clauses-input:focus {
  color: #140D23;
}

/* line 882, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-clauses-input[type="number"] {
  display: inline-block;
  min-width: 80px;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
  color: #FFFFFF;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

/* line 894, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-clauses-input[type="number"]:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(195, 135, 97, 0.6);
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.15);
}

/* line 900, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-clauses-input[type="number"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 904, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule.lightmode .adv-new-contract-clauses-input[type="number"] {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 909, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule.lightmode .adv-new-contract-clauses-input[type="number"]:focus {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(195, 135, 97, 0.7);
}

/* line 914, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule.lightmode .adv-new-contract-clauses-input[type="number"]::placeholder {
  color: rgba(20, 13, 35, 0.5);
}

/* Styles pour les sélecteurs existants */
/* line 923, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
select {
  all: unset;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: normal;
  padding: 5px 15px;
}

/* line 936, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.lightmode select {
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 941, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
select:focus {
  box-shadow: 0 0 10px 3px rgba(232, 232, 232, 0.5);
  border-color: rgba(232, 232, 232, 0.5);
}

/* line 945, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.lightmode select:focus {
  box-shadow: 0 0 10px 3px rgba(20, 13, 35, 0.3);
  border-color: rgba(20, 13, 35, 0.5);
}

/* line 951, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
select option {
  all: unset;
  background-color: #E8E8E8;
  color: #000000;
}

/* ==========================================================================
   SECTIONS CLASSIQUES - Style harmonisé avec sections personnalisées
   ========================================================================== */
/* line 961, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-clauses-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
}

/* ==========================================================================
   SECTIONS PERSONNALISÉES - Templates custom
   ========================================================================== */
/* line 984, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-custom-clauses-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem 0;
}

/* line 992, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-custom-sections {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* line 999, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-custom-section, .adv-new-contract-classic-section {
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  transition: all 0.3s ease;
}

/* line 1007, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-custom-section:hover, .adv-new-contract-classic-section:hover {
  border-color: rgba(195, 135, 97, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* line 1012, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule.lightmode .adv-new-contract-custom-section, .adv-new-contract-capsule.lightmode .adv-new-contract-classic-section {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.05) 0%, rgba(20, 13, 35, 0.02) 100%);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 1016, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule.lightmode .adv-new-contract-custom-section:hover, .adv-new-contract-capsule.lightmode .adv-new-contract-classic-section:hover {
  border-color: rgba(195, 135, 97, 0.4);
}

/* line 1022, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-custom-section-header, .adv-new-contract-classic-section-header {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

/* line 1027, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-custom-section-header h3, .adv-new-contract-classic-section-header h3, .adv-new-contract-custom-section-header .h3, .adv-new-contract-classic-section-header .h3 {
  all: unset;
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
}

/* line 1036, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule.lightmode .adv-new-contract-custom-section-header h3, .adv-new-contract-capsule.lightmode .adv-new-contract-classic-section-header h3, .adv-new-contract-capsule.lightmode .adv-new-contract-custom-section-header .h3, .adv-new-contract-capsule.lightmode .adv-new-contract-classic-section-header .h3 {
  color: #140D23;
}

/* line 1041, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule.lightmode .adv-new-contract-custom-section-header, .adv-new-contract-capsule.lightmode .adv-new-contract-classic-section-header {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 1046, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-custom-section-content, .adv-new-contract-classic-section-content {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* line 1051, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule.lightmode .adv-new-contract-custom-section-content, .adv-new-contract-capsule.lightmode .adv-new-contract-classic-section-content {
  color: rgba(20, 13, 35, 0.9);
}

/* line 1056, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-custom-section-content input[type="text"], .adv-new-contract-classic-section-content input[type="text"],
.adv-new-contract-custom-section-content input[type="date"],
.adv-new-contract-classic-section-content input[type="date"],
.adv-new-contract-custom-section-content input[type="number"],
.adv-new-contract-classic-section-content input[type="number"],
.adv-new-contract-custom-section-content textarea,
.adv-new-contract-classic-section-content textarea {
  all: unset;
  display: inline-block;
  min-width: 200px;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
  color: #FFFFFF;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

/* line 1072, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-custom-section-content input[type="text"]:focus, .adv-new-contract-classic-section-content input[type="text"]:focus,
.adv-new-contract-custom-section-content input[type="date"]:focus,
.adv-new-contract-classic-section-content input[type="date"]:focus,
.adv-new-contract-custom-section-content input[type="number"]:focus,
.adv-new-contract-classic-section-content input[type="number"]:focus,
.adv-new-contract-custom-section-content textarea:focus,
.adv-new-contract-classic-section-content textarea:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(195, 135, 97, 0.6);
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.15);
}

/* line 1078, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-custom-section-content input[type="text"]::placeholder, .adv-new-contract-classic-section-content input[type="text"]::placeholder,
.adv-new-contract-custom-section-content input[type="date"]::placeholder,
.adv-new-contract-classic-section-content input[type="date"]::placeholder,
.adv-new-contract-custom-section-content input[type="number"]::placeholder,
.adv-new-contract-classic-section-content input[type="number"]::placeholder,
.adv-new-contract-custom-section-content textarea::placeholder,
.adv-new-contract-classic-section-content textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 1082, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule.lightmode .adv-new-contract-custom-section-content input[type="text"], .adv-new-contract-capsule.lightmode .adv-new-contract-classic-section-content input[type="text"], .adv-new-contract-capsule.lightmode .adv-new-contract-custom-section-content input[type="date"], .adv-new-contract-capsule.lightmode .adv-new-contract-classic-section-content input[type="date"], .adv-new-contract-capsule.lightmode .adv-new-contract-custom-section-content input[type="number"], .adv-new-contract-capsule.lightmode .adv-new-contract-classic-section-content input[type="number"], .adv-new-contract-capsule.lightmode .adv-new-contract-custom-section-content textarea, .adv-new-contract-capsule.lightmode .adv-new-contract-classic-section-content textarea {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 1087, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule.lightmode .adv-new-contract-custom-section-content input[type="text"]:focus, .adv-new-contract-capsule.lightmode .adv-new-contract-classic-section-content input[type="text"]:focus, .adv-new-contract-capsule.lightmode .adv-new-contract-custom-section-content input[type="date"]:focus, .adv-new-contract-capsule.lightmode .adv-new-contract-classic-section-content input[type="date"]:focus, .adv-new-contract-capsule.lightmode .adv-new-contract-custom-section-content input[type="number"]:focus, .adv-new-contract-capsule.lightmode .adv-new-contract-classic-section-content input[type="number"]:focus, .adv-new-contract-capsule.lightmode .adv-new-contract-custom-section-content textarea:focus, .adv-new-contract-capsule.lightmode .adv-new-contract-classic-section-content textarea:focus {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(195, 135, 97, 0.7);
}

/* line 1092, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-capsule.lightmode .adv-new-contract-custom-section-content input[type="text"]::placeholder, .adv-new-contract-capsule.lightmode .adv-new-contract-classic-section-content input[type="text"]::placeholder, .adv-new-contract-capsule.lightmode .adv-new-contract-custom-section-content input[type="date"]::placeholder, .adv-new-contract-capsule.lightmode .adv-new-contract-classic-section-content input[type="date"]::placeholder, .adv-new-contract-capsule.lightmode .adv-new-contract-custom-section-content input[type="number"]::placeholder, .adv-new-contract-capsule.lightmode .adv-new-contract-classic-section-content input[type="number"]::placeholder, .adv-new-contract-capsule.lightmode .adv-new-contract-custom-section-content textarea::placeholder, .adv-new-contract-capsule.lightmode .adv-new-contract-classic-section-content textarea::placeholder {
  color: rgba(20, 13, 35, 0.5);
}

/* line 1098, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-custom-section-content textarea, .adv-new-contract-classic-section-content textarea {
  display: block;
  width: 100%;
  min-height: 100px;
  margin: 0.5rem 0;
  resize: vertical;
}

/* line 1107, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-annexes-sections {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Section Facture contractuelle */
/* line 1113, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-invoice-selector {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 16px;
}

/* line 1120, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-invoice-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 120px;
}

/* line 1134, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-invoice-option {
  background: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 1139, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-invoice-option i {
  font-size: 32px;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

/* line 1144, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-invoice-option i {
  color: rgba(20, 13, 35, 0.5);
}

/* line 1149, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-invoice-option span {
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  text-align: center;
}

/* line 1155, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-invoice-option span {
  color: #140D23;
}

/* line 1160, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-invoice-option:hover {
  transform: translateY(-4px);
  background: rgba(195, 135, 97, 0.1);
  border-color: rgba(195, 135, 97, 0.3);
  box-shadow: 0 8px 20px rgba(195, 135, 97, 0.15);
}

/* line 1166, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-invoice-option:hover {
  background: rgba(195, 135, 97, 0.15);
  border-color: rgba(195, 135, 97, 0.4);
}

/* line 1171, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-invoice-option:hover i {
  color: #C38761;
  transform: scale(1.1);
}

/* line 1177, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-invoice-option.selected {
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.2), rgba(195, 135, 97, 0.1));
  border-color: #C38761;
  box-shadow: 0 4px 16px rgba(195, 135, 97, 0.2);
}

/* line 1182, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-invoice-option.selected {
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.25), rgba(195, 135, 97, 0.15));
  border-color: #C38761;
}

/* line 1187, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-invoice-option.selected i {
  color: #C38761;
  transform: scale(1.15);
}

/* line 1192, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-invoice-option.selected span {
  color: #C38761;
}

/* line 1195, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-invoice-option.selected span {
  color: #af6c42;
}

/* line 1202, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-invoice-info {
  margin-top: 16px;
}

/* line 1206, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-info-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: rgba(195, 135, 97, 0.1);
  border-left: 4px solid #C38761;
  border-radius: 8px;
}

/* line 1214, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-info-card {
  background: rgba(195, 135, 97, 0.15);
}

/* line 1218, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-info-card > i {
  font-size: 24px;
  color: #C38761;
  flex-shrink: 0;
  margin-top: 4px;
}

/* line 1225, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-info-card div {
  flex: 1;
}

/* line 1228, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.adv-new-contract-info-card div p {
  margin: 0;
  color: #FFFFFF;
  font-size: 14px;
  line-height: 1.6;
}

/* line 1234, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_new_contract.scss */
.lightmode .adv-new-contract-info-card div p {
  color: #140D23;
}

/* line 2, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  overflow-x: hidden;
}

/* line 12, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 16px 24px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 22, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-close {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.2s ease;
}

/* line 37, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* line 44, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-body {
  flex: 1;
  display: flex;
  overflow: hidden;
}

/* line 51, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-config {
  width: 55%;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 59, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-config::-webkit-scrollbar {
  width: 6px;
}

/* line 63, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-config::-webkit-scrollbar-track {
  background: transparent;
}

/* line 67, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-config::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}

/* line 71, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-config::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* line 78, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-preview {
  width: 45%;
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.15);
}

/* line 85, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-preview-placeholder {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* line 94, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-preview-placeholder i {
  font-size: 1rem;
}

/* line 98, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-preview-placeholder p {
  font-size: 0.9rem;
  margin: 0;
}

/* line 104, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-preview-loading {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
}

/* line 113, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-preview-loading p {
  font-size: 0.9rem;
  margin: 0;
}

/* line 119, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-preview-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* line 126, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* line 133, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

/* line 140, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause.dragging {
  opacity: 0.5;
  border-color: #c18859;
}

/* line 145, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.2s ease;
}

/* line 153, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause-header:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* line 158, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause-drag {
  cursor: grab;
  color: rgba(255, 255, 255, 0.3);
  padding: 2px;
}

/* line 163, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause-drag:active {
  cursor: grabbing;
}

/* line 168, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause-toggle {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 18px;
  flex-shrink: 0;
}

/* line 175, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* line 181, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause-toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 9px;
  transition: 0.3s;
}

/* line 189, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause-toggle-slider::before {
  content: '';
  position: absolute;
  height: 14px;
  width: 14px;
  left: 2px;
  bottom: 2px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
}

/* line 202, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
input:checked + .contract-builder-clause-toggle-slider {
  background: #4caf50;
}

/* line 206, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
input:checked + .contract-builder-clause-toggle-slider::before {
  transform: translateX(16px);
}

/* line 211, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause-title {
  flex: 1;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary, #fff);
  margin: 0;
}

/* line 219, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause-tone-badge {
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(193, 136, 89, 0.15);
  color: #c18859;
  text-transform: capitalize;
}

/* line 228, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause-delete {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 4px;
  font-size: 0.75rem;
  transition: color 0.2s ease;
}

/* line 237, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause-delete:hover {
  color: #dc3545;
}

/* line 242, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause-expand {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 4px;
}

/* line 250, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause-body {
  padding: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* line 255, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause-tone-selector {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

/* line 261, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause-tone-selector label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

/* line 267, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause-tone-selector select {
  flex: 1;
  max-width: 200px;
}

/* line 273, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause-content {
  min-height: 80px;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-primary, #fff);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* line 283, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause-content:focus {
  outline: none;
  border-color: #c18859;
}

/* line 288, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause-content[placeholder]:empty::before {
  content: attr(placeholder);
  color: rgba(255, 255, 255, 0.3);
}

/* line 296, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-add-section {
  margin-top: 14px;
  text-align: center;
}

/* line 303, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-toggle {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

/* line 309, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.85rem;
}

/* line 324, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-option:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.7);
}

/* line 329, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-option.selected {
  border-color: #c18859;
  background: rgba(193, 136, 89, 0.12);
  color: #c18859;
}

/* line 335, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-option i {
  font-size: 0.9rem;
}

/* line 340, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-config {
  margin-top: 16px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

/* line 347, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-config .adv-wizard-field {
  margin-bottom: 0;
}

/* line 350, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-config .adv-wizard-field label {
  margin-bottom: 6px;
}

/* line 353, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-config .adv-wizard-field label i.fa-solid {
  color: #c18859;
}

/* line 359, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-config .adv-wizard-select,
.contract-builder-billing-config .adv-wizard-input[type="date"],
.contract-builder-billing-config .adv-wizard-input.flatpickr-input {
  max-width: 220px;
  cursor: pointer;
}

/* line 366, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-config .adv-wizard-input[type="number"] {
  max-width: 120px;
}

/* line 371, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  /* line 371, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
  .contract-builder-billing-row {
    grid-template-columns: 1fr;
  }
}

/* line 382, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-interval {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 389, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-interval .contract-builder-billing-interval-input {
  width: 70px;
  text-align: center;
}

/* line 395, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-summary {
  margin-top: 16px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(193, 136, 89, 0.06);
  border: 1px solid rgba(193, 136, 89, 0.15);
}

/* line 402, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-summary h4, .contract-builder-billing-summary .h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: #c18859;
  margin-bottom: 10px;
}

/* line 408, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-summary h4 i, .contract-builder-billing-summary .h4 i {
  margin-right: 6px;
}

/* line 413, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-summary p {
  margin: 4px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 418, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-summary p strong {
  color: rgba(255, 255, 255, 0.9);
}

/* line 426, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-articles-list {
  max-height: 300px;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-top: 8px;
}

/* line 433, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-articles-list::-webkit-scrollbar {
  width: 5px;
}

/* line 437, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-articles-list::-webkit-scrollbar-track {
  background: transparent;
}

/* line 441, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-articles-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}

/* line 447, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: background 0.15s ease;
  font-size: 0.85rem;
}

/* line 457, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-item:last-child {
  border-bottom: none;
}

/* line 461, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

/* line 465, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-item input[type="checkbox"] {
  accent-color: #c18859;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* line 472, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-item .contract-builder-article-name {
  flex: 1;
  color: var(--text-primary, #fff);
}

/* line 477, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-item .contract-builder-article-ref {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  min-width: 80px;
}

/* line 483, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-item .contract-builder-article-price {
  color: #c18859;
  font-weight: 500;
  font-size: 0.8rem;
  min-width: 80px;
  text-align: right;
}

/* line 494, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-clause-toolbar {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

/* line 500, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-insert-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  font-size: 0.75rem;
  border-radius: 5px;
  border: 1px solid rgba(193, 136, 89, 0.3);
  background: rgba(193, 136, 89, 0.08);
  color: #c18859;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 513, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-insert-btn:hover {
  background: rgba(193, 136, 89, 0.15);
  border-color: #c18859;
}

/* line 518, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-insert-btn i {
  font-size: 0.7rem;
}

/* line 523, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-palette {
  margin-bottom: 12px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(193, 136, 89, 0.2);
  background: rgba(193, 136, 89, 0.04);
}

/* line 531, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-group {
  margin-bottom: 10px;
}

/* line 534, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-group:last-child {
  margin-bottom: 0;
}

/* line 539, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-group-header {
  font-size: 0.75rem;
  font-weight: 600;
  color: #c18859;
  margin-bottom: 6px;
}

/* line 545, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-group-header i {
  margin-right: 4px;
  width: 14px;
  text-align: center;
}

/* line 552, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-group-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

/* line 558, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-btn {
  padding: 3px 8px;
  font-size: 0.7rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: 'SF Mono', 'Monaco', 'Menlo', monospace;
}

/* line 569, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-btn:hover {
  background: rgba(193, 136, 89, 0.12);
  border-color: rgba(193, 136, 89, 0.3);
  color: #c18859;
}

/* line 576, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-create-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  margin-top: 10px;
  padding: 6px 10px;
  font-size: 0.75rem;
  border: 1px dashed rgba(193, 136, 89, 0.4);
  background: rgba(193, 136, 89, 0.06);
  color: #c18859;
  font-family: inherit;
  justify-content: center;
}

/* line 590, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-create-btn:hover {
  background: rgba(193, 136, 89, 0.15);
  border-color: #c18859;
}

/* line 596, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-palette-empty {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  text-align: center;
}

/* line 605, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-var-tag {
  display: inline;
  padding: 1px 6px;
  border-radius: 3px;
  background: rgba(193, 136, 89, 0.15);
  border: 1px solid rgba(193, 136, 89, 0.25);
  color: #c18859;
  font-size: 0.8em;
  font-family: 'SF Mono', 'Monaco', 'Menlo', monospace;
  white-space: nowrap;
  user-select: all;
}

/* line 620, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-recap-vars-resolved {
  color: #4caf50;
}

/* line 624, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-recap-vars-warning {
  color: #ff9800;
  font-size: 0.75rem;
}

/* line 629, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-recap-vars-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
}

/* line 636, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-recap-var-chip {
  padding: 2px 6px;
  font-size: 0.7rem;
  border-radius: 3px;
  font-family: 'SF Mono', 'Monaco', 'Menlo', monospace;
}

/* line 642, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-recap-var-chip--resolved {
  background: rgba(76, 175, 80, 0.12);
  border: 1px solid rgba(76, 175, 80, 0.25);
  color: #4caf50;
}

/* line 648, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-recap-var-chip--unresolved {
  background: rgba(255, 152, 0, 0.12);
  border: 1px solid rgba(255, 152, 0, 0.25);
  color: #ff9800;
}

/* line 657, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-counter {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 8px;
  margin-bottom: 12px;
}

/* line 664, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-counter--complete {
  background: rgba(76, 175, 80, 0.08);
  border: 1px solid rgba(76, 175, 80, 0.25);
}

/* line 669, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-counter--incomplete {
  background: rgba(255, 152, 0, 0.08);
  border: 1px solid rgba(255, 152, 0, 0.25);
}

/* line 675, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-counter-badge {
  font-size: 0.85rem;
  font-weight: 500;
}

/* line 679, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-counter--complete .contract-builder-variable-counter-badge {
  color: #4caf50;
}

/* line 683, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-counter--incomplete .contract-builder-variable-counter-badge {
  color: #ff9800;
}

/* line 687, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-counter-badge i {
  margin-right: 6px;
}

/* line 694, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

/* line 701, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
}

/* line 709, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-item--resolved {
  background: rgba(76, 175, 80, 0.06);
  border: 1px solid rgba(76, 175, 80, 0.15);
}

/* line 714, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-item--unresolved {
  background: rgba(255, 152, 0, 0.06);
  border: 1px solid rgba(255, 152, 0, 0.15);
}

/* line 720, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-name {
  font-family: 'SF Mono', 'Monaco', 'Menlo', monospace;
  font-size: 0.8rem;
  color: #c18859;
  min-width: 160px;
}

/* line 727, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-value {
  flex: 1;
  color: rgba(255, 255, 255, 0.7);
}

/* line 732, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-input {
  flex: 1;
  max-width: 300px;
}

/* line 737, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-status {
  font-size: 0.8rem;
}

/* line 740, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-item--resolved .contract-builder-variable-status {
  color: #4caf50;
}

/* line 744, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-variable-item--unresolved .contract-builder-variable-status {
  color: #ff9800;
}

/* line 751, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-custom-variables {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

/* line 758, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-custom-variable-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 6px;
  background: rgba(193, 136, 89, 0.06);
  border: 1px solid rgba(193, 136, 89, 0.15);
}

/* line 768, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-custom-variable-label {
  flex: 1;
  font-size: 0.85rem;
  color: var(--text-primary, #fff);
}

/* line 774, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-custom-variable-key {
  font-size: 0.75rem;
  color: #c18859;
  background: rgba(193, 136, 89, 0.1);
  padding: 2px 6px;
  border-radius: 3px;
}

/* line 782, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-custom-variable-remove {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease;
}

/* line 790, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-custom-variable-remove:hover {
  color: #dc3545;
}

/* line 797, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-save-template {
  text-align: center;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* line 805, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-annexes-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

/* line 812, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-annex-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
}

/* line 822, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-annex-item i {
  color: #dc3545;
  font-size: 1.1rem;
}

/* line 828, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-annex-name {
  flex: 1;
  color: var(--text-primary, #fff);
}

/* line 833, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-annex-size {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
}

/* line 838, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-annex-badge {
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(76, 175, 80, 0.12);
  border: 1px solid rgba(76, 175, 80, 0.25);
  color: #4caf50;
  font-weight: 500;
}

/* line 848, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-annex-item--pending {
  border-style: dashed;
  border-color: rgba(76, 175, 80, 0.25);
  background: rgba(76, 175, 80, 0.04);
}

/* line 854, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-annexes-upload {
  margin-top: 8px;
}

/* line 858, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-file-input {
  display: none;
}

/* line 862, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-upload-zone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  border: 2px dashed rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.85rem;
}

/* line 875, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-upload-zone:hover {
  border-color: #c18859;
  color: #c18859;
  background: rgba(193, 136, 89, 0.04);
}

/* line 881, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-upload-zone i {
  font-size: 1.2rem;
}

/* line 888, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-unit-price-table {
  margin-top: 8px;
  overflow-x: auto;
}

/* line 893, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-price-grid {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

/* line 898, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-price-grid th {
  text-align: left;
  padding: 8px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 908, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-price-grid th:nth-child(1) {
  width: 30%;
}

/* line 909, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-price-grid th:nth-child(2) {
  width: 20%;
}

/* line 910, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-price-grid th:nth-child(3) {
  width: 12%;
}

/* line 911, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-price-grid th:nth-child(4) {
  width: 15%;
}

/* line 912, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-price-grid th:nth-child(5) {
  width: 15%;
}

/* line 913, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-price-grid th:nth-child(6) {
  width: 8%;
}

/* line 916, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-price-grid td {
  padding: 6px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* line 921, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-price-grid .adv-wizard-input {
  width: 100%;
  min-width: 0;
  font-size: 0.85rem;
  box-sizing: border-box;
}

/* line 929, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-price-total {
  white-space: nowrap;
  color: #c18859;
  font-weight: 500;
  font-size: 0.85rem;
  min-width: 90px;
}

/* line 937, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-price-remove {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease;
}

/* line 945, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-price-remove:hover {
  color: #dc3545;
}

/* line 952, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.adv-field-required {
  color: #dc3545;
  font-weight: 600;
}

/* line 958, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.adv-wizard-field.field-error .adv-wizard-input,
.adv-wizard-field.field-error .flatpickr-input {
  border-color: #dc3545 !important;
}

/* line 963, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.adv-wizard-field.field-error label {
  color: #dc3545;
}

/* line 970, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-tooltip-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 4px;
  cursor: help;
}

/* line 977, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-tooltip-trigger > i.fa-solid {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease;
}

/* line 983, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-tooltip-trigger:hover > i.fa-solid {
  color: #c18859;
}

/* line 987, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-tooltip-trigger .contract-builder-tooltip-text {
  display: none;
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.65rem;
  font-weight: 400;
  line-height: 1.3;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  max-width: 280px;
  white-space: normal;
  z-index: 10;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* line 1007, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-tooltip-trigger .contract-builder-tooltip-text::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.9);
}

/* line 1018, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-tooltip-trigger:hover .contract-builder-tooltip-text {
  display: block;
}

/* line 1024, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-tooltip-trigger > i.fa-solid {
  color: rgba(0, 0, 0, 0.3);
}

/* line 1028, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-tooltip-trigger:hover > i.fa-solid {
  color: #c18859;
}

/* line 1032, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-tooltip-trigger .contract-builder-tooltip-text {
  background: rgba(30, 30, 60, 0.95);
}

/* line 1039, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-emission-visual {
  margin: 16px 0;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 1047, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-emission-timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* line 1054, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-emission-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

/* line 1061, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-emission-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

/* line 1066, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-emission-dot--emission {
  background: #c18859;
}

/* line 1070, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-emission-dot--reference {
  background: #4caf50;
}

/* line 1075, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-emission-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-primary, #fff);
}

/* line 1081, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-emission-sublabel {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
}

/* line 1086, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-emission-arrow {
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.2rem;
}

/* line 1094, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder--review-mode .contract-builder-body {
  position: relative;
}

/* line 1098, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder--review-mode .contract-builder-config {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  overflow: visible;
  padding: 12px 24px;
  border-right: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  z-index: 10;
}

/* line 1112, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder--review-mode .contract-builder-preview {
  width: 100%;
  padding-bottom: 70px;
}

/* line 1120, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-template-selector {
  margin-top: 8px;
}

/* line 1123, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-template-selector .adv-wizard-select {
  width: 92%;
  max-width: 100%;
}

/* line 1132, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-config .adv-wizard-select,
.contract-builder-config .adv-wizard-input {
  width: 92%;
  max-width: 100%;
  box-sizing: border-box;
}

/* line 1142, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-html-preview {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  background: #fff;
  color: #333;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* line 1151, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-html-preview::-webkit-scrollbar {
  width: 6px;
}

/* line 1155, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-html-preview::-webkit-scrollbar-track {
  background: transparent;
}

/* line 1159, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-html-preview::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 3px;
}

/* line 1165, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-html-preview-header {
  font-size: 0.8rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 2px solid #eee;
}

/* line 1175, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-html-preview-header i {
  margin-right: 6px;
  color: #c18859;
}

/* line 1181, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-html-section {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}

/* line 1186, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-html-section:last-child {
  border-bottom: none;
}

/* line 1191, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-html-section-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #222;
  margin: 0 0 8px;
}

/* line 1198, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-html-section-content {
  color: #444;
  font-size: 0.85rem;
  line-height: 1.8;
}

/* line 1205, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-preview-var {
  display: inline;
  padding: 1px 6px;
  border-radius: 3px;
  font-family: 'SF Mono', 'Monaco', 'Menlo', monospace;
  font-size: 0.85em;
  transition: all 0.3s ease;
}

/* line 1213, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-preview-var--resolved {
  background: rgba(76, 175, 80, 0.12);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #2e7d32;
}

/* line 1219, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-preview-var--unresolved {
  background: rgba(255, 152, 0, 0.12);
  border: 1px solid rgba(255, 152, 0, 0.3);
  color: #e65100;
}

/* line 1225, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-preview-var--gold {
  background: rgba(193, 136, 89, 0.18);
  border: 1px solid rgba(193, 136, 89, 0.4);
  color: #8b5e3c;
  font-weight: 500;
}

/* line 1232, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-preview-var--highlight {
  background: rgba(255, 180, 50, 0.35) !important;
  border: 2px solid #c18859 !important;
  color: #6b3a1f !important;
  font-weight: 600 !important;
  box-shadow: 0 0 8px rgba(193, 136, 89, 0.5), 0 0 0 4px rgba(193, 136, 89, 0.25);
  animation: contract-var-pulse 1s ease-in-out infinite;
}

@keyframes contract-var-pulse {
  0%, 100% {
    box-shadow: 0 0 8px rgba(193, 136, 89, 0.5), 0 0 0 4px rgba(193, 136, 89, 0.25);
  }
  50% {
    box-shadow: 0 0 16px rgba(193, 136, 89, 0.7), 0 0 0 8px rgba(193, 136, 89, 0.15);
  }
}

@media (max-width: 992px) {
  /* line 1253, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
  .contract-builder-body {
    flex-direction: column;
  }
  /* line 1257, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
  .contract-builder-config {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    max-height: 60vh;
  }
  /* line 1264, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
  .contract-builder-preview {
    width: 100%;
    min-height: 40vh;
  }
}

/* line 1274, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-inline-add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 8px;
  border: 1px solid rgba(193, 136, 89, 0.4);
  background: rgba(193, 136, 89, 0.08);
  color: #c18859;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.85rem;
}

/* line 1289, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-inline-add-btn:hover {
  background: rgba(193, 136, 89, 0.2);
  border-color: #c18859;
}

/* line 1295, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-inline-form {
  margin-bottom: 10px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(193, 136, 89, 0.25);
  background: rgba(193, 136, 89, 0.04);
}

/* line 1303, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-inline-form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 10px;
}

/* line 1309, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-inline-form-fields .adv-wizard-input {
  max-width: none;
  width: 100%;
}

/* line 1315, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-inline-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

/* line 1321, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-inline-form-btn {
  padding: 6px 14px;
  border-radius: 6px;
  border: none;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 1329, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-inline-form-btn--cancel {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
}

/* line 1333, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-inline-form-btn--cancel:hover {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
}

/* line 1339, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-inline-form-btn--confirm {
  background: rgba(193, 136, 89, 0.2);
  color: #c18859;
}

/* line 1343, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-inline-form-btn--confirm:hover {
  background: rgba(193, 136, 89, 0.35);
}

/* line 1349, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-contact-search-row {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  width: 100%;
}

/* line 1355, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-contact-search-row form {
  flex: 1;
}

/* line 1364, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-articles {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

/* line 1370, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-articles > label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* line 1378, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-articles > label i {
  color: #c18859;
}

/* line 1382, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-search {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

/* line 1388, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-search-input-wrapper {
  flex: 1;
  position: relative;
}

/* line 1392, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-search-input-wrapper > i {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

/* line 1401, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-search-input-wrapper .adv-wizard-input {
  padding-left: 32px;
  max-width: none;
  width: 100%;
}

/* line 1408, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-results {
  position: absolute;
  width: 100%;
  background: rgba(30, 30, 35, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 20;
}

/* line 1419, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  cursor: pointer;
  transition: background 0.15s;
}

/* line 1427, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-result:hover {
  background: rgba(193, 136, 89, 0.15);
}

/* line 1431, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-result:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* line 1436, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-result-ref {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

/* line 1441, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-result-price {
  font-size: 0.8rem;
  color: #c18859;
  font-weight: 500;
}

/* line 1447, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-result--empty {
  padding: 12px;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

/* line 1454, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-empty {
  text-align: center;
  padding: 20px;
  color: rgba(255, 255, 255, 0.3);
}

/* line 1459, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-empty i {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

/* line 1460, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-empty p {
  margin: 0;
  font-size: 0.85rem;
}

/* line 1463, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
  margin-bottom: 8px;
}

/* line 1469, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-table th {
  padding: 8px 6px;
  text-align: left;
  font-weight: 600;
  color: #fff;
  background-color: #c18859;
  border-bottom: none;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 1481, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-table td {
  padding: 8px 6px;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  vertical-align: middle;
}

/* line 1489, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-qty {
  width: 55px;
  padding: 4px 6px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 0.8rem;
  text-align: center;
}

/* line 1500, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-remove {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  padding: 4px;
  transition: color 0.15s;
}

/* line 1508, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-remove:hover {
  color: #dc3545;
}

/* line 1511, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-totals {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 1518, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-totals > div {
  display: flex;
  gap: 6px;
  font-size: 0.85rem;
}

/* line 1523, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-totals > div span:first-child {
  color: rgba(255, 255, 255, 0.5);
}

/* line 1524, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-article-totals > div span:last-child {
  color: #c18859;
  font-weight: 600;
}

/* line 1532, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-contact {
  margin-top: 16px;
  padding: 12px;
  border-radius: 8px;
  border: 1px dashed rgba(193, 136, 89, 0.3);
  background: rgba(193, 136, 89, 0.04);
  position: relative;
}

/* line 1540, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-contact > label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* line 1548, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-billing-contact > label i {
  color: #c18859;
}

/* line 1552, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-contact-search {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

/* line 1558, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-contact-search-input-wrapper {
  flex: 1;
  position: relative;
}

/* line 1562, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-contact-search-input-wrapper > i {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

/* line 1571, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-contact-search-input-wrapper .adv-wizard-input {
  padding-left: 32px;
  max-width: none;
  width: 100%;
}

/* line 1578, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-contact-results {
  position: absolute;
  width: calc(100% - 24px);
  max-height: 180px;
  overflow-y: auto;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(30, 30, 35, 0.95);
  z-index: 20;
}

/* line 1589, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-contact-result {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  cursor: pointer;
  transition: background 0.15s;
}

/* line 1597, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-contact-result:hover {
  background: rgba(193, 136, 89, 0.15);
}

/* line 1598, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-contact-result:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* line 1600, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-contact-result > i {
  color: rgba(255, 255, 255, 0.3);
}

/* line 1603, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-contact-result-info {
  display: flex;
  flex-direction: column;
}

/* line 1607, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-contact-result-info strong {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
}

/* line 1608, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-contact-result-info span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* line 1611, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-contact-result-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

/* line 1616, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-contact-result-name i {
  margin-right: 4px;
  color: rgba(255, 255, 255, 0.3);
}

/* line 1619, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-contact-result-email {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-left: auto;
}

/* line 1625, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-contact-result--empty {
  padding: 12px;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

/* line 1632, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-selected-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(193, 136, 89, 0.1);
  border: 1px solid rgba(193, 136, 89, 0.25);
}

/* line 1642, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-selected-contact-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 1647, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-selected-contact-info i {
  color: #28a745;
}

/* line 1649, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-selected-contact-info span:first-of-type {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
}

/* line 1655, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-selected-contact-info span:last-of-type {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

/* line 1663, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-review-billing {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 8px;
}

/* line 1671, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-review-billing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* line 1678, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-review-billing-row:last-child {
  border-bottom: none;
}

/* line 1681, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-review-billing-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* line 1686, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-review-billing-value {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
}

/* line 1690, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-review-billing-value i {
  margin-right: 4px;
  color: #c18859;
}

/* line 1691, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-review-billing-value strong {
  color: #c18859;
}

/* line 1699, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-article-results {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(0, 0, 0, 0.1);
}

/* line 1705, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-article-result:hover {
  background: rgba(193, 136, 89, 0.08);
}

/* line 1706, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-article-result:not(:last-child) {
  border-color: rgba(0, 0, 0, 0.06);
}

/* line 1709, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-article-result-ref {
  color: rgba(0, 0, 0, 0.85);
}

/* line 1710, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-article-empty {
  color: rgba(0, 0, 0, 0.3);
}

/* line 1713, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-article-table th {
  color: #fff;
  background-color: #8b5e3c;
  border-bottom: none;
}

/* line 1714, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-article-table td {
  color: rgba(0, 0, 0, 0.85);
  border-color: rgba(0, 0, 0, 0.05);
}

/* line 1717, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-article-qty {
  border-color: rgba(0, 0, 0, 0.15);
  background: rgba(0, 0, 0, 0.03);
  color: #333;
}

/* line 1723, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-article-remove {
  color: rgba(0, 0, 0, 0.3);
}

/* line 1726, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-article-totals > div span:first-child {
  color: rgba(0, 0, 0, 0.5);
}

/* line 1729, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-contact-results {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(0, 0, 0, 0.1);
}

/* line 1735, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-contact-result:hover {
  background: rgba(193, 136, 89, 0.08);
}

/* line 1736, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-contact-result > i {
  color: rgba(0, 0, 0, 0.3);
}

/* line 1740, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-contact-result-info strong {
  color: rgba(0, 0, 0, 0.85);
}

/* line 1741, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-contact-result-info span {
  color: rgba(0, 0, 0, 0.5);
}

/* line 1744, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-contact-result-name {
  color: rgba(0, 0, 0, 0.85);
}

/* line 1746, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-contact-result-name i {
  color: rgba(0, 0, 0, 0.3);
}

/* line 1749, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-contact-result-email {
  color: rgba(0, 0, 0, 0.5);
}

/* line 1754, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-selected-contact-info span:first-of-type {
  color: rgba(0, 0, 0, 0.85);
}

/* line 1755, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-selected-contact-info span:last-of-type {
  color: rgba(0, 0, 0, 0.5);
}

/* line 1758, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-review-billing {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.08);
}

/* line 1763, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-review-billing-row {
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

/* line 1767, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-review-billing-label {
  color: rgba(0, 0, 0, 0.5);
}

/* line 1768, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-review-billing-value {
  color: rgba(0, 0, 0, 0.85);
}

/* line 1770, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-inline-form {
  background: rgba(193, 136, 89, 0.03);
  border-color: rgba(193, 136, 89, 0.15);
}

/* line 1775, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-inline-form-btn--cancel {
  background: rgba(0, 0, 0, 0.06);
  color: rgba(0, 0, 0, 0.5);
}

/* line 1779, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-inline-form-btn--cancel:hover {
  background: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.7);
}

/* line 1786, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-modal .custom-modal {
  background-color: #fff;
  color: #333;
}

/* line 1791, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-modal .custom-modal-body label {
  color: #333 !important;
  text-shadow: none !important;
}

/* line 1793, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-modal .custom-modal-body .form-control {
  background-color: #fff !important;
  color: #333 !important;
  border-color: rgba(0, 0, 0, 0.2) !important;
}

/* line 1799, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.lightmode .contract-builder-modal .form-errors {
  color: #dc3545;
}

/* line 1807, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 1050;
}

/* line 1820, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal .custom-modal {
  background-color: rgba(30, 30, 35, 0.98);
  color: #fff;
  border-radius: 8px;
  width: 90%;
  max-width: 480px;
  max-height: 90%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
}

/* line 1833, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal .custom-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 1841, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal .custom-modal-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

/* line 1846, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal .custom-modal-title i {
  margin-right: 8px;
  color: #c18859;
}

/* line 1849, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal .custom-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

/* line 1858, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal .custom-modal-close:hover {
  color: #fff;
}

/* line 1861, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal .custom-modal-body {
  padding: 20px;
}

/* line 1864, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal .custom-modal-body .form-group {
  margin-bottom: 16px;
}

/* line 1868, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal .custom-modal-body label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

/* line 1876, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal .custom-modal-body .form-control {
  width: 100%;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 0.9rem;
}

/* line 1885, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal .custom-modal-body .form-control:focus {
  border-color: #c18859;
  outline: none;
  box-shadow: 0 0 0 2px rgba(193, 136, 89, 0.2);
}

/* line 1891, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal .custom-modal-body .form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

/* line 1894, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal .custom-modal-body .form-errors {
  padding: 10px 12px;
  margin-bottom: 12px;
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 6px;
  color: #f5a5a5;
  font-size: 0.85rem;
}

/* line 1903, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal .custom-modal-body .form-errors p {
  margin: 0;
}

/* line 1904, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal .custom-modal-body .form-errors p + p {
  margin-top: 4px;
}

/* line 1908, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal .custom-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 1916, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal .form-button, .contract-builder-modal .users-management-container .users-header .add-user-btn, .users-management-container .users-header .contract-builder-modal .add-user-btn, .contract-builder-modal .crm-action-button {
  padding: 8px 16px;
  border-radius: 6px;
  border: none;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  background: #c18859;
  color: #fff;
  transition: background 0.15s;
}

/* line 1927, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal .form-button:hover, .contract-builder-modal .users-management-container .users-header .add-user-btn:hover, .users-management-container .users-header .contract-builder-modal .add-user-btn:hover, .contract-builder-modal .crm-action-button:hover {
  background: #b07342;
}

/* line 1928, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal .form-button:disabled, .contract-builder-modal .users-management-container .users-header .add-user-btn:disabled, .users-management-container .users-header .contract-builder-modal .add-user-btn:disabled, .contract-builder-modal .crm-action-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* line 1930, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal .form-button.btn-secondary, .contract-builder-modal .users-management-container .users-header .btn-secondary.add-user-btn, .users-management-container .users-header .contract-builder-modal .btn-secondary.add-user-btn, .contract-builder-modal .btn-secondary.crm-action-button, .contract-builder-modal .crm-action-button.crm-action-button-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

/* line 1934, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal .form-button.btn-secondary:hover, .contract-builder-modal .users-management-container .users-header .btn-secondary.add-user-btn:hover, .users-management-container .users-header .contract-builder-modal .btn-secondary.add-user-btn:hover, .contract-builder-modal .btn-secondary.crm-action-button:hover, .contract-builder-modal .crm-action-button.crm-action-button-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* line 1937, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../back-office/adv/contract_management/_contract_builder.scss */
.contract-builder-modal .form-button .button-loading, .contract-builder-modal .users-management-container .users-header .add-user-btn .button-loading, .users-management-container .users-header .contract-builder-modal .add-user-btn .button-loading, .contract-builder-modal .crm-action-button .button-loading {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   CONTRACT CREATION MODAL - Modal de choix type + parcours
   Style cohérent avec _organization_wizard_modal.scss
   ========================================================================== */
/* line 6, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
}

/* line 18, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-overlay.active, .contract-creation-modal-overlay[style*="display: flex"] {
  display: flex !important;
}

/* line 24, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-content {
  max-width: 700px;
  width: 95%;
  max-height: 85vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
  color: white;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  padding: 0;
}

/* line 42, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px 0;
}

/* line 48, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-header h2, .contract-creation-modal-header .h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

/* line 56, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color 0.2s ease;
  padding: 0;
  line-height: 1;
}

/* line 72, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-close:hover {
  color: #C38761;
}

/* line 77, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 16px 24px;
}

/* line 83, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-step {
  padding: 0 24px 24px;
}

/* line 87, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-step-title {
  text-align: center;
  margin-bottom: 24px;
}

/* line 91, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-step-title h3, .contract-creation-modal-step-title .h3 {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Cards de sélection */
/* line 100, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

/* line 106, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-cards--two {
  grid-template-columns: repeat(2, 1fr);
}

/* line 111, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: white;
  text-align: center;
}

/* line 125, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(195, 135, 97, 0.4);
  transform: translateY(-2px);
}

/* line 131, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-card.selected {
  background: rgba(195, 135, 97, 0.15);
  border-color: #C38761;
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.3);
}

/* line 137, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-card--wide {
  padding: 28px 20px;
}

/* line 142, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-card-icon {
  font-size: 1.8rem;
  color: #C38761;
  margin-bottom: 4px;
}

/* line 148, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-card-label {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

/* line 154, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-card-description {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.3;
}

/* Navigation */
/* line 161, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 8px;
  padding-top: 16px;
}

/* line 171, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-btn {
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  min-width: 120px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
}

/* line 185, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-btn--secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}

/* line 190, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

/* line 196, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-btn--primary {
  background: #C38761;
  border: 1px solid #C38761;
  color: white;
}

/* line 201, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-btn--primary:hover:not(:disabled) {
  background: #bc794f;
}

/* line 205, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-btn--primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ==========================================================================
   LIGHT MODE
   ========================================================================== */
/* line 215, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-content {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(20, 13, 35, 0.15);
  box-shadow: 0 8px 32px rgba(20, 13, 35, 0.15);
  color: #140D23;
}

/* line 221, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-content .contract-creation-modal-header h2, .lightmode .contract-creation-modal-content .contract-creation-modal-header .h2 {
  color: #140D23;
}

/* line 225, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-content .contract-creation-modal-close {
  color: #140D23;
}

/* line 228, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-content .contract-creation-modal-close:hover {
  color: #C38761;
}

/* line 233, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-content .contract-creation-modal-divider {
  border-top-color: rgba(20, 13, 35, 0.1);
}

/* line 237, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-content .contract-creation-modal-step-title h3, .lightmode .contract-creation-modal-content .contract-creation-modal-step-title .h3 {
  color: rgba(20, 13, 35, 0.85);
}

/* line 241, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-content .contract-creation-card {
  background: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.15);
  color: #140D23;
}

/* line 246, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-content .contract-creation-card:hover {
  background: rgba(20, 13, 35, 0.06);
  border-color: rgba(195, 135, 97, 0.4);
}

/* line 251, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-content .contract-creation-card.selected {
  background: rgba(195, 135, 97, 0.08);
  border-color: #C38761;
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.2);
}

/* line 258, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-content .contract-creation-card-icon {
  color: #C38761;
}

/* line 262, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-content .contract-creation-card-label {
  color: #140D23;
}

/* line 266, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-content .contract-creation-card-description {
  color: rgba(20, 13, 35, 0.6);
}

/* line 270, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-content .contract-creation-modal-nav {
  border-top-color: rgba(20, 13, 35, 0.1);
}

/* line 275, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-content .contract-creation-modal-btn--secondary {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 280, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-content .contract-creation-modal-btn--secondary:hover {
  background: rgba(20, 13, 35, 0.1);
}

/* line 285, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-content .contract-creation-modal-btn--primary {
  background: #C38761;
  border-color: #C38761;
}

/* line 289, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-content .contract-creation-modal-btn--primary:hover:not(:disabled) {
  background: #bc794f;
}

/* ==========================================================================
   DELETE MODAL - Confirmation de suppression d'un modèle
   ========================================================================== */
/* line 300, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.contract-delete-modal-body {
  text-align: center;
  padding: 8px 0 20px;
}

/* line 305, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.contract-delete-modal-icon {
  font-size: 2.5rem;
  color: #dc3545;
  margin-bottom: 16px;
}

/* line 311, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.contract-delete-modal-message {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 8px;
}

/* line 316, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.contract-delete-modal-message strong {
  color: #fff;
}

/* line 321, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.contract-delete-modal-warning {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* line 327, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-btn--danger {
  background: #dc3545;
  border: 1px solid #dc3545;
  color: white;
}

/* line 332, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-btn--danger:hover {
  background: #c62232;
}

/* line 337, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-delete-modal-message {
  color: rgba(0, 0, 0, 0.75);
}

/* line 340, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-delete-modal-message strong {
  color: #000;
}

/* line 345, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-delete-modal-warning {
  color: rgba(0, 0, 0, 0.45);
}

/* line 349, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-btn--danger {
  background: #dc3545;
  border-color: #dc3545;
  color: white;
}

/* line 354, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-btn--danger:hover {
  background: #c62232;
}

/* ==========================================================================
   INPUT MODAL - Champ de saisie dans la modal (section / variable)
   ========================================================================== */
/* line 362, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-step .contract-creation-modal-input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  outline: none;
  transition: border-color 0.2s ease;
}

/* line 373, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-step .contract-creation-modal-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* line 377, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-step .contract-creation-modal-input:focus {
  border-color: #C38761;
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.2);
}

/* line 383, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.contract-creation-modal-step .contract-creation-modal-field-label {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
}

/* line 391, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-step .contract-creation-modal-input {
  background: rgba(20, 13, 35, 0.04);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 396, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-step .contract-creation-modal-input::placeholder {
  color: rgba(20, 13, 35, 0.4);
}

/* line 400, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-step .contract-creation-modal-input:focus {
  border-color: #C38761;
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.2);
}

/* line 406, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
.lightmode .contract-creation-modal-step .contract-creation-modal-field-label {
  color: rgba(20, 13, 35, 0.85);
}

@media (max-width: 768px) {
  /* line 411, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
  .contract-creation-modal-cards {
    grid-template-columns: 1fr;
  }
  /* line 414, app/assets/stylesheets/pages/servicespace/commerce/crm/contracts_management/../../../../../shared/_contract_creation_modal.scss */
  .contract-creation-modal-cards--two {
    grid-template-columns: 1fr;
  }
}

/* line 1, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointment-form-modal {
  max-width: 560px;
  width: 90vw;
}

/* line 7, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointment-form .appointment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* line 13, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointment-form .appointment-main,
.appointment-form .appointment-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 20, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointment-form .form-errors {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.4);
  border-radius: 6px;
  padding: 8px 12px;
}

/* line 25, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointment-form .form-errors ul {
  margin: 0;
  padding-left: 18px;
}

/* line 31, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointment-form .slot-resume {
  margin-bottom: 8px;
}

/* line 34, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointment-form .slot-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.1);
  font-size: 0.9rem;
}

/* line 43, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointment-form .slot-hint {
  opacity: 0.7;
  font-size: 0.9rem;
}

/* La modal RDV reste en une seule colonne pour se rapprocher du style de référence */
/* ==========================================================================
   APPOINTMENTS BOARD - Styles spécifiques à la page des rendez-vous (scopés)
   ========================================================================== */
/* Structure principale */
/* line 56, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-right: 15px;
  font-size: 1rem;
  gap: 5px;
  overflow: hidden;
}

/* line 68, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.lightmode {
  color: #140D23;
}

/* line 72, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.nightmode {
  color: #FFFFFF;
}

/* line 76, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 82, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule span {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 88, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.lightmode span {
  color: #C38761;
}

/* line 92, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.nightmode span {
  color: rgba(232, 232, 232, 0.7);
}

/* line 96, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.lightmode p {
  color: #140D23;
}

/* line 100, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.nightmode p {
  color: #FFFFFF;
}

/* line 104, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.lightmode i {
  color: #140D23;
}

/* line 108, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.nightmode i {
  color: #FFFFFF;
}

/* Barre supérieure - Recherche et bouton création */
/* line 114, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-row1 {
  width: 80%;
  height: 50px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  flex-shrink: 0;
  margin-bottom: 5px;
}

/* line 125, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-row1 form {
  width: 100%;
  display: flex;
}

/* Barre de recherche */
/* line 132, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-row1-searchbar {
  width: 100%;
  background-color: transparent;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 145, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.lightmode .appointments-board-row1-searchbar {
  border-color: rgba(20, 13, 35, 0.5);
  color: #140D23;
}

/* line 150, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-row1-searchbar .crm-search-form {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 157, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-row1-searchbar .crm-search-input-wrapper {
  position: relative;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

/* line 164, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-row1-searchbar .crm-search-input {
  width: 100%;
  background: transparent;
  border: none;
  color: #FFFFFF;
  outline: none;
  padding-right: 25px;
}

/* line 172, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.lightmode .appointments-board-row1-searchbar .crm-search-input {
  color: #140D23;
}

/* line 175, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.lightmode .appointments-board-row1-searchbar .crm-search-input::placeholder {
  color: rgba(20, 13, 35, 0.6);
}

/* line 181, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-row1-searchbar .crm-clear-search-button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 0.6rem;
  text-decoration: none;
}

/* line 196, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.lightmode .appointments-board-row1-searchbar .crm-clear-search-button {
  color: #140D23;
}

/* line 200, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-row1-searchbar .crm-clear-search-button:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* line 203, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.lightmode .appointments-board-row1-searchbar .crm-clear-search-button:hover {
  color: rgba(20, 13, 35, 0.7);
}

/* line 209, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-row1-searchbar button {
  all: unset;
  cursor: pointer;
}

/* line 214, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-row1-searchbar .crm-search-button {
  padding: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 222, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-row1-searchbar i {
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 227, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.lightmode .appointments-board-row1-searchbar i {
  color: #140D23 !important;
}

/* line 232, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-row1-searchbar span {
  font-weight: normal !important;
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 238, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.lightmode .appointments-board-row1-searchbar span {
  color: #140D23 !important;
}

/* Conteneur principal des données */
/* line 245, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-row2 {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 15px;
  overflow: hidden;
}

/* line 258, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.lightmode .appointments-board-row2 {
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 263, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-row2-list {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

/* En-tête du tableau */
/* line 273, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-row2-list-head {
  width: 97%;
  display: flex;
  padding-right: 8px;
  flex-direction: row;
  font-weight: bold;
  font-size: 0.75rem;
  margin-bottom: 5px;
  color: #FFFFFF;
}

/* line 283, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.lightmode .appointments-board-row2-list-head {
  color: #140D23;
}

/* line 288, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-row2-list-head .appointments-board-row2-list-column {
  text-align: center;
  justify-content: center;
}

/* line 292, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-row2-list-head .appointments-board-row2-list-column:first-child {
  text-align: left;
  justify-content: flex-start;
  padding-left: 20px;
}

/* line 298, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-row2-list-head .appointments-board-row2-list-column:last-child {
  text-align: right;
  justify-content: flex-end;
  padding-right: 15px;
}

/* line 304, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-row2-list-head .appointments-board-row2-list-column.sortable {
  cursor: pointer;
  transition: background-color 0.2s ease;
}

/* line 308, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-row2-list-head .appointments-board-row2-list-column.sortable:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

/* line 311, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.lightmode .appointments-board-row2-list-head .appointments-board-row2-list-column.sortable:hover {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 316, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-row2-list-head .appointments-board-row2-list-column.sortable .sort-link {
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 100%;
  height: 100%;
}

/* line 326, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.lightmode .appointments-board-row2-list-head .appointments-board-row2-list-column.sortable .sort-link {
  color: #140D23;
}

/* line 330, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-row2-list-head .appointments-board-row2-list-column.sortable .sort-link i {
  font-size: 0.6rem !important;
}

/* line 333, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.lightmode .appointments-board-row2-list-head .appointments-board-row2-list-column.sortable .sort-link i {
  color: #140D23 !important;
}

/* line 339, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-row2-list-head .appointments-board-row2-list-column.sortable:first-child .sort-link {
  justify-content: flex-start;
}

/* line 343, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-row2-list-head .appointments-board-row2-list-column.sortable:last-child .sort-link {
  justify-content: flex-end;
}

/* Styles communs pour les colonnes */
/* line 350, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-row2-list-column {
  display: flex;
  align-items: center;
  font-size: 0.7rem;
  padding: 5px 10px;
}

/* Corps du tableau */
/* line 358, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-row2-list-entries {
  width: 100%;
  height: calc(100% - 30px);
  display: flex;
  gap: 5px;
  flex-direction: column;
  overflow-y: auto;
}

/* line 366, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-row2-list-entries::-webkit-scrollbar {
  width: 8px;
}

/* line 370, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-row2-list-entries::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 374, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.lightmode .appointments-board-row2-list-entries::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 379, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-row2-list-entries::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 384, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-row2-list-entries::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 387, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.lightmode .appointments-board-row2-list-entries::-webkit-scrollbar-thumb:hover {
  background: #140D23;
}

/* Lignes du tableau */
/* line 394, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-row2-list-entry {
  width: 97%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  font-size: 0.7rem;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 2px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 40px;
  padding: 3px 0;
  margin-bottom: 2px;
  color: #FFFFFF;
}

/* line 412, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.lightmode .appointments-board-row2-list-entry {
  color: #140D23;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 2px;
}

/* line 417, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-row2-list-entry:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 422, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.lightmode .appointments-board-row2-list-entry:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* Message "aucun résultat" */
/* line 429, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.no-results {
  text-align: center;
  padding: 40px 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* line 435, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.lightmode .no-results {
  color: rgba(20, 13, 35, 0.7);
}

/* Onglets de navigation et filtres */
/* line 441, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-tabs {
  display: flex;
  width: 100%;
  margin-bottom: 10px;
  z-index: 10;
  position: relative;
  flex-shrink: 0;
  height: 35px;
  align-items: center;
  gap: 10px;
}

/* Tabs pills (segmented control) */
/* line 454, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.crm-filter-tabs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.08);
}

/* line 463, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.lightmode .crm-filter-tabs {
  background-color: rgba(20, 13, 35, 0.08);
}

/* line 467, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.crm-filter-tabs .crm-filter-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: #FFFFFF;
  font-size: 0.8rem;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* line 481, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.lightmode .crm-filter-tabs .crm-filter-tab {
  color: #140D23;
}

/* line 485, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.crm-filter-tabs .crm-filter-tab:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

/* line 488, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.lightmode .crm-filter-tabs .crm-filter-tab:hover {
  background-color: rgba(20, 13, 35, 0.12);
}

/* line 493, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.crm-filter-tabs .crm-filter-tab.active, .crm-filter-tabs .crm-filter-tab[aria-selected="true"] {
  background-color: #E5A82E;
  color: #140D23;
  font-weight: 700;
}

/* line 499, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.lightmode .crm-filter-tabs .crm-filter-tab.active, .appointments-board-capsule.lightmode .crm-filter-tabs .crm-filter-tab[aria-selected="true"] {
  background-color: #C38761;
  color: #140D23;
}

/* line 507, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule {
  /* Aligner les filtres horizontalement et éviter le chevauchement */
  /* Variantes explicites Lightmode (renforce la spécificité) */
  /* Chips de filtres actifs */
  /* Colonnes fixes pour éviter les décalages (statuts variables) */
  /* Empêcher les badges de casser la grille */
  /* Badges de type de rendez-vous */
  /* Amélioration du contraste en mode nuit */
}

/* line 509, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule .appointments-board-tabs {
  margin-bottom: 6px;
  /* évite le chevauchement avec les chips */
  /* Groupe de filtres compact et accessible */
}

/* line 513, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule .appointments-board-tabs .crm-filter-group {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
  /* au-dessus des chips si chevauchement */
}

/* line 523, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule .appointments-board-tabs .crm-filter-select {
  min-width: 140px;
  height: 36px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  font-size: 0.8rem;
  outline: none;
}

/* line 534, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.lightmode .appointments-board-capsule .appointments-board-tabs .crm-filter-select {
  border-color: rgba(20, 13, 35, 0.2);
  background-color: rgba(20, 13, 35, 0.05);
  color: #140D23;
}

/* line 540, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule .appointments-board-tabs .crm-filter-select:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

/* line 542, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.lightmode .appointments-board-capsule .appointments-board-tabs .crm-filter-select:hover {
  background-color: rgba(20, 13, 35, 0.08);
}

/* line 547, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule .appointments-board-tabs .crm-filter-select:focus {
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.5);
  border-color: rgba(195, 135, 97, 0.8);
}

/* line 553, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule .appointments-board-tabs .crm-filter-apply {
  height: 36px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background-color: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  cursor: pointer;
  font-size: 0.8rem;
}

/* line 562, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.lightmode .appointments-board-capsule .appointments-board-tabs .crm-filter-apply {
  border-color: rgba(20, 13, 35, 0.25);
  background-color: rgba(20, 13, 35, 0.12);
  color: #140D23;
}

/* line 569, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule .appointments-board-tabs .crm-filter-reset {
  font-size: 0.75rem;
  text-decoration: none;
  color: #FFFFFF;
  opacity: 0.85;
  padding: 6px 10px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.08);
}

/* line 577, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.lightmode .appointments-board-capsule .appointments-board-tabs .crm-filter-reset {
  color: #140D23;
  background-color: rgba(20, 13, 35, 0.06);
}

/* line 586, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.lightmode .appointments-board-row2 {
  border: 1px solid rgba(12, 11, 11, 0.19);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

/* line 591, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.lightmode .crm-filter-select {
  border-color: rgba(20, 13, 35, 0.25);
  background-color: rgba(20, 13, 35, 0.08);
  color: #140D23;
}

/* line 596, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.lightmode .crm-filter-select:hover {
  background-color: rgba(20, 13, 35, 0.12);
}

/* line 599, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.lightmode .crm-filter-select:focus {
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.45);
  border-color: rgba(195, 135, 97, 0.75);
}

/* line 605, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.lightmode .crm-filter-apply {
  border-color: rgba(20, 13, 35, 0.25);
  background-color: rgba(20, 13, 35, 0.12);
  color: #140D23;
}

/* line 611, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.lightmode .crm-filter-reset {
  color: #140D23;
  background-color: rgba(20, 13, 35, 0.08);
}

/* line 616, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.lightmode .crm-filter-chips .crm-filter-chip {
  color: #140D23;
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 619, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.lightmode .crm-filter-chips .crm-filter-chip .chip-remove {
  opacity: 0.7;
}

/* line 625, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule .crm-filter-chips {
  width: 80%;
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
  /* espace positif sous les sélecteurs */
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* line 635, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule .crm-filter-chips .crm-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 645, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.lightmode .appointments-board-capsule .crm-filter-chips .crm-filter-chip {
  color: #140D23;
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 650, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule .crm-filter-chips .crm-filter-chip .chip-remove {
  text-decoration: none;
  color: inherit;
  opacity: 0.8;
}

/* line 661, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule .appointments-board-row2-list-head .appointments-board-row2-list-column:nth-child(1),
.appointments-board-capsule .appointments-board-row2-list-entry .appointments-board-row2-list-column:nth-child(1) {
  /* Contact */
  flex: 0 0 26%;
  min-width: 0;
  /* autorise l'ellipsage */
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* line 669, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule .appointments-board-row2-list-head .appointments-board-row2-list-column:nth-child(2),
.appointments-board-capsule .appointments-board-row2-list-entry .appointments-board-row2-list-column:nth-child(2) {
  /* Début */
  flex: 0 0 16%;
}

/* line 673, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule .appointments-board-row2-list-head .appointments-board-row2-list-column:nth-child(3),
.appointments-board-capsule .appointments-board-row2-list-entry .appointments-board-row2-list-column:nth-child(3) {
  /* Durée */
  flex: 0 0 10%;
}

/* line 677, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule .appointments-board-row2-list-head .appointments-board-row2-list-column:nth-child(4),
.appointments-board-capsule .appointments-board-row2-list-entry .appointments-board-row2-list-column:nth-child(4) {
  /* Type */
  flex: 0 0 14%;
}

/* line 681, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule .appointments-board-row2-list-head .appointments-board-row2-list-column:nth-child(5),
.appointments-board-capsule .appointments-board-row2-list-entry .appointments-board-row2-list-column:nth-child(5) {
  /* Collaborateurs */
  flex: 0 0 20%;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* line 689, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule .appointments-board-row2-list-head .appointments-board-row2-list-column:nth-child(6),
.appointments-board-capsule .appointments-board-row2-list-entry .appointments-board-row2-list-column:nth-child(6) {
  /* Statut */
  flex: 0 0 14%;
}

/* line 697, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule .status-badge {
  display: inline-block;
  min-width: 70px;
  text-align: center;
  /* Ensure good contrast on nightmode inside list */
}

/* line 702, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule .status-badge.abandonne {
  color: #ffd3d3;
}

/* line 705, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule .status-badge.manque {
  color: #ffe0b3;
}

/* line 711, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule .type-badge {
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 0.65rem;
  font-weight: 600;
  display: inline-block;
  min-width: 70px;
  text-align: center;
  border: 1px solid transparent;
}

/* line 722, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule .type-badge.call {
  background-color: rgba(52, 152, 219, 0.28);
  color: #114e84;
  border-color: rgba(52, 152, 219, 0.45);
}

/* line 727, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule .type-badge.visio {
  background-color: rgba(123, 97, 255, 0.28);
  color: #4a36c9;
  border-color: rgba(123, 97, 255, 0.45);
}

/* line 732, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule .type-badge.in_person {
  background-color: rgba(46, 204, 113, 0.28);
  color: #176a3a;
  border-color: rgba(46, 204, 113, 0.45);
}

/* line 737, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule .type-badge.meal {
  background-color: rgba(255, 159, 67, 0.28);
  color: #98440d;
  border-color: rgba(255, 159, 67, 0.45);
}

/* line 742, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule .type-badge.event {
  background-color: rgba(155, 89, 182, 0.28);
  color: #5e2289;
  border-color: rgba(155, 89, 182, 0.45);
}

/* line 750, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.nightmode .type-badge {
  color: #ffffff;
  /* texte clair pour contraste */
  font-weight: 700;
}

/* line 754, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.nightmode .type-badge.call {
  background-color: rgba(52, 152, 219, 0.38);
  border-color: rgba(52, 152, 219, 0.6);
}

/* line 758, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.nightmode .type-badge.visio {
  background-color: rgba(123, 97, 255, 0.38);
  border-color: rgba(123, 97, 255, 0.6);
}

/* line 762, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.nightmode .type-badge.in_person {
  background-color: rgba(46, 204, 113, 0.38);
  border-color: rgba(46, 204, 113, 0.6);
}

/* line 766, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.nightmode .type-badge.meal {
  background-color: rgba(255, 159, 67, 0.38);
  border-color: rgba(255, 159, 67, 0.6);
}

/* line 770, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_appointments_board.scss */
.appointments-board-capsule.nightmode .type-badge.event {
  background-color: rgba(155, 89, 182, 0.38);
  border-color: rgba(155, 89, 182, 0.6);
}

/* ==========================================================================
   FORMULAIRE RENDEZ-VOUS - BENTO DESIGN SYSTEM
   Design cohérent avec les pages contacts CRM
   ========================================================================== */
/* line 22, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.appointment-form-capsule {
  flex: 1;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  color: white;
  font-size: 0.875rem;
  min-height: calc(100vh - 120px);
}

/* line 32, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.appointment-form-capsule.lightmode {
  color: #140D23;
}

@media (max-width: 768px) {
  /* line 22, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
  .appointment-form-capsule {
    padding: 16px;
  }
}

/* line 41, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.appointment-form-capsule .form-header {
  justify-content: center;
}

/* line 50, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
}

/* line 59, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.appointment-form-capsule.lightmode .form-header {
  background: rgba(20, 13, 35, 0.04);
  border-color: rgba(20, 13, 35, 0.1);
}

@media (max-width: 768px) {
  /* line 50, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
  .form-header {
    padding: 16px;
  }
}

/* line 69, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.form-header__title {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 74, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.form-header__title i {
  font-size: 1.25rem;
  color: #C38761;
}

/* line 79, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.form-header__title h1, .form-header__title .h1 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: white;
}

/* line 86, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.appointment-form-capsule.lightmode .form-header__title h1, .appointment-form-capsule.lightmode .form-header__title .h1 {
  color: #140D23;
}

/* line 96, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.appointment-errors {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.25);
  border-radius: 16px;
}

/* line 105, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.appointment-errors .error-icon {
  width: 40px;
  height: 40px;
  background: rgba(231, 76, 60, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e74c3c;
  font-size: 1rem;
  flex-shrink: 0;
}

/* line 118, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.appointment-errors .error-content {
  flex: 1;
}

/* line 121, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.appointment-errors .error-content h3, .appointment-errors .error-content .h3 {
  margin: 0 0 8px 0;
  color: #e74c3c;
  font-size: 0.9rem;
  font-weight: 600;
}

/* line 128, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.appointment-errors .error-content ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(231, 76, 60, 0.9);
  font-size: 0.85rem;
}

/* line 134, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.appointment-errors .error-content ul li {
  margin-bottom: 4px;
}

/* line 145, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.bento-grid-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (max-width: 900px) {
  /* line 145, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
  .bento-grid-form {
    grid-template-columns: 1fr;
  }
}

/* line 159, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.bento-card-form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

/* line 168, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.appointment-form-capsule.lightmode .bento-card-form {
  background: rgba(20, 13, 35, 0.04);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 173, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.bento-card-form:hover {
  border-color: rgba(195, 135, 97, 0.25);
}

/* line 178, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.bento-card-form--full {
  grid-column: 1 / -1;
}

/* line 183, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.bento-card-form__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* line 191, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.appointment-form-capsule.lightmode .bento-card-form__header {
  background: rgba(20, 13, 35, 0.03);
  border-bottom-color: rgba(20, 13, 35, 0.06);
}

/* line 197, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.bento-card-form__title {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 202, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.bento-card-form__title i {
  font-size: 0.9rem;
  color: #C38761;
}

/* line 207, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.bento-card-form__title h2, .bento-card-form__title .h2 {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
}

/* line 215, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.appointment-form-capsule.lightmode .bento-card-form__title h2, .appointment-form-capsule.lightmode .bento-card-form__title .h2 {
  color: #140D23;
}

/* line 221, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.bento-card-form__count {
  background: rgba(195, 135, 97, 0.2);
  color: #C38761;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 700;
}

/* line 230, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.bento-card-form__content {
  padding: 18px;
  flex: 1;
}

/* line 239, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.form-fields-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  /* line 239, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
  .form-fields-row {
    grid-template-columns: 1fr;
  }
}

/* line 249, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 254, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.form-field--full {
  grid-column: 1 / -1;
}

/* line 259, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.form-label {
  font-weight: 600;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 266, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.appointment-form-capsule.lightmode .form-label {
  color: rgba(20, 13, 35, 0.8);
}

/* line 271, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.form-input {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: white;
  font-size: 0.9rem;
  transition: 0.2s ease;
  box-sizing: border-box;
  text-align: start;
}

/* line 283, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.form-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

/* line 287, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.form-input:focus {
  outline: none;
  border-color: #C38761;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.15);
}

/* line 294, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.appointment-form-capsule.lightmode .form-input {
  background: rgba(20, 13, 35, 0.04);
  border-color: rgba(20, 13, 35, 0.12);
  color: #140D23;
}

/* line 299, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.appointment-form-capsule.lightmode .form-input::placeholder {
  color: rgba(20, 13, 35, 0.4);
}

/* line 303, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.appointment-form-capsule.lightmode .form-input:focus {
  background: rgba(20, 13, 35, 0.06);
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.2);
}

/* line 310, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.form-input[type="datetime-local"] {
  color-scheme: dark;
}

/* line 313, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.form-input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

/* line 319, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.form-input[type="datetime-local"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

/* line 324, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.appointment-form-capsule.lightmode .form-input[type="datetime-local"] {
  color-scheme: light;
}

/* line 327, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.appointment-form-capsule.lightmode .form-input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  filter: none;
}

/* line 335, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23FFC107' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  appearance: none;
}

/* line 343, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.appointment-form-capsule.lightmode .form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231b2a4a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}

/* line 349, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.form-multiselect {
  min-height: 160px;
  max-height: 160px;
  padding: 8px;
  overflow-y: auto;
}

/* line 355, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.form-multiselect option {
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.03);
  color: white;
  cursor: pointer;
  font-size: 0.85rem;
  border-radius: 6px;
  margin-bottom: 2px;
  transition: all 0.2s ease;
}

/* line 365, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.form-multiselect option:hover {
  background: rgba(195, 135, 97, 0.12);
}

/* line 369, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.form-multiselect option:checked {
  background: linear-gradient(135deg, #C38761 0%, #af6c42 100%);
  color: white;
  font-weight: 600;
}

/* line 375, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.appointment-form-capsule.lightmode .form-multiselect option {
  background: rgba(20, 13, 35, 0.02);
  color: #140D23;
}

/* line 379, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.appointment-form-capsule.lightmode .form-multiselect option:hover {
  background: rgba(195, 135, 97, 0.1);
}

/* line 386, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.form-multiselect::-webkit-scrollbar {
  width: 6px;
}

/* line 390, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.form-multiselect::-webkit-scrollbar-track {
  background: transparent;
}

/* line 394, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.form-multiselect::-webkit-scrollbar-thumb {
  background: rgba(195, 135, 97, 0.4);
  border-radius: 3px;
}

/* line 398, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.form-multiselect::-webkit-scrollbar-thumb:hover {
  background: rgba(195, 135, 97, 0.6);
}

/* line 405, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.form-hint {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* line 412, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.form-hint i {
  font-size: 0.7rem;
  opacity: 0.8;
}

/* line 417, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.appointment-form-capsule.lightmode .form-hint {
  color: rgba(20, 13, 35, 0.5);
}

/* line 426, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.scheduler-section {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* line 433, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.scheduler-inputs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  /* line 433, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
  .scheduler-inputs {
    grid-template-columns: 1fr;
  }
}

/* line 442, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.scheduler-inputs .form-input {
  cursor: pointer;
}

/* line 445, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.scheduler-inputs .form-input:read-only {
  cursor: pointer;
}

/* line 455, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.slot-summary-box {
  text-align: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 466, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.appointment-form-capsule.lightmode .slot-summary-box {
  background: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.12);
}

/* line 472, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.slot-pill {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(195, 135, 97, 0.15);
  border: 1px solid rgba(195, 135, 97, 0.3);
  color: #C38761;
  font-weight: 600;
  font-size: 0.9rem;
}

/* line 484, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.slot-pill i {
  font-size: 1rem;
}

/* line 488, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.slot-pill.is-visible {
  display: inline-flex;
}

/* line 493, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.slot-hint {
  opacity: 0.6;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

/* line 502, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.slot-hint i {
  font-size: 0.9rem;
}

/* line 506, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.appointment-form-capsule.lightmode .slot-hint {
  color: rgba(20, 13, 35, 0.6);
}

/* line 510, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.slot-hint.is-hidden {
  display: none;
}

/* line 519, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.email-tokens-wrapper {
  width: 100%;
}

/* line 523, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.email-tokens-field {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 48px;
  cursor: text;
}

/* line 531, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.email-tokens-field:focus-within {
  border-color: #C38761;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.15);
}

/* line 536, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.appointment-form-capsule.lightmode .email-tokens-field:focus-within {
  background: rgba(20, 13, 35, 0.06);
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.2);
}

/* line 543, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.email-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* line 549, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.email-tokens-field .ms-chip {
  background: rgba(195, 135, 97, 0.15);
  border: 1px solid rgba(195, 135, 97, 0.3);
  color: #C38761;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

/* line 561, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.email-tokens-field .ms-chip:hover {
  background: rgba(195, 135, 97, 0.25);
}

/* line 565, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.email-tokens-field .ms-chip .ms-chip-x {
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  font-weight: 600;
  padding: 0;
  margin: 0;
  font-size: 1rem;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}

/* line 578, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.email-tokens-field .ms-chip .ms-chip-x:hover {
  opacity: 1;
  color: white;
}

/* line 582, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.appointment-form-capsule.lightmode .email-tokens-field .ms-chip .ms-chip-x:hover {
  color: #140D23;
}

/* line 588, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.appointment-form-capsule.lightmode .email-tokens-field .ms-chip {
  background: rgba(195, 135, 97, 0.1);
  color: #9c613b;
}

/* line 594, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.email-editor {
  display: inline-flex;
  align-items: center;
  min-width: 200px;
  flex: 1;
  padding: 4px 0;
  color: white;
  outline: none;
  border: none;
  background: transparent;
  font-size: 0.9rem;
  text-align: start;
}

/* line 607, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.email-editor:empty:before {
  content: "Tapez un email puis Entrée ou Espace";
  color: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

/* line 613, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.appointment-form-capsule.lightmode .email-editor {
  color: #140D23;
}

/* line 616, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.appointment-form-capsule.lightmode .email-editor:empty:before {
  color: rgba(20, 13, 35, 0.4);
}

/* line 626, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.existing-documents-list {
  margin-bottom: 16px;
}

/* line 630, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.document-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  margin-bottom: 8px;
  transition: 0.2s ease;
}

/* line 641, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.document-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* line 644, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.appointment-form-capsule.lightmode .document-item:hover {
  background: rgba(20, 13, 35, 0.04);
}

/* line 649, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.appointment-form-capsule.lightmode .document-item {
  background: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.06);
}

/* line 655, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.document-checkbox-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  cursor: pointer;
  flex-shrink: 0;
}

/* line 665, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.document-checkbox-wrapper .document-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* line 672, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.document-checkbox-wrapper .document-checkbox:checked ~ .checkmark {
  background: linear-gradient(135deg, #e74c3c 0%, #d62c1a 100%);
  border-color: #e74c3c;
}

/* line 676, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.document-checkbox-wrapper .document-checkbox:checked ~ .checkmark:after {
  display: flex;
}

/* line 682, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.document-checkbox-wrapper .checkmark {
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

/* line 693, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.document-checkbox-wrapper .checkmark:hover {
  border-color: rgba(231, 76, 60, 0.5);
  background: rgba(231, 76, 60, 0.1);
}

/* line 698, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.document-checkbox-wrapper .checkmark:after {
  content: '\f00d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: white;
  font-size: 9px;
  display: none;
}

/* line 707, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.appointment-form-capsule.lightmode .document-checkbox-wrapper .checkmark {
  background: rgba(20, 13, 35, 0.04);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 714, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.document-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(195, 135, 97, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* line 724, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.document-icon i {
  color: #C38761;
  font-size: 0.9rem;
}

/* line 730, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.document-info {
  flex: 1;
  min-width: 0;
}

/* line 735, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.document-name {
  font-weight: 500;
  font-size: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 743, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.document-meta {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

/* line 748, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.appointment-form-capsule.lightmode .document-meta {
  color: rgba(20, 13, 35, 0.5);
}

/* line 753, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.document-separator {
  margin: 0 6px;
}

/* line 757, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.document-actions {
  flex-shrink: 0;
}

/* line 761, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.document-download {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: 0.2s ease;
  text-decoration: none;
}

/* line 774, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.document-download:hover {
  background: rgba(195, 135, 97, 0.15);
  border-color: rgba(195, 135, 97, 0.3);
  color: #C38761;
}

/* line 780, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.appointment-form-capsule.lightmode .document-download {
  background: rgba(20, 13, 35, 0.04);
  border-color: rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.7);
}

/* line 785, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.appointment-form-capsule.lightmode .document-download:hover {
  background: rgba(195, 135, 97, 0.1);
  color: #af6c42;
}

/* line 792, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.documents-delete-hint {
  color: rgba(231, 76, 60, 0.8) !important;
  margin-top: 8px;
}

/* line 796, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.documents-delete-hint i {
  color: rgba(231, 76, 60, 0.8);
}

/* line 802, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.document-upload-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 808, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.document-upload-form .form-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* line 813, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.document-upload-form .form-label i {
  color: #C38761;
}

/* line 823, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.appointment-form-capsule .form-actions {
  display: flex;
  justify-content: flex-end !important;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
}

/* line 831, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.appointment-form-capsule.lightmode .appointment-form-capsule .form-actions {
  border-top-color: rgba(20, 13, 35, 0.08);
}

@media (max-width: 480px) {
  /* line 823, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
  .appointment-form-capsule .form-actions {
    flex-direction: column-reverse;
  }
  /* line 838, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
  .appointment-form-capsule .form-actions .btn-action {
    width: 100%;
    justify-content: center;
  }
}

/* line 845, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.btn-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
  border: none;
  text-decoration: none;
}

/* line 858, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.btn-action i {
  font-size: 0.85rem;
}

/* line 862, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.btn-action--primary {
  background: linear-gradient(135deg, #C38761 0%, #af6c42 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(195, 135, 97, 0.3);
}

/* line 867, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.btn-action--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(195, 135, 97, 0.4);
}

/* line 873, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.btn-action--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* line 878, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.btn-action--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* line 882, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.appointment-form-capsule.lightmode .btn-action--secondary {
  background: rgba(20, 13, 35, 0.06);
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 887, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.appointment-form-capsule.lightmode .btn-action--secondary:hover {
  background: rgba(20, 13, 35, 0.1);
}

@media (max-width: 992px) {
  /* line 899, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
  .bento-grid-form {
    grid-template-columns: 1fr;
  }
  /* line 903, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
  .bento-card-form--full {
    grid-column: 1;
  }
}

@media (max-width: 768px) {
  /* line 909, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
  .form-fields-row {
    grid-template-columns: 1fr;
  }
  /* line 913, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
  .form-multiselect {
    min-height: 140px;
    max-height: 140px;
  }
}

/* line 923, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.flatpickr-calendar {
  font-family: 'Poppins', sans-serif;
  color: #f6e5b3;
  border-radius: 18px;
  border: 1px solid rgba(246, 229, 179, 0.18);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(16px);
  overflow: visible;
  width: 340px;
  max-width: 340px;
  box-sizing: border-box;
  background: linear-gradient(150deg, rgba(29, 18, 53, 0.98) 0%, rgba(62, 24, 74, 0.95) 100%) !important;
}

@media (max-width: 388px) {
  /* line 923, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
  .flatpickr-calendar {
    max-width: calc(100vw - 48px);
  }
}

/* line 944, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.flatpickr-calendar .flatpickr-innerContainer {
  background: transparent;
}

/* line 948, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.flatpickr-calendar .flatpickr-months {
  border-bottom: 1px solid rgba(246, 229, 179, 0.18);
  padding: 12px 14px;
  background: rgba(246, 229, 179, 0.07);
}

/* line 953, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.flatpickr-calendar .flatpickr-months .flatpickr-prev-month,
.flatpickr-calendar .flatpickr-months .flatpickr-next-month {
  color: rgba(246, 229, 179, 0.85);
  width: 32px;
  height: 32px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
}

/* line 963, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.flatpickr-calendar .flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-calendar .flatpickr-months .flatpickr-next-month:hover {
  background: rgba(246, 229, 179, 0.18);
  color: #23152e;
}

/* line 968, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.flatpickr-calendar .flatpickr-months .flatpickr-prev-month svg path,
.flatpickr-calendar .flatpickr-months .flatpickr-next-month svg path {
  fill: currentColor;
}

/* line 974, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.flatpickr-calendar .flatpickr-current-month {
  color: #f9edd3;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 983, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.flatpickr-calendar .flatpickr-current-month .flatpickr-monthDropdown-months {
  background: rgba(35, 21, 46, 0.6);
  color: #f9edd3;
  border-radius: 12px;
  border: 1px solid rgba(246, 229, 179, 0.28);
  padding: 6px 12px;
  backdrop-filter: blur(6px);
}

/* line 991, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.flatpickr-calendar .flatpickr-current-month .flatpickr-monthDropdown-months option {
  color: #23152e;
}

/* line 996, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.flatpickr-calendar .flatpickr-current-month input.cur-year {
  color: inherit;
  background: transparent;
  border: none;
  font-weight: 600;
  width: 72px;
}

/* line 1004, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.flatpickr-calendar .flatpickr-current-month .numInputWrapper {
  display: inline-flex;
  align-items: center;
  background: rgba(35, 21, 46, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(246, 229, 179, 0.28);
  padding: 0 8px;
}

/* line 1012, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.flatpickr-calendar .flatpickr-current-month .numInputWrapper span {
  display: none;
}

/* line 1018, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.flatpickr-calendar .flatpickr-weekdays {
  letter-spacing: 0.05em;
  margin-top: 6px;
}

/* line 1022, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.flatpickr-calendar .flatpickr-weekdays .flatpickr-weekday {
  color: rgba(246, 229, 179, 0.68);
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
}

/* line 1030, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.flatpickr-calendar .flatpickr-days {
  padding: 12px 18px 18px;
}

/* line 1034, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.flatpickr-calendar .flatpickr-day {
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.82);
  border: none;
  margin: 2px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

/* line 1042, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.flatpickr-calendar .flatpickr-day:not(.flatpickr-disabled):hover {
  background: rgba(246, 229, 179, 0.22);
  color: #1c1028;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(246, 229, 179, 0.3);
}

/* line 1049, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.flatpickr-calendar .flatpickr-day.today {
  position: relative;
  color: #ffeec7;
  font-weight: 600;
}

/* line 1054, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.flatpickr-calendar .flatpickr-day.today::after {
  content: '•';
  position: absolute;
  top: 4px;
  right: 8px;
  font-size: 0.65rem;
  color: #f6e5b3;
}

/* line 1064, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.flatpickr-calendar .flatpickr-day.selected, .flatpickr-calendar .flatpickr-day.startRange, .flatpickr-calendar .flatpickr-day.endRange {
  background: linear-gradient(145deg, #ffecc4, #fbcf7b);
  color: #201433;
  box-shadow: 0 8px 22px rgba(251, 207, 123, 0.35);
  font-weight: 600;
}

/* line 1072, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.flatpickr-calendar .flatpickr-day.selected:hover, .flatpickr-calendar .flatpickr-day.startRange:hover, .flatpickr-calendar .flatpickr-day.endRange:hover {
  background: linear-gradient(145deg, #ffe4ab, #f8c567);
  color: #1a0f2c;
}

/* line 1078, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.flatpickr-calendar .flatpickr-day.inRange {
  background: rgba(246, 229, 179, 0.18);
  color: #ffeec9;
  box-shadow: inset 0 0 0 1px rgba(246, 229, 179, 0.25);
}

/* line 1084, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.flatpickr-calendar .flatpickr-day.flatpickr-disabled, .flatpickr-calendar .flatpickr-day.flatpickr-disabled:hover {
  color: rgba(255, 255, 255, 0.25);
  background: transparent;
  cursor: not-allowed;
}

/* line 1092, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.flatpickr-calendar .flatpickr-time {
  background: rgba(246, 229, 179, 0.08);
  border-top: 1px solid rgba(246, 229, 179, 0.14);
  padding: 10px 16px;
}

/* line 1097, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
.flatpickr-calendar .flatpickr-time input,
.flatpickr-calendar .flatpickr-time .flatpickr-am-pm {
  background: rgba(246, 229, 179, 0.16);
  color: #1d102c;
  border: 1px solid rgba(246, 229, 179, 0.28);
  border-radius: 12px;
  font-weight: 600;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.12);
}

@media (max-width: 640px) {
  /* line 923, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
  .flatpickr-calendar {
    width: 320px;
  }
}

@media (max-width: 640px) and (max-width: 352px) {
  /* line 923, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
  .flatpickr-calendar {
    width: calc(100vw - 32px);
  }
}

@media (max-width: 640px) {
  /* line 1115, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
  .flatpickr-calendar .flatpickr-days {
    padding: 12px;
  }
  /* line 1119, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_new_appointment.scss */
  .flatpickr-calendar .flatpickr-day {
    margin: 2px;
  }
}

/* ==========================================================================
   PAGE DÉTAILLÉE RENDEZ-VOUS - DESIGN MODERNE
   ========================================================================== */
/* line 5, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
  display: flex;
  flex-direction: column;
  overflow: auto;
  /* Scrollbar personnalisée */
}

/* line 15, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container::-webkit-scrollbar {
  width: 8px;
}

/* line 19, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

/* line 24, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

/* line 28, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
/* line 38, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 10px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

/* line 56, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-title-section {
  display: flex;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

/* line 62, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-title-section h1, .appointment-title-section .h1 {
  margin: 0 0 8px 0;
  font-size: 26px;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 71, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-title-section h1 i, .appointment-title-section .h1 i {
  color: #C38761;
  font-size: 24px;
}

/* line 78, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* Mise en page compacte des infos principales dans le header */
/* line 86, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-header .appointment-main-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  flex-shrink: 0;
}

/* line 93, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-header
.appointment-main-info
.appointment-datetime
.datetime-range {
  font-size: 16px;
  margin-bottom: 4px;
}

/* line 101, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-header
.appointment-main-info
.appointment-datetime
.datetime-duration {
  font-size: 14px;
  margin-top: 4px;
}

/* line 109, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-header .appointment-main-info .appointment-type .type-label {
  font-size: 12px;
  margin-bottom: 4px;
}

@media (max-width: 992px) {
  /* line 115, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
  .appointment-header .appointment-main-info {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Badge type RDV */
/* line 123, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-meta .type-badge {
  margin-left: 6px;
}

/* line 127, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.type-badge {
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 0.65rem;
  font-weight: 600;
  display: inline-block;
  min-width: 70px;
  text-align: center;
  border: 1px solid transparent;
}

/* line 138, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.type-badge.call {
  background-color: rgba(52, 152, 219, 0.28);
  color: #114e84;
  border-color: rgba(52, 152, 219, 0.45);
}

/* line 144, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.type-badge.visio {
  background-color: rgba(123, 97, 255, 0.28);
  color: #4a36c9;
  border-color: rgba(123, 97, 255, 0.45);
}

/* line 150, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.type-badge.in_person {
  background-color: rgba(46, 204, 113, 0.28);
  color: #176a3a;
  border-color: rgba(46, 204, 113, 0.45);
}

/* line 156, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.type-badge.meal {
  background-color: rgba(255, 159, 67, 0.28);
  color: #98440d;
  border-color: rgba(255, 159, 67, 0.45);
}

/* line 162, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.type-badge.event {
  background-color: rgba(155, 89, 182, 0.28);
  color: #5e2289;
  border-color: rgba(155, 89, 182, 0.45);
}

/* Variante nightmode */
/* line 170, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.nightmode .type-badge {
  color: #ffffff;
  font-weight: 700;
}

/* line 174, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.nightmode .type-badge.call {
  background-color: rgba(52, 152, 219, 0.38);
  border-color: rgba(52, 152, 219, 0.6);
}

/* line 178, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.nightmode .type-badge.visio {
  background-color: rgba(123, 97, 255, 0.38);
  border-color: rgba(123, 97, 255, 0.6);
}

/* line 182, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.nightmode .type-badge.in_person {
  background-color: rgba(46, 204, 113, 0.38);
  border-color: rgba(46, 204, 113, 0.6);
}

/* line 186, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.nightmode .type-badge.meal {
  background-color: rgba(255, 159, 67, 0.38);
  border-color: rgba(255, 159, 67, 0.6);
}

/* line 190, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.nightmode .type-badge.event {
  background-color: rgba(155, 89, 182, 0.38);
  border-color: rgba(155, 89, 182, 0.6);
}

/* line 196, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 202, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-id {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

/* Badge statut rendez-vous (cohérent CRM) */
/* line 212, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.status-badge {
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 0.65rem;
  font-weight: 600;
  display: inline-block;
  min-width: 70px;
  text-align: center;
}

/* line 222, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.status-badge.a_venir {
  background-color: rgba(46, 204, 113, 0.28);
  color: #176a3a;
  border: 1px solid rgba(46, 204, 113, 0.45);
}

/* line 228, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.status-badge.termine {
  background-color: rgba(52, 152, 219, 0.28);
  color: #114e84;
  border: 1px solid rgba(52, 152, 219, 0.45);
}

/* line 234, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.status-badge.abandonne {
  background-color: rgba(220, 53, 69, 0.35);
  color: #ffb3b3;
  border: 1px solid rgba(220, 53, 69, 0.55);
  box-shadow: 0 0 0 1px rgba(220, 53, 69, 0.25) inset;
}

/* line 241, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.status-badge.manque {
  background-color: rgba(255, 159, 67, 0.35);
  color: #ffe0b3;
  border: 1px solid rgba(255, 159, 67, 0.55);
}

/* ==========================================================================
   LIGHTMODE VARIANTS (scoped to the page container)
   Réutilise la structure existante sans override global
   ========================================================================== */
/* line 252, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode {
  /* Type badges retain same hues with slightly darker text for legibility */
  /* Status badges high-contrast on light background */
}

/* line 253, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .appointment-header,
.appointment-detail-container.lightmode .appointment-main-card,
.appointment-detail-container.lightmode .participants-section {
  background: rgba(12, 11, 11, 0.04);
  border: 1px solid rgba(12, 11, 11, 0.15);
}

/* line 260, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .appointment-title h1, .appointment-detail-container.lightmode .appointment-title .h1 {
  color: #140D23;
}

/* line 265, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .appointment-datetime .datetime-range {
  color: #140D23;
}

/* line 267, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .appointment-datetime .datetime-range .time-range {
  color: rgba(20, 13, 35, 0.8);
}

/* line 271, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .appointment-datetime .datetime-duration {
  color: rgba(20, 13, 35, 0.8);
}

/* line 276, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .section-title {
  color: #140D23;
}

/* line 278, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .section-title .count-badge {
  background: rgba(20, 13, 35, 0.08);
  color: #140D23;
}

/* line 284, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .participant-item {
  background: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.12);
}

/* line 288, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .participant-item:hover {
  background: rgba(20, 13, 35, 0.06);
  border-color: rgba(229, 168, 46, 0.35);
}

/* line 294, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .participant-name {
  color: #140D23;
}

/* line 297, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .participant-role {
  color: rgba(20, 13, 35, 0.75);
}

/* line 301, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .empty-state {
  color: rgba(20, 13, 35, 0.6);
}

/* line 303, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .empty-state i {
  color: rgba(20, 13, 35, 0.35);
}

/* line 309, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .type-badge.call {
  color: #0e416d;
}

/* line 312, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .type-badge.visio {
  color: #4331b5;
}

/* line 315, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .type-badge.in_person {
  color: #12552f;
}

/* line 318, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .type-badge.meal {
  color: #8a3e0c;
}

/* line 321, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .type-badge.event {
  color: #501d75;
}

/* line 326, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .status-badge.a_venir {
  background-color: rgba(46, 204, 113, 0.22);
  color: #0f5a2f;
  border-color: rgba(46, 204, 113, 0.35);
}

/* line 331, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .status-badge.termine {
  background-color: rgba(52, 152, 219, 0.22);
  color: #0f3e6e;
  border-color: rgba(52, 152, 219, 0.35);
}

/* line 336, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .status-badge.abandonne {
  background-color: rgba(220, 53, 69, 0.22);
  color: #8b1d27;
  border-color: rgba(220, 53, 69, 0.35);
  box-shadow: none;
}

/* line 342, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .status-badge.manque {
  background-color: rgba(255, 159, 67, 0.22);
  color: #8b4d0d;
  border-color: rgba(255, 159, 67, 0.35);
}

/* ==========================================================================
   NIGHTMODE CONTRAST TWEAKS (scoped)
   ========================================================================== */
/* line 353, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.nightmode .status-badge.a_venir {
  color: #d0f5df;
}

/* line 356, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.nightmode .status-badge.termine {
  color: #d0e7fb;
}

/* line 359, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.nightmode .status-badge.abandonne {
  color: #ffd3d3;
}

/* line 362, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.nightmode .status-badge.manque {
  color: #ffe0b3;
}

/* line 367, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* ==========================================================================
   BOUTONS MODERNES
   ========================================================================== */
/* line 377, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

/* line 390, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.btn i {
  font-size: 12px;
}

/* line 394, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.btn.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

/* line 399, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.btn.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* line 406, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.btn.btn-danger {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: white;
  border: 2px solid transparent;
}

/* line 411, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.btn.btn-danger:hover {
  background: linear-gradient(135deg, #c82333 0%, #a71e2a 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
}

/* ==========================================================================
   CONTENU PRINCIPAL
   ========================================================================== */
/* line 423, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  flex: 1 1 auto;
  overflow: hidden;
}

/* ==========================================================================
   CARTE PRINCIPALE - DATE ET TYPE
   ========================================================================== */
/* line 435, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-main-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* line 451, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-datetime .datetime-display {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* line 457, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-datetime .datetime-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #E5A82E 0%, #be8718 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  box-shadow: 0 8px 25px rgba(229, 168, 46, 0.3);
}

/* line 474, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-datetime .datetime-info {
  flex: 1;
}

/* line 478, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-datetime .datetime-range {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

/* line 484, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-datetime .datetime-range .time-range {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-left: 12px;
}

/* line 492, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-datetime .datetime-duration {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 500;
}

/* line 500, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-datetime .datetime-duration i {
  color: #C38761;
}

/* line 507, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-address .address-display {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 513, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-address .address-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #E5A82E 0%, #be8718 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(229, 168, 46, 0.3);
  flex-shrink: 0;
}

/* line 531, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-address .address-info {
  flex: 1;
  min-width: 0;
}

/* line 536, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-address .address-text {
  font-size: 16px;
  font-weight: 500;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* line 546, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-address .address-label {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* line 551, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-address .address-value {
  color: white;
  font-weight: 500;
}

/* Styles spécifiques pour le header */
/* line 559, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-header .appointment-datetime .datetime-display {
  gap: 12px;
}

/* line 563, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-header .appointment-datetime .datetime-icon {
  width: 40px;
  height: 40px;
  font-size: 18px;
  flex-shrink: 0;
}

/* line 570, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-header .appointment-datetime .datetime-info {
  min-width: 0;
}

/* line 576, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-type .type-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 585, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-type .type-badge {
  display: inline-block;
}

/* ==========================================================================
   SECTIONS PARTICIPANTS
   ========================================================================== */
/* line 594, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-participants {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Grille responsive pour les participants */
/* line 601, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-participants-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: stretch;
  /* Section participants externes en pleine largeur quand 3ème élément */
}

@media (max-width: 768px) {
  /* line 601, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
  .appointment-participants-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* line 613, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-participants-grid .external-participants-section {
  grid-column: 1 / -1;
}

/* line 618, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.participants-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* line 633, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.section-header {
  margin-bottom: 10px;
}

/* line 637, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  color: white;
}

/* line 645, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.section-title i {
  color: #C38761;
  font-size: 16px;
}

/* line 650, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.section-title .count-badge {
  background: rgba(229, 168, 46, 0.2);
  color: #E5A82E;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  margin-left: auto;
}

/* line 661, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.participants-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 250px;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
  padding-right: 8px;
  scrollbar-gutter: stable;
  /* Scrollbar personnalisée */
}

/* line 673, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.participants-list::-webkit-scrollbar {
  width: 8px;
}

/* line 677, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.participants-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 682, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.participants-list::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 686, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.participants-list::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 692, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.participant-item {
  display: flex;
  align-items: center;
  gap: 12px;
  /* réduit l'écart interne */
  padding: 12px;
  /* réduit la hauteur des items */
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* line 704, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.participant-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(229, 168, 46, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* line 712, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.participant-avatar {
  width: 36px;
  /* avatar plus compact */
  height: 36px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C38761;
  font-size: 14px;
  /* icône plus petite */
  flex-shrink: 0;
}

/* line 729, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.participant-info {
  flex: 1;
  min-width: 0;
}

/* line 734, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.participant-name {
  font-size: 15px;
  /* un peu plus petit */
  font-weight: 600;
  color: white;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 743, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.participant-name .organizer-badge {
  background: linear-gradient(135deg, #E5A82E 0%, #be8718 100%);
  color: white;
  padding: 2px 8px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 759, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.participant-role {
  font-size: 13px;
  /* plus compact */
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* line 765, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.participant-action {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  transition: all 0.3s ease;
}

/* line 771, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.participant-item:hover .participant-action {
  color: #C38761;
  transform: translateX(4px);
}

/* Section d'ajout de contact */
/* line 777, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.participant-add-section {
  margin-top: 16px;
}

/* line 781, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.btn-toggle-form {
  width: 100%;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* line 797, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.btn-toggle-form:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(229, 168, 46, 0.4);
  color: white;
}

/* line 803, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.btn-toggle-form i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

/* line 809, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.participant-add-form {
  margin-top: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border-top: 2px solid rgba(229, 168, 46, 0.3);
}

/* line 817, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.participant-add-form.hidden {
  display: none;
}

/* line 821, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.participant-add-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 827, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.participant-add-form .form-select {
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: white;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* line 837, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.participant-add-form .form-select:focus {
  outline: none;
  border-color: #E5A82E;
  background: rgba(255, 255, 255, 0.15);
}

/* line 843, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.participant-add-form .form-select option {
  background: #140D23;
  color: white;
}

/* line 849, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.participant-add-form .form-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

/* line 855, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.participant-add-form .btn-add-contact {
  padding: 10px 20px;
  background: linear-gradient(135deg, #E5A82E 0%, #be8718 100%);
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 869, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.participant-add-form .btn-add-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(229, 168, 46, 0.3);
}

/* line 874, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.participant-add-form .btn-add-contact i {
  font-size: 12px;
}

/* line 879, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.participant-add-form .btn-cancel-form {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 890, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.participant-add-form .btn-cancel-form:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

/* Variantes lightmode pour le formulaire d'ajout de contact */
/* line 900, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .btn-toggle-form {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
  color: rgba(20, 13, 35, 0.8);
}

/* line 905, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .btn-toggle-form:hover {
  background: rgba(20, 13, 35, 0.1);
  border-color: rgba(229, 168, 46, 0.4);
  color: #140D23;
}

/* line 912, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .participant-add-form {
  background: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.12);
  border-top-color: rgba(229, 168, 46, 0.3);
}

/* line 917, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .participant-add-form .form-select {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 922, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .participant-add-form .form-select:focus {
  border-color: #E5A82E;
  background: rgba(20, 13, 35, 0.08);
}

/* line 927, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .participant-add-form .form-select option {
  background: white;
  color: #140D23;
}

/* line 933, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .participant-add-form .btn-cancel-form {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
  color: rgba(20, 13, 35, 0.8);
}

/* line 938, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .participant-add-form .btn-cancel-form:hover {
  background: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* ==========================================================================
   ACTIONS
   ========================================================================== */
/* line 951, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.action-buttons {
  position: static;
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* line 959, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

/* line 968, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.empty-state i {
  font-size: 32px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.3);
}

/* line 974, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.empty-state span {
  font-size: 16px;
  font-weight: 500;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {
  /* line 985, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
  .appointment-content {
    grid-template-columns: 1fr;
  }
  /* line 989, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
  .appointment-header {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  /* line 995, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
  .appointment-actions {
    justify-content: stretch;
  }
  /* line 998, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
  .appointment-actions .btn {
    flex: 1;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  /* line 1006, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
  .appointment-detail-container {
    padding: 16px;
  }
  /* line 1010, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
  .appointment-header {
    padding: 20px;
  }
  /* line 1014, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
  .appointment-main-card {
    padding: 24px;
  }
  /* line 1018, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
  .participants-section {
    padding: 20px;
  }
  /* line 1022, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
  .datetime-display {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  /* line 1028, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
  .datetime-range {
    font-size: 20px;
  }
  /* line 1031, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
  .datetime-range .time-range {
    font-size: 16px;
    margin-left: 0;
    display: block;
    margin-top: 4px;
  }
}

/* ==========================================================================
   SECTION PIÈCES JOINTES
   ========================================================================== */
/* line 1044, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-documents-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* line 1059, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.documents-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-gutter: stable;
  /* Scrollbar personnalisée */
}

/* line 1069, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.documents-list::-webkit-scrollbar {
  width: 8px;
}

/* line 1073, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.documents-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 1078, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.documents-list::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 1082, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.documents-list::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 1088, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.document-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

/* line 1098, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.document-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(229, 168, 46, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* line 1106, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.document-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C38761;
  font-size: 20px;
  flex-shrink: 0;
}

/* line 1123, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.document-info {
  flex: 1;
  min-width: 0;
}

/* line 1128, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.document-name {
  font-size: 15px;
  font-weight: 600;
  color: white;
  margin-bottom: 6px;
  word-break: break-word;
}

/* line 1136, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.document-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* line 1144, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.document-meta .document-separator {
  color: rgba(255, 255, 255, 0.4);
}

/* line 1149, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.document-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 1155, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.document-delete-form {
  display: inline;
}

/* line 1159, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.document-download {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

/* line 1172, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.document-download:hover {
  background: rgba(229, 168, 46, 0.2);
  border-color: #E5A82E;
  color: #C38761;
  transform: translateY(-2px);
}

/* line 1179, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.document-download i {
  font-size: 14px;
}

/* line 1184, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.document-delete {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 8px;
  color: rgba(220, 53, 69, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

/* line 1200, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.document-delete:hover {
  background: rgba(220, 53, 69, 0.2);
  border-color: rgba(220, 53, 69, 0.5);
  color: #dc3545;
  transform: translateY(-2px);
}

/* line 1207, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.document-delete i {
  font-size: 14px;
}

/* Formulaire d'ajout de pièces jointes */
/* line 1213, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.document-upload-form {
  margin-top: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

/* line 1220, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.document-upload-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 1226, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.document-upload-form .form-label {
  font-size: 14px;
  font-weight: 600;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 1234, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.document-upload-form .form-label i {
  color: #C38761;
}

/* line 1239, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.document-upload-form .form-input {
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: white;
  font-size: 14px;
  transition: all 0.3s ease;
}

/* line 1248, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.document-upload-form .form-input:focus {
  outline: none;
  border-color: #E5A82E;
  background: rgba(255, 255, 255, 0.15);
}

/* line 1254, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.document-upload-form .form-input::file-selector-button {
  padding: 6px 12px;
  background: linear-gradient(135deg, #E5A82E 0%, #be8718 100%);
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  margin-right: 12px;
  transition: all 0.3s ease;
}

/* line 1266, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.document-upload-form .form-input::file-selector-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(229, 168, 46, 0.3);
}

/* line 1273, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.document-upload-form .form-hint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

/* line 1279, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.document-upload-form .form-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

/* line 1285, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.document-upload-form .btn-submit {
  padding: 10px 20px;
  background: linear-gradient(135deg, #E5A82E 0%, #be8718 100%);
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 1299, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.document-upload-form .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(229, 168, 46, 0.3);
}

/* line 1304, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.document-upload-form .btn-submit i {
  font-size: 12px;
}

/* Variantes lightmode */
/* line 1312, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .appointment-documents-section {
  background: rgba(12, 11, 11, 0.04);
  border: 1px solid rgba(12, 11, 11, 0.15);
}

/* line 1317, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .document-item {
  background: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.12);
}

/* line 1321, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .document-item:hover {
  background: rgba(20, 13, 35, 0.06);
  border-color: rgba(229, 168, 46, 0.35);
}

/* line 1327, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .document-icon {
  background: rgba(20, 13, 35, 0.08);
  color: #140D23;
}

/* line 1332, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .document-name {
  color: #140D23;
}

/* line 1336, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .document-meta {
  color: rgba(20, 13, 35, 0.75);
}

/* line 1340, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .document-download {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
  color: rgba(20, 13, 35, 0.7);
}

/* line 1345, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .document-download:hover {
  background: rgba(229, 168, 46, 0.15);
  border-color: #E5A82E;
  color: #140D23;
}

/* line 1352, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .document-delete {
  background: rgba(220, 53, 69, 0.08);
  border-color: rgba(220, 53, 69, 0.2);
  color: rgba(220, 53, 69, 0.8);
}

/* line 1357, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .document-delete:hover {
  background: rgba(220, 53, 69, 0.15);
  border-color: rgba(220, 53, 69, 0.4);
  color: #dc3545;
}

/* line 1364, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .document-upload-form {
  background: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.12);
}

/* line 1368, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .document-upload-form .form-label {
  color: #140D23;
}

/* line 1372, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .document-upload-form .form-input {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 1377, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .document-upload-form .form-input:focus {
  border-color: #E5A82E;
  background: rgba(20, 13, 35, 0.08);
}

/* line 1382, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .document-upload-form .form-input::file-selector-button {
  background: linear-gradient(135deg, #E5A82E 0%, #be8718 100%);
}

/* line 1387, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .document-upload-form .form-hint {
  color: rgba(20, 13, 35, 0.6);
}

/* ==========================================================================
   PARTICIPANTS EXTERNES - Section dédiée
   ========================================================================== */
/* line 1398, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.external-participants-section .participant-avatar.external {
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.3) 0%, rgba(195, 135, 97, 0.15) 100%);
  color: #C38761;
}

/* line 1407, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.external-participants-section .participant-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  margin-left: 8px;
}

/* line 1417, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.external-participants-section .participant-status-badge.notified {
  background: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.3);
}

/* Lightmode variants pour participants externes */
/* line 1428, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .external-participants-section .participant-avatar.external {
  background: rgba(195, 135, 97, 0.15);
  color: #9c613b;
}

/* line 1433, app/assets/stylesheets/pages/servicespace/commerce/crm/appointments_management/_show_appointment.scss */
.appointment-detail-container.lightmode .external-participants-section .participant-status-badge.notified {
  background: rgba(46, 204, 113, 0.15);
  color: #0f5a2f;
  border-color: rgba(46, 204, 113, 0.25);
}

/* ==========================================================================
   DASHBOARD CRM - Layout en sections avec metrics + graphs
   ========================================================================== */
/* Scope CRM pour éviter d'impacter d'autres modules */
/* line 6, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.crm-dashboard-page .project-board-main-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
}

/* Layout Bento Grid */
/* line 16, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.crm-bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  width: 100%;
}

@media (max-width: 1400px) {
  /* line 16, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
  .crm-bento-grid {
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
  }
}

@media (max-width: 1024px) {
  /* line 16, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
  .crm-bento-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
}

@media (max-width: 768px) {
  /* line 16, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
  .crm-bento-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* Tailles de cards pour le bento layout - Version compacte */
/* line 39, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.bento-card {
  grid-column: span 4;
  min-height: auto;
}

/* line 43, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.bento-card--small {
  grid-column: span 3;
  min-height: auto;
}

@media (max-width: 1400px) {
  /* line 43, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
  .bento-card--small {
    grid-column: span 4;
  }
}

@media (max-width: 1024px) {
  /* line 43, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
  .bento-card--small {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  /* line 43, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
  .bento-card--small {
    grid-column: span 1;
  }
}

/* line 60, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.bento-card--medium {
  grid-column: span 4;
  min-height: auto;
}

@media (max-width: 1400px) {
  /* line 60, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
  .bento-card--medium {
    grid-column: span 4;
  }
}

@media (max-width: 1024px) {
  /* line 60, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
  .bento-card--medium {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  /* line 60, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
  .bento-card--medium {
    grid-column: span 1;
  }
}

/* line 77, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.bento-card--large {
  grid-column: span 6;
  min-height: auto;
}

@media (max-width: 1400px) {
  /* line 77, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
  .bento-card--large {
    grid-column: span 8;
  }
}

@media (max-width: 768px) {
  /* line 77, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
  .bento-card--large {
    grid-column: span 1;
  }
}

/* line 90, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.bento-card--wide {
  grid-column: span 8;
  min-height: auto;
}

@media (max-width: 1400px) {
  /* line 90, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
  .bento-card--wide {
    grid-column: span 8;
  }
}

@media (max-width: 768px) {
  /* line 90, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
  .bento-card--wide {
    grid-column: span 1;
  }
}

/* line 103, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.bento-card--full {
  grid-column: span 12;
  min-height: auto;
}

@media (max-width: 1400px) {
  /* line 103, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
  .bento-card--full {
    grid-column: span 8;
  }
}

@media (max-width: 768px) {
  /* line 103, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
  .bento-card--full {
    grid-column: span 1;
  }
}

/* line 116, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.bento-card--objectives {
  grid-column: span 8;
  min-height: auto;
}

@media (max-width: 1400px) {
  /* line 116, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
  .bento-card--objectives {
    grid-column: span 8;
  }
}

@media (max-width: 1024px) {
  /* line 116, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
  .bento-card--objectives {
    grid-column: span 8;
  }
}

@media (max-width: 768px) {
  /* line 116, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
  .bento-card--objectives {
    grid-column: span 1;
  }
}

/* line 134, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.dashboard-section {
  margin-bottom: 0;
  width: 100%;
  position: relative;
}

/* Grille de metrics dans chaque carte */
/* line 141, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin-bottom: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  /* line 141, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
  .metrics-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 8px;
  }
}

/* Grille compacte pour les métriques */
/* line 157, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.metrics-grid--compact {
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

/* line 161, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.metrics-grid--compact .metric-card {
  padding: 10px 8px;
}

/* line 165, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.metrics-grid--compact .metric-label {
  font-size: 0.6rem;
  margin-bottom: 5px;
  font-weight: 600;
}

/* line 171, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.metrics-grid--compact .metric-value {
  font-size: 1.6rem;
}

/* line 176, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.metric-card {
  background: rgba(254, 254, 254, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 10px;
  text-align: center;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* line 190, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.metric-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #C38761, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* line 202, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.project-board-capsule.lightmode .metric-card {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.06) 0%, rgba(20, 13, 35, 0.03) 100%);
  border-color: rgba(20, 13, 35, 0.2);
  box-shadow: 0 4px 12px rgba(20, 13, 35, 0.08);
}

/* line 212, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.metric-card:hover {
  background: rgba(254, 254, 254, 0.1);
  border-color: rgba(195, 135, 97, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* line 218, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.metric-card:hover::before {
  opacity: 1;
}

/* line 222, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.project-board-capsule.lightmode .metric-card:hover {
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.1) 0%, rgba(20, 13, 35, 0.05) 100%);
  box-shadow: 0 6px 15px rgba(20, 13, 35, 0.12);
}

/* line 231, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.metric-card:hover .metric-value {
  color: #C38761;
  transform: scale(1.05);
}

/* line 238, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.metric-label {
  font-size: 0.65rem;
  font-weight: 600;
  opacity: 0.75;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.3;
}

/* line 248, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.project-board-capsule.lightmode .metric-label {
  color: rgba(20, 13, 35, 0.7);
  opacity: 1;
}

/* line 254, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.metric-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFFFFF;
  transition: all 0.3s ease;
  line-height: 1;
}

/* line 261, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.project-board-capsule.lightmode .metric-value {
  color: #140D23;
}

/* Variantes de couleur pour les valeurs */
/* line 267, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.metric-value--success {
  color: #4ade80;
}

/* line 270, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.project-board-capsule.lightmode .metric-value--success {
  color: #16a34a;
}

/* line 275, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.metric-value--warning {
  color: #fb923c;
}

/* line 278, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.project-board-capsule.lightmode .metric-value--warning {
  color: #ea580c;
}

/* line 283, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.metric-value--gold {
  color: #C38761;
}

/* Layout graphiques/tableaux en dessous des metrics */
/* line 288, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.charts-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  padding: 8px;
  margin-bottom: 8px;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  /* line 288, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
  .charts-row {
    grid-template-columns: 1fr;
  }
}

/* Layout spécial pour Performance Commerciale : cards + graphique au centre */
/* line 303, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.commercial-performance-layout {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 15px;
  padding: 8px;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 1200px) {
  /* line 303, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
  .commercial-performance-layout {
    grid-template-columns: 1fr;
  }
}

/* line 316, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.commercial-performance-layout__metrics-left,
.commercial-performance-layout__metrics-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 322, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.commercial-performance-layout__metrics-left .metric-card,
.commercial-performance-layout__metrics-right .metric-card {
  margin: 0;
}

/* line 327, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.commercial-performance-layout__chart {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(254, 254, 254, 0.03);
  border-radius: 10px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 337, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.project-board-capsule.lightmode .commercial-performance-layout__chart {
  background: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.12);
}

/* line 342, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.commercial-performance-layout__chart h4, .commercial-performance-layout__chart .h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 15px 0;
  color: #FFFFFF;
  text-align: center;
}

/* line 349, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.project-board-capsule.lightmode .commercial-performance-layout__chart h4, .project-board-capsule.lightmode .commercial-performance-layout__chart .h4 {
  color: #140D23;
}

/* line 354, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.commercial-performance-layout__chart .crm-chart-canvas-wrapper {
  width: 100%;
  max-width: 350px;
  height: 350px;
}

/* line 361, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.chart-col {
  background: rgba(254, 254, 254, 0.03);
  border-radius: 10px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-width: 0;
  overflow: hidden;
}

/* line 369, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.project-board-capsule.lightmode .chart-col {
  background: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.12);
}

/* line 374, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.chart-col h4, .chart-col .h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 15px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(195, 135, 97, 0.3);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 385, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.chart-col h4::before, .chart-col .h4::before {
  content: "";
  width: 4px;
  height: 18px;
  background: #C38761;
  border-radius: 2px;
  flex-shrink: 0;
}

/* line 394, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.project-board-capsule.lightmode .chart-col h4, .project-board-capsule.lightmode .chart-col .h4 {
  color: #140D23;
  border-bottom-color: rgba(195, 135, 97, 0.4);
}

/* line 401, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.chart-col--full {
  grid-column: 1 / -1;
}

/* Tables dans les cartes */
/* line 406, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.crm-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  border-radius: 8px;
  overflow: hidden;
}

/* line 413, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.crm-table--compact {
  font-size: 0.75rem;
}

/* line 416, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.crm-table--compact th,
.crm-table--compact td {
  padding: 6px 8px;
}

/* line 421, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.crm-table--compact thead th {
  font-size: 0.7rem;
  padding: 8px;
}

/* line 427, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.crm-table th,
.crm-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 433, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.project-board-capsule.lightmode .crm-table th, .project-board-capsule.lightmode .crm-table td {
  border-bottom-color: rgba(20, 13, 35, 0.12);
}

/* line 438, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.crm-table thead th {
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.25) 0%, rgba(195, 135, 97, 0.15) 100%);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border-bottom: 2px solid rgba(195, 135, 97, 0.4);
}

/* line 451, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.crm-table thead th:first-child {
  border-top-left-radius: 8px;
}

/* line 455, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.crm-table thead th:last-child {
  border-top-right-radius: 8px;
}

/* line 459, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.project-board-capsule.lightmode .crm-table thead th {
  color: rgba(20, 13, 35, 0.85);
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.2) 0%, rgba(195, 135, 97, 0.12) 100%);
}

/* line 469, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.crm-table tbody tr {
  transition: all 0.2s ease;
}

/* line 472, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.crm-table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

/* line 475, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.project-board-capsule.lightmode .crm-table tbody tr:hover {
  background-color: rgba(20, 13, 35, 0.04);
}

/* line 479, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.crm-table tbody tr:hover td {
  color: #C38761;
}

/* line 482, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.project-board-capsule.lightmode .crm-table tbody tr:hover td {
  color: #C38761;
}

/* line 488, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.crm-table tbody tr:last-child td {
  border-bottom: none;
}

/* line 493, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.crm-table td {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* line 497, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.project-board-capsule.lightmode .crm-table td {
  color: rgba(20, 13, 35, 0.85);
}

/* line 501, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.crm-table td:last-child {
  font-weight: 600;
  text-align: right;
  color: rgba(255, 255, 255, 0.95);
}

/* line 506, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.project-board-capsule.lightmode .crm-table td:last-child {
  color: rgba(20, 13, 35, 0.9);
}

/* line 512, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.crm-table a {
  transition: color 0.2s ease;
  text-decoration: none;
  color: inherit;
}

/* line 517, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.crm-table a:hover {
  color: #C38761 !important;
  text-decoration: underline;
}

/* Wrapper pour graphiques CRM */
/* line 525, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.crm-chart-canvas-wrapper {
  position: relative;
  width: 100%;
  max-width: 280px;
  height: 220px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1200px) {
  /* line 525, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
  .crm-chart-canvas-wrapper {
    max-width: 240px;
    height: 200px;
  }
}

@media (max-width: 768px) {
  /* line 525, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
  .crm-chart-canvas-wrapper {
    max-width: 220px;
    height: 180px;
  }
}

/* Messages d'état vide */
/* line 548, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.crm-empty-state {
  text-align: center;
  padding: 20px 15px;
  opacity: 0.65;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-style: italic;
}

/* line 556, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.project-board-capsule.lightmode .crm-empty-state {
  color: rgba(20, 13, 35, 0.6);
  opacity: 1;
}

/* line 562, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.crm-placeholder-text {
  padding: 15px;
  text-align: center;
  opacity: 0.75;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  font-style: italic;
}

/* line 570, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.project-board-capsule.lightmode .crm-placeholder-text {
  color: rgba(20, 13, 35, 0.65);
  opacity: 1;
}

/* Style compact pour les cartes de section - Bento style */
/* line 577, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.dashboard-section .project-board-chart-container {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: auto;
  height: 100%;
  padding: 14px;
  border-radius: 10px;
  background: rgba(254, 254, 254, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 589, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.project-board-capsule.lightmode .dashboard-section .project-board-chart-container {
  box-shadow: 0 3px 10px rgba(20, 13, 35, 0.06);
  background: linear-gradient(145deg, #ffffff, #f8f8f8);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 595, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.dashboard-section .project-board-chart-container .chart-header {
  padding: 0 0 10px 0;
  border-bottom: 1px solid rgba(195, 135, 97, 0.2);
  margin-bottom: 12px;
  flex-shrink: 0;
}

/* line 601, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.project-board-capsule.lightmode .dashboard-section .project-board-chart-container .chart-header {
  border-bottom-color: rgba(195, 135, 97, 0.3);
}

/* line 605, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.dashboard-section .project-board-chart-container .chart-header h3, .dashboard-section .project-board-chart-container .chart-header .h3 {
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.95);
}

/* line 616, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.project-board-capsule.lightmode .dashboard-section .project-board-chart-container .chart-header h3, .project-board-capsule.lightmode .dashboard-section .project-board-chart-container .chart-header .h3 {
  color: rgba(20, 13, 35, 0.9);
}

/* Header section override pour dashboard */
/* line 624, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.crm-dashboard-page .project-board-top-section {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  min-height: auto;
}

/* Filtres compacts en capsules */
/* line 632, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.crm-dashboard__filters-compact {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: nowrap;
}

/* line 639, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.filter-pill {
  background: rgba(254, 254, 254, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  padding: 8px 32px 8px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' opacity='0.6' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  white-space: nowrap;
  height: 36px;
  min-width: 140px;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  /* Masquer les flèches natives des navigateurs */
}

/* line 662, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.project-board-capsule.lightmode .filter-pill {
  background-color: rgba(20, 13, 35, 0.04);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath fill='%2324314b' opacity='0.6' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  border-color: rgba(20, 13, 35, 0.15);
  color: #140D23;
}

/* line 670, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.filter-pill::-ms-expand {
  display: none;
}

/* line 674, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.filter-pill:hover {
  background: rgba(254, 254, 254, 0.1);
  border-color: rgba(195, 135, 97, 0.3);
}

/* line 678, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.project-board-capsule.lightmode .filter-pill:hover {
  background: rgba(20, 13, 35, 0.08);
}

/* line 683, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.filter-pill:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.15);
}

/* line 689, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.filter-pill option {
  background: #2a1f3d;
  color: #FFFFFF;
  padding: 6px;
}

/* line 694, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.project-board-capsule.lightmode .filter-pill option {
  background: #FFFFFF;
  color: #140D23;
}

/* line 700, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.filter-pill--wide {
  min-width: 200px;
}

/* line 704, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.filter-pill--action {
  background: rgba(195, 135, 97, 0.15);
  border-color: rgba(195, 135, 97, 0.3);
  color: #C38761;
  padding: 8px 18px;
  font-weight: 600;
  background-image: none;
  min-width: 120px;
  justify-content: center;
}

/* line 714, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.project-board-capsule.lightmode .filter-pill--action {
  background: rgba(195, 135, 97, 0.12);
  color: #C38761;
}

/* line 719, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.filter-pill--action:hover {
  background: rgba(195, 135, 97, 0.25);
  border-color: #C38761;
  transform: translateY(-1px);
}

/* line 724, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.project-board-capsule.lightmode .filter-pill--action:hover {
  background: rgba(195, 135, 97, 0.2);
}

/* line 729, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
.filter-pill--action:active {
  transform: translateY(0);
}

@media (max-width: 1024px) {
  /* line 639, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
  .filter-pill {
    font-size: 0.8rem;
    padding: 7px 28px 7px 12px;
    height: 34px;
    min-width: 120px;
  }
  /* line 740, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
  .filter-pill--wide {
    min-width: 160px;
  }
  /* line 744, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
  .filter-pill--action {
    padding: 7px 16px;
    min-width: 100px;
  }
}

@media (max-width: 768px) {
  /* line 639, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
  .filter-pill {
    font-size: 0.75rem;
    padding: 6px 25px 6px 10px;
    height: 32px;
    min-width: 100px;
  }
  /* line 756, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
  .filter-pill--wide {
    min-width: 140px;
  }
  /* line 760, app/assets/stylesheets/pages/servicespace/commerce/crm/dashboard/_index.scss */
  .filter-pill--action {
    padding: 6px 14px;
    min-width: 90px;
  }
}

/* Scanner de carte de visite — après custom_modal pour overrides */
/* Scanner de carte de visite - Modal et composants
   Classes autonomes scan-modal-* pour éviter toute collision
   avec les styles globaux de _custom_modal.scss */
/* ─── Overlay ─────────────────────────────────────────────────────────── */
/* line 7, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_business_card_scan.scss */
.scan-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1050;
}

/* line 19, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_business_card_scan.scss */
.scan-modal-overlay.active {
  display: flex;
  animation: scanFadeIn 0.3s;
}

@keyframes scanFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ─── Modal ───────────────────────────────────────────────────────────── */
/* line 32, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_business_card_scan.scss */
.scan-modal {
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
  backdrop-filter: blur(12px);
  border: none;
  color: white;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}

/* line 47, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_business_card_scan.scss */
.scan-modal-overlay.active .scan-modal {
  transform: translateY(0);
  opacity: 1;
}

/* line 53, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_business_card_scan.scss */
.scan-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 61, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_business_card_scan.scss */
.scan-modal-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 500;
  color: white;
}

/* line 68, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_business_card_scan.scss */
.scan-modal-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  line-height: 1;
}

/* line 83, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_business_card_scan.scss */
.scan-modal-close:hover {
  color: #C38761;
  background: rgba(255, 255, 255, 0.1);
}

/* line 89, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_business_card_scan.scss */
.scan-modal-body {
  padding: 1.25rem;
  /* Reset le display: flex hérité de .leads-board-row1 form */
}

/* line 93, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_business_card_scan.scss */
.scan-modal-body form {
  display: flex;
  flex-direction: column;
}

/* line 99, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_business_card_scan.scss */
.scan-modal-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

/* ─── Drop zone ───────────────────────────────────────────────────────── */
/* line 111, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_business_card_scan.scss */
.scan-modal .scan-drop-zone {
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 119, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_business_card_scan.scss */
.scan-modal .scan-drop-zone.drag-over {
  border-color: #C38761;
  background: rgba(195, 135, 97, 0.1);
}

/* line 124, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_business_card_scan.scss */
.scan-modal .scan-drop-zone-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 131, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_business_card_scan.scss */
.scan-modal .scan-drop-zone-content i {
  color: rgba(255, 255, 255, 0.4);
}

/* line 134, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_business_card_scan.scss */
.scan-modal .scan-drop-zone-hint {
  font-size: 0.8rem;
  opacity: 0.5;
}

/* line 139, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_business_card_scan.scss */
.scan-modal .scan-drop-zone-formats {
  font-size: 0.75rem;
  opacity: 0.4;
  margin-top: 0.5rem;
}

/* line 146, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_business_card_scan.scss */
.scan-modal .scan-file-label {
  cursor: pointer;
  display: inline-block;
}

/* line 151, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_business_card_scan.scss */
.scan-modal .scan-image-preview {
  text-align: center;
  margin-top: 1rem;
}

/* line 156, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_business_card_scan.scss */
.scan-modal .scan-preview-img {
  max-width: 100%;
  max-height: 200px;
  border-radius: 8px;
  object-fit: contain;
}

/* ─── Loading ─────────────────────────────────────────────────────────── */
/* line 166, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_business_card_scan.scss */
.scan-loading-state {
  text-align: center;
  padding: 3rem 1rem;
}

/* line 170, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_business_card_scan.scss */
.scan-loading-state .scan-spinner {
  margin-bottom: 1.5rem;
}

/* line 172, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_business_card_scan.scss */
.scan-loading-state p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.25rem;
}

/* line 177, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_business_card_scan.scss */
.scan-loading-state .scan-loading-hint {
  font-size: 0.8rem;
  opacity: 0.5;
}

/* ─── Review grid ─────────────────────────────────────────────────────── */
/* line 185, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_business_card_scan.scss */
.scan-review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* line 190, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_business_card_scan.scss */
.scan-review-grid .scan-full-width {
  grid-column: 1 / -1;
}

@media (max-width: 500px) {
  /* line 185, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_business_card_scan.scss */
  .scan-review-grid {
    grid-template-columns: 1fr;
  }
}

/* line 197, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_business_card_scan.scss */
.scan-field {
  display: flex;
  flex-direction: column;
}

/* line 202, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_business_card_scan.scss */
.scan-label {
  text-align: left;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.8);
}

/* line 210, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_business_card_scan.scss */
.scan-input {
  width: 100%;
  height: 36px;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid rgba(195, 135, 97, 0.4);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 0.9rem;
  box-sizing: border-box;
  transition: all 0.2s ease;
  /* Select dropdown */
}

/* line 223, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_business_card_scan.scss */
.scan-input:is(select) {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(255,255,255,0.5)' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
}

/* line 231, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_business_card_scan.scss */
.scan-input:is(select) option {
  background: #1a1a2e;
  color: white;
}

/* line 237, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_business_card_scan.scss */
.scan-input:focus {
  border-color: #C38761;
  outline: none;
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.15);
}

/* line 243, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_business_card_scan.scss */
.scan-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

/* ─── Success ─────────────────────────────────────────────────────────── */
/* line 250, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_business_card_scan.scss */
.scan-success-state {
  text-align: center;
  padding: 2rem;
}

/* line 254, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_business_card_scan.scss */
.scan-success-state .scan-success-icon {
  color: #28a745;
  margin-bottom: 1rem;
}

/* line 259, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_business_card_scan.scss */
.scan-success-state .scan-success-message {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

/* ─── Error ───────────────────────────────────────────────────────────── */
/* line 267, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_business_card_scan.scss */
.scan-error-banner {
  background: rgba(220, 53, 69, 0.2);
  border: 1px solid rgba(220, 53, 69, 0.4);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  color: #ff6b6b;
  font-size: 0.85rem;
}

/* ─── Conteneur actions contacts (header section) ────────────────────── */
/* line 279, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_business_card_scan.scss */
.crm-contacts-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

/* ─── Boutons déclencheurs ────────────────────────────────────────────── */
/* line 287, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_business_card_scan.scss */
.btn-scan-card {
  font-size: 0.85rem;
  white-space: nowrap;
  gap: 0.25rem;
}

/* line 292, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_business_card_scan.scss */
.btn-scan-card i {
  margin-right: 0.25rem;
}

/* line 295, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_business_card_scan.scss */
.crm-scan-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

/* line 306, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_business_card_scan.scss */
.crm-scan-btn:hover {
  border-color: #C38761;
  color: #C38761;
}

/* line 311, app/assets/stylesheets/pages/servicespace/commerce/crm/shared/_business_card_scan.scss */
.crm-scan-btn i {
  margin-right: 0.2rem;
}

/* line 1, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-capsule {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 40px;
  font-size: 1rem;
  gap: 15px;
  overflow-y: auto;
  /* Personnalisation de la barre de défilement */
}

/* line 14, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-capsule::-webkit-scrollbar {
  width: 8px;
  /* Largeur de la barre de défilement */
}

/* line 18, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-capsule::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  /* Couleur de l'arrière-plan de la barre */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 23, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-capsule::-webkit-scrollbar-thumb {
  background: #C38761;
  /* Couleur de la barre de défilement */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 28, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-capsule::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
  /* Couleur de la barre au survol */
}

/* line 34, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-pitch {
  width: 100%;
  height: 35%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 5px;
  font-size: 1rem;
  gap: 10px;
}

/* line 48, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-pitch-title {
  width: 100%;
  height: 20%;
  display: flex;
  justify-content: start;
  font-size: 1rem;
  font-weight: bold;
}

/* line 58, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-pitch-core {
  width: 100%;
  height: 60%;
  padding: 10px;
  display: flex;
  flex-direction: row;
  justify-content: start;
  font-size: 0.8rem;
  font-weight: normal;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 71, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-pitch-action {
  width: 100%;
  height: 20%;
  display: flex;
  flex-direction: row;
  justify-content: end;
}

/* line 79, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-logotype {
  width: 100%;
  height: 35%;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 5px;
  font-size: 1rem;
  gap: 10px;
}

/* line 93, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-logotype-title {
  width: 100%;
  height: 20%;
  display: flex;
  justify-content: start;
  font-size: 1rem;
  font-weight: bold;
}

/* line 103, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-logotype-core {
  width: 100%;
  height: 80%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  font-size: 1rem;
  padding: 5px;
  gap: 30px;
  align-items: center;
}

/* line 116, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-logotype-core-button {
  height: 60%;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* line 123, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-logotype-core-button form {
  width: 100%;
}

/* line 128, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-logotype-core-add {
  height: 100%;
  width: 100%;
  font-size: 2rem;
  font-weight: normal;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* line 138, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-logotype-core-item {
  height: 100%;
  aspect-ratio: 1;
  font-size: 1rem;
  display: flex;
  flex: row;
  align-items: center;
  justify-content: start;
  overflow: auto;
}

/* line 151, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-logotype-core-item-delete {
  position: relative;
  height: 15%;
  aspect-ratio: 1;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: red;
  z-index: 10;
  color: white;
}

/* line 166, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-colors {
  width: 100%;
  height: 40%;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 5px;
  font-size: 1rem;
  gap: 10px;
}

/* line 180, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-colors-title {
  width: 100%;
  height: 20%;
  display: flex;
  justify-content: start;
  font-size: 1rem;
  font-weight: bold;
}

/* line 190, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-colors-core {
  width: 100%;
  height: 80%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  font-size: 1rem;
  padding: 5px;
  text-align: center;
  align-items: center;
  gap: 10px;
}

/* line 204, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-colors-core-add {
  height: 100%;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.2s;
}

/* line 216, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-colors-core-add:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

/* line 222, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-colors-core-item {
  width: 100%;
  height: 100%;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  padding: 10px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 236, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-typography {
  width: 100%;
  height: 20%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 5px;
  font-size: 1rem;
  gap: 2px;
  background-color: aqua;
}

/* line 249, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-elements {
  width: 100%;
  height: 20%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 5px;
  font-size: 1rem;
  gap: 2px;
  background-color: aqua;
}

/* line 262, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-images {
  width: 100%;
  height: 20%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 5px;
  font-size: 1rem;
  gap: 2px;
  background-color: aqua;
}

/* line 276, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-logotype-core {
  display: flex;
  flex-direction: row;
  gap: 30px;
  width: 100%;
}

/* line 283, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-logotype-core-item {
  display: flex;
  flex-wrap: row;
  overflow-y: auto;
  gap: 20px;
  width: calc(100% - 60px);
}

/* line 291, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-logotype-core-logo {
  position: relative;
  border-radius: 8px;
  padding: 15px;
  width: 200px;
  background-color: rgba(255, 255, 255, 0.05);
  transition: all 0.2s;
}

/* line 300, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-logotype-core-logo:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 304, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-logotype-core-logo img {
  max-width: 100%;
  height: auto;
  max-height: 120px;
  display: block;
  margin: 0 auto;
}

/* line 313, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-logotype-core-item-delete {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.2s;
}

/* line 327, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-logotype-core-item-delete:hover {
  background-color: rgba(255, 0, 0, 0.3);
}

/* line 331, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-logotype-core-item-delete .fa-xmark {
  color: #ff6b6b;
}

/* line 336, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-logotype-core-logo-info {
  margin-top: 10px;
  text-align: center;
}

/* line 340, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-logotype-core-logo-info h4, .graphicid-page-logotype-core-logo-info .h4 {
  font-size: 0.9rem;
  margin-bottom: 5px;
  color: #FFFFFF;
}

/* line 346, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-logotype-core-logo-info p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* line 353, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-logotype-core-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-weight: 300;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  transition: transform 0.2s ease-in-out;
}

/* line 367, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-logotype-core-button:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

/* line 372, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-logotype-core-logo-image {
  width: 100%;
  height: 85%;
  border-radius: 20px;
}

/* line 376, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-logotype-core-logo-image img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* line 385, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-colors-core {
  padding: 20px 0;
}

/* line 389, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-colors-subheading {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
}

/* line 396, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-colors-subheading .badge {
  margin-left: 10px;
  font-size: 0.7rem;
  font-weight: normal;
}

/* line 403, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-colors-grid {
  width: 100%;
  height: 80%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

/* line 414, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-color-item {
  height: 90%;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  padding: 3px;
  transition: all 0.2s;
}

/* line 424, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-color-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 429, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-color-preview {
  width: 100%;
  height: 100px;
  display: flex;
  border-radius: 4px;
  margin-bottom: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* line 438, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-color-info {
  margin-top: 5px;
}

/* line 441, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-color-info h4, .graphicid-page-color-info .h4 {
  font-size: 0.8rem;
  margin-bottom: 4px;
  color: #FFFFFF;
  word-break: break-all;
}

/* line 448, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-color-info p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* line 455, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-color-item-delete {
  position: relative;
  top: -3px;
  right: 3px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.2s;
  z-index: 15;
}

/* line 470, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-color-item-delete:hover {
  background-color: rgba(255, 0, 0, 0.3);
}

/* line 474, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-color-item-delete .fa-xmark {
  color: #ff6b6b;
}

/* line 479, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-colors-core-button {
  margin-bottom: 20px;
}

/* line 482, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-colors-core-button .graphicid-page-colors-core-add {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(195, 135, 97, 0.2);
  color: #C38761;
  font-size: 1.2rem;
  border: 1px solid #C38761;
  transition: all 0.2s;
  cursor: pointer;
}

/* line 496, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-colors-core-button .graphicid-page-colors-core-add:hover {
  background-color: rgba(195, 135, 97, 0.3);
}

/* line 503, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
input.form-control-color[type="color"] {
  width: 60px;
  height: 38px;
  padding: 0;
  border-radius: 4px 0 0 4px;
}

/* line 510, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-colors-core-item-head {
  width: 100%;
  height: 20%;
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: bold;
}

/* line 520, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.color-details-preview {
  width: 100%;
  height: 150px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
}

/* line 528, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.code-display {
  font-family: monospace;
  font-size: 1.2rem;
  padding: 8px 12px;
  background-color: rgba(232, 232, 232, 0.1);
  border-radius: 4px;
  display: inline-block;
}

/* line 537, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.notes-display {
  line-height: 1.6;
  white-space: pre-line;
  padding: 10px;
  background-color: rgba(232, 232, 232, 0.05);
  border-radius: 4px;
}

/* line 546, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-color-item {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* line 550, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-color-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* line 556, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-color-item .graphicid-page-color-item-delete {
  z-index: 20;
}

/* line 560, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-color-item .graphicid-page-color-item-delete a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* line 571, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-typo {
  width: 100%;
  height: 40%;
  min-height: 425px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 5px;
  font-size: 1rem;
  gap: 10px;
}

/* line 584, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-typo-title {
  width: 100%;
  height: 10%;
  display: flex;
  justify-content: start;
  font-size: 1rem;
  font-weight: bold;
}

/* line 593, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-typo-core {
  width: 100%;
  padding: 20px 0;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 10px;
}

/* line 601, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-typo-core-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

/* line 608, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-typo-subheading {
  font-size: 1rem;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  margin: 0;
}

/* line 615, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-typo-subheading .badge {
  margin-left: 10px;
  font-size: 0.7rem;
  font-weight: normal;
}

/* line 622, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-typo-core-add {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-size: 1.5rem;
  border: 1px solid #FFFFFF;
  transition: all 0.2s;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

/* line 637, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-typo-core-add:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

/* line 643, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-typo-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

/* line 650, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-typo-item {
  position: relative;
  border-radius: 8px;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  transition: all 0.2s;
}

/* line 658, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-typo-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 663, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-typo-preview {
  background-color: rgba(255, 255, 255, 0.9);
  color: #333;
  border-radius: 4px;
  padding: 15px;
  margin-bottom: 10px;
  overflow: hidden;
}

/* line 672, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-typo-preview .typo-preview-sample h2, .graphicid-page-typo-preview .typo-preview-sample .h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #333;
}

/* line 678, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-typo-preview .typo-preview-sample p {
  margin-bottom: 5px;
  color: #333;
}

/* line 685, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-typo-info {
  margin-top: 10px;
}

/* line 688, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-typo-info h4, .graphicid-page-typo-info .h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: #FFFFFF;
}

/* line 694, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-typo-info p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* line 701, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-typo-item-delete {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
}

/* line 716, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-typo-item-delete:hover {
  background-color: rgba(255, 0, 0, 0.3);
}

/* line 721, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-typo-item-delete .fa-xmark {
  color: #ff6b6b;
}

/* line 727, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.typo-preview {
  background-color: #fff;
  color: #333;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
}

/* line 734, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.typo-preview h3, .typo-preview .h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #555;
}

/* line 741, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.typo-preview .typo-sample h2, .typo-preview .typo-sample .h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #333;
}

/* line 747, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.typo-preview .typo-sample p {
  margin-bottom: 5px;
  color: #333;
}

/* line 755, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.nav-tabs {
  border-bottom: 1px solid rgba(232, 232, 232, 0.3);
}

/* line 758, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.nav-tabs .nav-link {
  color: rgba(255, 255, 255, 0.7);
  border: none;
  padding: 10px 15px;
}

/* line 763, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.nav-tabs .nav-link.active {
  color: #C38761;
  background-color: transparent;
  border-bottom: 2px solid #C38761;
}

/* line 769, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.nav-tabs .nav-link:hover:not(.active) {
  border-bottom: 2px solid rgba(195, 135, 97, 0.3);
}

/* line 776, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.font-validation {
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* line 783, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.font-suggestions {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 12px;
  border-radius: 4px;
}

/* line 789, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.font-suggestion-btn {
  padding: 4px 10px;
  font-size: 0.8rem;
}

/* line 793, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.font-suggestion-btn:hover {
  background-color: #e8e8e8;
  color: #FFFFFF;
}

/* line 800, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.typo-preview {
  background-color: white !important;
  border-radius: 6px;
  padding: 20px !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* line 806, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.typo-preview .typo-sample {
  transition: all 0.3s ease;
}

/* line 809, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.typo-preview .typo-sample h2, .typo-preview .typo-sample .h2 {
  font-size: 2rem !important;
  margin-bottom: 15px;
  color: #333 !important;
  line-height: 1.2;
}

/* line 816, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.typo-preview .typo-sample p {
  margin-bottom: 8px;
  color: #333 !important;
  line-height: 1.4;
}

/* line 825, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-typo-preview {
  background-color: white;
  border-radius: 4px;
  padding: 15px;
  margin-bottom: 10px;
  transition: opacity 0.3s ease;
}

/* line 833, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-typo-preview * {
  font-family: inherit;
}

/* line 838, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-typo-preview .typo-preview-sample h2, .graphicid-page-typo-preview .typo-preview-sample .h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #333;
  line-height: 1.2;
  font-family: inherit !important;
}

/* line 846, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-typo-preview .typo-preview-sample p {
  margin-bottom: 5px;
  color: #333;
  line-height: 1.4;
  font-family: inherit !important;
}

/* line 857, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-ressources {
  width: 100%;
  height: 40%;
  min-height: 370px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 5px;
  font-size: 1rem;
  gap: 10px;
}

/* line 870, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-ressources-title {
  width: 100%;
  height: 20%;
  display: flex;
  justify-content: start;
  font-size: 1rem;
  font-weight: bold;
}

/* line 879, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-ressources-core {
  width: 100%;
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  font-size: 1rem;
  padding: 10px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 891, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-ressources-core-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

/* line 898, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-ressources-subheading {
  font-size: 1rem;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  margin: 0;
}

/* line 905, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-ressources-subheading .badge {
  margin-left: 10px;
  font-size: 0.7rem;
  font-weight: normal;
}

/* line 912, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-ressources-core-add {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-size: 1.5rem;
  border: 1px solid #FFFFFF;
  transition: all 0.2s;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

/* line 927, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-ressources-core-add:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

/* line 933, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-ressources-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  overflow-y: auto;
  max-height: 350px;
  padding: 10px 0;
}

/* line 943, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-resource-item {
  position: relative;
  border-radius: 8px;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  transition: all 0.2s;
}

/* line 950, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-resource-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* line 956, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-resource-preview {
  width: 100%;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}

/* line 967, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-resource-preview .resource-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* line 973, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-resource-preview .resource-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, 0.3);
  font-size: 2rem;
}

/* line 984, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-resource-info {
  margin-top: 5px;
  text-align: center;
}

/* line 988, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-resource-info h4, .graphicid-page-resource-info .h4 {
  font-size: 0.9rem;
  margin-bottom: 5px;
  color: #FFFFFF;
}

/* line 994, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-resource-info p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* line 1001, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-resource-item-delete {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
}

/* line 1016, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-resource-item-delete:hover {
  background-color: rgba(255, 0, 0, 0.3);
}

/* line 1020, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-resource-item-delete .fa-xmark {
  color: #ff6b6b;
}

/* line 1027, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-selector {
  width: 100%;
  padding: 0 5px 15px 5px;
  margin-bottom: 10px;
}

/* line 1033, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-selector-form {
  width: 100%;
}

/* line 1037, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-selector-row {
  display: flex;
  gap: 15px;
  align-items: flex-end;
}

/* line 1043, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-selector-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* line 1049, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-selector-group label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* line 1056, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-selector-input {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 8px 12px;
  color: #FFFFFF;
  transition: all 0.2s;
  appearance: auto;
}

/* line 1065, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-selector-input:focus {
  outline: none;
  border-color: #C38761;
  background-color: rgba(255, 255, 255, 0.15);
}

/* line 1071, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-selector-input:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

/* line 1076, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-selector-action {
  margin-left: 5px;
}

/* line 1080, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-selector-button {
  background-color: rgba(195, 135, 97, 0.8);
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 1090, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-selector-button:hover {
  background-color: #C38761;
  transform: translateY(-2px);
}

/* line 1096, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.modal label {
  opacity: 1;
}

/* line 1100, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.modal-body .form-select {
  width: auto;
}

/* line 1116, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-export {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5px;
  margin-bottom: 10px;
  border-radius: 8px;
  background-color: rgba(195, 135, 97, 0.1);
}

/* line 1127, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-page-export-text {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

/* line 1133, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-export-button {
  background-color: rgba(195, 135, 97, 0.8);
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 1143, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.graphicid-export-button:hover {
  background-color: #C38761;
  transform: translateY(-2px);
}

/* line 1149, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.export-selection-list {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.05);
}

/* line 1154, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.export-selection-list .list-group-item {
  background-color: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.1);
}

/* line 1159, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.export-selection-list .list-group-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 1164, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.export-selection-list .form-check-input {
  cursor: pointer;
}

/* line 1166, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_graphic_board.scss */
.export-selection-list .form-check-input:checked {
  background-color: #C38761;
  border-color: #C38761;
}

/* line 1, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-page-capsule {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: start;
  padding: 40px;
  font-size: 1rem;
  gap: 25px;
  overflow-y: auto;
  /* Personnalisation de la barre de défilement */
}

/* line 14, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-page-capsule::-webkit-scrollbar {
  width: 8px;
  /* Largeur de la barre de défilement */
}

/* line 18, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-page-capsule::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  /* Couleur de l'arrière-plan de la barre */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 23, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-page-capsule::-webkit-scrollbar-thumb {
  background: #C38761;
  /* Couleur de la barre de défilement */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 28, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-page-capsule::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
  /* Couleur de la barre au survol */
}

/* line 32, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-page-capsule form {
  width: 60%;
  height: 100%;
}

/* line 39, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-page-table-one {
  width: 40%;
  height: 90%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  border-radius: 10px;
  padding-left: 10px;
  padding-right: 10px;
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 56, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-timeline-container {
  width: 100%;
  height: 100%;
  padding: 10px 0;
}

/* line 62, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-timeline-title {
  width: 100%;
  height: 5%;
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #C38761;
  text-align: center;
}

/* line 72, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-timeline {
  width: 100%;
  height: 90%;
  display: flex;
  flex-direction: column;
  overflow: auto;
  padding: 10px 0;
  gap: 20px;
}

/* line 82, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-timeline::-webkit-scrollbar {
  height: 4px;
}

/* line 86, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-timeline::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 91, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-timeline::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 96, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-timeline::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 101, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-timeline-item {
  width: 95%;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.2s ease;
}

/* line 109, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-timeline-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.15);
}

/* line 116, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-timeline-date {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #C38761;
  color: #e8e8e8;
  padding: 2px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* line 128, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-timeline-content {
  padding: 10px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 136, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2px;
}

/* line 143, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-timeline-org {
  font-weight: 600;
  font-size: 0.8rem;
  color: #FFFFFF;
}

/* line 149, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-timeline-badge {
  background: #C38761;
  color: #e8e8e8;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* line 158, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-timeline-body {
  margin-top: 5px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 5px;
}

/* line 164, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-timeline-pitch {
  font-size: 0.8rem;
  line-height: 1;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.9);
  padding-top: 5px;
  padding-bottom: 5px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* line 178, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-timeline-docs {
  display: flex;
  align-items: center;
  margin-top: 5px;
}

/* line 184, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-timeline-docs-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
}

/* line 190, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-timeline-docs-label:before {
  content: "📎";
  margin-right: 5px;
}

/* line 196, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-timeline-identity {
  margin-top: 5px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 5px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
}

/* line 206, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-timeline-empty {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100px;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* line 216, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-page-table-two {
  width: 100%;
  height: 100%;
}

/* line 221, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-page-table-two-content {
  width: 100%;
  height: 90%;
  padding: 10px;
  gap: 10px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  border-radius: 10px;
  padding-left: 10px;
  padding-right: 10px;
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 237, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-page-table-two-button {
  width: 100%;
  height: 10%;
  display: flex;
  justify-content: end;
  align-items: center;
}

/* line 245, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-page-table-context {
  width: 100%;
  height: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* line 255, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-page-table-context-title {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 5px;
  width: 100%;
  height: 55%;
}

/* line 263, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-page-table-context-title h3, .requestdesign-page-table-context-title .h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #C38761;
  text-align: start;
}

/* line 269, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-page-table-context-title p {
  font-size: 0.7rem;
  overflow: hidden;
}

/* line 275, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-page-table-context-presentation {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 20px;
  background-color: rgba(232, 232, 232, 0.2);
  gap: 15px;
  width: 90%;
  height: 45%;
  overflow: hidden;
}

/* line 287, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-page-table-context-presentation .requestdesign-page-table-context-logo {
  background-color: royalblue;
  height: 100%;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 600;
  color: #C38761;
}

/* line 299, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-page-table-context-presentation p {
  font-size: 0.7rem;
  color: rgba(232, 232, 232, 0.8);
  margin-bottom: 0rem;
  overflow: hidden;
}

/* line 307, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-page-table-context-infos {
  width: 100%;
  height: 75%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 10px;
}

/* line 316, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-page-table-context-infos form {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}

/* line 326, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-page-table-context-infos-perimetre {
  width: 100%;
  height: 15%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* line 337, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-page-table-context-infos-perimetre-select {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

/* line 346, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-page-table-context-infos-perimetre-select label {
  font-size: 0.7rem;
  font-weight: 600;
  color: #C38761;
  text-align: start;
}

/* line 352, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-page-table-context-infos-perimetre-select select {
  width: 70%;
  max-height: 30px;
  background-color: rgba(232, 232, 232, 0.2);
  border-radius: 10px;
  padding-left: 10px;
  font-size: 0.7rem;
  color: rgba(232, 232, 232, 0.8);
  border: none;
  outline: none;
}

/* line 366, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-page-table-context-infos-suite {
  width: 100%;
  height: 85%;
  gap: 10px;
  display: flex;
  flex-direction: row;
}

/* line 374, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-page-table-context-infos-message {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 10px;
}

/* line 385, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-page-table-context-infos-message-select {
  width: 100%;
  height: 25%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

/* line 394, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-page-table-context-infos-message-select label {
  font-size: 0.7rem;
  font-weight: 600;
  color: #C38761;
  text-align: start;
}

/* line 400, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-page-table-context-infos-message-select select {
  width: 70%;
  height: 30%;
  max-height: 20px;
  background-color: rgba(232, 232, 232, 0.2);
  border-radius: 10px;
  padding-left: 10px;
  font-size: 0.7rem;
  color: rgba(232, 232, 232, 0.8);
  border: none;
  outline: none;
}

/* line 414, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-page-table-context-infos-message-text {
  width: 100%;
  height: 75%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* line 420, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-page-table-context-infos-message-text textarea {
  width: 95%;
  height: 95%;
  background-color: rgba(232, 232, 232, 0.2);
  border-radius: 10px;
  padding-left: 10px;
  font-size: 0.7rem;
  color: rgba(232, 232, 232, 0.8);
  border: none;
  outline: none;
}

/* line 433, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-page-table-context-infos-materiel {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 10px;
}

/* line 444, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-page-table-context-infos-materiel-select {
  width: 90%;
  height: 25%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

/* line 453, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-page-table-context-infos-materiel-select input {
  width: 85%;
  max-height: 30px;
  background-color: rgba(232, 232, 232, 0.2);
  border-radius: 10px;
  font-size: 0.7rem;
  color: rgba(232, 232, 232, 0.8);
  border: none;
  outline: none;
}

/* line 467, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-page-table-context-infos-materiel-management {
  width: 100%;
  height: 75%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}

/* line 477, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.file-preview-container {
  margin-top: 2px;
  height: 100%;
  width: 100%;
  overflow-y: auto;
  border-radius: 4px;
  padding: 8px;
  font-size: 0.8rem;
  /* Personnalisation de la barre de défilement */
}

/* line 489, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.file-preview-container::-webkit-scrollbar {
  width: 8px;
  /* Largeur de la barre de défilement */
}

/* line 493, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.file-preview-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  /* Couleur de l'arrière-plan de la barre */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 498, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.file-preview-container::-webkit-scrollbar-thumb {
  background: #C38761;
  /* Couleur de la barre de défilement */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 503, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.file-preview-container::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
  /* Couleur de la barre au survol */
}

/* line 508, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.file-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 514, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.file-item {
  display: flex;
  max-height: 35px;
  align-items: center;
  padding: 6px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* line 522, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.file-item button {
  font-size: 1.2rem;
}

/* line 527, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.file-name {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 534, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.file-size {
  margin: 0 10px;
  color: #777;
  font-size: 0.9em;
}

/* line 540, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.delete-file {
  background: none;
  border: none;
  color: #ff5252;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 2px;
  transition: all 0.2s;
}

/* line 550, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.delete-file:hover {
  background-color: #ffeded;
}

/* line 554, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.total-size {
  margin-top: 8px;
  text-align: right;
  font-size: 0.9em;
  color: #555;
}

/* line 561, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.near-limit {
  color: #e65100;
  font-weight: bold;
}

/* line 570, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-page-capsule form, .requestdesign-page-capsule .requestdesign-page-table-one {
  transition: all 0.5s ease;
}

/* line 576, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.requestdesign-page-table-one.timeline-hidden {
  width: 0;
  padding: 0;
  margin: 0;
  opacity: 0;
  overflow: hidden;
  border: none;
}

/* line 586, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
form.form-expanded {
  width: 100%;
  transition: width 0.5s ease;
}

@keyframes formExpand {
  from {
    width: 60%;
  }
  to {
    width: 100%;
  }
}

@keyframes timelineCollapse {
  from {
    width: 40%;
    opacity: 1;
  }
  to {
    width: 0;
    opacity: 0;
    padding: 0;
    margin: 0;
  }
}

/* line 612, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.graphicid-page-memo {
  font-size: 0.8rem;
}

/* line 616, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.graphicid-page-line {
  width: 100%;
  height: 20px;
  border-bottom: 1px solid rgba(232, 232, 232, 0.5);
  background-color: rgba(232, 232, 232, 0.2);
}

/* line 624, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.modal {
  background-color: rgba(0, 0, 0, 0.7);
}

/* line 629, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.modal.fade .modal-dialog {
  transform: translate(0, -50px);
  transition: transform 0.3s ease-out;
}

/* line 634, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.modal.show .modal-dialog {
  transform: none;
}

/* line 639, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.modal-dialog {
  display: flex;
  align-items: center;
  min-height: calc(100% - 3.5rem);
  margin: 1.75rem auto;
}

/* line 647, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.modal-content {
  background-color: rgba(40, 44, 52, 0.92);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
  color: #FFFFFF;
}

/* line 657, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 1.5rem 1rem;
}

/* line 661, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.modal-header .modal-title {
  font-weight: 500;
  color: #C38761;
}

/* line 666, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.modal-header .btn-close {
  color: #FFFFFF;
  filter: invert(1) brightness(1.5);
  opacity: 0.7;
}

/* line 671, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.modal-header .btn-close:hover {
  opacity: 1;
}

/* line 677, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.modal-body {
  padding: 1.5rem;
}

/* line 681, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.modal-body .form-control, .modal-body .form-select {
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #333;
  border-radius: 6px;
}

/* line 687, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.modal-body .form-control:focus, .modal-body .form-select:focus {
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.25);
  border-color: #C38761;
}

/* line 693, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.modal-body .form-label {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

/* line 699, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.modal-body .typo-preview {
  background-color: white !important;
  border-radius: 10px;
  padding: 20px !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
  border: 1px solid #ddd;
}

/* line 707, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.modal-body .typo-preview h3, .modal-body .typo-preview .h3 {
  color: #333 !important;
  font-weight: 600;
}

/* line 713, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.modal-body .typo-preview .typo-sample * {
  color: #222 !important;
}

/* line 717, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.modal-body .typo-preview .typo-sample h2, .modal-body .typo-preview .typo-sample .h2 {
  font-size: 2.2rem !important;
}

/* line 725, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.modal-body .input-group .form-control-color {
  width: 70px;
  height: 38px;
}

/* line 732, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.modal-body .form-text {
  color: rgba(255, 255, 255, 0.7);
}

/* line 736, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.modal-body .font-suggestions {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 15px;
  margin-top: 15px;
}

/* line 742, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.modal-body .font-suggestions .font-suggestion-btn {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: transparent;
  color: #FFFFFF;
}

/* line 747, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.modal-body .font-suggestions .font-suggestion-btn:hover {
  background-color: #C38761;
  color: #333;
}

/* line 753, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.modal-body .font-suggestions a {
  color: #C38761;
  text-decoration: none;
}

/* line 757, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.modal-body .font-suggestions a:hover {
  text-decoration: underline;
}

/* line 764, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem 1.5rem;
}

/* line 768, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.modal-footer .btn-secondary, .modal-footer .crm-action-button.crm-action-button-secondary {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: transparent;
}

/* line 772, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.modal-footer .btn-secondary:hover, .modal-footer .crm-action-button.crm-action-button-secondary:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

/* line 777, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.modal-footer .btn-primary, .modal-footer .crm-action-button.crm-action-button-primary {
  background-color: #C38761;
  border-color: #C38761;
  color: #333;
}

/* line 782, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
.modal-footer .btn-primary:hover, .modal-footer .crm-action-button.crm-action-button-primary:hover {
  background-color: #bc794f;
  border-color: #bc794f;
}

/* line 791, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
#colorDetailsModal .color-details-preview {
  height: 180px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 798, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
#colorDetailsModal .code-display {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 12px 15px;
  border-radius: 6px;
  font-family: monospace;
  font-size: 1.1rem;
}

/* line 806, app/assets/stylesheets/pages/servicespace/commerce/id_graphic/_request_board.scss */
#colorDetailsModal .notes-display {
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* line 1, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-calendar-wrapper {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* line 7, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-calendar-wrapper .filters {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
  /* s'assure que les labels restent visibles au-dessus du canvas FullCalendar */
}

/* line 16, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-calendar-wrapper .filters form {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

/* line 23, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-calendar-wrapper .filters .field {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 29, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-calendar-wrapper .filters label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  opacity: 1 !important;
  /* corrige les styles globaux qui masquent les labels */
}

/* line 36, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-capsule.lightmode .project-board-calendar-wrapper .filters label {
  color: #140D23;
}

/* line 41, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-calendar-wrapper .filters select {
  background: rgba(254, 254, 254, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  border-radius: 8px;
  padding: 6px 10px;
  min-width: 160px;
}

/* line 49, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-capsule.lightmode .project-board-calendar-wrapper .filters select {
  background: rgba(20, 13, 35, 0.04);
  border-color: rgba(20, 13, 35, 0.15);
  color: #140D23;
}

/* line 56, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-calendar-wrapper .filters .actions {
  margin-left: auto;
}

/* line 61, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-calendar-wrapper .project-calendar-section {
  background-color: rgba(254, 254, 254, 0.1);
  border-radius: 15px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  padding: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* line 70, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-capsule.lightmode .project-board-calendar-wrapper .project-calendar-section {
  border-color: rgba(20, 13, 35, 0.2);
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 76, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-calendar-wrapper .project-calendar-container {
  min-height: 0;
  /* autoriser la grille à fixer la hauteur */
  flex: 1;
}

/* ==========================================================================
   PROJECT BOARD - MODULE GESTION DE PROJET
   Layout selon le schéma : 3 colonnes en haut, widget milieu, liste bas
   Inspiré du thème CRM existant avec adaptation responsive
   ========================================================================== */
/* ==========================================================================
   CONTAINER PRINCIPAL - Structure générale du module
   ========================================================================== */
/* line 98, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-capsule {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding-right: 10px;
  font-size: 1rem;
  gap: 20px;
  overflow: auto;
  /* Personnalisation de la barre de défilement */
}

/* line 111, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-capsule::-webkit-scrollbar {
  width: 8px;
}

/* line 115, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-capsule::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 120, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-capsule::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 125, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-capsule::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 129, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-capsule.lightmode {
  color: #140D23;
}

/* line 133, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-capsule.nightmode {
  color: #FFFFFF;
}

/* line 137, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-capsule h1, .project-board-capsule .h1,
.project-board-capsule h2,
.project-board-capsule .h2,
.project-board-capsule h3,
.project-board-capsule .h3 {
  font-weight: 600;
  margin: 0;
}

/* line 144, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-capsule p {
  font-size: 0.9rem;
  margin: 0;
}

/* ==========================================================================
   MAIN CONTAINER - Structure en trois sections
   ========================================================================== */
/* line 154, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-main-container {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

@media (max-width: 1200px) {
  /* line 154, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
  .project-board-main-container {
    gap: 10px;
  }
}

@media (max-width: 1024px) {
  /* line 154, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
  .project-board-main-container {
    gap: 10px;
  }
}

/* ==========================================================================
   SECTION SUPÉRIEURE - 3 colonnes (widget, graphique, boutons)
   ========================================================================== */
/* line 172, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-top-section {
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  gap: 10px;
  align-items: start;
  margin-bottom: 10px;
}

@media (max-width: 1200px) {
  /* line 172, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
  .project-board-top-section {
    grid-template-columns: 240px 1fr 240px;
    gap: 10px;
  }
}

@media (max-width: 1024px) {
  /* line 172, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
  .project-board-top-section {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* ==========================================================================
   WIDGET GAUCHE - Projets en cours
   ========================================================================== */
/* line 194, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-left-widget {
  display: grid;
  grid-template-rows: repeat(3, 88px);
  gap: 10px;
  align-items: stretch;
}

/* line 200, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-left-widget .action-button {
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem !important;
  height: 80px !important;
}

@media (max-width: 1024px) {
  /* line 194, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
  .project-board-left-widget {
    order: 1;
    grid-template-rows: none;
  }
}

/* ==========================================================================
   GRAPHIQUE CENTRAL
   ========================================================================== */
/* line 216, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-chart-container {
  background-color: rgba(254, 254, 254, 0.1);
  border-radius: 15px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  padding: 8px;
  display: flex;
  flex-direction: column;
  height: 284px;
  min-height: 284px;
}

/* line 226, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-capsule.lightmode .project-board-chart-container {
  border-color: rgba(20, 13, 35, 0.2);
  background-color: rgba(20, 13, 35, 0.05);
}

@media (max-width: 1024px) {
  /* line 216, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
  .project-board-chart-container {
    order: 3;
    min-height: 300px;
    padding: 20px;
  }
}

/* line 238, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
}

/* line 244, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-capsule.lightmode .chart-header {
  border-bottom-color: rgba(20, 13, 35, 0.2);
}

/* line 248, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.chart-header h3, .chart-header .h3 {
  color: #FFFFFF;
  font-size: 1.1rem;
}

/* line 252, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-capsule.lightmode .chart-header h3, .project-board-capsule.lightmode .chart-header .h3 {
  color: #140D23;
}

@media (max-width: 768px) {
  /* line 238, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
  .chart-header {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
}

/* line 264, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.chart-view-toggle {
  background-color: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 275, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-capsule.lightmode .chart-view-toggle {
  border-color: rgba(20, 13, 35, 0.4);
  color: #140D23;
}

/* line 280, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.chart-view-toggle:hover {
  background-color: rgba(195, 135, 97, 0.1);
  border-color: #C38761;
  color: #C38761;
  transform: translateY(-1px);
}

/* line 287, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.chart-view-toggle:focus {
  outline: 2px solid #C38761;
  outline-offset: 2px;
}

/* line 293, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-chart-canvas-wrapper {
  flex-grow: 1;
  position: relative;
  height: calc(100% - 56px);
  min-height: 0;
  margin-bottom: 0;
  color: #FFFFFF;
}

@media (max-width: 1024px) {
  /* line 293, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
  .project-board-chart-canvas-wrapper {
    min-height: 200px;
  }
}

/* line 306, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
#workloadChart {
  width: 100% !important;
  height: 100% !important;
}

/* ==========================================================================
   BOUTONS DROITE - Actions empilées
   ========================================================================== */
/* line 315, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-right-actions {
  display: grid;
  grid-template-rows: repeat(3, 88px);
  gap: 10px;
  align-items: stretch;
}

@media (max-width: 1024px) {
  /* line 315, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
  .project-board-right-actions {
    order: 2;
    grid-template-rows: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  /* line 315, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
  .project-board-right-actions {
    flex-direction: column;
  }
}

/* line 334, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.action-button {
  background-color: rgba(254, 254, 254, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 15px 20px;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-align: center;
  min-height: 60px;
}

/* line 351, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-capsule.lightmode .action-button {
  background-color: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
  color: #140D23;
}

/* line 357, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.action-button:hover {
  background-color: rgba(195, 135, 97, 0.2);
  border-color: #C38761;
  color: #C38761;
  transform: translateY(-2px);
}

/* line 364, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.action-button i {
  font-size: 1rem;
}

@media (max-width: 1024px) {
  /* line 334, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
  .action-button {
    flex: 1;
    min-height: 50px;
    padding: 12px 15px;
    font-size: 0.8rem;
  }
}

/* ==========================================================================
   WIDGETS COMMUNS - Styles partagés
   ========================================================================== */
/* line 380, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-widget {
  background-color: rgba(254, 254, 254, 0.1);
  border-radius: 15px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  height: auto;
  min-height: 88px;
  text-decoration: none;
  color: #FFFFFF;
  /* neutralise les styles globaux des liens */
}

/* line 396, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-capsule.lightmode .project-board-widget {
  color: #140D23;
}

/* line 400, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-capsule.lightmode .project-board-widget {
  border-color: rgba(20, 13, 35, 0.2);
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 405, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-widget:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(195, 135, 97, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  color: #FFFFFF;
  /* conserve la couleur au hover */
}

/* line 413, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-capsule.lightmode .project-board-widget:hover {
  color: #140D23;
}

/* line 417, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-capsule.lightmode .project-board-widget:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 421, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-widget:hover .widget-number {
  color: #C38761;
}

/* line 426, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-widget .widget-content {
  text-align: left;
  /* évite l'effet centré des titres longs */
  display: flex;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}

/* line 435, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-widget .widget-number {
  font-size: 2rem;
  font-weight: bold;
  color: #FFFFFF;
  transition: color 0.3s ease;
  margin-left: auto;
  /* garantit l’alignement à droite */
}

/* line 443, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-capsule.lightmode .project-board-widget .widget-number {
  color: #140D23;
}

/* line 448, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-widget h3, .project-board-widget .h3 {
  align-self: center;
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.8;
  color: #FFFFFF;
}

/* line 455, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-capsule.lightmode .project-board-widget h3, .project-board-capsule.lightmode .project-board-widget .h3 {
  color: #140D23;
}

/* line 460, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-widget .widget-info {
  margin-left: 6px;
  opacity: 0.8;
  display: inline-flex;
  align-items: center;
  color: inherit;
  cursor: help;
}

/* line 468, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-widget .widget-info i {
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  /* line 380, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
  .project-board-widget {
    min-height: 100px;
    padding: 20px;
  }
  /* line 477, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
  .project-board-widget .widget-number {
    font-size: 2rem;
  }
}

/* line 482, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-widget .widget-subtext {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* line 487, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-widget .widget-list {
  margin: 6px 0 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.75rem;
  text-align: left;
}

/* ==========================================================================
   SECTION INFÉRIEURE - Liste des échéances pleine largeur
   ========================================================================== */
/* line 500, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-bottom-section {
  width: 100%;
}

/* line 503, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-bottom-section.two-columns-responsive {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 10px;
  align-items: stretch;
  grid-auto-rows: 700px;
  /* hauteur fixe de ligne pour aligner calendrier et liste */
}

@media (max-width: 1024px) {
  /* line 503, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
  .project-board-bottom-section.two-columns-responsive {
    grid-template-columns: 1fr;
  }
}

/* Assurer des hauteurs identiques visuelles entre calendrier et échéances */
/* line 518, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-calendar-wrapper,
.deadlines-section {
  height: 100%;
}

/* line 523, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.deadlines-section {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  /* nécessaire pour que les enfants flex puissent scroller */
}

/* line 531, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.deadlines-dropdown-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  /* on délègue le scroll à .deadlines-list */
  min-height: 0;
}

/* line 540, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.deadlines-dropdown {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* line 546, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.deadlines-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

/* line 552, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.deadlines-controls label {
  font-size: 0.8rem;
  opacity: 1 !important;
  /* forcer l'affichage des labels */
}

/* line 558, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.deadlines-controls select {
  background: rgba(254, 254, 254, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  border-radius: 8px;
  padding: 6px 10px;
  min-width: 160px;
}

/* line 566, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-capsule.lightmode .deadlines-controls select {
  background: rgba(20, 13, 35, 0.04);
  border-color: rgba(20, 13, 35, 0.15);
  color: #140D23;
}

/* Scrollbar app-wide style sur la zone liste */
/* line 575, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.deadlines-list {
  overflow: auto;
  flex: 1;
  min-height: 0;
  /* autorise le scroll dans un parent flex */
}

/* line 582, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.deadlines-list::-webkit-scrollbar {
  width: 3px;
  /* cohérent avec le calendrier */
}

/* line 587, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.deadlines-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 592, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.deadlines-list::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 597, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.deadlines-list::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* Firefox */
/* line 602, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.deadlines-list {
  scrollbar-width: thin;
  scrollbar-color: #C38761 rgba(255, 255, 255, 0.1);
}

/* line 607, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.deadlines-section {
  background-color: rgba(254, 254, 254, 0.1);
  border-radius: 15px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  padding: 10px;
}

/* line 613, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-capsule.lightmode .deadlines-section {
  border-color: rgba(20, 13, 35, 0.2);
  background-color: rgba(20, 13, 35, 0.05);
}

@media (max-width: 768px) {
  /* line 607, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
  .deadlines-section {
    padding: 20px;
  }
}

/* line 623, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.deadlines-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 631, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-capsule.lightmode .deadlines-header {
  border-bottom-color: rgba(20, 13, 35, 0.2);
}

/* line 635, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.deadlines-header h3, .deadlines-header .h3 {
  color: #FFFFFF;
  font-size: 1.1rem;
}

/* line 639, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-capsule.lightmode .deadlines-header h3, .project-board-capsule.lightmode .deadlines-header .h3 {
  color: #140D23;
}

/* line 644, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.deadlines-header .deadlines-count {
  color: #C38761;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ==========================================================================
   DROPDOWN DES ÉCHÉANCES
   ========================================================================== */
/* line 655, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.deadlines-dropdown-wrapper {
  width: 100%;
}

/* line 659, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.deadlines-dropdown {
  width: 100%;
}

/* line 662, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.deadlines-dropdown summary {
  list-style: none;
  cursor: pointer;
}

/* line 666, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.deadlines-dropdown summary::-webkit-details-marker {
  display: none;
}

/* line 672, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.deadlines-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 15px 20px;
  color: #FFFFFF;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* line 684, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-capsule.lightmode .deadlines-toggle {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 690, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.deadlines-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(195, 135, 97, 0.5);
}

/* line 694, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-capsule.lightmode .deadlines-toggle:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 699, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.deadlines-toggle .dropdown-icon {
  transition: transform 0.3s ease;
}

/* line 703, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
details[open] .deadlines-toggle .dropdown-icon {
  transform: rotate(180deg);
}

/* line 708, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.deadlines-list {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 5px;
}

/* line 715, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.deadlines-list::-webkit-scrollbar {
  width: 6px;
}

/* line 719, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.deadlines-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

/* line 724, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.deadlines-list::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 3px;
}

/* line 730, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.deadline-item {
  display: block;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border-left: 4px solid #C38761;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* line 739, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-capsule.lightmode .deadline-item {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 743, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.deadline-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateX(3px);
  border-left-color: #FFFFFF;
}

/* line 748, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-capsule.lightmode .deadline-item:hover {
  background-color: rgba(20, 13, 35, 0.1);
  border-left-color: #140D23;
}

/* line 755, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.deadline-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 600px) {
  /* line 755, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
  .deadline-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* line 767, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.deadline-date {
  font-weight: bold;
  font-size: 1rem;
  color: #C38761;
  min-width: 60px;
  text-align: center;
  background-color: rgba(195, 135, 97, 0.1);
  padding: 8px 12px;
  border-radius: 8px;
}

@media (max-width: 600px) {
  /* line 767, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
  .deadline-date {
    min-width: 50px;
    font-size: 0.9rem;
    padding: 6px 10px;
  }
}

/* line 784, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.deadline-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* line 791, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.deadline-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 799, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-capsule.lightmode .deadline-title {
  color: #140D23;
}

/* line 804, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.deadline-project {
  font-size: 0.8rem;
  opacity: 0.8;
  color: #FFFFFF;
}

/* line 809, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-capsule.lightmode .deadline-project {
  color: #140D23;
}

/* line 814, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.deadline-type-badge {
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 12px;
  font-weight: 500;
}

/* line 820, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.deadline-type-badge.project-badge {
  background-color: rgba(195, 135, 97, 0.2);
  color: #C38761;
  border: 1px solid rgba(195, 135, 97, 0.3);
}

/* line 826, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.deadline-type-badge.step-badge {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 831, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-capsule.lightmode .deadline-type-badge.step-badge {
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.2);
}

/* ==========================================================================
   ÉTAT VIDE - Aucune échéance
   ========================================================================== */
/* line 843, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.no-deadlines {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 40px 20px;
  color: #FFFFFF;
  opacity: 0.7;
  text-align: center;
}

/* line 853, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-capsule.lightmode .no-deadlines {
  color: #140D23;
}

/* line 857, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.no-deadlines i {
  font-size: 1.5rem;
  color: #C38761;
}

/* line 862, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.no-deadlines span {
  font-size: 1rem;
  font-weight: 500;
}

/* ==========================================================================
   RESPONSIVE DESIGN - Adaptations mobiles
   ========================================================================== */
@media (max-width: 768px) {
  /* line 873, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
  .project-board-capsule {
    padding: 15px;
    gap: 15px;
  }
  /* line 878, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
  .project-board-chart-container {
    min-height: 300px;
    padding: 20px;
  }
  /* line 883, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
  .project-board-chart-canvas-wrapper {
    min-height: 200px;
  }
  /* line 887, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
  .deadlines-section {
    padding: 20px;
  }
  /* line 891, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
  .deadline-info {
    gap: 12px;
  }
  /* line 895, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
  .deadline-date {
    min-width: 50px;
    font-size: 0.9rem;
    padding: 6px 10px;
  }
}

/* line 902, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
#customer-autocomplete-component.crm-card {
  overflow: visible !important;
}

/* line 906, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
#customer-autocomplete-component .card-content {
  position: relative;
  overflow: visible !important;
  z-index: 1001;
}

/* line 912, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
#customer-autocomplete-component .autocomplete-list {
  top: 100%;
  position: absolute;
  color: #140D23;
  left: 0;
  width: 100%;
  max-height: 220px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 0 0 6px 6px;
  z-index: 2000 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-y: auto;
  display: none;
  border-top: none;
}

/* line 932, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
#customer-autocomplete-component .autocomplete-list.is-open {
  display: block !important;
}

/* line 936, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
#customer-autocomplete-component .autocomplete-suggestion {
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.15s;
  border-bottom: 1px solid #f0f0f0;
}

/* line 943, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
#customer-autocomplete-component .autocomplete-suggestion:last-child {
  border-bottom: none;
}

/* line 947, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
#customer-autocomplete-component .autocomplete-suggestion:hover,
#customer-autocomplete-component .autocomplete-suggestion:focus {
  background: #f5f5f5;
}

/* line 953, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.lightmode .project-board-chart-canvas-wrapper {
  color: #140D23 !important;
}

/* line 959, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.workload-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  background: rgba(20, 20, 40, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

/* line 973, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.workload-modal-content {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 32px 24px;
  max-width: 500px;
  width: 90vw;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  position: relative;
  color: #140D23;
}

@media (max-width: 600px) {
  /* line 973, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
  .workload-modal-content {
    padding: 18px 6px;
    max-width: 98vw;
  }
}

/* line 988, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-capsule.nightmode .workload-modal-content {
  background: #140D23;
  color: #FFFFFF;
}

/* line 994, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.workload-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

/* line 1000, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.workload-modal-header h3, .workload-modal-header .h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

/* line 1007, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.workload-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #140D23;
}

/* line 1017, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-capsule.nightmode .workload-modal-close {
  color: #FFFFFF;
}

/* line 1022, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.workload-modal-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* line 1028, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.workload-project-item {
  background: rgba(195, 135, 97, 0.08);
  border-radius: 8px;
  padding: 12px 10px;
  margin-bottom: 6px;
}

/* line 1034, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.project-board-capsule.nightmode .workload-project-item {
  background: rgba(255, 255, 255, 0.05);
}

/* line 1038, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.workload-project-item .project-name {
  font-weight: 600;
  font-size: 1rem;
}

/* line 1043, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.workload-project-item .project-customer {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* line 1048, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_board.scss */
.workload-project-item .project-dates {
  font-size: 0.85rem;
  color: #C38761;
  margin-top: 2px;
}

/* line 1, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
.overflow-y-auto {
  overflow-y: auto;
}

/* line 11, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .project-header-card .project-meta-grid .form-control,
#project-creation-container .project-header-card .project-meta-grid .select-control,
#project-edit-container .project-header-card .project-meta-grid .form-control,
#project-edit-container .project-header-card .project-meta-grid .select-control {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 8px !important;
  padding: 10px 14px !important;
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.9) !important;
  transition: all 0.2s ease;
}

/* line 21, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .project-header-card .project-meta-grid .form-control::placeholder,
#project-creation-container .project-header-card .project-meta-grid .select-control::placeholder,
#project-edit-container .project-header-card .project-meta-grid .form-control::placeholder,
#project-edit-container .project-header-card .project-meta-grid .select-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* line 25, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .project-header-card .project-meta-grid .form-control:hover,
#project-creation-container .project-header-card .project-meta-grid .select-control:hover,
#project-edit-container .project-header-card .project-meta-grid .form-control:hover,
#project-edit-container .project-header-card .project-meta-grid .select-control:hover {
  border-color: rgba(255, 255, 255, 0.25) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

/* line 30, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .project-header-card .project-meta-grid .form-control:focus,
#project-creation-container .project-header-card .project-meta-grid .select-control:focus,
#project-edit-container .project-header-card .project-meta-grid .form-control:focus,
#project-edit-container .project-header-card .project-meta-grid .select-control:focus {
  border-color: rgba(195, 135, 97, 0.5) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.15) !important;
}

/* line 39, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .project-header-card .project-meta-grid .project-title .form-control,
#project-edit-container .project-header-card .project-meta-grid .project-title .form-control {
  font-size: 18px !important;
  font-weight: 600 !important;
  padding: 12px 16px !important;
}

/* line 46, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .project-header-card .project-meta-grid input[type="date"],
#project-edit-container .project-header-card .project-meta-grid input[type="date"] {
  width: 130px !important;
  min-width: 130px !important;
  max-width: 130px !important;
  padding: 10px 8px !important;
  font-size: 13px !important;
}

/* line 53, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .project-header-card .project-meta-grid input[type="date"]::-webkit-calendar-picker-indicator,
#project-edit-container .project-header-card .project-meta-grid input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.8);
  cursor: pointer;
}

/* line 60, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .project-header-card .project-meta-grid select.form-control,
#project-creation-container .project-header-card .project-meta-grid select.select-control,
#project-edit-container .project-header-card .project-meta-grid select.form-control,
#project-edit-container .project-header-card .project-meta-grid select.select-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(255,255,255,0.6)' d='M6 8L1 3h10z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 10px center !important;
  padding-right: 28px !important;
  max-width: 160px !important;
}

/* line 72, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .project-header-card .project-meta-grid .meta-item--full-width,
#project-edit-container .project-header-card .project-meta-grid .meta-item--full-width {
  grid-column: 1 / -1;
}

/* line 75, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .project-header-card .project-meta-grid .meta-item--full-width select.form-control,
#project-creation-container .project-header-card .project-meta-grid .meta-item--full-width select.select-control,
#project-creation-container .project-header-card .project-meta-grid .meta-item--full-width .template-select,
#project-edit-container .project-header-card .project-meta-grid .meta-item--full-width select.form-control,
#project-edit-container .project-header-card .project-meta-grid .meta-item--full-width select.select-control,
#project-edit-container .project-header-card .project-meta-grid .meta-item--full-width .template-select {
  max-width: 100% !important;
  width: 100% !important;
}

/* line 84, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .project-header-card .project-meta-grid #customer-autocomplete-component .form-control,
#project-edit-container .project-header-card .project-meta-grid #customer-autocomplete-component .form-control {
  width: 140px !important;
  min-width: 140px !important;
  max-width: 140px !important;
}

/* line 94, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-lead-select {
  width: 160px !important;
  max-width: 160px !important;
  min-width: 140px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

/* line 104, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project_nature {
  width: 140px !important;
  max-width: 140px !important;
  min-width: 120px !important;
}

/* line 115, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
.lightmode #project-creation-container .project-header-card .project-meta-grid .form-control,
.lightmode #project-creation-container .project-header-card .project-meta-grid .select-control,
.lightmode #project-edit-container .project-header-card .project-meta-grid .form-control,
.lightmode #project-edit-container .project-header-card .project-meta-grid .select-control {
  background: rgba(20, 13, 35, 0.04) !important;
  border-color: rgba(20, 13, 35, 0.15) !important;
  color: #140D23 !important;
}

/* line 121, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
.lightmode #project-creation-container .project-header-card .project-meta-grid .form-control::placeholder,
.lightmode #project-creation-container .project-header-card .project-meta-grid .select-control::placeholder,
.lightmode #project-edit-container .project-header-card .project-meta-grid .form-control::placeholder,
.lightmode #project-edit-container .project-header-card .project-meta-grid .select-control::placeholder {
  color: rgba(20, 13, 35, 0.4);
}

/* line 125, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
.lightmode #project-creation-container .project-header-card .project-meta-grid .form-control:hover,
.lightmode #project-creation-container .project-header-card .project-meta-grid .select-control:hover,
.lightmode #project-edit-container .project-header-card .project-meta-grid .form-control:hover,
.lightmode #project-edit-container .project-header-card .project-meta-grid .select-control:hover {
  border-color: rgba(20, 13, 35, 0.25) !important;
  background: rgba(20, 13, 35, 0.06) !important;
}

/* line 130, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
.lightmode #project-creation-container .project-header-card .project-meta-grid .form-control:focus,
.lightmode #project-creation-container .project-header-card .project-meta-grid .select-control:focus,
.lightmode #project-edit-container .project-header-card .project-meta-grid .form-control:focus,
.lightmode #project-edit-container .project-header-card .project-meta-grid .select-control:focus {
  border-color: rgba(195, 135, 97, 0.5) !important;
  background: rgba(20, 13, 35, 0.06) !important;
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.15) !important;
}

/* line 137, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
.lightmode #project-creation-container .project-header-card .project-meta-grid input[type="date"]::-webkit-calendar-picker-indicator,
.lightmode #project-edit-container .project-header-card .project-meta-grid input[type="date"]::-webkit-calendar-picker-indicator {
  filter: none;
}

/* line 141, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
.lightmode #project-creation-container .project-header-card .project-meta-grid select.form-control,
.lightmode #project-creation-container .project-header-card .project-meta-grid select.select-control,
.lightmode #project-edit-container .project-header-card .project-meta-grid select.form-control,
.lightmode #project-edit-container .project-header-card .project-meta-grid select.select-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(30,41,59,0.6)' d='M6 8L1 3h10z'/%3E%3C/svg%3E") !important;
}

/* line 150, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container,
#project-edit-container {
  gap: 10px;
  /* Personnalisation de la barre de défilement */
}

/* line 154, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container::-webkit-scrollbar,
#project-edit-container::-webkit-scrollbar {
  width: 8px;
  /* Largeur de la barre de défilement */
}

/* line 158, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container::-webkit-scrollbar-track,
#project-edit-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  /* Couleur de l'arrière-plan de la barre */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 168, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container::-webkit-scrollbar-thumb,
#project-edit-container::-webkit-scrollbar-thumb {
  background: #C38761;
  /* Couleur de la barre de défilement */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 173, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container::-webkit-scrollbar-thumb:hover,
#project-edit-container::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
  /* Couleur de la barre au survol */
}

/* line 178, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .steps-card-content.steps-container,
#project-creation-container .project-steps-section .steps-card-content,
#project-edit-container .steps-card-content.steps-container,
#project-edit-container .project-steps-section .steps-card-content {
  display: flex !important;
  flex-direction: column !important;
  gap: 15px !important;
  flex: 1;
  min-height: 0;
  max-height: 100%;
  overflow-y: auto;
  padding-right: 5px;
}

/* line 189, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .steps-card-content.steps-container::-webkit-scrollbar,
#project-creation-container .project-steps-section .steps-card-content::-webkit-scrollbar,
#project-edit-container .steps-card-content.steps-container::-webkit-scrollbar,
#project-edit-container .project-steps-section .steps-card-content::-webkit-scrollbar {
  width: 3px;
}

/* line 193, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .steps-card-content.steps-container::-webkit-scrollbar-track,
#project-creation-container .project-steps-section .steps-card-content::-webkit-scrollbar-track,
#project-edit-container .steps-card-content.steps-container::-webkit-scrollbar-track,
#project-edit-container .project-steps-section .steps-card-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 198, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .steps-card-content.steps-container::-webkit-scrollbar-thumb,
#project-creation-container .project-steps-section .steps-card-content::-webkit-scrollbar-thumb,
#project-edit-container .steps-card-content.steps-container::-webkit-scrollbar-thumb,
#project-edit-container .project-steps-section .steps-card-content::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 203, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .steps-card-content.steps-container::-webkit-scrollbar-thumb:hover,
#project-creation-container .project-steps-section .steps-card-content::-webkit-scrollbar-thumb:hover,
#project-edit-container .steps-card-content.steps-container::-webkit-scrollbar-thumb:hover,
#project-edit-container .project-steps-section .steps-card-content::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 208, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .steps-card-content.steps-container > div[data-project-form-manager-target="stepsContainer"],
#project-creation-container .steps-card-content.steps-container > div[data-nested-form-target="container"],
#project-creation-container .project-steps-section .steps-card-content > div[data-project-form-manager-target="stepsContainer"],
#project-creation-container .project-steps-section .steps-card-content > div[data-nested-form-target="container"],
#project-edit-container .steps-card-content.steps-container > div[data-project-form-manager-target="stepsContainer"],
#project-edit-container .steps-card-content.steps-container > div[data-nested-form-target="container"],
#project-edit-container .project-steps-section .steps-card-content > div[data-project-form-manager-target="stepsContainer"],
#project-edit-container .project-steps-section .steps-card-content > div[data-nested-form-target="container"] {
  display: flex !important;
  flex-direction: column !important;
  gap: 15px !important;
}

/* line 218, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .step-card.step-form-row,
#project-edit-container .step-card.step-form-row {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 8px !important;
  padding: 10px 12px !important;
  transition: all 0.2s ease;
  flex-shrink: 0;
  height: auto !important;
  min-height: 95px !important;
  overflow: visible !important;
  display: flex !important;
  flex-direction: column !important;
  position: relative;
  cursor: default !important;
  gap: 6px;
}

/* line 234, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .step-card.step-form-row:hover,
#project-edit-container .step-card.step-form-row:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* line 242, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .step-card.step-form-row .step-title-row,
#project-edit-container .step-card.step-form-row .step-title-row {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100%;
  gap: 10px;
}

/* line 249, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .step-card.step-form-row .step-title-row .step-name,
#project-edit-container .step-card.step-form-row .step-title-row .step-name {
  flex: 1;
  min-width: 0;
  display: block;
}

/* line 254, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .step-card.step-form-row .step-title-row .step-name .step-name-input,
#project-creation-container .step-card.step-form-row .step-title-row .step-name input[type="text"],
#project-edit-container .step-card.step-form-row .step-title-row .step-name .step-name-input,
#project-edit-container .step-card.step-form-row .step-title-row .step-name input[type="text"] {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 6px !important;
  padding: 8px 12px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  width: 100% !important;
  transition: all 0.2s ease;
  display: block !important;
}

/* line 267, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .step-card.step-form-row .step-title-row .step-name .step-name-input::placeholder,
#project-creation-container .step-card.step-form-row .step-title-row .step-name input[type="text"]::placeholder,
#project-edit-container .step-card.step-form-row .step-title-row .step-name .step-name-input::placeholder,
#project-edit-container .step-card.step-form-row .step-title-row .step-name input[type="text"]::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* line 271, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .step-card.step-form-row .step-title-row .step-name .step-name-input:hover,
#project-creation-container .step-card.step-form-row .step-title-row .step-name input[type="text"]:hover,
#project-edit-container .step-card.step-form-row .step-title-row .step-name .step-name-input:hover,
#project-edit-container .step-card.step-form-row .step-title-row .step-name input[type="text"]:hover {
  border-color: rgba(255, 255, 255, 0.2) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

/* line 276, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .step-card.step-form-row .step-title-row .step-name .step-name-input:focus,
#project-creation-container .step-card.step-form-row .step-title-row .step-name input[type="text"]:focus,
#project-edit-container .step-card.step-form-row .step-title-row .step-name .step-name-input:focus,
#project-edit-container .step-card.step-form-row .step-title-row .step-name input[type="text"]:focus {
  border-color: rgba(195, 135, 97, 0.5) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.15) !important;
}

/* line 285, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .step-card.step-form-row .step-title-row .step-actions,
#project-edit-container .step-card.step-form-row .step-title-row .step-actions {
  display: flex !important;
  gap: 6px;
  flex-shrink: 0;
}

/* line 290, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .step-card.step-form-row .step-title-row .step-actions .project-step__action-btn,
#project-creation-container .step-card.step-form-row .step-title-row .step-actions .edit-step-btn,
#project-creation-container .step-card.step-form-row .step-title-row .step-actions .remove-step-btn,
#project-edit-container .step-card.step-form-row .step-title-row .step-actions .project-step__action-btn,
#project-edit-container .step-card.step-form-row .step-title-row .step-actions .edit-step-btn,
#project-edit-container .step-card.step-form-row .step-title-row .step-actions .remove-step-btn {
  width: 32px !important;
  height: 32px !important;
  border-radius: 6px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.7) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.2s ease;
  font-size: 12px !important;
}

/* line 306, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .step-card.step-form-row .step-title-row .step-actions .project-step__action-btn:hover,
#project-creation-container .step-card.step-form-row .step-title-row .step-actions .edit-step-btn:hover,
#project-creation-container .step-card.step-form-row .step-title-row .step-actions .remove-step-btn:hover,
#project-edit-container .step-card.step-form-row .step-title-row .step-actions .project-step__action-btn:hover,
#project-edit-container .step-card.step-form-row .step-title-row .step-actions .edit-step-btn:hover,
#project-edit-container .step-card.step-form-row .step-title-row .step-actions .remove-step-btn:hover {
  background: rgba(195, 135, 97, 0.15) !important;
  border-color: rgba(195, 135, 97, 0.4) !important;
  color: #C38761 !important;
  transform: translateY(-1px);
}

/* line 313, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .step-card.step-form-row .step-title-row .step-actions .project-step__action-btn.project-step__delete-btn:hover, #project-creation-container .step-card.step-form-row .step-title-row .step-actions .project-step__action-btn.remove-step-btn:hover,
#project-creation-container .step-card.step-form-row .step-title-row .step-actions .edit-step-btn.project-step__delete-btn:hover,
#project-creation-container .step-card.step-form-row .step-title-row .step-actions .edit-step-btn.remove-step-btn:hover,
#project-creation-container .step-card.step-form-row .step-title-row .step-actions .remove-step-btn.project-step__delete-btn:hover,
#project-creation-container .step-card.step-form-row .step-title-row .step-actions .remove-step-btn.remove-step-btn:hover,
#project-edit-container .step-card.step-form-row .step-title-row .step-actions .project-step__action-btn.project-step__delete-btn:hover,
#project-edit-container .step-card.step-form-row .step-title-row .step-actions .project-step__action-btn.remove-step-btn:hover,
#project-edit-container .step-card.step-form-row .step-title-row .step-actions .edit-step-btn.project-step__delete-btn:hover,
#project-edit-container .step-card.step-form-row .step-title-row .step-actions .edit-step-btn.remove-step-btn:hover,
#project-edit-container .step-card.step-form-row .step-title-row .step-actions .remove-step-btn.project-step__delete-btn:hover,
#project-edit-container .step-card.step-form-row .step-title-row .step-actions .remove-step-btn.remove-step-btn:hover {
  background: rgba(220, 53, 69, 0.2) !important;
  border-color: rgba(220, 53, 69, 0.4) !important;
  color: #dc3545 !important;
}

/* line 324, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .step-card.step-form-row .step-infos-row,
#project-edit-container .step-card.step-form-row .step-infos-row {
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center !important;
  font-size: 0.75rem;
  width: 100%;
}

/* line 331, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .step-card.step-form-row .step-infos-row .step-meta,
#project-edit-container .step-card.step-form-row .step-infos-row .step-meta {
  display: flex !important;
  align-items: center !important;
  gap: 12px;
  width: 100%;
}

/* line 337, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field,
#project-edit-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field {
  display: flex !important;
  align-items: center !important;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

/* line 344, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field > i,
#project-edit-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field > i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

/* line 349, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field .step-start-date-input,
#project-creation-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field .step-deadline-input,
#project-creation-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field input[type="date"],
#project-edit-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field .step-start-date-input,
#project-edit-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field .step-deadline-input,
#project-edit-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field input[type="date"] {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 6px !important;
  padding: 6px 10px !important;
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.8) !important;
  width: auto !important;
  min-width: 130px !important;
  transition: all 0.2s ease;
}

/* line 362, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field .step-start-date-input:hover,
#project-creation-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field .step-deadline-input:hover,
#project-creation-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field input[type="date"]:hover,
#project-edit-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field .step-start-date-input:hover,
#project-edit-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field .step-deadline-input:hover,
#project-edit-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field input[type="date"]:hover {
  border-color: rgba(255, 255, 255, 0.2) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

/* line 367, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field .step-start-date-input:focus,
#project-creation-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field .step-deadline-input:focus,
#project-creation-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field input[type="date"]:focus,
#project-edit-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field .step-start-date-input:focus,
#project-edit-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field .step-deadline-input:focus,
#project-edit-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field input[type="date"]:focus {
  border-color: rgba(195, 135, 97, 0.5) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.15) !important;
}

/* line 375, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field .step-start-date-input::-webkit-calendar-picker-indicator,
#project-creation-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field .step-deadline-input::-webkit-calendar-picker-indicator,
#project-creation-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field input[type="date"]::-webkit-calendar-picker-indicator,
#project-edit-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field .step-start-date-input::-webkit-calendar-picker-indicator,
#project-edit-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field .step-deadline-input::-webkit-calendar-picker-indicator,
#project-edit-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.8);
  cursor: pointer;
}

/* line 382, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .step-card.step-form-row .step-infos-row .step-meta .step-date-separator,
#project-edit-container .step-card.step-form-row .step-infos-row .step-meta .step-date-separator {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-weight: 500;
  margin: 0 2px;
}

/* line 389, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .step-card.step-form-row .step-infos-row .step-meta .step-status,
#project-edit-container .step-card.step-form-row .step-infos-row .step-meta .step-status {
  padding: 4px 10px !important;
  border-radius: 12px !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  white-space: nowrap;
}

/* line 397, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .step-card.step-form-row .step-infos-row .step-meta .step-status.todo,
#project-edit-container .step-card.step-form-row .step-infos-row .step-meta .step-status.todo {
  background: rgba(108, 117, 125, 0.2);
  color: #6c757d;
}

/* line 402, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .step-card.step-form-row .step-infos-row .step-meta .step-status.on_going,
#project-edit-container .step-card.step-form-row .step-infos-row .step-meta .step-status.on_going {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
}

/* line 407, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .step-card.step-form-row .step-infos-row .step-meta .step-status.done,
#project-edit-container .step-card.step-form-row .step-infos-row .step-meta .step-status.done {
  background: rgba(40, 167, 69, 0.2);
  color: #28a745;
}

/* line 413, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .step-card.step-form-row .step-infos-row .step-meta .tasks-count,
#project-edit-container .step-card.step-form-row .step-infos-row .step-meta .tasks-count {
  display: flex !important;
  align-items: center !important;
  gap: 5px;
  font-size: 11px !important;
  color: rgba(255, 255, 255, 0.6) !important;
  margin-left: auto;
}

/* line 421, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .step-card.step-form-row .step-infos-row .step-meta .tasks-count i,
#project-edit-container .step-card.step-form-row .step-infos-row .step-meta .tasks-count i {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
}

/* line 430, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .step-card.step-form-row input[type="hidden"],
#project-edit-container .step-card.step-form-row input[type="hidden"] {
  display: none !important;
}

/* line 437, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
.lightmode #project-creation-container,
.lightmode #project-edit-container {
  color: #140D23 !important;
}

/* line 441, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
.lightmode #project-creation-container::-webkit-scrollbar-track,
.lightmode #project-edit-container::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.05);
}

/* line 444, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
.lightmode #project-creation-container::-webkit-scrollbar-thumb,
.lightmode #project-edit-container::-webkit-scrollbar-thumb {
  background: #C38761;
}

/* line 447, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
.lightmode #project-creation-container::-webkit-scrollbar-thumb:hover,
.lightmode #project-edit-container::-webkit-scrollbar-thumb:hover {
  background: #140D23;
}

/* line 452, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
.lightmode #project-creation-container .step-card.step-form-row,
.lightmode #project-edit-container .step-card.step-form-row {
  background: rgba(20, 13, 35, 0.03) !important;
  border-color: rgba(20, 13, 35, 0.08) !important;
}

/* line 456, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
.lightmode #project-creation-container .step-card.step-form-row:hover,
.lightmode #project-edit-container .step-card.step-form-row:hover {
  background: rgba(20, 13, 35, 0.06) !important;
  border-color: rgba(20, 13, 35, 0.15) !important;
}

/* line 463, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
.lightmode #project-creation-container .step-card.step-form-row .step-title-row .step-name .step-name-input,
.lightmode #project-creation-container .step-card.step-form-row .step-title-row .step-name input[type="text"],
.lightmode #project-edit-container .step-card.step-form-row .step-title-row .step-name .step-name-input,
.lightmode #project-edit-container .step-card.step-form-row .step-title-row .step-name input[type="text"] {
  color: #140D23 !important;
  background: rgba(20, 13, 35, 0.03) !important;
  border-color: rgba(20, 13, 35, 0.12) !important;
}

/* line 469, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
.lightmode #project-creation-container .step-card.step-form-row .step-title-row .step-name .step-name-input::placeholder,
.lightmode #project-creation-container .step-card.step-form-row .step-title-row .step-name input[type="text"]::placeholder,
.lightmode #project-edit-container .step-card.step-form-row .step-title-row .step-name .step-name-input::placeholder,
.lightmode #project-edit-container .step-card.step-form-row .step-title-row .step-name input[type="text"]::placeholder {
  color: rgba(20, 13, 35, 0.4);
}

/* line 473, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
.lightmode #project-creation-container .step-card.step-form-row .step-title-row .step-name .step-name-input:hover,
.lightmode #project-creation-container .step-card.step-form-row .step-title-row .step-name input[type="text"]:hover,
.lightmode #project-edit-container .step-card.step-form-row .step-title-row .step-name .step-name-input:hover,
.lightmode #project-edit-container .step-card.step-form-row .step-title-row .step-name input[type="text"]:hover {
  border-color: rgba(20, 13, 35, 0.2) !important;
  background: rgba(20, 13, 35, 0.05) !important;
}

/* line 478, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
.lightmode #project-creation-container .step-card.step-form-row .step-title-row .step-name .step-name-input:focus,
.lightmode #project-creation-container .step-card.step-form-row .step-title-row .step-name input[type="text"]:focus,
.lightmode #project-edit-container .step-card.step-form-row .step-title-row .step-name .step-name-input:focus,
.lightmode #project-edit-container .step-card.step-form-row .step-title-row .step-name input[type="text"]:focus {
  border-color: rgba(195, 135, 97, 0.5) !important;
  background: rgba(20, 13, 35, 0.05) !important;
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.15) !important;
}

/* line 487, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
.lightmode #project-creation-container .step-card.step-form-row .step-title-row .step-actions .project-step__action-btn,
.lightmode #project-creation-container .step-card.step-form-row .step-title-row .step-actions .edit-step-btn,
.lightmode #project-creation-container .step-card.step-form-row .step-title-row .step-actions .remove-step-btn,
.lightmode #project-edit-container .step-card.step-form-row .step-title-row .step-actions .project-step__action-btn,
.lightmode #project-edit-container .step-card.step-form-row .step-title-row .step-actions .edit-step-btn,
.lightmode #project-edit-container .step-card.step-form-row .step-title-row .step-actions .remove-step-btn {
  background: rgba(20, 13, 35, 0.08) !important;
  border-color: rgba(20, 13, 35, 0.12) !important;
  color: rgba(20, 13, 35, 0.7) !important;
}

/* line 494, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
.lightmode #project-creation-container .step-card.step-form-row .step-title-row .step-actions .project-step__action-btn:hover,
.lightmode #project-creation-container .step-card.step-form-row .step-title-row .step-actions .edit-step-btn:hover,
.lightmode #project-creation-container .step-card.step-form-row .step-title-row .step-actions .remove-step-btn:hover,
.lightmode #project-edit-container .step-card.step-form-row .step-title-row .step-actions .project-step__action-btn:hover,
.lightmode #project-edit-container .step-card.step-form-row .step-title-row .step-actions .edit-step-btn:hover,
.lightmode #project-edit-container .step-card.step-form-row .step-title-row .step-actions .remove-step-btn:hover {
  background: rgba(195, 135, 97, 0.15) !important;
  border-color: rgba(195, 135, 97, 0.4) !important;
  color: #C38761 !important;
}

/* line 500, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
.lightmode #project-creation-container .step-card.step-form-row .step-title-row .step-actions .project-step__action-btn.project-step__delete-btn:hover, .lightmode #project-creation-container .step-card.step-form-row .step-title-row .step-actions .project-step__action-btn.remove-step-btn:hover,
.lightmode #project-creation-container .step-card.step-form-row .step-title-row .step-actions .edit-step-btn.project-step__delete-btn:hover,
.lightmode #project-creation-container .step-card.step-form-row .step-title-row .step-actions .edit-step-btn.remove-step-btn:hover,
.lightmode #project-creation-container .step-card.step-form-row .step-title-row .step-actions .remove-step-btn.project-step__delete-btn:hover,
.lightmode #project-creation-container .step-card.step-form-row .step-title-row .step-actions .remove-step-btn.remove-step-btn:hover,
.lightmode #project-edit-container .step-card.step-form-row .step-title-row .step-actions .project-step__action-btn.project-step__delete-btn:hover,
.lightmode #project-edit-container .step-card.step-form-row .step-title-row .step-actions .project-step__action-btn.remove-step-btn:hover,
.lightmode #project-edit-container .step-card.step-form-row .step-title-row .step-actions .edit-step-btn.project-step__delete-btn:hover,
.lightmode #project-edit-container .step-card.step-form-row .step-title-row .step-actions .edit-step-btn.remove-step-btn:hover,
.lightmode #project-edit-container .step-card.step-form-row .step-title-row .step-actions .remove-step-btn.project-step__delete-btn:hover,
.lightmode #project-edit-container .step-card.step-form-row .step-title-row .step-actions .remove-step-btn.remove-step-btn:hover {
  background: rgba(220, 53, 69, 0.2) !important;
  border-color: rgba(220, 53, 69, 0.4) !important;
  color: #dc3545 !important;
}

/* line 511, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
.lightmode #project-creation-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field,
.lightmode #project-edit-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field {
  color: rgba(20, 13, 35, 0.7);
}

/* line 514, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
.lightmode #project-creation-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field > i,
.lightmode #project-edit-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field > i {
  color: rgba(20, 13, 35, 0.5);
}

/* line 518, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
.lightmode #project-creation-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field .step-start-date-input,
.lightmode #project-creation-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field .step-deadline-input,
.lightmode #project-creation-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field input[type="date"],
.lightmode #project-edit-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field .step-start-date-input,
.lightmode #project-edit-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field .step-deadline-input,
.lightmode #project-edit-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field input[type="date"] {
  color: rgba(20, 13, 35, 0.8) !important;
  background: rgba(20, 13, 35, 0.03) !important;
  border-color: rgba(20, 13, 35, 0.12) !important;
}

/* line 525, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
.lightmode #project-creation-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field .step-start-date-input:hover,
.lightmode #project-creation-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field .step-deadline-input:hover,
.lightmode #project-creation-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field input[type="date"]:hover,
.lightmode #project-edit-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field .step-start-date-input:hover,
.lightmode #project-edit-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field .step-deadline-input:hover,
.lightmode #project-edit-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field input[type="date"]:hover {
  border-color: rgba(20, 13, 35, 0.2) !important;
  background: rgba(20, 13, 35, 0.05) !important;
}

/* line 530, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
.lightmode #project-creation-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field .step-start-date-input:focus,
.lightmode #project-creation-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field .step-deadline-input:focus,
.lightmode #project-creation-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field input[type="date"]:focus,
.lightmode #project-edit-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field .step-start-date-input:focus,
.lightmode #project-edit-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field .step-deadline-input:focus,
.lightmode #project-edit-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field input[type="date"]:focus {
  border-color: rgba(195, 135, 97, 0.5) !important;
  background: rgba(20, 13, 35, 0.05) !important;
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.15) !important;
}

/* line 536, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
.lightmode #project-creation-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field .step-start-date-input::-webkit-calendar-picker-indicator,
.lightmode #project-creation-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field .step-deadline-input::-webkit-calendar-picker-indicator,
.lightmode #project-creation-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field input[type="date"]::-webkit-calendar-picker-indicator,
.lightmode #project-edit-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field .step-start-date-input::-webkit-calendar-picker-indicator,
.lightmode #project-edit-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field .step-deadline-input::-webkit-calendar-picker-indicator,
.lightmode #project-edit-container .step-card.step-form-row .step-infos-row .step-meta .step-date-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: none;
}

/* line 542, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
.lightmode #project-creation-container .step-card.step-form-row .step-infos-row .step-meta .step-date-separator,
.lightmode #project-edit-container .step-card.step-form-row .step-infos-row .step-meta .step-date-separator {
  color: rgba(20, 13, 35, 0.4);
}

/* line 546, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
.lightmode #project-creation-container .step-card.step-form-row .step-infos-row .step-meta .step-status.todo,
.lightmode #project-edit-container .step-card.step-form-row .step-infos-row .step-meta .step-status.todo {
  background: rgba(20, 13, 35, 0.08) !important;
  color: rgba(20, 13, 35, 0.7) !important;
}

/* line 551, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
.lightmode #project-creation-container .step-card.step-form-row .step-infos-row .step-meta .tasks-count,
.lightmode #project-edit-container .step-card.step-form-row .step-infos-row .step-meta .tasks-count {
  color: rgba(20, 13, 35, 0.6) !important;
}

/* line 554, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
.lightmode #project-creation-container .step-card.step-form-row .step-infos-row .step-meta .tasks-count i,
.lightmode #project-edit-container .step-card.step-form-row .step-infos-row .step-meta .tasks-count i {
  color: rgba(20, 13, 35, 0.5);
}

/* line 562, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
.lightmode #project-creation-container .steps-card-content.steps-container::-webkit-scrollbar-thumb,
.lightmode #project-edit-container .steps-card-content.steps-container::-webkit-scrollbar-thumb {
  background: #C38761;
}

/* line 566, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
.lightmode #project-creation-container .steps-card-content.steps-container::-webkit-scrollbar-thumb:hover,
.lightmode #project-edit-container .steps-card-content.steps-container::-webkit-scrollbar-thumb:hover {
  background: #140D23;
}

/* line 576, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .alert-warning,
#project-edit-container .alert-warning {
  background: rgba(255, 193, 7, 0.15);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
}

/* line 582, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .alert-warning i.fa-info-circle,
#project-edit-container .alert-warning i.fa-info-circle {
  color: #ffc107;
}

/* line 586, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .alert-warning strong,
#project-edit-container .alert-warning strong {
  color: rgba(255, 255, 255, 0.95);
}

/* line 590, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
#project-creation-container .alert-warning .form-button, #project-creation-container .alert-warning .users-management-container .users-header .add-user-btn, .users-management-container .users-header #project-creation-container .alert-warning .add-user-btn, #project-creation-container .alert-warning .crm-action-button,
#project-edit-container .alert-warning .form-button,
#project-edit-container .alert-warning .users-management-container .users-header .add-user-btn,
.users-management-container .users-header #project-edit-container .alert-warning .add-user-btn,
#project-edit-container .alert-warning .crm-action-button {
  margin-top: 4px;
}

/* line 599, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
.lightmode #project-creation-container .alert-warning,
.lightmode #project-edit-container .alert-warning {
  background: rgba(255, 193, 7, 0.2);
  border-color: rgba(255, 193, 7, 0.4);
  color: #140D23;
}

/* line 604, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
.lightmode #project-creation-container .alert-warning i.fa-info-circle,
.lightmode #project-edit-container .alert-warning i.fa-info-circle {
  color: #d39e00;
}

/* line 608, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
.lightmode #project-creation-container .alert-warning strong,
.lightmode #project-edit-container .alert-warning strong {
  color: #140D23;
}

/* line 616, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
.temporary-alert {
  padding: 12px 16px;
  margin-bottom: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 624, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
.temporary-alert.alert-warning {
  background: rgba(255, 193, 7, 0.15);
  border: 1px solid rgba(255, 193, 7, 0.3);
  color: rgba(255, 255, 255, 0.9);
}

/* line 629, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
.temporary-alert.alert-warning i {
  color: #ffc107;
}

/* line 636, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
.lightmode .temporary-alert.alert-warning {
  background: rgba(255, 193, 7, 0.2);
  border-color: rgba(255, 193, 7, 0.4);
  color: #140D23;
}

/* line 641, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_new_project.scss */
.lightmode .temporary-alert.alert-warning i {
  color: #d39e00;
}

/* ==========================================================================
   VUE DÉTAILLÉE DU PROJET - Styles spécifiques
   Correspond au schéma fourni avec proportions et layout adaptés
   ========================================================================== */
/* line 9, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
#global-modal-container {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 10000 !important;
  pointer-events: none !important;
  transform: translateZ(0) !important;
  contain: none !important;
  isolation: isolate !important;
  overflow: visible !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* line 29, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
#global-modal-container.modal-active {
  pointer-events: auto !important;
}

/* line 33, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
#global-modal-container:has(.custom-modal-overlay.active) {
  pointer-events: auto !important;
}

/* line 39, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
#global-modal-container .custom-modal-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 10001 !important;
  pointer-events: auto !important;
  transform: translateZ(0) !important;
  will-change: transform !important;
  contain: none !important;
  isolation: isolate !important;
  overflow: visible !important;
  margin: 0 !important;
  padding: 0 !important;
  clip-path: none !important;
  clip: auto !important;
}

/* line 63, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
#global-modal-container .custom-modal,
#global-modal-container .custom-modal-container,
#global-modal-container .step-modal {
  border-radius: 16px !important;
}

/* line 70, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
#global-modal-container .custom-modal {
  background-color: rgba(46, 45, 45, 0.82) !important;
}

/* line 74, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page {
  padding: 10px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

/* line 83, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page [data-notification-section-target="content"] {
  overflow: hidden !important;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease !important;
  display: block !important;
}

/* line 90, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .notification-content-collapsed[data-notification-section-target="content"] {
  max-height: 0 !important;
  opacity: 0 !important;
  padding: 0 20px !important;
}

/* line 96, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .notification-content-expanded[data-notification-section-target="content"] {
  max-height: 2000px !important;
  opacity: 1 !important;
  padding: 20px !important;
}

/* line 104, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page::-webkit-scrollbar {
  width: 8px;
  /* Largeur de la barre de défilement */
}

/* line 109, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  /* Couleur de l'arrière-plan de la barre */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 119, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page::-webkit-scrollbar-thumb {
  background: #C38761;
  /* Couleur de la barre de défilement */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 126, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
  /* Couleur de la barre au survol */
}

/* line 132, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-show-layout {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 10px;
  min-height: 840px;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

/* line 142, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-show-layout:has(#global-modal-container.modal-active) {
  overflow: visible !important;
}

/* line 148, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-progress-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 15px;
  backdrop-filter: blur(10px);
  /* Largeurs prédéfinies (CSP-friendly) */
}

/* line 157, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-progress-section .project-progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

/* line 163, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-progress-section .project-progress-header .project-progress-title {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 171, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-progress-section .project-progress-header .project-progress-percentage {
  font-size: 20px;
  font-weight: 700;
  color: #28a745;
}

/* line 178, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-progress-section .project-progress-bar-container {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

/* line 185, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-progress-section .project-progress-bar-container .project-progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #28a745 0%, #20c997 50%, #17a2b8 100%);
  border-radius: 4px;
  transition: width 0.5s ease;
  position: relative;
}

/* line 192, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-progress-section .project-progress-bar-container .project-progress-bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  animation: shimmer 2s infinite;
}

/* line 205, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-progress-section .project-progress-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

/* line 212, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-progress-section .project-progress-details .project-progress-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* line 218, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-progress-section .project-progress-details .project-progress-steps {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* line 224, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-progress-section .project-progress-details .project-progress-assignment {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

/* line 231, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-progress-section .project-progress-details .project-progress-assignment .assignment-percentage {
  font-weight: 600;
  color: #17a2b8;
}

/* line 236, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-progress-section .project-progress-details .project-progress-assignment .assignment-label {
  color: rgba(255, 255, 255, 0.6);
}

/* line 242, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-progress-section .project-progress-actions {
  margin-top: 15px;
  display: flex;
  justify-content: flex-end;
}

/* line 247, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-progress-section .project-progress-actions .notify-assignments-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

/* line 256, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-progress-section .project-progress-actions .notify-assignments-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* line 261, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-progress-section .project-progress-actions .notify-assignments-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* line 266, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-progress-section .project-progress-actions .notify-assignments-btn i {
  font-size: 14px;
}

/* line 273, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-progress-section .project-progress-bar-fill.progress-0 {
  width: 0%;
}

/* line 274, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-progress-section .project-progress-bar-fill.progress-5 {
  width: 5%;
}

/* line 275, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-progress-section .project-progress-bar-fill.progress-10 {
  width: 10%;
}

/* line 276, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-progress-section .project-progress-bar-fill.progress-15 {
  width: 15%;
}

/* line 277, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-progress-section .project-progress-bar-fill.progress-20 {
  width: 20%;
}

/* line 278, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-progress-section .project-progress-bar-fill.progress-25 {
  width: 25%;
}

/* line 279, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-progress-section .project-progress-bar-fill.progress-30 {
  width: 30%;
}

/* line 280, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-progress-section .project-progress-bar-fill.progress-35 {
  width: 35%;
}

/* line 281, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-progress-section .project-progress-bar-fill.progress-40 {
  width: 40%;
}

/* line 282, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-progress-section .project-progress-bar-fill.progress-45 {
  width: 45%;
}

/* line 283, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-progress-section .project-progress-bar-fill.progress-50 {
  width: 50%;
}

/* line 284, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-progress-section .project-progress-bar-fill.progress-55 {
  width: 55%;
}

/* line 285, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-progress-section .project-progress-bar-fill.progress-60 {
  width: 60%;
}

/* line 286, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-progress-section .project-progress-bar-fill.progress-65 {
  width: 65%;
}

/* line 287, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-progress-section .project-progress-bar-fill.progress-70 {
  width: 70%;
}

/* line 288, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-progress-section .project-progress-bar-fill.progress-75 {
  width: 75%;
}

/* line 289, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-progress-section .project-progress-bar-fill.progress-80 {
  width: 80%;
}

/* line 290, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-progress-section .project-progress-bar-fill.progress-85 {
  width: 85%;
}

/* line 291, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-progress-section .project-progress-bar-fill.progress-90 {
  width: 90%;
}

/* line 292, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-progress-section .project-progress-bar-fill.progress-95 {
  width: 95%;
}

/* line 293, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-progress-section .project-progress-bar-fill.progress-100 {
  width: 100%;
}

/* line 297, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-header-card .project-progress-section {
  background: none !important;
  border: none !important;
  backdrop-filter: none !important;
  padding: 15px 0 !important;
  border-radius: 0 !important;
}

/* line 305, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-header-card .project-progress-section .progress-bar-container {
  height: 45px !important;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* line 322, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-content-grid {
  display: grid;
  padding-right: 10px;
  grid-template-columns: 40% 60%;
  gap: 10px;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

/* line 332, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-content-grid:has(#global-modal-container.modal-active) {
  overflow: visible !important;
}

@media (max-width: 1200px) {
  /* line 322, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
  .project-show-page .project-content-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    max-height: none;
    height: auto;
    overflow: visible;
  }
}

/* line 346, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-main-content {
  display: contents;
}

/* line 351, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-header-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 15px 15px;
}

/* line 359, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-header-card .project-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

/* line 367, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-header-card .project-title {
  font-size: 19px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
  cursor: help;
}

/* line 382, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-header-card .project-lead-select {
  flex-shrink: 0;
}

/* line 385, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-header-card .project-lead-select .project-lead-form {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 390, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-header-card .project-lead-select .project-lead-form .project-lead-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
}

/* line 400, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-header-card .project-lead-select .project-lead-form .select-control,
.project-show-page .project-header-card .project-lead-select .project-lead-form #project_lead_id {
  flex: 1;
  padding: 10px 14px !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  transition: all 0.2s ease;
  min-width: 180px;
  max-width: 220px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(255,255,255,0.6)' d='M6 8L1 3h10z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  padding-right: 32px !important;
}

/* line 420, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-header-card .project-lead-select .project-lead-form .select-control:hover,
.project-show-page .project-header-card .project-lead-select .project-lead-form #project_lead_id:hover {
  border-color: rgba(255, 255, 255, 0.25) !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
}

/* line 425, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-header-card .project-lead-select .project-lead-form .select-control:focus,
.project-show-page .project-header-card .project-lead-select .project-lead-form #project_lead_id:focus {
  border-color: rgba(195, 135, 97, 0.5) !important;
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.15) !important;
}

/* line 432, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-header-card .project-lead-select .project-lead-form .select-control option,
.project-show-page .project-header-card .project-lead-select .project-lead-form #project_lead_id option {
  background: #2a2a3d;
  color: rgba(255, 255, 255, 0.9);
  padding: 8px;
}

/* line 441, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-header-card .project-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  align-items: center;
}

/* line 447, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-header-card .project-meta-grid .meta-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

/* line 454, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-header-card .project-meta-grid .meta-item .label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  margin: 0;
  text-align: left;
  white-space: nowrap;
}

/* line 465, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-header-card .project-meta-grid .meta-item .value {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-align: left;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* line 474, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-header-card .project-meta-grid .meta-item .value .quote-link-form {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* line 479, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-header-card .project-meta-grid .meta-item .value .quote-link-form select {
  flex: 1;
  min-width: 0;
}

/* line 484, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-header-card .project-meta-grid .meta-item .value .quote-link-form .form-button, .project-show-page .project-header-card .project-meta-grid .meta-item .value .quote-link-form .users-management-container .users-header .add-user-btn, .users-management-container .users-header .project-show-page .project-header-card .project-meta-grid .meta-item .value .quote-link-form .add-user-btn, .project-show-page .project-header-card .project-meta-grid .meta-item .value .quote-link-form .crm-action-button {
  flex-shrink: 0;
  white-space: nowrap;
}

/* line 490, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-header-card .project-meta-grid .meta-item .value a {
  color: #3e8fff;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

/* line 496, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-header-card .project-meta-grid .meta-item .value a:hover {
  color: #5ba3ff;
  text-decoration: underline;
}

/* line 502, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-header-card .project-meta-grid .meta-item .value.status-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

/* line 510, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-header-card .project-meta-grid .meta-item .value.status-badge.en_cours {
  background: rgba(255, 193, 7, 0.15);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

/* line 516, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-header-card .project-meta-grid .meta-item .value.status-badge.terminé {
  background: rgba(40, 167, 69, 0.15);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

/* line 528, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-steps-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 15px;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* line 539, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-steps-section:has(#global-modal-container.modal-active) {
  overflow: visible !important;
}

/* line 543, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-steps-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-shrink: 0;
}

/* line 550, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-steps-section .section-header .section-title {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 558, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-steps-section .section-header .add-step-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 18px;
  font-weight: 600;
}

/* line 573, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-steps-section .section-header .add-step-btn:hover {
  background: rgba(195, 135, 97, 0.15);
  border-color: rgba(195, 135, 97, 0.4);
  color: #C38761;
  transform: translateY(-1px);
}

/* line 580, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-steps-section .section-header .add-step-btn:active {
  transform: translateY(0);
}

/* line 586, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-steps-section .steps-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-height: 0;
  /* Permet au flex child de devenir scrollable */
  max-height: 100%;
  /* Limite la hauteur pour forcer le scroll */
  overflow-y: auto;
  padding-right: 5px;
  /* Personnalisation de la barre de défilement */
}

/* line 599, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-steps-section .steps-container::-webkit-scrollbar {
  width: 3px;
  /* Largeur de la barre de défilement */
}

/* line 604, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-steps-section .steps-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  /* Couleur de l'arrière-plan de la barre */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 614, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-steps-section .steps-container::-webkit-scrollbar-thumb {
  background: #C38761;
  /* Couleur de la barre de défilement */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 621, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-steps-section .steps-container::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
  /* Couleur de la barre au survol */
}

/* line 627, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-steps-section .empty-steps-message {
  text-align: center;
  padding: 40px 20px;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  font-size: 15px;
}

/* line 638, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .step-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 5px 10px;
  transition: all 0.2s ease;
  cursor: pointer;
  flex-shrink: 0;
  height: 85px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* line 652, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .step-card .step-title-row {
  display: flex;
  justify-content: space-between;
}

/* line 657, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .step-card .step-infos-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
}

/* line 663, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .step-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* line 673, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .step-card.dragging {
  opacity: 0.7;
  transform: rotate(1deg) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

/* line 680, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .step-card.step-hidden {
  opacity: 0.4;
  background: rgba(255, 255, 255, 0.02);
}

/* line 685, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .step-card .step-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  min-height: 24px;
}

/* line 692, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .step-card .step-header .step-title-section {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

/* line 699, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .step-card .step-header .step-title-section .drag-handle {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  cursor: grab;
  padding: 2px;
  position: relative;
  z-index: 2;
}

/* line 707, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .step-card .step-header .step-title-section .drag-handle:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* line 711, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .step-card .step-header .step-title-section .drag-handle:active {
  cursor: grabbing;
}

/* line 716, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .step-card .step-header .step-title-section .step-name {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}

/* line 727, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .step-card .step-header .step-title-section .step-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  margin-left: auto;
  margin-right: 10px;
  flex-shrink: 0;
}

/* line 736, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .step-card .step-header .step-title-section .step-meta .step-deadline {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  white-space: nowrap;
}

/* line 744, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .step-card .step-header .step-title-section .step-meta .step-deadline i {
  color: rgba(255, 255, 255, 0.5);
}

/* line 749, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .step-card .step-header .step-title-section .step-meta .step-status {
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}

/* line 757, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .step-card .step-header .step-title-section .step-meta .step-status.todo {
  background: rgba(108, 117, 125, 0.2);
  color: #6c757d;
}

/* line 762, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .step-card .step-header .step-title-section .step-meta .step-status.on_going {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
}

/* line 767, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .step-card .step-header .step-title-section .step-meta .step-status.done {
  background: rgba(40, 167, 69, 0.2);
  color: #28a745;
}

/* line 775, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .step-card .step-header .step-actions {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}

/* line 780, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .step-card .step-header .step-actions .action-btn {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 12px;
}

/* line 794, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .step-card .step-header .step-actions .action-btn:hover {
  background: rgba(195, 135, 97, 0.15);
  border-color: rgba(195, 135, 97, 0.4);
  color: #C38761;
  transform: translateY(-1px);
}

/* line 801, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .step-card .step-header .step-actions .action-btn:active {
  transform: translateY(0);
}

/* line 806, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .step-card .step-header .step-actions .action-btn.visibility-btn.hidden {
  opacity: 0.6;
}

/* line 811, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .step-card .step-header .step-actions .action-btn.delete-btn:hover {
  background: rgba(220, 53, 69, 0.2);
  border-color: rgba(220, 53, 69, 0.4);
  color: #dc3545;
}

/* line 820, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .step-card .step-progress {
  margin-top: 6px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* line 827, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .step-card .step-progress .progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

/* line 833, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .step-card .step-progress .progress-info .progress-text {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
}

/* line 838, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .step-card .step-progress .progress-info .progress-percentage {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

/* line 845, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .step-card .step-progress .progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

/* line 852, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .step-card .step-progress .progress-bar .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
  border-radius: 2px;
  transition: width 0.3s ease;
  width: calc(var(--progress-percentage, 0) * 1%);
}

/* line 862, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .step-card .step-tasks {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: none;
  border-radius: 0 0 8px 8px;
  z-index: 10;
  display: none;
}

/* line 874, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .step-card .step-tasks.expanded {
  display: block;
}

/* line 878, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .step-card .step-tasks .tasks-toggle {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

/* line 895, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .step-card .step-tasks .tasks-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  transform: scale(1.1);
}

/* line 902, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .step-card .step-tasks .tasks-list {
  padding: 8px 12px;
  max-height: 200px;
  overflow-y: auto;
}

/* line 907, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .step-card .step-tasks .tasks-list .task-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
}

/* line 913, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .step-card .step-tasks .tasks-list .task-item .task-checkbox {
  width: 14px;
  height: 14px;
  accent-color: #28a745;
}

/* line 919, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .step-card .step-tasks .tasks-list .task-item .task-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.2s ease;
}

/* line 924, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .step-card .step-tasks .tasks-list .task-item .task-label.completed {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.5);
}

/* line 935, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-calendar-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  height: 100%;
  max-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* line 947, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-calendar-section .calendar-empty-state,
.project-show-page .project-calendar-section .calendar-error-state {
  text-align: center;
  padding: 40px 20px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* line 958, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-calendar-section .calendar-error-icon {
  font-size: 24px;
  opacity: .7;
}

/* line 959, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-calendar-section .calendar-empty-icon {
  font-size: 32px;
  opacity: .5;
}

/* line 961, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-calendar-section .calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
  flex-shrink: 0;
}

/* line 968, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-calendar-section .calendar-header .calendar-title {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 976, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-calendar-section .calendar-header .calendar-view-toggle {
  display: flex;
  gap: 6px;
}

/* line 980, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-calendar-section .calendar-header .calendar-view-toggle .view-btn {
  padding: 8px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* line 994, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-calendar-section .calendar-header .calendar-view-toggle .view-btn i {
  font-size: 12px;
}

/* line 998, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-calendar-section .calendar-header .calendar-view-toggle .view-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
}

/* line 1005, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-calendar-section .calendar-header .calendar-view-toggle .view-btn.active {
  background: rgba(195, 135, 97, 0.15);
  border-color: rgba(195, 135, 97, 0.4);
  color: #C38761;
}

/* line 1014, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-calendar-section .calendar-content {
  flex: 1;
  overflow: hidden;
}

/* line 1018, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-calendar-section .calendar-content .calendar-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* line 1028, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-calendar-section .calendar-content .calendar-header .calendar-nav-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 6px 10px !important;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 12px !important;
}

/* line 1038, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-calendar-section .calendar-content .calendar-header .calendar-nav-btn i {
  font-size: 12px !important;
}

/* line 1042, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-calendar-section .calendar-content .calendar-header .calendar-nav-btn:hover {
  background: rgba(195, 135, 97, 0.15);
  border-color: rgba(195, 135, 97, 0.4);
  color: #C38761;
  transform: translateY(-1px);
}

/* line 1049, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-calendar-section .calendar-content .calendar-header .calendar-nav-btn:active {
  transform: translateY(0);
}

/* line 1055, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-calendar-section .calendar-content .calendar-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

/* line 1061, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-calendar-section .calendar-content .calendar-navigation .calendar-nav-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 12px;
}

/* line 1071, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-calendar-section .calendar-content .calendar-navigation .calendar-nav-btn i {
  font-size: 12px;
}

/* line 1075, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-calendar-section .calendar-content .calendar-navigation .calendar-nav-btn:hover {
  background: rgba(195, 135, 97, 0.15);
  border-color: rgba(195, 135, 97, 0.4);
  color: #C38761;
  transform: translateY(-1px);
}

/* line 1082, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-calendar-section .calendar-content .calendar-navigation .calendar-nav-btn:active {
  transform: translateY(0);
}

/* line 1087, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-calendar-section .calendar-content .calendar-navigation .calendar-title {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* line 1096, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-calendar-section .calendar-content .calendar-grid.month-view .calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  margin-bottom: 8px;
}

/* line 1102, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-calendar-section .calendar-content .calendar-grid.month-view .calendar-weekdays .weekday {
  text-align: center;
  padding: 8px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  text-transform: uppercase;
}

/* line 1112, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-calendar-section .calendar-content .calendar-grid.month-view .calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
}

/* line 1117, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-calendar-section .calendar-content .calendar-grid.month-view .calendar-days .calendar-day {
  aspect-ratio: 2;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  padding: 6px;
  display: flex;
  flex-direction: column;
}

/* line 1126, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-calendar-section .calendar-content .calendar-grid.month-view .calendar-days .calendar-day.other-month {
  opacity: 0.3;
}

/* line 1130, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-calendar-section .calendar-content .calendar-grid.month-view .calendar-days .calendar-day.today {
  background: rgba(var(--primary-color-rgb, 74, 144, 226), 0.1);
  border-color: rgba(var(--primary-color-rgb, 74, 144, 226), 0.3);
}

/* line 1135, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-calendar-section .calendar-content .calendar-grid.month-view .calendar-days .calendar-day .day-number {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 4px;
}

/* line 1142, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-calendar-section .calendar-content .calendar-grid.month-view .calendar-days .calendar-day .day-steps {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* line 1149, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-calendar-section .calendar-content .calendar-grid.month-view .calendar-days .calendar-day .day-steps .step-marker .step-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

/* line 1155, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.status-todo .project-show-page .project-calendar-section .calendar-content .calendar-grid.month-view .calendar-days .calendar-day .day-steps .step-marker .step-dot {
  background: #6c757d;
}

/* line 1159, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.status-on_going .project-show-page .project-calendar-section .calendar-content .calendar-grid.month-view .calendar-days .calendar-day .day-steps .step-marker .step-dot {
  background: #ffc107;
}

/* line 1163, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.status-done .project-show-page .project-calendar-section .calendar-content .calendar-grid.month-view .calendar-days .calendar-day .day-steps .step-marker .step-dot {
  background: #28a745;
}

/* line 1175, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-calendar-section .calendar-content .calendar-grid.week-view .week-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

/* line 1180, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-calendar-section .calendar-content .calendar-grid.week-view .week-days .week-day {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 12px;
  min-height: 180px;
}

/* line 1187, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-calendar-section .calendar-content .calendar-grid.week-view .week-days .week-day.today {
  background: rgba(var(--primary-color-rgb, 74, 144, 226), 0.1);
  border-color: rgba(var(--primary-color-rgb, 74, 144, 226), 0.3);
}

/* line 1192, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-calendar-section .calendar-content .calendar-grid.week-view .week-days .week-day .week-day-header {
  text-align: center;
  margin-bottom: 12px;
}

/* line 1196, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-calendar-section .calendar-content .calendar-grid.week-view .week-days .week-day .week-day-header .weekday-name {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  font-weight: 600;
}

/* line 1203, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-calendar-section .calendar-content .calendar-grid.week-view .week-days .week-day .week-day-header .day-number {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  margin-top: 3px;
}

/* line 1212, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-calendar-section .calendar-content .calendar-grid.week-view .week-days .week-day .week-day-steps .week-step-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  padding: 6px 8px;
  margin-bottom: 6px;
  border-left: 3px solid;
}

/* line 1219, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-calendar-section .calendar-content .calendar-grid.week-view .week-days .week-day .week-day-steps .week-step-item.status-todo {
  border-left-color: #6c757d;
}

/* line 1223, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-calendar-section .calendar-content .calendar-grid.week-view .week-days .week-day .week-day-steps .week-step-item.status-on_going {
  border-left-color: #ffc107;
}

/* line 1227, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-calendar-section .calendar-content .calendar-grid.week-view .week-days .week-day .week-day-steps .week-step-item.status-done {
  border-left-color: #28a745;
}

/* line 1231, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-calendar-section .calendar-content .calendar-grid.week-view .week-days .week-day .week-day-steps .week-step-item .step-time {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  font-weight: 600;
}

/* line 1238, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-calendar-section .calendar-content .calendar-grid.week-view .week-days .week-day .week-day-steps .week-step-item .step-title {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2px;
  line-height: 1.3;
}

/* line 1253, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-shrink: 0;
  min-height: 40px;
  align-items: start;
  margin-top: 10px;
}

/* line 1262, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-actions .action-button {
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* line 1275, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-actions .action-button.secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}

/* line 1280, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-actions .action-button.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

/* line 1286, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-actions .action-button.primary {
  background: var(--primary-color, #4a90e2);
  color: white;
}

/* line 1290, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-actions .action-button.primary:hover {
  background: var(--primary-color-dark, #357abd);
  transform: translateY(-1px);
}

/* line 1296, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-actions .action-button.danger {
  background: #dc3545;
  color: white;
}

/* line 1300, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .project-actions .action-button.danger:hover {
  background: #c82333;
  transform: translateY(-1px);
}

/* line 1309, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .portal-detail__form {
  padding: 14px;
}

/* line 1313, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .portal-detail__form-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 6px 0;
  text-transform: none;
}

/* line 1324, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .portal-detail__form-desc {
  margin: 0 0 12px 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

/* line 1330, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .portal-detail__questions {
  display: grid;
  gap: 12px;
}

/* line 1334, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .portal-detail__questions .question-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px 14px;
}

/* line 1341, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .portal-detail__questions .question-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
}

/* line 1351, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .portal-detail__questions .answer-display {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  white-space: pre-wrap;
  line-height: 1.35;
}

/* line 1361, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .portal-detail__questions .answer-display.multiline {
  padding-top: 12px;
  padding-bottom: 12px;
}

/* line 1367, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .portal-detail__questions .form-input,
.project-show-page .portal-detail__questions .form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  outline: none;
}

/* line 1379, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .portal-detail__questions .form-input:disabled,
.project-show-page .portal-detail__questions .form-textarea:disabled {
  opacity: 0.9;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.18);
}

/* line 1387, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .portal-detail__questions .choices {
  display: grid;
  gap: 8px;
}

/* line 1392, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .portal-detail__questions .choice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
}

/* line 1400, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .portal-detail__questions .choice input[type="radio"],
.project-show-page .portal-detail__questions .choice input[type="checkbox"] {
  accent-color: #C38761;
  pointer-events: none;
}

/* line 1406, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .portal-detail__questions .choice.selected {
  border-color: rgba(202, 165, 106, 0.65);
  background: rgba(202, 165, 106, 0.16);
  box-shadow: inset 0 0 0 1px rgba(202, 165, 106, 0.25);
}

/* line 1413, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .portal-detail__questions .validated-badge {
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(46, 204, 113, 0.18);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.35);
  vertical-align: middle;
}

/* line 1427, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .portal-detail__questions .tasks-section .tasks-list .task-item .task-content .onboarding-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 14px;
  font-size: 11px;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: rgba(255, 255, 255, 0.85) !important;
  line-height: 1;
}

/* line 1439, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .portal-detail__questions .tasks-section .tasks-list .task-item .task-content .onboarding-status-badge i {
  color: currentColor;
  opacity: 0.95;
}

/* line 1441, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .portal-detail__questions .tasks-section .tasks-list .task-item .task-content .onboarding-status-badge.completed {
  background: rgba(46, 204, 113, 0.18) !important;
  color: #2ecc71 !important;
  border-color: rgba(46, 204, 113, 0.35) !important;
}

/* line 1447, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .portal-detail__questions .tasks-section .tasks-list .task-item .task-content .onboarding-status-badge.in_progress {
  background: rgba(255, 193, 7, 0.18) !important;
  color: #ffc107 !important;
  border-color: rgba(255, 193, 7, 0.35) !important;
}

/* line 1453, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .portal-detail__questions .tasks-section .tasks-list .task-item .task-content .onboarding-status-badge.pending {
  background: rgba(255, 143, 31, 0.18) !important;
  color: #ff8f1f !important;
  border-color: rgba(255, 143, 31, 0.35) !important;
}

/* line 1461, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .portal-detail__questions .tasks-section .tasks-list .task-item .task-content .onboarding-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 14px;
  font-size: 11px;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 1;
}

/* line 1473, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .portal-detail__questions .tasks-section .tasks-list .task-item .task-content .onboarding-date-badge i {
  color: currentColor;
  opacity: 0.95;
}

/* line 1478, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .mt-xs {
  margin-top: 6px;
}

/* line 1483, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page .task-content {
  cursor: pointer;
  display: block;
}

/* line 1493, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page #customer-autocomplete-component {
  overflow: visible !important;
}

/* line 1496, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page #customer-autocomplete-component .value {
  position: relative;
  overflow: visible !important;
  display: inline-block;
}

/* line 1502, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page #customer-autocomplete-component .autocomplete-list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  min-width: 260px;
  max-width: 420px;
  max-height: 240px;
  overflow-y: auto;
  color: #140D23;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 0 0 6px 6px;
  z-index: 4000 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  margin: 0;
  padding: 0;
  list-style: none;
  display: none;
  border-top: none;
}

/* line 1524, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page #customer-autocomplete-component .autocomplete-list.is-open {
  display: block !important;
}

/* line 1528, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page #customer-autocomplete-component .autocomplete-suggestion {
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.15s;
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
}

/* line 1536, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page #customer-autocomplete-component .autocomplete-suggestion:last-child {
  border-bottom: none;
}

/* line 1540, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page #customer-autocomplete-component .autocomplete-suggestion:hover,
.project-show-page #customer-autocomplete-component .autocomplete-suggestion:focus {
  background: #f5f5f5;
}

/* line 1548, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page.responses {
  margin: 0 8px;
}

/* line 1552, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page.responses .project-show-layout {
  grid-template-rows: auto auto;
  min-height: auto;
}

/* line 1557, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page.responses .project-main-content {
  display: block;
}

/* line 1562, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page.responses .responses-merged-card,
.project-show-page.responses .project-actions {
  width: 100%;
}

/* line 1568, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page.responses .responses-merged-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  /* liseré haut */
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* line 1588, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page.responses .responses-merged-card .project-header-card,
.project-show-page.responses .responses-merged-card .project-steps-section {
  background: transparent;
  border: none;
}

/* line 1594, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page.responses .responses-merged-card .project-header-card {
  padding: 8px 12px;
}

/* line 1597, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page.responses .responses-merged-card .project-header-card .project-title {
  margin-bottom: 6px;
}

/* line 1601, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page.responses .responses-merged-card .project-header-card .project-meta-grid {
  gap: 20px;
}

/* line 1606, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page.responses .responses-merged-card .project-steps-section {
  padding: 8px 12px;
  border-radius: 10px;
}

/* line 1611, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page.responses .responses-merged-card .project-steps-section .section-header {
  margin-bottom: 12px;
}

/* line 1616, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page.responses .portal-detail__questions .question-item .question-label {
  font-size: 1rem;
}

/* line 1621, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page.responses .portal-detail__questions .choice {
  font-size: 0.9rem;
}

/* line 1628, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page.responses .portal-detail__questions .form-input,
.project-show-page.responses .portal-detail__questions .form-textarea,
.project-show-page.responses .portal-detail__questions .question-label,
.project-show-page.responses .portal-detail__questions .choice,
.project-show-page.responses .portal-detail__questions input[type="radio"],
.project-show-page.responses .portal-detail__questions input[type="checkbox"] {
  text-align: start;
}

/* line 1640, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page.responses .project-header-card .project-title {
  overflow: visible;
  text-overflow: unset;
  white-space: normal;
  max-width: none;
}

/* line 1647, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-show-page.responses .project-header-card .project-meta-grid {
  grid-template-columns: 1fr 1fr 1fr;
}

/* line 1654, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-show-page {
  color: #140D23 !important;
}

/* line 1658, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-header-card,
.lightmode .project-steps-section,
.lightmode .project-calendar-section,
.lightmode .project-calendar-title {
  border: 1px solid rgba(20, 13, 35, 0.12);
  color: #140D23 !important;
}

/* line 1666, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-calendar-container .fc .fc-toolbar .fc-button-group .fc-button,
.lightmode .project-calendar-container .fc .fc-toolbar .fc-button {
  color: #140D23 !important;
}

/* line 1671, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-calendar-container .fc .fc-toolbar .fc-toolbar-title {
  color: #140D23 !important;
}

/* line 1675, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-calendar-container .fc .fc-daygrid .fc-col-header .fc-col-header-cell .fc-col-header-cell-cushion {
  color: #140D23 !important;
}

/* line 1679, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-calendar-container .fc .fc-daygrid .fc-daygrid-day-number {
  color: #140D23 !important;
}

/* line 1683, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-title,
.lightmode .section-title,
.lightmode .calendar-title {
  color: #140D23 !important;
}

/* line 1689, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .meta-item .label,
.lightmode .meta-item .value,
.lightmode .progress-title,
.lightmode .progress-percentage,
.lightmode .progress-text,
.lightmode .progress-steps,
.lightmode .step-name,
.lightmode .step-status,
.lightmode .step-title-section,
.lightmode .step-header,
.lightmode .step-title-section .step-name,
.lightmode .step-header .step-meta,
.lightmode .step-header .step-status,
.lightmode .step-header .step-deadline,
.lightmode .step-header .step-title-section,
.lightmode .step-header .step-title-section .step-name,
.lightmode .step-header .step-title-section .step-meta,
.lightmode .step-header .step-title-section .step-status,
.lightmode .step-header .step-title-section .step-deadline {
  color: #140D23 !important;
}

/* line 1711, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-show-page .project-steps-section .section-header .add-step-btn {
  background: rgba(20, 13, 35, 0.08) !important;
  border: 1.5px solid rgba(20, 13, 35, 0.15) !important;
  color: rgba(20, 13, 35, 0.8) !important;
  transition: all 0.2s;
}

/* line 1717, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-show-page .project-steps-section .section-header .add-step-btn:hover {
  background: rgba(195, 135, 97, 0.15) !important;
  color: #C38761 !important;
  border-color: rgba(195, 135, 97, 0.4) !important;
  transform: translateY(-1px);
}

/* line 1724, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-show-page .project-steps-section .section-header .add-step-btn:active {
  transform: translateY(0);
}

/* line 1729, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .calendar-view-toggle .view-btn {
  background: rgba(20, 13, 35, 0.08) !important;
  border: 1.5px solid rgba(20, 13, 35, 0.15) !important;
  color: rgba(20, 13, 35, 0.8) !important;
}

/* line 1734, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .calendar-view-toggle .view-btn:hover {
  background: rgba(20, 13, 35, 0.12) !important;
  border-color: rgba(20, 13, 35, 0.25) !important;
  color: rgba(20, 13, 35, 0.95) !important;
}

/* line 1740, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .calendar-view-toggle .view-btn.active {
  background: rgba(195, 135, 97, 0.15) !important;
  border-color: rgba(195, 135, 97, 0.4) !important;
  color: #C38761 !important;
}

/* line 1747, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .step-card .step-actions .action-btn {
  background: rgba(20, 13, 35, 0.08) !important;
  border: 1.5px solid rgba(20, 13, 35, 0.15) !important;
  color: rgba(20, 13, 35, 0.8) !important;
}

/* line 1752, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .step-card .step-actions .action-btn:hover {
  background: rgba(195, 135, 97, 0.15) !important;
  border-color: rgba(195, 135, 97, 0.4) !important;
  color: #C38761 !important;
}

/* line 1758, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .step-card .step-actions .action-btn.delete-btn:hover {
  background: rgba(220, 53, 69, 0.2) !important;
  border-color: rgba(220, 53, 69, 0.4) !important;
  color: #dc3545 !important;
}

/* line 1765, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-show-page .project-progress-section .progress-bar-container .progress-bar-fill {
  background: linear-gradient(90deg, #bc7892 0%, #28a745 100%) !important;
}

/* line 1769, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .step-card,
.lightmode .calendar-day,
.lightmode .week-day {
  background: rgba(20, 13, 35, 0.03);
  border: 1px solid rgba(20, 13, 35, 0.08);
  color: #140D23 !important;
}

/* line 1777, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .action-btn,
.lightmode .project-actions .action-button {
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 1782, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .action-btn:hover,
.lightmode .project-actions .action-button:hover {
  background: rgba(195, 135, 97, 0.1);
  color: #C38761;
}

/* line 1789, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .status-badge.en_cours,
.lightmode .step-status.on_going {
  background: rgba(195, 135, 97, 0.15);
  color: #C38761;
  border: 1px solid rgba(195, 135, 97, 0.3);
}

/* line 1796, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .status-badge.terminé,
.lightmode .step-status.done {
  background: rgba(40, 167, 69, 0.15);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

/* line 1803, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .status-badge,
.lightmode .step-status.todo {
  background: rgba(20, 13, 35, 0.08);
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.3);
}

/* line 1811, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-notifications-section {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* line 1815, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-notifications-section .project-steps-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  height: auto !important;
}

/* line 1824, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-notifications-section .project-steps-section .section-header {
  padding: 15px 20px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* line 1833, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-notifications-section .project-steps-section .section-header:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* line 1837, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-notifications-section .project-steps-section .section-header .section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

/* line 1843, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-notifications-section .project-steps-section .section-header .section-title .notification-chevron-small {
  transition: transform 0.3s ease;
  margin-left: auto;
  transform: rotate(0deg);
}

/* line 1848, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-notifications-section .project-steps-section .section-header .section-title .notification-chevron-small.chevron-rotated {
  transform: rotate(180deg);
}

/* line 1856, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-notifications-section .project-steps-section [data-notification-section-target="content"] {
  overflow: hidden !important;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  display: block !important;
}

/* line 1864, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-notifications-section .project-steps-section .notification-content-collapsed[data-notification-section-target="content"] {
  max-height: 0 !important;
  opacity: 0 !important;
  padding: 0 20px !important;
}

/* line 1871, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-notifications-section .project-steps-section .notification-content-expanded[data-notification-section-target="content"] {
  max-height: 2000px !important;
  opacity: 1 !important;
  padding: 20px !important;
}

/* line 1878, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-notifications-section .project-steps-section [data-notification-section-target="content"] .steps-list {
  max-height: 400px;
  overflow-y: auto;
}

/* line 1884, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-notifications-section .project-steps-section [data-notification-section-target="content"] .step-card {
  margin-bottom: 10px;
  padding: 15px;
}

/* line 1889, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-notifications-section .project-steps-section [data-notification-section-target="content"] .notification-card-content {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

/* line 1895, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-notifications-section .project-steps-section [data-notification-section-target="content"] .notification-card-body {
  flex: 1;
}

/* line 1899, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-notifications-section .project-steps-section [data-notification-section-target="content"] .notification-header-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

/* line 1906, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-notifications-section .project-steps-section [data-notification-section-target="content"] .notification-status-badge {
  font-size: 0.85em;
}

/* line 1910, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-notifications-section .project-steps-section [data-notification-section-target="content"] .notification-title {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.05em;
}

/* line 1915, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-notifications-section .project-steps-section [data-notification-section-target="content"] .notification-info-row {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9em;
  margin-bottom: 5px;
}

/* line 1920, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-notifications-section .project-steps-section [data-notification-section-target="content"] .notification-info-row i {
  margin-right: 5px;
  width: 16px;
}

/* line 1926, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-notifications-section .project-steps-section [data-notification-section-target="content"] .notification-recipients-count {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85em;
}

/* line 1930, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-notifications-section .project-steps-section [data-notification-section-target="content"] .notification-recipients-count i {
  margin-right: 5px;
  width: 16px;
}

/* line 1936, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-notifications-section .project-steps-section [data-notification-section-target="content"] .notification-actions {
  display: flex;
  gap: 8px;
}

/* line 1941, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-notifications-section .project-steps-section [data-notification-section-target="content"] .notification-footer {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* line 1948, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-notifications-section .project-steps-section [data-notification-section-target="content"] .notification-empty-state {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  color: rgba(255, 255, 255, 0.6);
}

/* line 1956, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-notifications-section .project-steps-section [data-notification-section-target="content"] .notification-empty-state .notification-empty-icon {
  font-size: 3em;
  margin-bottom: 15px;
  opacity: 0.5;
}

/* line 1962, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-notifications-section .project-steps-section [data-notification-section-target="content"] .notification-empty-state p {
  margin-bottom: 20px;
  text-align: center;
}

/* line 1966, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-notifications-section .project-steps-section [data-notification-section-target="content"] .notification-empty-state p.notification-empty-subtitle {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9em;
}

/* line 1973, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-notifications-section .project-steps-section [data-notification-section-target="content"] .notification-empty-state .notification-empty-button {
  margin-top: 10px;
}

/* line 1981, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-notifications-section .project-steps-section .add-step-btn.notification-hidden {
  display: none;
}

/* line 1989, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode ::-webkit-scrollbar-thumb {
  background: #C38761;
}

/* line 1993, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode ::-webkit-scrollbar-thumb:hover {
  background: #140D23;
}

/* line 1998, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-completion-report-section {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.01) 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* line 2007, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-completion-report-section .completion-report-header .completion-report-info .completion-report-title {
  color: #140D23;
}

/* line 2012, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-completion-report-section .completion-report-header .completion-report-info .status-badge.validated {
  background: rgba(40, 167, 69, 0.15);
  color: #1e7e34;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

/* line 2018, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-completion-report-section .completion-report-header .completion-report-info .status-badge.draft {
  background: rgba(255, 193, 7, 0.15);
  color: #ba8b00;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

/* line 2028, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-completion-report-section .completion-report-header .completion-report-actions a.create-report-btn, .lightmode .project-completion-report-section .completion-report-header .completion-report-actions a.edit-report-btn {
  background: linear-gradient(135deg, #C38761 0%, #af6c42 100%);
  color: #140D23;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

/* line 2035, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-completion-report-section .completion-report-header .completion-report-actions a.pdf-btn {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.02) 100%);
  color: #140D23;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

/* line 2044, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-completion-report-section .completion-report-pv-section {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* line 2047, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-completion-report-section .completion-report-pv-section .pv-info {
  color: #140D23;
}

/* line 2050, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-completion-report-section .completion-report-pv-section .pv-info .pv-link {
  color: #140D23;
}

/* line 2053, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-completion-report-section .completion-report-pv-section .pv-info .pv-link:hover {
  color: #C38761;
}

/* line 2059, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-completion-report-section .completion-report-pv-section .pv-info .status-badge.draft {
  background: rgba(108, 117, 125, 0.15);
  color: #545b62;
  border: 1px solid rgba(108, 117, 125, 0.3);
}

/* line 2065, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-completion-report-section .completion-report-pv-section .pv-info .status-badge.sent {
  background: rgba(0, 123, 255, 0.15);
  color: #0062cc;
  border: 1px solid rgba(0, 123, 255, 0.3);
}

/* line 2071, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-completion-report-section .completion-report-pv-section .pv-info .status-badge.validated {
  background: rgba(40, 167, 69, 0.15);
  color: #1e7e34;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

/* line 2077, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-completion-report-section .completion-report-pv-section .pv-info .status-badge.cloture, .lightmode .project-completion-report-section .completion-report-pv-section .pv-info .status-badge.archived {
  background: rgba(108, 117, 125, 0.15);
  color: #545b62;
  border: 1px solid rgba(108, 117, 125, 0.3);
}

/* line 2088, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-completion-report-section .completion-report-pv-section .pv-actions a.link-pv-btn {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.02) 100%);
  color: #140D23;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

/* line 2099, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-client-acceptance-report-section {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.01) 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* line 2108, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-client-acceptance-report-section .client-acceptance-report-header .client-acceptance-report-info .client-acceptance-report-title {
  color: #140D23;
}

/* line 2113, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-client-acceptance-report-section .client-acceptance-report-header .client-acceptance-report-info .status-badge.draft {
  background: rgba(108, 117, 125, 0.15);
  color: #545b62;
  border: 1px solid rgba(108, 117, 125, 0.3);
}

/* line 2119, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-client-acceptance-report-section .client-acceptance-report-header .client-acceptance-report-info .status-badge.sent {
  background: rgba(0, 123, 255, 0.15);
  color: #0062cc;
  border: 1px solid rgba(0, 123, 255, 0.3);
}

/* line 2125, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-client-acceptance-report-section .client-acceptance-report-header .client-acceptance-report-info .status-badge.validated {
  background: rgba(40, 167, 69, 0.15);
  color: #1e7e34;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

/* line 2131, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-client-acceptance-report-section .client-acceptance-report-header .client-acceptance-report-info .status-badge.cloture, .lightmode .project-client-acceptance-report-section .client-acceptance-report-header .client-acceptance-report-info .status-badge.archived {
  background: rgba(108, 117, 125, 0.15);
  color: #545b62;
  border: 1px solid rgba(108, 117, 125, 0.3);
}

/* line 2142, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-client-acceptance-report-section .client-acceptance-report-header .client-acceptance-report-actions a.create-pv-btn {
  background: linear-gradient(135deg, #C38761 0%, #af6c42 100%);
  color: #140D23;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

/* line 2148, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.lightmode .project-client-acceptance-report-section .client-acceptance-report-header .client-acceptance-report-actions a.view-pv-btn {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.02) 100%);
  color: #140D23;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

/* line 2160, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-notifications-section .notification-empty-state {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  color: rgba(255, 255, 255, 0.6);
}

/* line 2168, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-notifications-section .notification-empty-state .notification-empty-icon {
  font-size: 3em;
  margin-bottom: 15px;
  opacity: 0.5;
}

/* line 2174, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-notifications-section .notification-empty-state p {
  margin-bottom: 20px;
  text-align: center;
}

/* line 2178, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-notifications-section .notification-empty-state p.notification-empty-subtitle {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9em;
}

/* line 2185, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-notifications-section .notification-empty-state .notification-empty-button {
  margin-top: 10px;
}

/* line 2191, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.step-status {
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-block;
  margin-left: 6px;
}

/* line 2201, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.step-status.todo {
  background: rgba(108, 117, 125, 0.2);
  color: #6c757d;
}

/* line 2206, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.step-status.on_going {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
}

/* line 2211, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.step-status.done {
  background: rgba(40, 167, 69, 0.2);
  color: #28a745;
}

/* line 2218, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-completion-report-section {
  width: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 15px;
  backdrop-filter: blur(10px);
}

/* line 2228, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-completion-report-section .completion-report-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

/* line 2234, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-completion-report-section .completion-report-header .completion-report-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 2239, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-completion-report-section .completion-report-header .completion-report-info i {
  font-size: 20px;
  color: #C38761;
}

/* line 2244, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-completion-report-section .completion-report-header .completion-report-info .completion-report-title {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 2252, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-completion-report-section .completion-report-header .completion-report-info .status-badge {
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

/* line 2259, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-completion-report-section .completion-report-header .completion-report-info .status-badge.validated {
  background: rgba(40, 167, 69, 0.2);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

/* line 2265, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-completion-report-section .completion-report-header .completion-report-info .status-badge.draft {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

/* line 2273, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-completion-report-section .completion-report-header .completion-report-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* line 2278, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-completion-report-section .completion-report-header .completion-report-actions a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* line 2290, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-completion-report-section .completion-report-header .completion-report-actions a i {
  font-size: 14px;
}

/* line 2294, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-completion-report-section .completion-report-header .completion-report-actions a.create-report-btn {
  background: linear-gradient(135deg, #C38761 0%, #af6c42 100%);
  color: #140D23;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 2299, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-completion-report-section .completion-report-header .completion-report-actions a.create-report-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(195, 135, 97, 0.4);
}

/* line 2305, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-completion-report-section .completion-report-header .completion-report-actions a.edit-report-btn {
  background: linear-gradient(135deg, #C38761 0%, #af6c42 100%);
  color: #140D23;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 2310, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-completion-report-section .completion-report-header .completion-report-actions a.edit-report-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(195, 135, 97, 0.4);
}

/* line 2316, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-completion-report-section .completion-report-header .completion-report-actions a.send-report-btn {
  background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
  color: white;
  border: 1px solid rgba(40, 167, 69, 0.3);
  cursor: pointer;
}

/* line 2322, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-completion-report-section .completion-report-header .completion-report-actions a.send-report-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
}

/* line 2328, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-completion-report-section .completion-report-header .completion-report-actions a.pdf-btn {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 2333, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-completion-report-section .completion-report-header .completion-report-actions a.pdf-btn:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  /* line 2347, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
  .project-completion-report-section .completion-report-header {
    flex-direction: column;
    align-items: flex-start;
  }
  /* line 2351, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
  .project-completion-report-section .completion-report-header .completion-report-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

/* line 2360, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-client-acceptance-report-section {
  width: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 15px;
  backdrop-filter: blur(10px);
}

/* line 2370, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-client-acceptance-report-section .client-acceptance-report-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

/* line 2376, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-client-acceptance-report-section .client-acceptance-report-header .client-acceptance-report-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 2381, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-client-acceptance-report-section .client-acceptance-report-header .client-acceptance-report-info i {
  font-size: 20px;
  color: #C38761;
}

/* line 2386, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-client-acceptance-report-section .client-acceptance-report-header .client-acceptance-report-info .client-acceptance-report-title {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 2394, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-client-acceptance-report-section .client-acceptance-report-header .client-acceptance-report-info .status-badge {
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

/* line 2401, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-client-acceptance-report-section .client-acceptance-report-header .client-acceptance-report-info .status-badge.draft {
  background: rgba(108, 117, 125, 0.2);
  color: #6c757d;
  border: 1px solid rgba(108, 117, 125, 0.3);
}

/* line 2407, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-client-acceptance-report-section .client-acceptance-report-header .client-acceptance-report-info .status-badge.sent {
  background: rgba(0, 123, 255, 0.2);
  color: #007bff;
  border: 1px solid rgba(0, 123, 255, 0.3);
}

/* line 2413, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-client-acceptance-report-section .client-acceptance-report-header .client-acceptance-report-info .status-badge.validated {
  background: rgba(40, 167, 69, 0.2);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

/* line 2419, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-client-acceptance-report-section .client-acceptance-report-header .client-acceptance-report-info .status-badge.cloture {
  background: rgba(108, 117, 125, 0.2);
  color: #6c757d;
  border: 1px solid rgba(108, 117, 125, 0.3);
}

/* line 2425, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-client-acceptance-report-section .client-acceptance-report-header .client-acceptance-report-info .status-badge.archived {
  background: rgba(108, 117, 125, 0.2);
  color: #6c757d;
  border: 1px solid rgba(108, 117, 125, 0.3);
}

/* line 2433, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-client-acceptance-report-section .client-acceptance-report-header .client-acceptance-report-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* line 2438, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-client-acceptance-report-section .client-acceptance-report-header .client-acceptance-report-actions a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* line 2450, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-client-acceptance-report-section .client-acceptance-report-header .client-acceptance-report-actions a i {
  font-size: 14px;
}

/* line 2454, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-client-acceptance-report-section .client-acceptance-report-header .client-acceptance-report-actions a.create-pv-btn {
  background: linear-gradient(135deg, #C38761 0%, #af6c42 100%);
  color: #140D23;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 2459, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-client-acceptance-report-section .client-acceptance-report-header .client-acceptance-report-actions a.create-pv-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(195, 135, 97, 0.4);
}

/* line 2465, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-client-acceptance-report-section .client-acceptance-report-header .client-acceptance-report-actions a.view-pv-btn {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 2470, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.project-client-acceptance-report-section .client-acceptance-report-header .client-acceptance-report-actions a.view-pv-btn:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* line 2482, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.completion-report-pv-section {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 2487, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.completion-report-pv-section .pv-info {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

/* line 2494, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.completion-report-pv-section .pv-info i {
  font-size: 16px;
  color: #C38761;
}

/* line 2499, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.completion-report-pv-section .pv-info .pv-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
}

/* line 2504, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.completion-report-pv-section .pv-info .pv-link:hover {
  color: #C38761;
  text-decoration: underline;
}

/* line 2510, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.completion-report-pv-section .pv-info .status-badge {
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

/* line 2517, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.completion-report-pv-section .pv-info .status-badge.draft {
  background: rgba(108, 117, 125, 0.2);
  color: #6c757d;
  border: 1px solid rgba(108, 117, 125, 0.3);
}

/* line 2523, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.completion-report-pv-section .pv-info .status-badge.sent {
  background: rgba(0, 123, 255, 0.2);
  color: #007bff;
  border: 1px solid rgba(0, 123, 255, 0.3);
}

/* line 2529, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.completion-report-pv-section .pv-info .status-badge.validated {
  background: rgba(40, 167, 69, 0.2);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

/* line 2535, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.completion-report-pv-section .pv-info .status-badge.cloture {
  background: rgba(108, 117, 125, 0.2);
  color: #6c757d;
  border: 1px solid rgba(108, 117, 125, 0.3);
}

/* line 2541, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.completion-report-pv-section .pv-info .status-badge.archived {
  background: rgba(108, 117, 125, 0.2);
  color: #6c757d;
  border: 1px solid rgba(108, 117, 125, 0.3);
}

/* line 2549, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.completion-report-pv-section .pv-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* line 2554, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.completion-report-pv-section .pv-actions a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* line 2566, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.completion-report-pv-section .pv-actions a i {
  font-size: 14px;
}

/* line 2570, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.completion-report-pv-section .pv-actions a.link-pv-btn {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 2575, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.completion-report-pv-section .pv-actions a.link-pv-btn:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  /* line 2588, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
  .project-client-acceptance-report-section .client-acceptance-report-header {
    flex-direction: column;
    align-items: flex-start;
  }
  /* line 2592, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
  .project-client-acceptance-report-section .client-acceptance-report-header .client-acceptance-report-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

/* line 2603, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.flatpickr-calendar.project-show-flatpickr,
.flatpickr-calendar.project-show-flatpickr.open {
  max-height: 380px !important;
  overflow: hidden !important;
}

/* line 2608, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.flatpickr-calendar.project-show-flatpickr .flatpickr-innerContainer,
.flatpickr-calendar.project-show-flatpickr.open .flatpickr-innerContainer {
  max-height: calc(380px - 60px) !important;
  overflow-y: auto !important;
}

/* line 2614, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.flatpickr-calendar.project-show-flatpickr .flatpickr-months,
.flatpickr-calendar.project-show-flatpickr.open .flatpickr-months {
  background: none !important;
  background-color: transparent !important;
  background-image: none !important;
}

/* line 2619, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.flatpickr-calendar.project-show-flatpickr .flatpickr-months .flatpickr-month,
.flatpickr-calendar.project-show-flatpickr.open .flatpickr-months .flatpickr-month {
  background: none !important;
  background-color: transparent !important;
  background-image: none !important;
}

/* line 2627, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.flatpickr-calendar.project-show-flatpickr .flatpickr-weekdays,
.flatpickr-calendar.project-show-flatpickr.open .flatpickr-weekdays {
  background: none !important;
  background-color: transparent !important;
  background-image: none !important;
}

/* line 2632, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_project.scss */
.flatpickr-calendar.project-show-flatpickr .flatpickr-weekdays .flatpickr-weekday,
.flatpickr-calendar.project-show-flatpickr .flatpickr-weekdays span.flatpickr-weekday,
.flatpickr-calendar.project-show-flatpickr.open .flatpickr-weekdays .flatpickr-weekday,
.flatpickr-calendar.project-show-flatpickr.open .flatpickr-weekdays span.flatpickr-weekday {
  background: none !important;
  background-color: transparent !important;
  background-image: none !important;
}

/* line 5, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_final_step_styles.scss */
.project-show-page .step-card.final-step {
  border-color: rgba(195, 135, 97, 0.6);
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.15), 0 6px 18px rgba(0, 0, 0, 0.25);
  position: relative;
}

/* line 10, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_final_step_styles.scss */
.project-show-page .step-card.final-step .step-title-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* line 15, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_final_step_styles.scss */
.project-show-page .step-card.final-step .step-title-row .step-name {
  color: #C38761;
  font-weight: 700;
}

/* line 22, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_final_step_styles.scss */
.project-show-page .final-step-badge {
  background: rgba(195, 135, 97, 0.15);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 12px;
  letter-spacing: 0.3px;
  border: 1px solid rgba(195, 135, 97, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

/* line 36, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_final_step_styles.scss */
.project-show-page .final-step-badge i {
  font-size: 10px;
}

/* line 44, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_final_step_styles.scss */
.lightmode .project-show-page .step-card.final-step {
  border-color: rgba(20, 13, 35, 0.5);
  box-shadow: 0 0 0 2px rgba(20, 13, 35, 0.15), 0 6px 18px rgba(20, 13, 35, 0.1);
}

/* line 48, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_final_step_styles.scss */
.lightmode .project-show-page .step-card.final-step .step-title-row .step-name {
  color: #140D23;
  font-weight: 700;
}

/* line 54, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_final_step_styles.scss */
.lightmode .project-show-page .final-step-badge {
  background: rgba(20, 13, 35, 0.1);
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.3);
}

/* ==========================================================================
   VUE DÉTAILLÉE DE L'ÉTAPE - Styles spécifiques
   Cohérent avec les modules gestion de projet et CRM
   ========================================================================== */
/* line 7, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.hidden {
  display: none !important;
}

/* line 11, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.inline-form {
  display: inline;
}

/* line 15, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page {
  padding: 10px;
  width: 100%;
  margin: 0 20px;
  overflow: auto;
}

/* line 21, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page::-webkit-scrollbar {
  width: 8px;
}

/* line 25, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 30, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 35, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 40, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .step-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 10px;
  margin: 10px 0;
  height: 500px;
  min-height: 500px;
  align-items: stretch;
}

@media (max-width: 1200px) {
  /* line 40, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
  .step-show-page .step-content-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    height: auto;
    min-height: auto;
  }
}

/* line 59, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .step-header-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 18px 20px;
  backdrop-filter: blur(10px);
  margin-bottom: 10px;
}

/* line 69, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .step-header-card .step-header-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* line 74, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .step-header-card .step-header-content .step-header-main-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* line 80, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .step-header-card .step-header-content .step-header-main-row .delete-step-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #a8324a 0%, #7b2d5b 50%, #5c2d5a 100%);
  border: none;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(168, 50, 74, 0.3);
}

/* line 96, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .step-header-card .step-header-content .step-header-main-row .delete-step-btn:hover {
  background: linear-gradient(135deg, #c13a56 0%, #8e3468 50%, #6d3568 100%);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(168, 50, 74, 0.45);
}

/* line 103, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .step-header-card .step-header-content .step-header-main-row .delete-step-btn:active {
  transform: scale(0.98);
}

/* line 109, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .step-header-card .step-header-content .step-header-dates-row {
  display: flex;
  gap: 15px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 116, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .step-header-card .step-header-content .step-title-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
  min-width: 0;
}

/* line 124, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .step-header-card .step-header-content .step-title-group .step-title {
  font-size: clamp(24px, 5vw, 35px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

/* line 134, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .step-header-card .step-header-content .step-title-group .step-title i {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(20px, 4.5vw, 32px);
  flex-shrink: 0;
}

/* line 141, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .step-header-card .step-header-content .step-title-group .edit-title-btn {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 11px;
  flex-shrink: 0;
}

/* line 156, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .step-header-card .step-header-content .step-title-group .edit-title-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.9);
  transform: scale(1.05);
}

/* line 165, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .step-header-card .step-header-content .step-header-right-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

/* line 171, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .step-header-card .step-header-content .step-header-right-group .step-status-group {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* line 176, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .step-header-card .step-header-content .step-header-right-group .step-status-group .step-status-badge {
  padding: 5px 12px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* line 185, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .step-header-card .step-header-content .step-header-right-group .step-status-group .step-status-badge.todo {
  background: rgba(108, 117, 125, 0.2);
  color: #6c757d;
  border: 1px solid rgba(108, 117, 125, 0.3);
}

/* line 191, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .step-header-card .step-header-content .step-header-right-group .step-status-group .step-status-badge.on_going {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

/* line 197, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .step-header-card .step-header-content .step-header-right-group .step-status-group .step-status-badge.done {
  background: rgba(40, 167, 69, 0.2);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

/* line 204, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .step-header-card .step-header-content .step-header-right-group .step-status-group .edit-status-btn {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 11px;
  flex-shrink: 0;
}

/* line 219, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .step-header-card .step-header-content .step-header-right-group .step-status-group .edit-status-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.9);
  transform: scale(1.05);
}

/* line 228, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .step-header-card .step-header-content .step-header-right-group .step-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 237, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .step-header-card .step-header-dates-row .date-field {
  flex: 1;
  min-width: 0;
}

/* line 241, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .step-header-card .step-header-dates-row .date-field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6) !important;
  opacity: 1 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

/* line 252, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .step-header-card .step-header-dates-row .date-field .date-input {
  width: 100%;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  transition: all 0.2s ease;
}

/* line 262, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .step-header-card .step-header-dates-row .date-field .date-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(74, 144, 226, 0.4);
}

/* line 268, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .step-header-card .step-header-dates-row .date-field .date-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 277, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .step-left-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  overflow: hidden;
  min-height: 0;
}

/* line 287, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .contributors-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 15px;
  flex: 0 0 auto;
  height: 290px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* line 298, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .contributors-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-shrink: 0;
}

/* line 305, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .contributors-section .section-header .section-title {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 313, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .contributors-section .section-header .section-title i {
  color: rgba(255, 255, 255, 0.7);
}

/* line 318, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .contributors-section .section-header .contributors-count {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
}

/* line 328, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .contributors-section .contributors-list {
  flex: 1;
  overflow-y: auto;
  /* Scrollbar cohérente avec le projet */
}

/* line 333, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .contributors-section .contributors-list::-webkit-scrollbar {
  width: 3px;
}

/* line 337, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .contributors-section .contributors-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 342, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .contributors-section .contributors-list::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 347, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .contributors-section .contributors-list::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 351, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .contributors-section .contributors-list .contributor-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 8px;
  transition: all 0.2s ease;
}

/* line 362, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .contributors-section .contributors-list .contributor-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

/* line 368, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .contributors-section .contributors-list .contributor-item .contributor-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* line 380, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .contributors-section .contributors-list .contributor-item .contributor-info {
  flex: 1;
}

/* line 383, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .contributors-section .contributors-list .contributor-item .contributor-info .contributor-name {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2px;
}

/* line 390, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .contributors-section .contributors-list .contributor-item .contributor-info .contributor-role {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 399, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .contributors-section .contributors-list .contributor-item .contributor-actions .contact-link-btn {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 12px;
}

/* line 413, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .contributors-section .contributors-list .contributor-item .contributor-actions .contact-link-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  transform: scale(1.05);
}

/* line 422, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .contributors-section .contributors-list .empty-contributors {
  text-align: center;
  padding: 30px 20px;
  color: rgba(255, 255, 255, 0.6);
}

/* line 427, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .contributors-section .contributors-list .empty-contributors i {
  font-size: 24px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.4);
}

/* line 433, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .contributors-section .contributors-list .empty-contributors p {
  font-size: 14px;
  margin-bottom: 5px;
}

/* line 438, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .contributors-section .contributors-list .empty-contributors small, .step-show-page .contributors-section .contributors-list .empty-contributors .small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

/* line 447, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .tasks-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 15px;
  flex: 1;
  height: 500px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 100%;
  min-height: 500px;
}

/* line 460, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .tasks-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-shrink: 0;
}

/* line 467, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .tasks-section .section-header .section-title {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 475, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .tasks-section .section-header .section-title i {
  color: rgba(255, 255, 255, 0.7);
}

/* line 480, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .tasks-section .section-header .add-task-btn {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* line 494, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .tasks-section .section-header .add-task-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
}

/* line 502, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .tasks-section .tasks-list {
  flex: 1;
  overflow-y: auto;
  min-height: 150px;
  max-height: none;
  /* Scrollbar cohérente */
}

/* line 509, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .tasks-section .tasks-list::-webkit-scrollbar {
  width: 3px;
}

/* line 513, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .tasks-section .tasks-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 518, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .tasks-section .tasks-list::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 523, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .tasks-section .tasks-list::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 527, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .tasks-section .tasks-list .task-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 10px;
  transition: all 0.2s ease;
}

/* line 538, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .tasks-section .tasks-list .task-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

/* line 543, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .tasks-section .tasks-list .task-item .task-checkbox-wrapper {
  margin-top: 2px;
}

/* line 546, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .tasks-section .tasks-list .task-item .task-checkbox-wrapper .task-checkbox {
  width: 16px;
  height: 16px;
  accent-color: #28a745;
}

/* line 553, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .tasks-section .tasks-list .task-item .task-content {
  flex: 1;
}

/* line 556, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .tasks-section .tasks-list .task-item .task-content .task-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  line-height: 1.4;
}

/* line 563, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .tasks-section .tasks-list .task-item .task-content .task-label.completed {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.6);
}

/* line 569, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .tasks-section .tasks-list .task-item .task-content .task-assignations {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

/* line 575, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .tasks-section .tasks-list .task-item .task-content .task-assignations .assignation-tag {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background: rgba(74, 144, 226, 0.15);
  border: 1px solid rgba(74, 144, 226, 0.3);
  border-radius: 12px;
  font-size: 11px;
  color: rgba(74, 144, 226, 0.9);
}

/* line 586, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .tasks-section .tasks-list .task-item .task-content .task-assignations .assignation-tag i {
  font-size: 10px;
}

/* line 590, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .tasks-section .tasks-list .task-item .task-content .task-assignations .assignation-tag .remove-assignation {
  background: none;
  border: none;
  color: rgba(74, 144, 226, 0.7);
  cursor: pointer;
  padding: 0;
  margin-left: 4px;
  font-size: 10px;
  transition: color 0.2s ease;
}

/* line 600, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .tasks-section .tasks-list .task-item .task-content .task-assignations .assignation-tag .remove-assignation:hover {
  color: #dc3545;
}

/* line 606, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .tasks-section .tasks-list .task-item .task-content .task-assignations .no-assignation {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

/* line 612, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .tasks-section .tasks-list .task-item .task-content .task-assignations .assign-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 10px;
}

/* line 626, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .tasks-section .tasks-list .task-item .task-content .task-assignations .assign-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

/* line 635, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .tasks-section .tasks-list .task-item .task-actions {
  display: flex;
  gap: 4px;
  margin-top: 2px;
}

/* line 640, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .tasks-section .tasks-list .task-item .task-actions .task-action-btn {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 11px;
}

/* line 654, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .tasks-section .tasks-list .task-item .task-actions .task-action-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

/* line 659, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .tasks-section .tasks-list .task-item .task-actions .task-action-btn.delete-btn:hover {
  background: rgba(220, 53, 69, 0.15);
  border-color: rgba(220, 53, 69, 0.3);
  color: #dc3545;
}

/* line 668, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .tasks-section .tasks-list .empty-tasks {
  text-align: center;
  padding: 40px 20px;
  color: rgba(255, 255, 255, 0.6);
}

/* line 673, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .tasks-section .tasks-list .empty-tasks i {
  font-size: 32px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.4);
}

/* line 679, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .tasks-section .tasks-list .empty-tasks p {
  font-size: 16px;
  margin-bottom: 8px;
}

/* line 684, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .tasks-section .tasks-list .empty-tasks small, .step-show-page .tasks-section .tasks-list .empty-tasks .small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* line 693, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .tasks-section .tasks-list .task-item .task-content .onboarding-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 14px;
  font-size: 11px;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: rgba(255, 255, 255, 0.85) !important;
  line-height: 1;
}

/* line 705, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .tasks-section .tasks-list .task-item .task-content .onboarding-status-badge i {
  color: currentColor;
  opacity: 0.95;
}

/* line 707, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .tasks-section .tasks-list .task-item .task-content .onboarding-status-badge.completed {
  background: rgba(46, 204, 113, 0.18) !important;
  color: #2ecc71 !important;
  border-color: rgba(46, 204, 113, 0.35) !important;
}

/* line 713, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .tasks-section .tasks-list .task-item .task-content .onboarding-status-badge.in_progress {
  background: rgba(255, 193, 7, 0.18) !important;
  color: #ffc107 !important;
  border-color: rgba(255, 193, 7, 0.35) !important;
}

/* line 719, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .tasks-section .tasks-list .task-item .task-content .onboarding-status-badge.pending {
  background: rgba(255, 143, 31, 0.18) !important;
  color: #ff8f1f !important;
  border-color: rgba(255, 143, 31, 0.35) !important;
}

/* line 728, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .tasks-section .tasks-list .task-item .task-content .onboarding-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 14px;
  font-size: 11px;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 1;
}

/* line 740, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .tasks-section .tasks-list .task-item .task-content .onboarding-date-badge i {
  color: currentColor;
  opacity: 0.95;
}

/* line 744, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .step-right-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  overflow: hidden;
  min-height: 0;
}

/* line 754, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .step-left-column > .tasks-section,
.step-show-page .step-right-column > .tasks-section,
.step-show-page .step-right-column > .actions-section {
  height: 500px;
  flex: 1 1 auto;
  min-height: 0;
  box-sizing: border-box;
}

/* line 764, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section {
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* Scrollbar cohérente */
}

/* line 771, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section::-webkit-scrollbar {
  width: 3px;
}

/* line 775, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 780, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 785, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 789, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 12px;
  transition: all 0.2s ease;
}

/* line 796, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

/* line 801, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .subsection-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  margin-bottom: 10px;
}

/* line 808, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .subsection-header .subsection-title {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

/* line 817, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .subsection-header .subsection-title i {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* line 822, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .subsection-header .subsection-title .subsection-chevron {
  margin-left: auto;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  transition: transform 0.2s ease;
}

/* line 832, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .subsection-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 0 0 0;
}

/* line 838, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .subsection-content.collapsed {
  max-height: 0;
  padding: 0;
}

/* line 843, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .subsection-content:not(.collapsed) {
  max-height: 2000px;
  padding: 10px 0 0 0;
}

/* line 849, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .subsection-content .modal-label,
.step-show-page .actions-section .actions-subsection .subsection-content label.modal-label {
  opacity: 1 !important;
  visibility: visible !important;
}

/* line 856, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .subsection-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  margin-bottom: 12px;
  line-height: 1.5;
}

/* line 864, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .onboardings-list,
.step-show-page .actions-section .actions-subsection .notification-rules-list,
.step-show-page .actions-section .actions-subsection .dependencies-list,
.step-show-page .actions-section .actions-subsection .invoices-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

/* line 874, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .onboarding-item,
.step-show-page .actions-section .actions-subsection .notification-rule-item,
.step-show-page .actions-section .actions-subsection .invoice-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 10px;
  transition: all 0.2s ease;
}

/* line 883, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .onboarding-item:hover,
.step-show-page .actions-section .actions-subsection .notification-rule-item:hover,
.step-show-page .actions-section .actions-subsection .invoice-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

/* line 888, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .onboarding-content,
.step-show-page .actions-section .actions-subsection .notification-rule-content,
.step-show-page .actions-section .actions-subsection .invoice-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

/* line 897, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .onboarding-link {
  text-decoration: none;
  color: inherit;
  flex: 1;
  transition: none;
}

/* line 903, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .onboarding-link:hover {
  color: inherit;
  text-decoration: none;
}

/* line 908, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .onboarding-link:visited {
  color: inherit;
}

/* line 913, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .onboarding-info,
.step-show-page .actions-section .actions-subsection .notification-rule-body,
.step-show-page .actions-section .actions-subsection .invoice-info {
  flex: 1;
}

/* line 919, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .onboarding-name,
.step-show-page .actions-section .actions-subsection .notification-title,
.step-show-page .actions-section .actions-subsection .invoice-title {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* line 931, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .onboarding-meta,
.step-show-page .actions-section .actions-subsection .invoice-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* line 938, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .invoice-status-badge {
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
}

/* line 944, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .invoice-status-badge.draft {
  background: rgba(251, 191, 36, 0.2);
  color: rgba(251, 191, 36, 0.9);
  border: 1px solid rgba(251, 191, 36, 0.3);
}

/* line 950, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .invoice-status-badge.sent {
  background: rgba(59, 130, 246, 0.2);
  color: rgba(59, 130, 246, 0.9);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

/* line 956, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .invoice-status-badge.cloture {
  background: rgba(34, 197, 94, 0.2);
  color: rgba(34, 197, 94, 0.9);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

/* line 963, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .invoice-amount {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
}

/* line 969, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .invoice-date {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* line 977, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .invoice-actions {
  display: flex;
  gap: 6px;
}

/* line 982, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .onboarding-actions,
.step-show-page .actions-section .actions-subsection .notification-actions {
  display: flex;
  gap: 6px;
}

/* line 988, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .action-btn-small {
  padding: 6px 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

/* line 1003, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .action-btn-small:hover {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.95);
}

/* line 1008, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .action-btn-small.view-btn:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.4);
}

/* line 1013, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .action-btn-small.edit-btn:hover {
  background: rgba(251, 191, 36, 0.2);
  border-color: rgba(251, 191, 36, 0.4);
}

/* line 1018, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .action-btn-small.delete-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.4);
}

/* line 1024, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .empty-state {
  text-align: center;
  padding: 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

/* line 1030, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .empty-state i {
  font-size: 2em;
  margin-bottom: 10px;
  opacity: 0.5;
  display: block;
}

/* line 1037, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .empty-state p {
  margin-bottom: 6px;
}

/* line 1041, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .empty-state small, .step-show-page .actions-section .actions-subsection .empty-state .small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

/* line 1050, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .billing-content .dependencies-form-actions,
.step-show-page .actions-section .actions-subsection .completion-report-content .dependencies-form-actions,
.step-show-page .actions-section .actions-subsection .dependencies-content .dependencies-form-actions {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* line 1058, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .billing-content .modal-label,
.step-show-page .actions-section .actions-subsection .billing-content label.modal-label,
.step-show-page .actions-section .actions-subsection .billing-content .form-group .modal-label,
.step-show-page .actions-section .actions-subsection .billing-content .form-group label.modal-label,
.step-show-page .actions-section .actions-subsection .completion-report-content .modal-label,
.step-show-page .actions-section .actions-subsection .completion-report-content label.modal-label,
.step-show-page .actions-section .actions-subsection .completion-report-content .form-group .modal-label,
.step-show-page .actions-section .actions-subsection .completion-report-content .form-group label.modal-label,
.step-show-page .actions-section .actions-subsection .dependencies-content .modal-label,
.step-show-page .actions-section .actions-subsection .dependencies-content label.modal-label,
.step-show-page .actions-section .actions-subsection .dependencies-content .form-group .modal-label,
.step-show-page .actions-section .actions-subsection .dependencies-content .form-group label.modal-label {
  opacity: 1 !important;
  visibility: visible !important;
  display: flex !important;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9) !important;
}

/* line 1071, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .billing-content .modal-label i,
.step-show-page .actions-section .actions-subsection .billing-content label.modal-label i,
.step-show-page .actions-section .actions-subsection .billing-content .form-group .modal-label i,
.step-show-page .actions-section .actions-subsection .billing-content .form-group label.modal-label i,
.step-show-page .actions-section .actions-subsection .completion-report-content .modal-label i,
.step-show-page .actions-section .actions-subsection .completion-report-content label.modal-label i,
.step-show-page .actions-section .actions-subsection .completion-report-content .form-group .modal-label i,
.step-show-page .actions-section .actions-subsection .completion-report-content .form-group label.modal-label i,
.step-show-page .actions-section .actions-subsection .dependencies-content .modal-label i,
.step-show-page .actions-section .actions-subsection .dependencies-content label.modal-label i,
.step-show-page .actions-section .actions-subsection .dependencies-content .form-group .modal-label i,
.step-show-page .actions-section .actions-subsection .dependencies-content .form-group label.modal-label i {
  color: var(--primary-color);
  opacity: 1 !important;
}

/* line 1082, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection.lightmode .dependencies-content .modal-label,
.step-show-page .actions-section .actions-subsection.lightmode .dependencies-content label.modal-label,
.step-show-page .actions-section .actions-subsection.lightmode .dependencies-content .form-group .modal-label,
.step-show-page .actions-section .actions-subsection.lightmode .dependencies-content .form-group label.modal-label,
.step-show-page .actions-section .actions-subsection .lightmode .dependencies-content .modal-label,
.step-show-page .actions-section .actions-subsection .lightmode .dependencies-content label.modal-label,
.step-show-page .actions-section .actions-subsection .lightmode .dependencies-content .form-group .modal-label,
.step-show-page .actions-section .actions-subsection .lightmode .dependencies-content .form-group label.modal-label {
  opacity: 1 !important;
  visibility: visible !important;
  color: #140D23 !important;
}

/* line 1090, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection.lightmode .dependencies-content .modal-label i,
.step-show-page .actions-section .actions-subsection.lightmode .dependencies-content label.modal-label i,
.step-show-page .actions-section .actions-subsection.lightmode .dependencies-content .form-group .modal-label i,
.step-show-page .actions-section .actions-subsection.lightmode .dependencies-content .form-group label.modal-label i,
.step-show-page .actions-section .actions-subsection .lightmode .dependencies-content .modal-label i,
.step-show-page .actions-section .actions-subsection .lightmode .dependencies-content label.modal-label i,
.step-show-page .actions-section .actions-subsection .lightmode .dependencies-content .form-group .modal-label i,
.step-show-page .actions-section .actions-subsection .lightmode .dependencies-content .form-group label.modal-label i {
  opacity: 1 !important;
}

/* line 1097, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .dependencies-content,
.step-show-page .actions-section .actions-subsection .validating-action-content,
.step-show-page .actions-section .actions-subsection .step-settings-content,
.step-show-page .actions-section .actions-subsection .formulaires-actions {
  padding: 8px 0;
}

/* line 1104, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .step-setting-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 1109, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .step-setting-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* line 1115, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .step-setting-item .step-setting-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
}

/* line 1124, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .step-setting-item .step-setting-label i {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* line 1131, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .successors-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

/* line 1136, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .successors-list li {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 6px;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 1147, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .successors-list li i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

/* line 1152, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .successors-list li .delay-badge {
  margin-left: auto;
  padding: 4px 8px;
  background: rgba(var(--primary-color-rgb), 0.15);
  border: 1px solid rgba(var(--primary-color-rgb), 0.3);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* line 1165, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .successors-list li .delay-badge i {
  color: var(--primary-color);
  font-size: 10px;
}

/* line 1173, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .notification-header-row,
.step-show-page .actions-section .actions-subsection .notification-info-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

/* line 1182, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .notification-header-row i,
.step-show-page .actions-section .actions-subsection .notification-info-row i {
  width: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* line 1188, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .notification-recipients-count {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}

/* line 1197, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .notification-footer {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 1203, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .actions-section .actions-subsection .report-status {
  margin-bottom: 12px;
}

/* line 1210, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .project-metrics-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 15px;
  flex: 0 0 auto;
}

/* line 1217, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .project-metrics-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

/* line 1223, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .project-metrics-section .section-header .section-title {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 1231, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .project-metrics-section .section-header .section-title i {
  color: rgba(255, 255, 255, 0.7);
}

/* line 1238, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .project-metrics-section .metrics-content .project-info {
  margin-bottom: 20px;
}

/* line 1241, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .project-metrics-section .metrics-content .project-info .project-name {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 8px;
}

/* line 1248, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .project-metrics-section .metrics-content .project-info .project-deadline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* line 1255, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .project-metrics-section .metrics-content .project-info .project-deadline i {
  color: rgba(255, 255, 255, 0.5);
}

/* line 1261, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .project-metrics-section .metrics-content .metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

/* line 1267, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .project-metrics-section .metrics-content .metrics-grid .metric-item {
  text-align: center;
  padding: 12px 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

/* line 1274, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .project-metrics-section .metrics-content .metrics-grid .metric-item .metric-number {
  font-size: 20px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 4px;
}

/* line 1281, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .project-metrics-section .metrics-content .metrics-grid .metric-item .metric-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 1291, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .project-metrics-section .metrics-content .completion-progress .progress-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  font-weight: 500;
}

/* line 1298, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .project-metrics-section .metrics-content .completion-progress .progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

/* line 1305, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .project-metrics-section .metrics-content .completion-progress .progress-bar .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #28a745, #20c997);
  border-radius: 4px;
  transition: width 0.3s ease;
}

/* line 1317, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .description-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 15px;
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* line 1327, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .description-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-shrink: 0;
}

/* line 1334, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .description-section .section-header .section-title {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 1342, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .description-section .section-header .section-title i {
  color: rgba(255, 255, 255, 0.7);
}

/* line 1347, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .description-section .section-header .edit-description-btn {
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* line 1361, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .description-section .section-header .edit-description-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
}

/* line 1369, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .description-section .description-content {
  flex: 1;
  overflow-y: auto;
  /* Scrollbar cohérente */
}

/* line 1374, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .description-section .description-content::-webkit-scrollbar {
  width: 3px;
}

/* line 1378, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .description-section .description-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 1383, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .description-section .description-content::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 1388, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .description-section .description-content::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 1392, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .description-section .description-content .description-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
}

/* line 1397, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .description-section .description-content .description-text p {
  margin-bottom: 12px;
}

/* line 1402, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .description-section .description-content .empty-description {
  text-align: center;
  padding: 40px 20px;
  color: rgba(255, 255, 255, 0.6);
}

/* line 1407, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .description-section .description-content .empty-description i {
  font-size: 32px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.4);
}

/* line 1413, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .description-section .description-content .empty-description p {
  font-size: 16px;
  margin-bottom: 8px;
}

/* line 1418, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .description-section .description-content .empty-description small, .step-show-page .description-section .description-content .empty-description .small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* line 1428, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .step-description-row .description-section {
  flex: 0 0 auto;
  max-height: 180px;
}

/* line 1433, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .step-description-row .description-content {
  max-height: 130px;
}

/* line 1439, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .validating-action-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 15px;
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* line 1449, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .validating-action-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-shrink: 0;
}

/* line 1456, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .validating-action-section .section-header .section-title {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 1464, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .validating-action-section .section-header .section-title i {
  color: rgba(255, 255, 255, 0.7);
}

/* line 1469, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .validating-action-section .section-header .edit-validating-action-btn {
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* line 1483, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .validating-action-section .section-header .edit-validating-action-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
}

/* line 1491, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .validating-action-section .validating-action-content {
  flex: 1;
  overflow-y: auto;
}

/* line 1496, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .validating-action-section .validating-action-content .validating-action-display .validating-action-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 1505, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .validating-action-section .validating-action-content .validating-action-display .validating-action-item i {
  font-size: 20px;
  color: rgba(74, 144, 226, 0.8);
  margin-bottom: 4px;
}

/* line 1511, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .validating-action-section .validating-action-content .validating-action-display .validating-action-item span {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

/* line 1517, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .validating-action-section .validating-action-content .validating-action-display .validating-action-item small, .step-show-page .validating-action-section .validating-action-content .validating-action-display .validating-action-item .small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

/* line 1525, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .validating-action-section .validating-action-content .empty-validating-action {
  text-align: center;
  padding: 40px 20px;
  color: rgba(255, 255, 255, 0.6);
}

/* line 1530, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .validating-action-section .validating-action-content .empty-validating-action i {
  font-size: 32px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.4);
}

/* line 1536, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .validating-action-section .validating-action-content .empty-validating-action p {
  font-size: 16px;
  margin-bottom: 8px;
}

/* line 1541, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .validating-action-section .validating-action-content .empty-validating-action small, .step-show-page .validating-action-section .validating-action-content .empty-validating-action .small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* line 1550, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .step-validating-action-row {
  margin-bottom: 10px;
}

/* line 1553, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .step-validating-action-row .validating-action-section {
  flex: 0 0 auto;
  max-height: 180px;
}

/* line 1558, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .step-validating-action-row .validating-action-content {
  max-height: 130px;
}

/* line 1564, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .step-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 10px;
  padding-top: 10px;
}

/* line 1571, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .step-actions .form-button, .step-show-page .step-actions .users-management-container .users-header .add-user-btn, .users-management-container .users-header .step-show-page .step-actions .add-user-btn, .step-show-page .step-actions .crm-action-button {
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

/* line 1582, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .step-actions .form-button.btn-secondary, .step-show-page .step-actions .users-management-container .users-header .btn-secondary.add-user-btn, .users-management-container .users-header .step-show-page .step-actions .btn-secondary.add-user-btn, .step-show-page .step-actions .btn-secondary.crm-action-button, .step-show-page .step-actions .crm-action-button.crm-action-button-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

/* line 1587, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .step-actions .form-button.btn-secondary:hover, .step-show-page .step-actions .users-management-container .users-header .btn-secondary.add-user-btn:hover, .users-management-container .users-header .step-show-page .step-actions .btn-secondary.add-user-btn:hover, .step-show-page .step-actions .btn-secondary.crm-action-button:hover, .step-show-page .step-actions .crm-action-button.crm-action-button-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
}

/* line 1594, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .step-actions .form-button.btn-primary, .step-show-page .step-actions .users-management-container .users-header .btn-primary.add-user-btn, .users-management-container .users-header .step-show-page .step-actions .btn-primary.add-user-btn, .step-show-page .step-actions .btn-primary.crm-action-button, .step-show-page .step-actions .crm-action-button.crm-action-button-primary {
  background: rgba(74, 144, 226, 0.15);
  border: 1px solid rgba(74, 144, 226, 0.3);
  color: rgba(74, 144, 226, 0.9);
}

/* line 1599, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.step-show-page .step-actions .form-button.btn-primary:hover, .step-show-page .step-actions .users-management-container .users-header .btn-primary.add-user-btn:hover, .users-management-container .users-header .step-show-page .step-actions .btn-primary.add-user-btn:hover, .step-show-page .step-actions .btn-primary.crm-action-button:hover, .step-show-page .step-actions .crm-action-button.crm-action-button-primary:hover {
  background: rgba(74, 144, 226, 0.25);
  border-color: rgba(74, 144, 226, 0.5);
  color: #4a90e2;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  /* line 15, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
  .step-show-page {
    padding: 10px;
  }
  /* line 1613, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
  .step-show-page .step-header-card {
    padding: 15px;
  }
  /* line 1616, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
  .step-show-page .step-header-card .step-header-content {
    gap: 15px;
  }
  /* line 1619, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
  .step-show-page .step-header-card .step-header-content .step-header-main-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  /* line 1624, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
  .step-show-page .step-header-card .step-header-content .step-header-main-row .step-title-group {
    width: 100%;
    justify-content: flex-start;
  }
  /* line 1628, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
  .step-show-page .step-header-card .step-header-content .step-header-main-row .step-title-group .step-title {
    font-size: 28px;
  }
  /* line 1631, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
  .step-show-page .step-header-card .step-header-content .step-header-main-row .step-title-group .step-title i {
    font-size: 26px;
  }
  /* line 1637, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
  .step-show-page .step-header-card .step-header-content .step-header-main-row .step-header-right-group {
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }
  /* line 1644, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
  .step-show-page .step-header-card .step-header-content .step-header-dates-row {
    flex-direction: column;
    gap: 12px;
  }
  /* line 1648, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
  .step-show-page .step-header-card .step-header-content .step-header-dates-row .date-field {
    width: 100%;
  }
  /* line 1655, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
  .step-show-page .step-content-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    height: auto;
  }
  /* line 1661, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
  .step-show-page .contributors-section,
.step-show-page .tasks-section,
.step-show-page .project-metrics-section,
.step-show-page .description-section {
    max-height: none;
    height: auto;
  }
  /* line 1669, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
  .step-show-page .metrics-grid {
    grid-template-columns: 1fr !important;
    gap: 8px;
  }
  /* line 1674, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
  .step-show-page .step-actions {
    flex-direction: column;
  }
  /* line 1677, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
  .step-show-page .step-actions .form-button, .step-show-page .step-actions .users-management-container .users-header .add-user-btn, .users-management-container .users-header .step-show-page .step-actions .add-user-btn, .step-show-page .step-actions .crm-action-button {
    text-align: center;
    justify-content: center;
  }
}

/* line 1685, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.task-label.completed {
  text-decoration: line-through;
  opacity: 0.6;
}

/* line 1691, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.project-step__action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 4px;
  font-size: 0.75em;
  transition: background 0.2s;
}

/* line 1703, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.project-step__action-btn:hover {
  background: #65656545;
}

/* line 1708, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.project-step__visibility-btn {
  color: rgba(255, 255, 255, 0.55);
}

/* line 1711, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.project-step__visibility-btn.project-step__hidden {
  color: #aaaaaaf9;
}

/* line 1716, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.project-step__deadline-btn {
  color: rgba(255, 255, 255, 0.55);
}

/* line 1720, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.project-step__delete-btn {
  color: #dc354693;
}

/* line 1723, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.project-step__delete-btn:hover {
  background: #65656545;
}

/* line 1728, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.project-step__hidden {
  display: none !important;
}

/* line 1733, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .step-show-page {
  color: #140D23 !important;
}

/* line 1738, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .step-header-card {
  border: 1px solid rgba(20, 13, 35, 0.12);
  color: #140D23 !important;
}

/* line 1743, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .step-show-page .step-header-card .step-header-content .step-title-section .step-title-group .step-title {
  color: #140D23 !important;
}

/* line 1746, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .step-show-page .step-header-card .step-header-content .step-title-section .step-title-group .step-title i {
  color: rgba(20, 13, 35, 0.7) !important;
}

/* line 1751, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .step-show-page .step-header-card .step-header-content .step-title-section .step-title-group .edit-title-btn {
  color: #140D23 !important;
  background: rgba(20, 13, 35, 0.05);
  border: 1px solid rgba(20, 13, 35, 0.15);
}

/* line 1756, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .step-show-page .step-header-card .step-header-content .step-title-section .step-title-group .edit-title-btn:hover {
  background: rgba(195, 135, 97, 0.1);
  color: #C38761 !important;
  border-color: rgba(195, 135, 97, 0.3);
}

/* line 1763, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .step-show-page .step-header-card .step-header-content .step-title-section .step-status-group .step-status-badge {
  color: #140D23 !important;
}

/* line 1766, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .step-show-page .step-header-card .step-header-content .step-title-section .step-status-group .step-status-badge.todo {
  background: rgba(20, 13, 35, 0.08);
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 1772, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .step-show-page .step-header-card .step-header-content .step-title-section .step-status-group .step-status-badge.on_going {
  background: rgba(195, 135, 97, 0.15);
  color: #C38761;
  border: 1px solid rgba(195, 135, 97, 0.3);
}

/* line 1778, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .step-show-page .step-header-card .step-header-content .step-title-section .step-status-group .step-status-badge.done {
  background: rgba(40, 167, 69, 0.15);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

/* line 1785, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .step-show-page .step-header-card .step-header-content .step-title-section .step-status-group .edit-status-btn {
  color: #140D23 !important;
  background: rgba(20, 13, 35, 0.05);
  border: 1px solid rgba(20, 13, 35, 0.15);
}

/* line 1790, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .step-show-page .step-header-card .step-header-content .step-title-section .step-status-group .edit-status-btn:hover {
  background: rgba(195, 135, 97, 0.1);
  color: #C38761 !important;
  border-color: rgba(195, 135, 97, 0.3);
}

/* line 1799, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .step-show-page .step-header-card .step-header-content .step-header-actions .validating-action-selector-wrapper .validating-action-icon {
  color: rgba(20, 13, 35, 0.7) !important;
}

/* line 1802, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .step-show-page .step-header-card .step-header-content .step-header-actions .validating-action-selector-wrapper .validating-action-icon:hover {
  color: #C38761 !important;
}

/* line 1807, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .step-show-page .step-header-card .step-header-content .step-header-actions .validating-action-selector-wrapper .validating-action-select {
  background: rgba(20, 13, 35, 0.05) !important;
  border: 1px solid rgba(20, 13, 35, 0.15) !important;
  color: #140D23 !important;
}

/* line 1812, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .step-show-page .step-header-card .step-header-content .step-header-actions .validating-action-selector-wrapper .validating-action-select:hover {
  background: rgba(20, 13, 35, 0.08) !important;
  border-color: rgba(20, 13, 35, 0.25) !important;
}

/* line 1817, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .step-show-page .step-header-card .step-header-content .step-header-actions .validating-action-selector-wrapper .validating-action-select:focus {
  background: rgba(20, 13, 35, 0.1) !important;
  border-color: #C38761 !important;
}

/* line 1822, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .step-show-page .step-header-card .step-header-content .step-header-actions .validating-action-selector-wrapper .validating-action-select option {
  background: #ffffff;
  color: #140D23;
}

/* line 1829, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .step-show-page .step-header-card .step-header-content .step-header-actions .action-btn {
  color: #140D23 !important;
  background: rgba(20, 13, 35, 0.05);
  border: 1px solid rgba(20, 13, 35, 0.15);
}

/* line 1834, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .step-show-page .step-header-card .step-header-content .step-header-actions .action-btn i {
  color: rgba(20, 13, 35, 0.7) !important;
}

/* line 1838, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .step-show-page .step-header-card .step-header-content .step-header-actions .action-btn:hover {
  background: rgba(195, 135, 97, 0.1);
  color: #C38761 !important;
  border-color: rgba(195, 135, 97, 0.3);
}

/* line 1843, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .step-show-page .step-header-card .step-header-content .step-header-actions .action-btn:hover i {
  color: #C38761 !important;
}

/* line 1851, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .step-show-page .step-header-card .step-header-content .step-header-main-row .delete-step-btn {
  background: linear-gradient(135deg, #a8324a 0%, #7b2d5b 50%, #5c2d5a 100%);
  border: none;
  color: rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 2px 8px rgba(168, 50, 74, 0.25);
}

/* line 1857, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .step-show-page .step-header-card .step-header-content .step-header-main-row .delete-step-btn:hover {
  background: linear-gradient(135deg, #c13a56 0%, #8e3468 50%, #6d3568 100%);
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(168, 50, 74, 0.4);
}

/* line 1864, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .step-show-page .step-header-card .step-header-content .step-header-meta-row .step-meta-label {
  color: #140D23 !important;
}

/* line 1868, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .step-show-page .step-header-card .step-header-content .step-header-meta-row .step-dates-group .date-field label {
  color: #140D23 !important;
}

/* line 1872, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .step-show-page .step-header-card .step-header-content .step-header-meta-row .step-dates-group .date-field .date-input {
  color: #140D23 !important;
  background: rgba(20, 13, 35, 0.03);
  border: 1px solid rgba(20, 13, 35, 0.15);
}

/* line 1877, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .step-show-page .step-header-card .step-header-content .step-header-meta-row .step-dates-group .date-field .date-input:focus {
  background: rgba(20, 13, 35, 0.05);
  border-color: #C38761;
}

/* line 1882, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .step-show-page .step-header-card .step-header-content .step-header-meta-row .step-dates-group .date-field .date-input::placeholder {
  color: rgba(20, 13, 35, 0.5) !important;
}

/* line 1888, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .contributors-section,
.lightmode .tasks-section,
.lightmode .project-metrics-section,
.lightmode .description-section {
  background: rgba(20, 13, 35, 0.02);
  border: 1px solid rgba(20, 13, 35, 0.08);
  color: #140D23 !important;
}

/* line 1898, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .section-title {
  color: #140D23 !important;
}

/* line 1901, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .section-title i {
  color: rgba(20, 13, 35, 0.7) !important;
}

/* line 1907, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .contributor-item {
  background: rgba(20, 13, 35, 0.02);
  border: 1px solid rgba(20, 13, 35, 0.05);
  color: #140D23 !important;
}

/* line 1912, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .contributor-item:hover {
  background: rgba(20, 13, 35, 0.04);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 1918, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .contributor-name {
  color: #140D23 !important;
}

/* line 1922, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .contributor-role {
  color: rgba(20, 13, 35, 0.6) !important;
}

/* line 1926, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .contributor-avatar {
  background: rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.7) !important;
}

/* line 1931, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .contact-link-btn {
  background: rgba(20, 13, 35, 0.05);
  border: 1px solid rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.7) !important;
}

/* line 1936, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .contact-link-btn:hover {
  background: rgba(195, 135, 97, 0.1);
  color: #C38761 !important;
}

/* line 1942, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .empty-contributors,
.lightmode .empty-tasks,
.lightmode .empty-description {
  color: rgba(20, 13, 35, 0.6) !important;
}

/* line 1947, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .empty-contributors i,
.lightmode .empty-tasks i,
.lightmode .empty-description i {
  color: rgba(20, 13, 35, 0.4) !important;
}

/* line 1951, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .empty-contributors small, .lightmode .empty-contributors .small,
.lightmode .empty-tasks small,
.lightmode .empty-tasks .small,
.lightmode .empty-description small,
.lightmode .empty-description .small {
  color: rgba(20, 13, 35, 0.5) !important;
}

/* line 1957, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .task-item {
  background: rgba(20, 13, 35, 0.02);
  border: 1px solid rgba(20, 13, 35, 0.05);
  color: #140D23 !important;
}

/* line 1962, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .task-item:hover {
  background: rgba(20, 13, 35, 0.04);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 1968, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .task-label {
  color: #140D23 !important;
}

/* line 1971, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .task-label.completed {
  color: rgba(20, 13, 35, 0.6) !important;
}

/* line 1976, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .assignation-tag {
  background: rgba(195, 135, 97, 0.15);
  border: 1px solid rgba(195, 135, 97, 0.3);
  color: #C38761 !important;
}

/* line 1981, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .assignation-tag .remove-assignation {
  color: rgba(195, 135, 97, 0.7) !important;
}

/* line 1984, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .assignation-tag .remove-assignation:hover {
  color: #dc3545 !important;
}

/* line 1990, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .no-assignation {
  color: rgba(20, 13, 35, 0.5) !important;
}

/* line 1994, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .assign-btn {
  background: rgba(20, 13, 35, 0.05);
  border: 1px solid rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.6) !important;
}

/* line 1999, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .assign-btn:hover {
  background: rgba(195, 135, 97, 0.1);
  color: #C38761 !important;
}

/* line 2005, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .task-action-btn {
  background: rgba(20, 13, 35, 0.05);
  border: 1px solid rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.6) !important;
}

/* line 2010, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .task-action-btn:hover {
  background: rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.8) !important;
}

/* line 2015, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .task-action-btn.delete-btn:hover {
  background: rgba(220, 53, 69, 0.15);
  border-color: rgba(220, 53, 69, 0.3);
  color: #dc3545 !important;
}

/* line 2022, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .add-task-btn {
  background: rgba(20, 13, 35, 0.08);
  border: 1px solid rgba(20, 13, 35, 0.15);
  color: rgba(20, 13, 35, 0.8) !important;
}

/* line 2027, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .add-task-btn:hover {
  background: rgba(195, 135, 97, 0.1);
  color: #C38761 !important;
}

/* line 2034, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .project-name {
  color: #140D23 !important;
}

/* line 2038, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .project-deadline {
  color: rgba(20, 13, 35, 0.7) !important;
}

/* line 2041, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .project-deadline i {
  color: rgba(20, 13, 35, 0.5) !important;
}

/* line 2046, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .metric-item {
  background: rgba(20, 13, 35, 0.02);
  border: 1px solid rgba(20, 13, 35, 0.05);
}

/* line 2051, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .metric-number {
  color: #140D23 !important;
}

/* line 2055, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .metric-label {
  color: rgba(20, 13, 35, 0.6) !important;
}

/* line 2059, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .progress-label {
  color: rgba(20, 13, 35, 0.8) !important;
}

/* line 2063, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .progress-bar {
  background: rgba(20, 13, 35, 0.1) !important;
}

/* line 2067, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .progress-fill {
  background: linear-gradient(90deg, #C38761 0%, #28a745 100%) !important;
}

/* line 2072, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .description-text {
  color: rgba(20, 13, 35, 0.8) !important;
}

/* line 2076, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .edit-description-btn {
  background: rgba(20, 13, 35, 0.08);
  border: 1px solid rgba(20, 13, 35, 0.15);
  color: rgba(20, 13, 35, 0.8) !important;
}

/* line 2081, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .edit-description-btn:hover {
  background: rgba(195, 135, 97, 0.1);
  color: #C38761 !important;
}

/* line 2089, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .form-button.btn-secondary, .lightmode .users-management-container .users-header .btn-secondary.add-user-btn, .users-management-container .users-header .lightmode .btn-secondary.add-user-btn, .lightmode .btn-secondary.crm-action-button, .lightmode .crm-action-button.crm-action-button-secondary {
  background: rgba(20, 13, 35, 0.05);
  border: 1px solid rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.8) !important;
}

/* line 2094, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .form-button.btn-secondary:hover, .lightmode .users-management-container .users-header .btn-secondary.add-user-btn:hover, .users-management-container .users-header .lightmode .btn-secondary.add-user-btn:hover, .lightmode .btn-secondary.crm-action-button:hover, .lightmode .crm-action-button.crm-action-button-secondary:hover {
  background: rgba(20, 13, 35, 0.08);
  color: #140D23 !important;
}

/* line 2100, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .form-button.btn-primary, .lightmode .users-management-container .users-header .btn-primary.add-user-btn, .users-management-container .users-header .lightmode .btn-primary.add-user-btn, .lightmode .btn-primary.crm-action-button, .lightmode .crm-action-button.crm-action-button-primary {
  background: rgba(195, 135, 97, 0.15);
  border: 1px solid rgba(195, 135, 97, 0.3);
  color: #140D23 !important;
}

/* line 2105, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .form-button.btn-primary:hover, .lightmode .users-management-container .users-header .btn-primary.add-user-btn:hover, .users-management-container .users-header .lightmode .btn-primary.add-user-btn:hover, .lightmode .btn-primary.crm-action-button:hover, .lightmode .crm-action-button.crm-action-button-primary:hover {
  background: rgba(195, 135, 97, 0.25);
  border-color: rgba(195, 135, 97, 0.5);
  color: #C38761 !important;
}

/* line 2114, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .project-step__action-btn {
  color: #140D23 !important;
}

/* line 2117, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .project-step__action-btn:hover {
  background: rgba(20, 13, 35, 0.1);
}

/* line 2122, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .project-step__visibility-btn {
  color: rgba(20, 13, 35, 0.55) !important;
}

/* line 2125, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .project-step__visibility-btn.project-step__hidden {
  color: rgba(20, 13, 35, 0.3) !important;
}

/* line 2130, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .project-step__deadline-btn {
  color: rgba(20, 13, 35, 0.55) !important;
}

/* line 2134, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .project-step__delete-btn {
  color: rgba(220, 53, 69, 0.7) !important;
}

/* line 2137, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .project-step__delete-btn:hover {
  background: rgba(220, 53, 69, 0.1);
}

/* line 2143, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode ::-webkit-scrollbar-thumb {
  background: #C38761;
}

/* line 2147, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode ::-webkit-scrollbar-thumb:hover {
  background: #140D23;
}

/* line 2152, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_show_step.scss */
.lightmode .contributors-count {
  background: rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.8) !important;
}

/* line 4, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_inline_edit.scss */
.inline-edit-input,
.inline-edit-select,
.inline-edit-textarea,
.inline-edit-date-input {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 4px 8px;
  transition: all 0.2s ease;
  cursor: pointer;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

/* line 19, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_inline_edit.scss */
.inline-edit-input:hover,
.inline-edit-select:hover,
.inline-edit-textarea:hover,
.inline-edit-date-input:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}

/* line 24, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_inline_edit.scss */
.inline-edit-input:focus,
.inline-edit-select:focus,
.inline-edit-textarea:focus,
.inline-edit-date-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  cursor: text;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

/* line 32, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_inline_edit.scss */
.inline-edit-input::placeholder,
.inline-edit-select::placeholder,
.inline-edit-textarea::placeholder,
.inline-edit-date-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

/* line 39, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_inline_edit.scss */
.inline-edit-input {
  width: 100%;
  min-width: 200px;
}

/* line 45, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_inline_edit.scss */
.inline-edit-select {
  padding: 4px 24px 4px 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 12px;
  appearance: none;
  cursor: pointer;
}

/* line 54, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_inline_edit.scss */
.inline-edit-select option {
  background: rgba(30, 30, 30, 0.95);
  color: rgba(255, 255, 255, 0.9);
}

/* line 61, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_inline_edit.scss */
.inline-edit-textarea {
  width: 100%;
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}

/* line 69, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_inline_edit.scss */
.inline-edit-date-input {
  min-width: 150px;
}

/* line 73, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_inline_edit.scss */
.inline-edit-date-input.flatpickr-input {
  cursor: pointer;
}

/* line 78, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_inline_edit.scss */
.inline-edit-date-input.flatpickr-input[readonly] {
  cursor: pointer;
}

/* line 83, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_inline_edit.scss */
.inline-edit-date-input.flatpickr-input.active {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

/* line 102, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_inline_edit.scss */
.step-dates-section .date-input.inline-edit-date-input.flatpickr-input {
  cursor: pointer;
}

/* line 107, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_inline_edit.scss */
.step-dates-section .date-input.inline-edit-date-input.flatpickr-input.active {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

/* line 123, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_inline_edit.scss */
.date-picker-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 4px 8px;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 137, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_inline_edit.scss */
.date-picker-trigger:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}

/* line 142, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_inline_edit.scss */
.date-picker-trigger .date-display {
  flex: 1;
}

/* line 146, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_inline_edit.scss */
.date-picker-trigger i {
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

/* line 151, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_inline_edit.scss */
.date-picker-trigger:hover i {
  opacity: 1;
}

/* line 158, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_inline_edit.scss */
.step-title-group .step-title.inline-edit-input {
  font-size: 24px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  padding: 4px 8px;
  border: 1px solid transparent;
}

/* line 165, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_inline_edit.scss */
.step-title-group .step-title.inline-edit-input:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}

/* line 170, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_inline_edit.scss */
.step-title-group .step-title.inline-edit-input:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
}

/* line 176, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_inline_edit.scss */
.step-title-group .step-title-icon {
  color: rgba(255, 255, 255, 0.7);
  margin-left: 8px;
}

/* line 184, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_inline_edit.scss */
.step-status-group .step-status-select.inline-edit-select {
  font-size: 14px;
  font-weight: 600;
  padding: 6px 28px 6px 10px;
  min-width: 120px;
}

/* line 193, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_inline_edit.scss */
.description-textarea.inline-edit-textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px;
  color: rgba(255, 255, 255, 0.9);
  min-height: 150px;
}

/* line 201, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_inline_edit.scss */
.description-textarea.inline-edit-textarea:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}

/* line 206, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_inline_edit.scss */
.description-textarea.inline-edit-textarea:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
}

/* line 213, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_inline_edit.scss */
.project-title.inline-edit-input {
  font-size: 28px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  padding: 8px 12px;
  border: 1px solid transparent;
  margin-bottom: 16px;
}

/* line 221, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_inline_edit.scss */
.project-title.inline-edit-input:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}

/* line 226, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_inline_edit.scss */
.project-title.inline-edit-input:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
}

/* line 236, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_inline_edit.scss */
.project-meta-grid .meta-item .value .inline-edit-date-input,
.project-meta-grid .meta-item .value .inline-edit-select {
  width: 100%;
  min-width: 150px;
}

/* line 242, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_inline_edit.scss */
.project-meta-grid .meta-item .value .status-select.inline-edit-select {
  font-weight: 600;
  padding: 6px 28px 6px 10px;
}

/* line 252, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_inline_edit.scss */
.crm-main-card.lightmode .inline-edit-input,
.crm-main-card.lightmode .inline-edit-select,
.crm-main-card.lightmode .inline-edit-textarea,
.crm-main-card.lightmode .inline-edit-date-input {
  color: rgba(51, 51, 51, 0.9);
}

/* line 258, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_inline_edit.scss */
.crm-main-card.lightmode .inline-edit-input:hover,
.crm-main-card.lightmode .inline-edit-select:hover,
.crm-main-card.lightmode .inline-edit-textarea:hover,
.crm-main-card.lightmode .inline-edit-date-input:hover {
  background: rgba(51, 51, 51, 0.05);
  border-color: rgba(51, 51, 51, 0.15);
}

/* line 263, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_inline_edit.scss */
.crm-main-card.lightmode .inline-edit-input:focus,
.crm-main-card.lightmode .inline-edit-select:focus,
.crm-main-card.lightmode .inline-edit-textarea:focus,
.crm-main-card.lightmode .inline-edit-date-input:focus {
  background: rgba(51, 51, 51, 0.08);
  border-color: rgba(51, 51, 51, 0.25);
  box-shadow: 0 0 0 2px rgba(51, 51, 51, 0.1);
}

/* line 269, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_inline_edit.scss */
.crm-main-card.lightmode .inline-edit-input::placeholder,
.crm-main-card.lightmode .inline-edit-select::placeholder,
.crm-main-card.lightmode .inline-edit-textarea::placeholder,
.crm-main-card.lightmode .inline-edit-date-input::placeholder {
  color: rgba(51, 51, 51, 0.4);
}

/* line 275, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_inline_edit.scss */
.crm-main-card.lightmode .inline-edit-date-input.flatpickr-input.active {
  background: rgba(51, 51, 51, 0.08);
  border-color: rgba(51, 51, 51, 0.25);
  box-shadow: 0 0 0 2px rgba(51, 51, 51, 0.1);
}

/* line 281, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_inline_edit.scss */
.crm-main-card.lightmode .date-picker-trigger {
  color: rgba(51, 51, 51, 0.9);
}

/* line 284, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_inline_edit.scss */
.crm-main-card.lightmode .date-picker-trigger:hover {
  background: rgba(51, 51, 51, 0.05);
  border-color: rgba(51, 51, 51, 0.15);
}

/* line 290, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_inline_edit.scss */
.crm-main-card.lightmode .step-title.inline-edit-input {
  color: rgba(51, 51, 51, 0.95);
}

/* line 294, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_inline_edit.scss */
.crm-main-card.lightmode .description-textarea.inline-edit-textarea {
  background: rgba(51, 51, 51, 0.03);
  border-color: rgba(51, 51, 51, 0.1);
  color: rgba(51, 51, 51, 0.9);
}

/* line 299, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_inline_edit.scss */
.crm-main-card.lightmode .description-textarea.inline-edit-textarea:hover {
  background: rgba(51, 51, 51, 0.05);
  border-color: rgba(51, 51, 51, 0.15);
}

/* line 304, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_inline_edit.scss */
.crm-main-card.lightmode .description-textarea.inline-edit-textarea:focus {
  background: rgba(51, 51, 51, 0.08);
  border-color: rgba(51, 51, 51, 0.25);
}

/* line 310, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_inline_edit.scss */
.crm-main-card.lightmode .project-title.inline-edit-input {
  color: rgba(51, 51, 51, 0.95);
}

/* Portail public projet — styles inspirés du module gestion de projet */
/* line 3, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.portal-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* line 9, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.portal-show-page.project-show-page {
  margin: 0 auto;
  padding: 0 16px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* line 18, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.portal-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* line 24, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.portal-header h1, .portal-header .h1 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
}

/* line 30, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.portal-header__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* line 37, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.portal-header__chips {
  display: flex;
  gap: 6px;
}

/* line 43, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 52, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.crm-main-card.lightmode .chip {
  border-color: rgba(51, 51, 51, 0.2);
}

/* line 56, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.portal-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* line 62, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.portal-steps__header {
  margin: 12px 0 16px;
}

/* line 66, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.progress-rail {
  position: relative;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  overflow: hidden;
  margin: 8px 0 12px;
}

/* line 74, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.crm-main-card.lightmode .progress-rail {
  background: rgba(51, 51, 51, 0.15);
}

/* line 78, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.progress-rail__bar {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0%;
  background: #C38761;
  transition: width 220ms ease;
}

/* line 89, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.steps-rail {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 6px 2px;
}

/* line 95, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.steps-rail__segment-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* line 101, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.steps-rail__segment {
  width: 36px;
  height: 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
}

/* line 110, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.steps-rail__segment.is-completed {
  background: rgba(46, 204, 113, 0.5);
  border-color: rgba(46, 204, 113, 0.8);
}

/* line 116, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.portal-detail {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 121, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.portal-detail__progress {
  margin: 12px 0;
}

/* line 124, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.portal-detail__progress .progress-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  width: 100%;
  overflow: hidden;
}

/* line 131, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.crm-main-card.lightmode .portal-detail__progress .progress-bar {
  background: rgba(51, 51, 51, 0.15);
}

/* line 136, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.portal-detail__progress .progress-fill {
  height: 100%;
  background: #C38761;
  border-radius: 6px;
  transition: width 0.3s ease;
}

/* line 143, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.portal-detail__progress small, .portal-detail__progress .small {
  display: block;
  text-align: center;
  margin-top: 4px;
  opacity: 0.7;
  font-size: 0.8rem;
}

/* line 153, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.detail-card__actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 16px;
}

/* line 160, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.portal-step-card.is-completed .progress-fill {
  background: #2ecc71;
}

/* Styles pour les questions/formulaires dans la carte de détail */
/* line 166, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.portal-steps__detail-content .question-label {
  opacity: 1 !important;
  color: inherit;
}

/* line 171, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.portal-steps__detail-content .portal-detail__questions .question-item label {
  opacity: 1 !important;
  color: inherit;
}

/* line 176, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.portal-steps__detail-content .choice label {
  opacity: 1 !important;
  color: inherit;
}

/* line 181, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.portal-steps__detail-content .form-input {
  text-align: start;
}

/* ==========================================================================
   BANNIERE D'INFORMATION - Espaces Projet
   ========================================================================== */
/* line 190, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.project-portals-info-banner {
  position: relative;
  background: linear-gradient(135deg, rgba(227, 242, 253, 0.15) 0%, rgba(187, 222, 251, 0.15) 100%);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  padding-right: 3rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid #C38761;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* line 200, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.project-portals-info-banner .info-banner-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

/* line 205, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.project-portals-info-banner .info-banner-content > i {
  color: #C38761;
  font-size: 1.25rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

/* line 214, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.project-portals-info-banner .info-banner-text strong {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.5rem;
}

/* line 221, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.project-portals-info-banner .info-banner-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* line 229, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.project-portals-info-banner .info-banner-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 245, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.project-portals-info-banner .info-banner-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}

/* line 250, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.project-portals-info-banner .info-banner-close i {
  font-size: 0.85rem;
}

/* Lightmode */
/* line 257, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.lightmode .project-portals-info-banner {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

/* line 261, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.lightmode .project-portals-info-banner .info-banner-text strong {
  color: #1565c0;
}

/* line 265, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.lightmode .project-portals-info-banner .info-banner-text p {
  color: #424242;
}

/* line 270, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.lightmode .project-portals-info-banner .info-banner-close {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.4);
}

/* line 274, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.lightmode .project-portals-info-banner .info-banner-close:hover {
  background: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.7);
}

/* ==========================================================================
   ELEMENTS D'AIDE CONTEXTUELLE
   ========================================================================== */
/* line 285, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.form-help-icon {
  color: rgba(255, 255, 255, 0.5);
  margin-left: 0.5rem;
  cursor: help;
  font-size: 0.85em;
  transition: color 0.2s ease;
}

/* line 292, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.form-help-icon:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* line 297, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.lightmode .form-help-icon {
  color: #90a4ae;
}

/* line 300, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.lightmode .form-help-icon:hover {
  color: #607d8b;
}

/* line 305, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.text-emphasis {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: #C38761;
  font-weight: 500;
  margin-top: 0.5rem;
}

/* line 313, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.text-emphasis i {
  font-size: 0.9em;
}

/* line 318, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.lightmode .text-emphasis {
  color: #bc794f;
}

/* line 322, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.text-success {
  color: #2ecc71 !important;
}

/* line 326, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.text-muted {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* line 331, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal.scss */
.lightmode .text-muted {
  color: #6c757d !important;
}

/* line 1, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/portals/_index.scss */
.project-portals-grid-wrapper {
  padding: 12px 16px 24px;
}

/* line 5, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/portals/_index.scss */
.project-portals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media (min-width: 640px) {
  /* line 5, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/portals/_index.scss */
  .project-portals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  /* line 5, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/portals/_index.scss */
  .project-portals-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* line 18, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/portals/_index.scss */
.project-portal-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 14px;
  cursor: pointer;
  outline: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

/* line 33, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/portals/_index.scss */
.leads-board-capsule.lightmode .project-portal-card {
  background: rgba(12, 11, 11, 0.04);
  border-color: rgba(0, 0, 0, 0.06);
}

/* line 38, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/portals/_index.scss */
.project-portal-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

/* line 42, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/portals/_index.scss */
.project-portal-card:focus {
  box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.35);
}

/* line 46, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/portals/_index.scss */
.project-portal-card__header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  position: relative;
  padding-right: 72px;
}

/* line 55, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/portals/_index.scss */
.project-portal-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  background: #ecf5ff;
  color: #2f7ae5;
}

/* line 66, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/portals/_index.scss */
.leads-board-capsule.lightmode .project-portal-card__avatar {
  background: #eef5ff;
}

/* line 71, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/portals/_index.scss */
.project-portal-card__titles {
  min-width: 0;
}

/* line 74, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/portals/_index.scss */
.project-portal-card__title {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 82, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/portals/_index.scss */
.project-portal-card__subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 90, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/portals/_index.scss */
.project-portal-card__status {
  justify-self: end;
}

/* line 94, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/portals/_index.scss */
.project-portal-card__meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
  color: rgba(0, 0, 0, 0.65);
  font-size: 13px;
}

/* line 102, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/portals/_index.scss */
.project-portal-card__deadline i {
  color: rgba(0, 0, 0, 0.5);
  margin-right: 6px;
}

/* line 106, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/portals/_index.scss */
.project-portal-card__meta-label {
  display: inline-block;
  padding: 2px 8px;
  margin-right: 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* line 118, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/portals/_index.scss */
.project-portal-card__progress {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
}

/* line 125, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/portals/_index.scss */
.project-portal-card__progress-text {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  font-size: 12px;
  opacity: 0.85;
}

/* line 133, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/portals/_index.scss */
.project-portals-grid-wrapper
.project-portal-card__status
.project-status-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid transparent;
  white-space: nowrap;
  letter-spacing: 0.2px;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* line 149, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/portals/_index.scss */
.project-portals-grid-wrapper
.project-portal-card__status
.project-status-chip .chip-icon {
  font-size: 11px;
}

/* line 153, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/portals/_index.scss */
.project-portals-grid-wrapper
.project-portal-card__status
.project-status-chip.status-active {
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.14), rgba(16, 185, 129, 0.1));
  color: #10b981;
  border-color: rgba(16, 185, 129, 0.3);
}

/* line 162, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/portals/_index.scss */
.project-portals-grid-wrapper
.project-portal-card__status
.project-status-chip.status-pending {
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.14), rgba(99, 102, 241, 0.1));
  color: #6366f1;
  border-color: rgba(99, 102, 241, 0.3);
}

/* line 171, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/portals/_index.scss */
.project-portals-grid-wrapper
.project-portal-card__status
.project-status-chip.status-late {
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.14), rgba(239, 68, 68, 0.1));
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.3);
}

/* line 182, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/portals/_index.scss */
.project-progress-rail {
  height: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

/* line 189, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/portals/_index.scss */
.project-progress-rail__bar {
  height: 100%;
  background: linear-gradient(90deg, #22c55e 0%, #a7f3d0 100%);
  border-radius: 8px;
}

/* line 195, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/portals/_index.scss */
.project-portal-card__actions {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

/* line 203, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/portals/_index.scss */
.project-portal-card__icon-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

/* line 215, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/portals/_index.scss */
.project-portal-card__icon-btn:hover {
  background: rgba(0, 0, 0, 0.06);
}

/* line 220, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/portals/_index.scss */
.leads-board-capsule.lightmode .project-portal-card__title {
  color: rgba(0, 0, 0, 0.9);
}

/* line 223, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/portals/_index.scss */
.leads-board-capsule.lightmode .project-portal-card__subtitle {
  color: rgba(0, 0, 0, 0.65);
}

/* line 226, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/portals/_index.scss */
.leads-board-capsule.lightmode .project-portal-card__progress-text {
  color: rgba(0, 0, 0, 0.75);
}

/* line 229, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/portals/_index.scss */
.leads-board-capsule.lightmode .project-progress-rail {
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

/* line 233, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/portals/_index.scss */
.leads-board-capsule.lightmode .project-portals-grid-wrapper
.project-portal-card__status
.project-status-chip.status-active {
  background: rgba(16, 185, 129, 0.14);
  color: #0f9e73;
  border-color: rgba(16, 185, 129, 0.28);
}

/* line 240, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/portals/_index.scss */
.leads-board-capsule.lightmode .project-portals-grid-wrapper
.project-portal-card__status
.project-status-chip.status-pending {
  background: rgba(99, 102, 241, 0.14);
  color: #4f52e0;
  border-color: rgba(99, 102, 241, 0.28);
}

/* line 247, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/portals/_index.scss */
.leads-board-capsule.lightmode .project-portals-grid-wrapper
.project-portal-card__status
.project-status-chip.status-late {
  background: rgba(239, 68, 68, 0.14);
  color: #dc3a3a;
  border-color: rgba(239, 68, 68, 0.28);
}

/* ==========================================================================
   MODALS DU MODULE GESTION DE PROJET
   Styles pour toutes les modals du module : édition, assignation, etc.
   ========================================================================== */
/* ==========================================================================
   MODAL D'ASSIGNATION DE CONTACT - Style compact et cohérent
   ========================================================================== */
/* Styles pour les capsules de contacts */
/* line 11, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.custom-modal .contacts-capsules {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 10px;
  max-height: 270px;
  overflow-y: auto;
}

/* line 19, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.custom-modal .contacts-capsules .contact-capsule {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 10px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

/* line 30, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.custom-modal .contacts-capsules .contact-capsule:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: #36a2eb !important;
  transform: translateY(-1px) !important;
}

/* line 36, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.custom-modal .contacts-capsules .contact-capsule.selected {
  background: rgba(54, 162, 235, 0.2) !important;
  border-color: #36a2eb !important;
  box-shadow: 0 0 0 2px rgba(54, 162, 235, 0.3) !important;
}

/* line 42, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.custom-modal .contacts-capsules .contact-capsule .contact-avatar {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background: #36a2eb !important;
  color: white !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: bold !important;
  font-size: 0.75rem !important;
  flex-shrink: 0 !important;
}

/* line 56, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.custom-modal .contacts-capsules .contact-capsule .contact-details {
  flex: 1 !important;
}

/* line 59, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.custom-modal .contacts-capsules .contact-capsule .contact-details .contact-name {
  font-weight: 600 !important;
  font-size: 0.75rem !important;
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 0.25rem !important;
}

/* line 66, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.custom-modal .contacts-capsules .contact-capsule .contact-details .contact-email {
  font-size: 0.75rem !important;
  color: rgba(255, 255, 255, 0.7) !important;
  margin-bottom: 0.25rem !important;
}

/* line 72, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.custom-modal .contacts-capsules .contact-capsule .contact-details .contact-title {
  font-size: 0.8rem !important;
  color: rgba(255, 255, 255, 0.6) !important;
  font-style: italic !important;
}

/* line 80, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.custom-modal .contacts-capsules .no-results-message {
  padding: 2rem !important;
  text-align: center !important;
  color: rgba(255, 255, 255, 0.5) !important;
  font-style: italic !important;
}

/* line 86, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.custom-modal .contacts-capsules .no-results-message i {
  margin-right: 0.5rem !important;
  color: rgba(255, 255, 255, 0.3) !important;
}

/* line 95, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.custom-modal .task-summary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 20px;
}

/* line 102, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.custom-modal-overlay.lightmode .custom-modal .task-summary {
  background: rgba(51, 51, 51, 0.05);
  border-color: rgba(51, 51, 51, 0.1);
}

/* line 107, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.custom-modal .task-summary .task-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

/* line 114, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.custom-modal-overlay.lightmode .custom-modal .task-summary .task-name {
  color: rgba(51, 51, 51, 0.9);
}

/* line 118, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.custom-modal .task-summary .task-name i {
  color: var(--primary-color);
}

/* line 122, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.custom-modal .task-summary .task-name strong {
  font-weight: 600;
}

/* line 128, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.custom-modal .current-assignments {
  margin-bottom: 20px;
}

/* line 131, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.custom-modal .current-assignments .modal-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

/* line 137, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.custom-modal .current-assignments .modal-label i {
  color: var(--primary-color);
  font-size: 14px;
}

/* line 143, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.custom-modal .current-assignments .assigned-list {
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.2);
  border-radius: 6px;
  padding: 10px;
}

/* line 149, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.custom-modal-overlay.lightmode .custom-modal .current-assignments .assigned-list {
  background: rgba(46, 204, 113, 0.05);
  border-color: rgba(46, 204, 113, 0.15);
}

/* line 154, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.custom-modal .current-assignments .assigned-list .assigned-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
}

/* line 160, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.custom-modal .current-assignments .assigned-list .assigned-contact:not(:last-child) {
  border-bottom: 1px solid rgba(46, 204, 113, 0.1);
  margin-bottom: 6px;
  padding-bottom: 6px;
}

/* line 166, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.custom-modal .current-assignments .assigned-list .assigned-contact span {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

/* line 170, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.custom-modal-overlay.lightmode .custom-modal .current-assignments .assigned-list .assigned-contact span {
  color: rgba(51, 51, 51, 0.9);
}

/* line 175, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.custom-modal .current-assignments .assigned-list .assigned-contact small, .custom-modal .current-assignments .assigned-list .assigned-contact .small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

/* line 179, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.custom-modal-overlay.lightmode .custom-modal .current-assignments .assigned-list .assigned-contact small, .custom-modal-overlay.lightmode .custom-modal .current-assignments .assigned-list .assigned-contact .small {
  color: rgba(51, 51, 51, 0.6);
}

/* line 188, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.custom-modal .contact-selection .modal-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

/* line 194, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.custom-modal .contact-selection .modal-label i {
  color: var(--primary-color);
  font-size: 14px;
}

/* line 200, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.custom-modal .contact-selection .contacts-dropdown {
  margin-top: 8px;
}

/* line 203, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.custom-modal .contact-selection .contacts-dropdown select {
  width: 100%;
  max-width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  transition: all 0.2s ease;
}

/* line 214, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.custom-modal-overlay.lightmode .custom-modal .contact-selection .contacts-dropdown select {
  border-color: rgba(51, 51, 51, 0.2);
  background: rgba(51, 51, 51, 0.05);
  color: rgba(51, 51, 51, 0.9);
}

/* line 220, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.custom-modal .contact-selection .contacts-dropdown select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(var(--primary-color-rgb), 0.2);
}

/* line 226, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.custom-modal .contact-selection .contacts-dropdown select option {
  background: #2c3e50;
  color: white;
}

/* line 230, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.custom-modal-overlay.lightmode .custom-modal .contact-selection .contacts-dropdown select option {
  background: white;
  color: #2c3e50;
}

/* line 238, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.custom-modal .contact-selection .no-contacts {
  margin-top: 8px;
}

/* line 241, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.custom-modal .contact-selection .no-contacts .alert-info {
  background: rgba(52, 152, 219, 0.1);
  border: 1px solid rgba(52, 152, 219, 0.2);
  border-radius: 6px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

/* line 252, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.custom-modal-overlay.lightmode .custom-modal .contact-selection .no-contacts .alert-info {
  background: rgba(52, 152, 219, 0.05);
  border-color: rgba(52, 152, 219, 0.15);
  color: rgba(51, 51, 51, 0.8);
}

/* line 258, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.custom-modal .contact-selection .no-contacts .alert-info i {
  color: rgba(52, 152, 219, 0.8);
  flex-shrink: 0;
}

/* line 267, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.custom-modal .form-button[disabled], .custom-modal .users-management-container .users-header .add-user-btn[disabled], .users-management-container .users-header .custom-modal .add-user-btn[disabled], .custom-modal .crm-action-button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

/* line 271, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.custom-modal .form-button[disabled]:hover, .custom-modal .users-management-container .users-header .add-user-btn[disabled]:hover, .users-management-container .users-header .custom-modal .add-user-btn[disabled]:hover, .custom-modal .crm-action-button[disabled]:hover {
  background: var(--primary-color);
  transform: none;
  box-shadow: none;
}

/* line 280, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.custom-modal .form-button .fa-spinner, .custom-modal .users-management-container .users-header .add-user-btn .fa-spinner, .users-management-container .users-header .custom-modal .add-user-btn .fa-spinner, .custom-modal .crm-action-button .fa-spinner {
  animation: spin 1s linear infinite;
}

/* ==========================================================================
   STYLES POUR LES PAGES SHOW - Contributeurs et tâches
   ========================================================================== */
/* line 291, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.contact-link-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* line 296, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.contact-link-btn.disabled:hover {
  transform: none;
}

/* ==========================================================================
   ANIMATIONS ET TRANSITIONS
   ========================================================================== */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 768px) {
  /* line 320, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
  .custom-modal {
    /* Styles responsives pour lightmode */
  }
  /* line 321, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
  .custom-modal .task-summary {
    padding: 10px;
    margin-bottom: 15px;
  }
  /* line 325, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
  .custom-modal .task-summary .task-name {
    font-size: 13px;
  }
  /* line 330, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
  .custom-modal .current-assignments .assigned-list {
    padding: 8px;
  }
  /* line 334, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
  .custom-modal .contact-selection .contacts-dropdown select {
    padding: 8px 10px;
    font-size: 13px;
  }
  /* line 339, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
  .custom-modal .alert-info {
    padding: 10px;
    font-size: 13px;
  }
  /* line 349, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
  .lightmode .custom-modal .contact-selection .creation-mode form .form-row {
    flex-direction: column;
    gap: 8px;
  }
  /* line 355, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
  .lightmode .custom-modal .contact-selection .creation-mode form .form-group .form-control {
    font-size: 16px;
    /* Évite le zoom sur iOS */
  }
  /* line 364, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
  .lightmode .custom-modal .contacts-capsules .contact-capsule {
    padding: 8px !important;
  }
  /* line 368, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
  .lightmode .custom-modal .contacts-capsules .contact-capsule .contact-details .contact-name {
    font-size: 13px !important;
  }
  /* line 372, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
  .lightmode .custom-modal .contacts-capsules .contact-capsule .contact-details .contact-email {
    font-size: 12px !important;
  }
  /* line 376, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
  .lightmode .custom-modal .contacts-capsules .contact-capsule .contact-details .contact-title {
    font-size: 11px !important;
  }
  /* line 384, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
  .lightmode .custom-modal .custom-modal-footer .form-button, .lightmode .custom-modal .custom-modal-footer .users-management-container .users-header .add-user-btn, .users-management-container .users-header .lightmode .custom-modal .custom-modal-footer .add-user-btn, .lightmode .custom-modal .custom-modal-footer .crm-action-button {
    padding: 8px 12px;
    font-size: 13px;
  }
}

/* ==========================================================================
   THÈME SOMBRE/CLAIR - Variables CSS
   ========================================================================== */
/* line 397, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
:root {
  --modal-background: rgba(255, 255, 255, 0.05);
  --modal-border: rgba(255, 255, 255, 0.1);
  --modal-text: rgba(255, 255, 255, 0.9);
  --modal-text-muted: rgba(255, 255, 255, 0.6);
}

/* line 404, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode {
  --modal-background: rgba(51, 51, 51, 0.05);
  --modal-border: rgba(51, 51, 51, 0.1);
  --modal-text: rgba(51, 51, 51, 0.9);
  --modal-text-muted: rgba(51, 51, 51, 0.6);
}

/* ==========================================================================
   LIGHTMODE STYLES - Modal d'assignation de contact
   Styles spécifiques pour le mode clair de la modal d'assignation
   ========================================================================== */
/* line 416, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode {
  /* Overlay de la modal */
  /* Modal principale */
  /* En-tête de la modal */
  /* Corps de la modal */
  /* Pied de la modal */
  /* Résumé de la tâche */
  /* Contacts assignés actuels */
  /* Sélection de contact */
  /* Capsules de contacts */
  /* Boutons du footer */
}

/* line 418, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .custom-modal-overlay {
  background-color: rgba(0, 0, 0, 0.5);
}

/* line 423, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .custom-modal {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(20, 13, 35, 0.15);
  box-shadow: 0 8px 32px rgba(20, 13, 35, 0.15);
}

/* line 430, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .custom-modal-header {
  background: transparent;
  border-bottom: 1px solid rgba(20, 13, 35, 0.15);
}

/* line 434, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .custom-modal-header .custom-modal-title {
  color: #140D23 !important;
}

/* line 437, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .custom-modal-header .custom-modal-title i {
  color: #C38761;
}

/* line 442, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .custom-modal-header .custom-modal-close {
  color: #140D23 !important;
}

/* line 445, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .custom-modal-header .custom-modal-close:hover {
  color: #C38761;
}

/* line 452, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .custom-modal-body {
  background: rgba(255, 255, 255, 0.95);
  color: #140D23 !important;
  /* Scrollbar personnalisée pour light mode */
}

/* line 457, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .custom-modal-body::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.05);
}

/* line 461, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .custom-modal-body::-webkit-scrollbar-thumb {
  background: #C38761;
}

/* line 465, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .custom-modal-body::-webkit-scrollbar-thumb:hover {
  background: #140D23;
}

/* line 471, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .custom-modal-footer {
  background: white;
  border-top: 1px solid rgba(20, 13, 35, 0.15);
}

/* line 477, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .task-summary {
  background: rgba(20, 13, 35, 0.05) !important;
  border: 1px solid rgba(20, 13, 35, 0.15) !important;
}

/* line 481, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .task-summary .task-name {
  color: #140D23 !important;
}

/* line 484, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .task-summary .task-name i {
  color: #C38761;
}

/* line 488, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .task-summary .task-name strong {
  color: #140D23 !important;
}

/* line 496, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .current-assignments .modal-label {
  color: #140D23 !important;
}

/* line 499, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .current-assignments .modal-label i {
  color: #C38761;
}

/* line 504, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .current-assignments .assigned-list {
  background: rgba(46, 204, 113, 0.05) !important;
  border: 1px solid rgba(46, 204, 113, 0.15) !important;
}

/* line 509, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .current-assignments .assigned-list .assigned-contact span {
  color: #140D23 !important;
}

/* line 513, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .current-assignments .assigned-list .assigned-contact small, .lightmode .current-assignments .assigned-list .assigned-contact .small {
  color: rgba(20, 13, 35, 0.6) !important;
}

/* line 517, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .current-assignments .assigned-list .assigned-contact:not(:last-child) {
  border-bottom: 1px solid rgba(46, 204, 113, 0.1);
}

/* line 525, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .contact-selection {
  /* Mode toggle */
  /* Mode création */
}

/* line 526, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .contact-selection .modal-label {
  color: #140D23 !important;
}

/* line 529, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .contact-selection .modal-label i {
  color: #C38761;
}

/* line 536, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .contact-selection .mode-toggle .toggle-creation-btn {
  background: rgba(20, 13, 35, 0.08);
  border: 1px solid rgba(20, 13, 35, 0.15);
  color: #140D23 !important;
}

/* line 541, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .contact-selection .mode-toggle .toggle-creation-btn:hover {
  background: rgba(195, 135, 97, 0.1);
  border-color: rgba(195, 135, 97, 0.3);
  color: #C38761 !important;
}

/* line 547, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .contact-selection .mode-toggle .toggle-creation-btn i {
  color: inherit;
}

/* line 554, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .contact-selection .creation-mode {
  /* Formulaire de création */
}

/* line 556, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .contact-selection .creation-mode .mode-info .alert-info {
  background: rgba(52, 152, 219, 0.05);
  border: 1px solid rgba(52, 152, 219, 0.15);
  color: #140D23 !important;
}

/* line 561, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .contact-selection .creation-mode .mode-info .alert-info i {
  color: rgba(52, 152, 219, 0.8);
}

/* line 567, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .contact-selection .creation-mode .modal-label {
  color: #140D23 !important;
}

/* line 570, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .contact-selection .creation-mode .modal-label i {
  color: #C38761;
}

/* line 577, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .contact-selection .creation-mode form .form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

/* line 582, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .contact-selection .creation-mode form .form-row .form-group {
  flex: 1;
}

/* line 587, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .contact-selection .creation-mode form .form-group {
  margin-bottom: 12px;
}

/* line 590, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .contact-selection .creation-mode form .form-group .modal-label {
  color: #140D23 !important;
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
}

/* line 597, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .contact-selection .creation-mode form .form-group .form-control {
  background: #e8e8e8 !important;
  border: 1px solid rgba(20, 13, 35, 0.25) !important;
  color: #140D23 !important;
  width: 100%;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.2s ease;
}

/* line 607, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .contact-selection .creation-mode form .form-group .form-control:focus {
  color: #140D23 !important;
  background: #e8e8e8 !important;
  border-color: #C38761 !important;
  box-shadow: 0 0 0 0.2rem rgba(195, 135, 97, 0.25) !important;
  outline: none;
}

/* line 615, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .contact-selection .creation-mode form .form-group .form-control::placeholder {
  color: rgba(20, 13, 35, 0.5) !important;
}

/* line 619, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .contact-selection .creation-mode form .form-group .form-control:required {
  border-left: 3px solid #C38761;
}

/* line 630, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .contacts-capsules .contact-capsule {
  background: rgba(20, 13, 35, 0.05) !important;
  border: 1px solid rgba(20, 13, 35, 0.15) !important;
}

/* line 634, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .contacts-capsules .contact-capsule:hover {
  background: rgba(20, 13, 35, 0.1) !important;
  border-color: #C38761 !important;
}

/* line 639, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .contacts-capsules .contact-capsule.selected {
  background: rgba(195, 135, 97, 0.15) !important;
  border-color: #C38761 !important;
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.3) !important;
}

/* line 645, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .contacts-capsules .contact-capsule .contact-avatar {
  background: #C38761 !important;
  color: white !important;
}

/* line 651, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .contacts-capsules .contact-capsule .contact-details .contact-name {
  color: #140D23 !important;
}

/* line 655, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .contacts-capsules .contact-capsule .contact-details .contact-email {
  color: rgba(20, 13, 35, 0.7) !important;
}

/* line 659, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .contacts-capsules .contact-capsule .contact-details .contact-title {
  color: rgba(20, 13, 35, 0.6) !important;
}

/* line 665, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .contacts-capsules .no-results-message {
  color: rgba(20, 13, 35, 0.5) !important;
}

/* line 668, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .contacts-capsules .no-results-message i {
  color: rgba(20, 13, 35, 0.3) !important;
}

/* line 677, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .custom-modal-footer .form-button.btn-secondary, .lightmode .custom-modal-footer .users-management-container .users-header .btn-secondary.add-user-btn, .users-management-container .users-header .lightmode .custom-modal-footer .btn-secondary.add-user-btn, .lightmode .custom-modal-footer .btn-secondary.crm-action-button, .lightmode .custom-modal-footer .crm-action-button.crm-action-button-secondary {
  background: #e8e8e8;
  color: #140D23;
  border: 1px solid rgba(20, 13, 35, 0.25);
}

/* line 682, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .custom-modal-footer .form-button.btn-secondary:hover, .lightmode .custom-modal-footer .users-management-container .users-header .btn-secondary.add-user-btn:hover, .users-management-container .users-header .lightmode .custom-modal-footer .btn-secondary.add-user-btn:hover, .lightmode .custom-modal-footer .btn-secondary.crm-action-button:hover, .lightmode .custom-modal-footer .crm-action-button.crm-action-button-secondary:hover {
  background: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.4);
}

/* line 688, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .custom-modal-footer .form-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary), .lightmode .custom-modal-footer .users-management-container .users-header .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary), .users-management-container .users-header .lightmode .custom-modal-footer .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary), .lightmode .custom-modal-footer .crm-action-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary) {
  background: #C38761;
  color: white;
}

/* line 692, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .custom-modal-footer .form-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover, .lightmode .custom-modal-footer .users-management-container .users-header .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover, .users-management-container .users-header .lightmode .custom-modal-footer .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover, .lightmode .custom-modal-footer .crm-action-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover {
  background: #af6c42;
}

/* line 696, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .custom-modal-footer .form-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):disabled, .lightmode .custom-modal-footer .users-management-container .users-header .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):disabled, .users-management-container .users-header .lightmode .custom-modal-footer .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):disabled, .lightmode .custom-modal-footer .crm-action-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):disabled {
  background: rgba(20, 13, 35, 0.3);
  color: rgba(20, 13, 35, 0.5);
  cursor: not-allowed;
}

/* line 701, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode .custom-modal-footer .form-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):disabled:hover, .lightmode .custom-modal-footer .users-management-container .users-header .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):disabled:hover, .users-management-container .users-header .lightmode .custom-modal-footer .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):disabled:hover, .lightmode .custom-modal-footer .crm-action-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):disabled:hover {
  background: rgba(20, 13, 35, 0.3);
  transform: none;
}

/* ==========================================================================
   MODAL DE CONFIRMATION - Style aligné avec project-template-modal
   ========================================================================== */
/* line 716, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
#confirmation-modal-container .custom-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 10002;
  animation: confirmFadeIn 0.2s ease;
}

/* line 730, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
#confirmation-modal-container .custom-modal.confirmation-modal {
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
  backdrop-filter: blur(12px);
  border: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  max-width: 420px;
  width: 90%;
  border-radius: 12px;
  animation: confirmSlideIn 0.2s ease;
}

/* line 740, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
#confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-header {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* line 748, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
#confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-header .custom-modal-title {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

/* line 757, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
#confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-header .custom-modal-title i {
  color: #C38761;
  font-size: 20px;
}

/* line 763, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
#confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-header .custom-modal-close {
  color: rgba(255, 255, 255, 0.8);
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

/* line 772, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
#confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-header .custom-modal-close:hover {
  color: #C38761;
}

/* line 778, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
#confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-body {
  background: transparent;
  padding: 20px 24px;
}

/* line 782, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
#confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-body .confirmation-message {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.6;
  font-size: 14px;
}

/* line 790, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
#confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-footer {
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 24px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* line 798, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
#confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-footer .form-button, #confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-footer .users-management-container .users-header .add-user-btn, .users-management-container .users-header #confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-footer .add-user-btn, #confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-footer .crm-action-button {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 806, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
#confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-footer .form-button.btn-secondary, #confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-footer .users-management-container .users-header .btn-secondary.add-user-btn, .users-management-container .users-header #confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-footer .btn-secondary.add-user-btn, #confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-footer .btn-secondary.crm-action-button, #confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-footer .crm-action-button.crm-action-button-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}

/* line 811, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
#confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-footer .form-button.btn-secondary:hover, #confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-footer .users-management-container .users-header .btn-secondary.add-user-btn:hover, .users-management-container .users-header #confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-footer .btn-secondary.add-user-btn:hover, #confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-footer .btn-secondary.crm-action-button:hover, #confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-footer .crm-action-button.crm-action-button-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

/* line 817, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
#confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-footer .form-button.btn-danger, #confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-footer .users-management-container .users-header .btn-danger.add-user-btn, .users-management-container .users-header #confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-footer .btn-danger.add-user-btn, #confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-footer .btn-danger.crm-action-button {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  border: none;
  color: #fff;
}

/* line 822, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
#confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-footer .form-button.btn-danger:hover, #confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-footer .users-management-container .users-header .btn-danger.add-user-btn:hover, .users-management-container .users-header #confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-footer .btn-danger.add-user-btn:hover, #confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-footer .btn-danger.crm-action-button:hover {
  background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
}

@keyframes confirmFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes confirmSlideIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* line 855, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode #confirmation-modal-container .custom-modal.confirmation-modal {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(20, 13, 35, 0.15);
  box-shadow: 0 8px 32px rgba(20, 13, 35, 0.15);
}

/* line 860, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode #confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-header {
  background: white;
  border-bottom: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 864, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode #confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-header .custom-modal-title {
  color: #140D23;
}

/* line 867, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode #confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-header .custom-modal-title i {
  color: #C38761;
}

/* line 872, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode #confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-header .custom-modal-close {
  color: #140D23;
}

/* line 875, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode #confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-header .custom-modal-close:hover {
  color: #C38761;
}

/* line 882, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode #confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-body .confirmation-message {
  color: rgba(20, 13, 35, 0.85);
}

/* line 887, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode #confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-footer {
  background: white;
  border-top: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 892, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode #confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-footer .form-button.btn-secondary, .lightmode #confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-footer .users-management-container .users-header .btn-secondary.add-user-btn, .users-management-container .users-header .lightmode #confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-footer .btn-secondary.add-user-btn, .lightmode #confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-footer .btn-secondary.crm-action-button, .lightmode #confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-footer .crm-action-button.crm-action-button-secondary {
  background: #e8e8e8;
  border: 1px solid rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 897, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
.lightmode #confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-footer .form-button.btn-secondary:hover, .lightmode #confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-footer .users-management-container .users-header .btn-secondary.add-user-btn:hover, .users-management-container .users-header .lightmode #confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-footer .btn-secondary.add-user-btn:hover, .lightmode #confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-footer .btn-secondary.crm-action-button:hover, .lightmode #confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-footer .crm-action-button.crm-action-button-secondary:hover {
  background: rgba(20, 13, 35, 0.1);
}

@media (max-width: 576px) {
  /* line 909, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
  #confirmation-modal-container .custom-modal.confirmation-modal {
    width: 95%;
    max-width: none;
  }
  /* line 913, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
  #confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-footer {
    flex-direction: column-reverse;
  }
  /* line 916, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_modals.scss */
  #confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-footer .form-button, #confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-footer .users-management-container .users-header .add-user-btn, .users-management-container .users-header #confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-footer .add-user-btn, #confirmation-modal-container .custom-modal.confirmation-modal .custom-modal-footer .crm-action-button {
    width: 100%;
  }
}

/* Styles pour la modal d'ajout/édition d'étapes */
/* ==========================================================================
   DARK MODE STYLES - Styles renforcés pour garantir la lisibilité
   ========================================================================== */
/* line 9, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.step-modal {
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
  backdrop-filter: blur(12px);
  border: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* line 17, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.step-modal .custom-modal-header {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 21, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.step-modal .custom-modal-header .custom-modal-title {
  color: rgba(255, 255, 255, 0.95);
}

/* line 24, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.step-modal .custom-modal-header .custom-modal-title i {
  color: #C38761;
}

/* line 29, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.step-modal .custom-modal-header .custom-modal-close {
  color: rgba(255, 255, 255, 0.8);
  background: transparent;
}

/* line 33, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.step-modal .custom-modal-header .custom-modal-close:hover {
  color: #C38761;
}

/* line 40, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.step-modal .custom-modal-body {
  background: transparent;
}

/* line 45, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.step-modal .modal-label,
.custom-modal-overlay:not(.lightmode) .custom-modal.step-modal .step-form-section .modal-label,
.custom-modal-overlay:not(.lightmode) .custom-modal.step-modal .description-form-section .modal-label,
.custom-modal-overlay:not(.lightmode) .custom-modal.step-modal .tasks-form-section .section-title,
.custom-modal-overlay:not(.lightmode) .custom-modal.step-modal label {
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: none !important;
  text-align: left !important;
  padding-left: 0 !important;
}

/* line 55, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.step-modal .modal-label i,
.custom-modal-overlay:not(.lightmode) .custom-modal.step-modal .step-form-section .modal-label i,
.custom-modal-overlay:not(.lightmode) .custom-modal.step-modal .description-form-section .modal-label i,
.custom-modal-overlay:not(.lightmode) .custom-modal.step-modal .tasks-form-section .section-title i,
.custom-modal-overlay:not(.lightmode) .custom-modal.step-modal label i {
  color: #C38761;
  opacity: 1;
}

/* line 62, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.step-modal .form-control,
.custom-modal-overlay:not(.lightmode) .custom-modal.step-modal input[type="text"],
.custom-modal-overlay:not(.lightmode) .custom-modal.step-modal input[type="date"],
.custom-modal-overlay:not(.lightmode) .custom-modal.step-modal textarea {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(195, 135, 97, 0.4) !important;
  color: rgba(255, 255, 255, 0.95) !important;
  border-radius: 8px;
}

/* line 71, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.step-modal .form-control::placeholder,
.custom-modal-overlay:not(.lightmode) .custom-modal.step-modal input[type="text"]::placeholder,
.custom-modal-overlay:not(.lightmode) .custom-modal.step-modal input[type="date"]::placeholder,
.custom-modal-overlay:not(.lightmode) .custom-modal.step-modal textarea::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* line 75, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.step-modal .form-control:focus,
.custom-modal-overlay:not(.lightmode) .custom-modal.step-modal input[type="text"]:focus,
.custom-modal-overlay:not(.lightmode) .custom-modal.step-modal input[type="date"]:focus,
.custom-modal-overlay:not(.lightmode) .custom-modal.step-modal textarea:focus {
  border-color: rgba(195, 135, 97, 0.7) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.15) !important;
  outline: none;
}

/* line 84, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.step-modal input[type="date"] {
  color-scheme: dark;
}

/* line 87, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.step-modal input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) brightness(2);
  cursor: pointer;
  opacity: 0.9;
}

/* line 95, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.step-modal .tasks-form-section {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 99, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.step-modal .tasks-form-section .section-title {
  color: rgba(255, 255, 255, 0.95) !important;
}

/* line 103, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.step-modal .tasks-form-section .add-task-btn {
  background: rgba(195, 135, 97, 0.15);
  border: 1px solid rgba(195, 135, 97, 0.3);
  color: #C38761;
}

/* line 108, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.step-modal .tasks-form-section .add-task-btn:hover {
  background: rgba(195, 135, 97, 0.25);
  border-color: rgba(195, 135, 97, 0.5);
}

/* line 116, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.step-modal .empty-tasks-message {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* line 119, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.step-modal .empty-tasks-message i {
  color: rgba(255, 255, 255, 0.4);
}

/* line 125, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.step-modal .custom-modal-footer {
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 130, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.step-modal .custom-modal-footer .form-button.btn-secondary, .custom-modal-overlay:not(.lightmode) .custom-modal.step-modal .custom-modal-footer .users-management-container .users-header .btn-secondary.add-user-btn, .users-management-container .users-header .custom-modal-overlay:not(.lightmode) .custom-modal.step-modal .custom-modal-footer .btn-secondary.add-user-btn, .custom-modal-overlay:not(.lightmode) .custom-modal.step-modal .custom-modal-footer .btn-secondary.crm-action-button, .custom-modal-overlay:not(.lightmode) .custom-modal.step-modal .custom-modal-footer .crm-action-button.crm-action-button-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}

/* line 135, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.step-modal .custom-modal-footer .form-button.btn-secondary:hover, .custom-modal-overlay:not(.lightmode) .custom-modal.step-modal .custom-modal-footer .users-management-container .users-header .btn-secondary.add-user-btn:hover, .users-management-container .users-header .custom-modal-overlay:not(.lightmode) .custom-modal.step-modal .custom-modal-footer .btn-secondary.add-user-btn:hover, .custom-modal-overlay:not(.lightmode) .custom-modal.step-modal .custom-modal-footer .btn-secondary.crm-action-button:hover, .custom-modal-overlay:not(.lightmode) .custom-modal.step-modal .custom-modal-footer .crm-action-button.crm-action-button-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

/* line 141, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.step-modal .custom-modal-footer .form-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary), .custom-modal-overlay:not(.lightmode) .custom-modal.step-modal .custom-modal-footer .users-management-container .users-header .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary), .users-management-container .users-header .custom-modal-overlay:not(.lightmode) .custom-modal.step-modal .custom-modal-footer .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary), .custom-modal-overlay:not(.lightmode) .custom-modal.step-modal .custom-modal-footer .crm-action-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary) {
  background: #C38761;
  border: 1px solid #C38761;
  color: white;
}

/* line 146, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.step-modal .custom-modal-footer .form-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover, .custom-modal-overlay:not(.lightmode) .custom-modal.step-modal .custom-modal-footer .users-management-container .users-header .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover, .users-management-container .users-header .custom-modal-overlay:not(.lightmode) .custom-modal.step-modal .custom-modal-footer .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover, .custom-modal-overlay:not(.lightmode) .custom-modal.step-modal .custom-modal-footer .crm-action-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover {
  background: #bc794f;
}

/* ==========================================================================
   BASE STYLES
   ========================================================================== */
/* line 159, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.step-modal {
  max-width: 800px;
  max-height: 85vh;
  width: 90%;
  margin: auto;
  display: flex;
  flex-direction: column;
}

/* line 169, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.step-modal .custom-modal-header {
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px;
}

/* line 175, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.step-modal .custom-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
  max-height: calc(85vh - 120px);
}

/* line 182, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.step-modal .custom-modal-footer {
  flex-shrink: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 24px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* S'assurer que l'overlay gère bien le centrage - SEULEMENT dans le contexte projet */
/* line 193, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.project-board-capsule .custom-modal-overlay,
.project-show-capsule .custom-modal-overlay {
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

/* line 202, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.project-board-capsule .custom-modal-overlay.active .step-modal,
.project-show-capsule .custom-modal-overlay.active .step-modal {
  transform: scale(1);
  opacity: 1;
}

/* Section de l'étape principale */
/* line 210, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.step-form-section {
  margin-bottom: 24px;
}

/* line 213, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.step-form-section .form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

/* line 218, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.step-form-section .form-row:last-child {
  margin-bottom: 0;
}

/* line 223, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.step-form-section .form-group {
  flex: 1;
}

/* line 226, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.step-form-section .form-group.full-width {
  flex: 1 1 100%;
}

/* line 231, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.step-form-section .modal-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  font-size: 14px;
}

/* line 240, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.step-form-section .modal-label i {
  font-size: 12px;
  opacity: 0.8;
}

/* line 246, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.step-form-section .form-control {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  transition: all 0.2s ease;
}

/* line 256, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.step-form-section .form-control:focus {
  outline: none;
  border-color: rgba(74, 144, 226, 0.5);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

/* line 263, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.step-form-section .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 267, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.step-form-section .form-control.field-error {
  border-color: rgba(220, 53, 69, 0.6);
  background: rgba(220, 53, 69, 0.05);
}

/* line 273, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.step-form-section .field-error-message {
  color: #dc3545;
  font-size: 12px;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Section des tâches */
/* line 284, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.tasks-form-section {
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

/* line 291, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.tasks-form-section .section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

/* line 297, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.tasks-form-section .section-header .section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

/* line 305, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.tasks-form-section .section-header .section-title i {
  color: rgba(74, 144, 226, 0.8);
}

/* line 310, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.tasks-form-section .section-header .add-task-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(74, 144, 226, 0.15);
  border: 1px solid rgba(74, 144, 226, 0.3);
  border-radius: 6px;
  color: rgba(74, 144, 226, 0.9);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 324, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.tasks-form-section .section-header .add-task-btn:hover {
  background: rgba(74, 144, 226, 0.25);
  border-color: rgba(74, 144, 226, 0.4);
  transform: translateY(-1px);
}

/* line 330, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.tasks-form-section .section-header .add-task-btn i {
  font-size: 10px;
}

/* line 336, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.tasks-form-section .tasks-container {
  min-height: 60px;
  max-height: 300px;
  overflow-y: auto;
}

/* line 342, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.tasks-form-section .task-form-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 12px;
  transition: all 0.2s ease;
}

/* line 353, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.tasks-form-section .task-form-row:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}

/* line 358, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.tasks-form-section .task-form-row:last-child {
  margin-bottom: 0;
}

/* line 362, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.tasks-form-section .task-form-row .task-form-fields {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 370, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.tasks-form-section .task-form-row .task-field .form-control {
  font-size: 13px;
  padding: 10px;
}

/* line 375, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.tasks-form-section .task-form-row .task-field .task-label-input {
  font-weight: 500;
}

/* line 379, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.tasks-form-section .task-form-row .task-field .task-description-input {
  resize: vertical;
  min-height: 60px;
  max-height: 120px;
  font-size: 12px;
  line-height: 1.4;
}

/* line 388, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.tasks-form-section .task-form-row .task-actions {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 393, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.tasks-form-section .task-form-row .task-actions .remove-task-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.2);
  border-radius: 6px;
  color: rgba(220, 53, 69, 0.8);
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 406, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.tasks-form-section .task-form-row .task-actions .remove-task-btn:hover {
  background: rgba(220, 53, 69, 0.2);
  border-color: rgba(220, 53, 69, 0.4);
  color: rgba(220, 53, 69, 0.9);
  transform: scale(1.05);
}

/* line 413, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.tasks-form-section .task-form-row .task-actions .remove-task-btn i {
  font-size: 12px;
}

/* line 420, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.tasks-form-section .empty-tasks-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-style: italic;
}

/* line 430, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.tasks-form-section .empty-tasks-message i {
  font-size: 16px;
  opacity: 0.8;
}

/* Section description */
/* line 438, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.description-form-section {
  margin-bottom: 24px;
}

/* line 442, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.description-form-section .form-group .form-control {
  resize: vertical;
  min-height: 80px;
  max-height: 150px;
  line-height: 1.5;
}

/* Section action validante */
/* line 452, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.validating-action-form-section {
  margin-bottom: 24px;
}

/* line 456, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.validating-action-form-section .form-group .form-control {
  width: 100%;
}

/* line 460, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.validating-action-form-section .form-group .form-text {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

/* Styles pour les lignes d'étapes dans le formulaire principal */
/* line 471, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.step-form-row .step-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 476, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.step-form-row .step-actions .edit-step-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(74, 144, 226, 0.1);
  border: 1px solid rgba(74, 144, 226, 0.2);
  border-radius: 6px;
  color: rgba(74, 144, 226, 0.8);
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 489, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.step-form-row .step-actions .edit-step-btn:hover {
  background: rgba(74, 144, 226, 0.2);
  border-color: rgba(74, 144, 226, 0.4);
  color: rgba(74, 144, 226, 0.9);
  transform: scale(1.05);
}

/* line 496, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.step-form-row .step-actions .edit-step-btn i {
  font-size: 12px;
}

/* line 502, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.step-form-row .step-tasks-summary {
  margin-top: 8px;
}

/* line 505, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.step-form-row .step-tasks-summary .tasks-count {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}

/* line 512, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.step-form-row .step-tasks-summary .tasks-count i {
  color: rgba(74, 144, 226, 0.7);
  font-size: 10px;
}

/* Animations */
@keyframes slideInModal {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* line 532, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.step-modal {
  animation: slideInModal 0.3s ease-out;
}

/* Scrollbar personnalisée pour WebKit */
/* line 537, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.custom-modal-body::-webkit-scrollbar,
.tasks-container::-webkit-scrollbar {
  width: 6px;
}

/* line 542, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.custom-modal-body::-webkit-scrollbar-track,
.tasks-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

/* line 548, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.custom-modal-body::-webkit-scrollbar-thumb,
.tasks-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

/* line 554, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.custom-modal-body::-webkit-scrollbar-thumb:hover,
.tasks-container::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Scrollbar personnalisée pour .step-modal .custom-modal-body */
/* line 560, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.step-modal .custom-modal-body::-webkit-scrollbar {
  width: 6px;
}

/* line 564, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.step-modal .custom-modal-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

/* line 569, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.step-modal .custom-modal-body::-webkit-scrollbar-thumb {
  background: rgba(195, 135, 97, 0.3);
  border-radius: 3px;
}

/* line 574, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.step-modal .custom-modal-body::-webkit-scrollbar-thumb:hover {
  background: rgba(195, 135, 97, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  /* line 580, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
  .step-modal {
    max-width: 95vw;
    max-height: 90vh;
    margin: 10px;
  }
  /* line 586, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
  .step-form-section .form-row {
    flex-direction: column;
    gap: 12px;
  }
  /* line 591, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
  .task-form-row {
    flex-direction: column;
    gap: 8px;
  }
  /* line 595, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
  .task-form-row .task-actions {
    flex-direction: row;
    justify-content: flex-end;
  }
  /* line 601, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
  .tasks-container {
    max-height: 200px;
  }
}

/* ==========================================================================
   LIGHTMODE STYLES - Styles pour le mode clair de la modal d'étape
   ========================================================================== */
/* line 610, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode {
  /* Overlay de la modal */
  /* Modal principale */
  /* En-tête de la modal */
  /* Corps de la modal */
  /* Pied de la modal */
  /* Labels des formulaires */
  /* Champs de formulaire */
  /* Messages d'erreur */
  /* Section des tâches */
  /* Lignes de tâches */
  /* Message vide des tâches */
  /* Boutons d'action */
  /* Scrollbars */
  /* Scrollbar personnalisée pour .step-modal .custom-modal-body en lightmode */
}

/* line 612, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .custom-modal-overlay {
  background-color: rgba(0, 0, 0, 0.5);
}

/* line 617, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .step-modal {
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(20, 13, 35, 0.15);
  box-shadow: 0 8px 32px rgba(20, 13, 35, 0.1);
}

/* line 624, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .step-modal .custom-modal-header {
  background: transparent;
  border-bottom: 1px solid rgba(20, 13, 35, 0.15);
}

/* line 628, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .step-modal .custom-modal-header .custom-modal-title {
  color: #140D23 !important;
}

/* line 631, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .step-modal .custom-modal-header .custom-modal-title i {
  color: #C38761;
}

/* line 636, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .step-modal .custom-modal-header .custom-modal-close {
  color: #140D23 !important;
}

/* line 639, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .step-modal .custom-modal-header .custom-modal-close:hover {
  color: #C38761;
}

/* line 646, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .step-modal .custom-modal-body {
  background: rgba(255, 255, 255, 0.766);
}

/* line 651, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .step-modal .custom-modal-footer {
  background: white;
  border-top: 1px solid rgba(20, 13, 35, 0.15);
}

/* line 655, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .modal-label {
  color: #140D23 !important;
}

/* line 659, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .step-form-section .modal-label {
  color: #140D23 !important;
}

/* line 662, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .step-form-section .modal-label i {
  color: #C38761;
}

/* line 666, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .step-form-section textarea {
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
}

/* line 671, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .step-form-section .form-control {
  background: rgba(90, 90, 90, 0.9);
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
  color: #140D23;
}

/* line 676, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .step-form-section .form-control:focus {
  border-color: rgba(195, 135, 97, 0.5);
  background: white;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 682, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .step-form-section .form-control::placeholder {
  color: rgba(20, 13, 35, 0.5);
}

/* line 686, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .step-form-section .form-control.field-error {
  border-color: rgba(220, 53, 69, 0.6);
  background: rgba(220, 53, 69, 0.05);
}

/* line 693, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .step-form-section .field-error-message {
  color: #dc3545;
}

/* line 698, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .tasks-form-section {
  background: rgba(20, 13, 35, 0.03);
  border: 1px solid rgba(20, 13, 35, 0.15);
  /* Surcharge spécifique pour les modals d'étapes en mode clair */
  /* Section action validante en mode clair */
}

/* line 702, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .tasks-form-section .section-header .section-title {
  color: #140D23 !important;
}

/* line 705, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .tasks-form-section .section-header .section-title i {
  color: #C38761;
}

/* line 711, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .tasks-form-section .step-modal .description-form-section .form-group .modal-label {
  color: #140D23 !important;
}

/* line 716, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .tasks-form-section .step-modal .description-form-section .form-group .modal-label i {
  color: #140D23 !important;
}

/* line 723, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .tasks-form-section .validating-action-form-section .form-group .modal-label {
  color: #140D23 !important;
}

/* line 726, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .tasks-form-section .validating-action-form-section .form-group .modal-label i {
  color: #C38761;
}

/* line 731, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .tasks-form-section .validating-action-form-section .form-group .form-control {
  background: rgba(90, 90, 90, 0.9);
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
  color: #140D23;
}

/* line 736, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .tasks-form-section .validating-action-form-section .form-group .form-control:focus {
  border-color: rgba(195, 135, 97, 0.5);
  background: white;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 743, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .tasks-form-section .validating-action-form-section .form-group .form-text {
  color: rgba(20, 13, 35, 0.6) !important;
}

/* line 749, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .tasks-form-section .add-task-btn {
  background: rgba(195, 135, 97, 0.1);
  border: 1px solid rgba(195, 135, 97, 0.3);
  color: #C38761;
}

/* line 754, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .tasks-form-section .add-task-btn:hover {
  background: rgba(195, 135, 97, 0.2);
  border-color: rgba(195, 135, 97, 0.4);
  transform: translateY(-1px);
}

/* line 761, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .modal-label,
.lightmode .custom-modal-body label,
.lightmode .custom-modal-body .form-group label,
.lightmode .custom-modal form label {
  color: #140D23 !important;
}

/* line 769, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .task-form-row {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(20, 13, 35, 0.15);
}

/* line 773, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .task-form-row:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(20, 13, 35, 0.25);
}

/* line 778, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .task-form-row .remove-task-btn {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.2);
  color: #dc3545;
}

/* line 783, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .task-form-row .remove-task-btn:hover {
  background: rgba(220, 53, 69, 0.2);
  border-color: rgba(220, 53, 69, 0.4);
  color: #dc3545;
}

/* line 792, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .empty-tasks-message {
  color: rgba(20, 13, 35, 0.6);
}

/* line 795, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .empty-tasks-message i {
  color: #C38761;
}

/* line 802, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .custom-modal-footer .form-button.btn-secondary, .lightmode .custom-modal-footer .users-management-container .users-header .btn-secondary.add-user-btn, .users-management-container .users-header .lightmode .custom-modal-footer .btn-secondary.add-user-btn, .lightmode .custom-modal-footer .btn-secondary.crm-action-button, .lightmode .custom-modal-footer .crm-action-button.crm-action-button-secondary {
  background: rgba(20, 13, 35, 0.1);
  border: 1px solid rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 807, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .custom-modal-footer .form-button.btn-secondary:hover, .lightmode .custom-modal-footer .users-management-container .users-header .btn-secondary.add-user-btn:hover, .users-management-container .users-header .lightmode .custom-modal-footer .btn-secondary.add-user-btn:hover, .lightmode .custom-modal-footer .btn-secondary.crm-action-button:hover, .lightmode .custom-modal-footer .crm-action-button.crm-action-button-secondary:hover {
  background: rgba(20, 13, 35, 0.2);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 813, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .custom-modal-footer .form-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary), .lightmode .custom-modal-footer .users-management-container .users-header .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary), .users-management-container .users-header .lightmode .custom-modal-footer .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary), .lightmode .custom-modal-footer .crm-action-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary) {
  background: rgba(195, 135, 97, 0.1);
  border: 1px solid rgba(195, 135, 97, 0.3);
  color: #C38761;
}

/* line 818, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .custom-modal-footer .form-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover, .lightmode .custom-modal-footer .users-management-container .users-header .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover, .users-management-container .users-header .lightmode .custom-modal-footer .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover, .lightmode .custom-modal-footer .crm-action-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover {
  background: rgba(195, 135, 97, 0.2);
  border-color: rgba(195, 135, 97, 0.4);
}

/* line 826, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .custom-modal-body::-webkit-scrollbar-track,
.lightmode .tasks-container::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 831, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .custom-modal-body::-webkit-scrollbar-thumb,
.lightmode .tasks-container::-webkit-scrollbar-thumb {
  background: rgba(195, 135, 97, 0.3);
}

/* line 835, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .custom-modal-body::-webkit-scrollbar-thumb:hover,
.lightmode .tasks-container::-webkit-scrollbar-thumb:hover {
  background: rgba(195, 135, 97, 0.5);
}

/* line 841, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .step-modal .custom-modal-body::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 845, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .step-modal .custom-modal-body::-webkit-scrollbar-thumb {
  background: rgba(195, 135, 97, 0.3);
}

/* line 848, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .step-modal .custom-modal-body::-webkit-scrollbar-thumb:hover {
  background: rgba(195, 135, 97, 0.5);
}

/* line 852, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .step-modal .form-control,
.lightmode .step-modal textarea.form-control {
  background: rgba(20, 13, 35, 0.03) !important;
  border: 1px solid rgba(20, 13, 35, 0.15) !important;
  color: #140D23;
}

/* line 857, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .step-modal .form-control::placeholder,
.lightmode .step-modal textarea.form-control::placeholder {
  color: rgba(20, 13, 35, 0.5);
}

/* line 860, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_step_modal.scss */
.lightmode .step-modal .form-control:focus,
.lightmode .step-modal textarea.form-control:focus {
  border-color: rgba(195, 135, 97, 0.5);
  background: white;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* ==========================================================================
   MODAL DÉTAILS DE TÂCHE - Styles spécifiques
   Cohérent avec les modules gestion de projet
   ========================================================================== */
/* Styles spécifiques pour la modal de détails de tâche */
/* line 7, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-modal {
  max-width: 700px !important;
  max-height: 85vh !important;
  width: 90% !important;
  margin: auto !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
}

/* line 16, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-modal .custom-modal-header {
  flex-shrink: 0;
  padding: 10px;
}

/* line 21, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-modal .custom-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 0 10px;
  max-height: calc(85vh - 120px);
  /* Scrollbar personnalisée */
}

/* line 28, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-modal .custom-modal-body::-webkit-scrollbar {
  width: 4px;
}

/* line 32, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-modal .custom-modal-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
}

/* line 37, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-modal .custom-modal-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

/* line 42, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-modal .custom-modal-body::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* line 47, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-modal .custom-modal-footer {
  flex-shrink: 0;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.1);
}

/* Ajustements pour l'overlay - SEULEMENT dans le contexte projet */
/* line 55, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.project-board-capsule .custom-modal-overlay,
.project-show-capsule .custom-modal-overlay {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px !important;
  box-sizing: border-box !important;
}

/* line 65, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-header-details {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 73, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-header-details .task-name-status {
  flex: 1;
}

/* line 76, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-header-details .task-name-status .task-name {
  font-size: 24px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 8px 0;
  line-height: 1.2;
}

/* line 83, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-header-details .task-name-status .task-name.completed {
  text-decoration: line-through;
  opacity: 0.7;
}

/* line 89, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-header-details .task-name-status .task-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 100, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-header-details .task-name-status .task-status-badge.completed {
  background: rgba(40, 167, 69, 0.2);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

/* line 106, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-header-details .task-name-status .task-status-badge.pending {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

/* line 112, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-header-details .task-name-status .task-status-badge i {
  font-size: 10px;
}

/* line 119, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-header-details .task-actions-header .edit-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(74, 144, 226, 0.1);
  border: 1px solid rgba(74, 144, 226, 0.2);
  border-radius: 6px;
  color: rgba(74, 144, 226, 0.9);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
}

/* line 132, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-header-details .task-actions-header .edit-btn:hover {
  background: rgba(74, 144, 226, 0.2);
  border-color: rgba(74, 144, 226, 0.4);
  transform: translateY(-1px);
}

/* line 142, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 153, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .section-title i {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* line 158, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .section-title .assignations-count {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
}

/* line 168, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-description-section {
  margin-bottom: 32px;
}

/* line 171, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-description-section .task-description-content {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 16px;
  min-height: 80px;
}

/* line 178, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-description-section .task-description-content .description-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
}

/* line 183, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-description-section .task-description-content .description-text p {
  margin-bottom: 12px;
}

/* line 186, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-description-section .task-description-content .description-text p:last-child {
  margin-bottom: 0;
}

/* line 192, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-description-section .task-description-content .empty-description {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

/* line 196, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-description-section .task-description-content .empty-description i {
  font-size: 24px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.3);
}

/* line 202, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-description-section .task-description-content .empty-description p {
  font-size: 14px;
  margin-bottom: 4px;
}

/* line 207, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-description-section .task-description-content .empty-description small, .task-details-main .task-description-section .task-description-content .empty-description .small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* line 216, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-context-section {
  margin-bottom: 32px;
}

/* line 219, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-context-section .context-info {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 16px;
}

/* line 225, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-context-section .context-info .context-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

/* line 230, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-context-section .context-info .context-item:last-child {
  margin-bottom: 0;
}

/* line 234, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-context-section .context-info .context-item .context-label {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  min-width: 140px;
  font-size: 13px;
}

/* line 241, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-context-section .context-info .context-item .context-value {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
}

/* line 246, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-context-section .context-info .context-item .context-link {
  color: rgba(74, 144, 226, 0.9);
  text-decoration: none;
  font-size: 13px;
  transition: all 0.2s ease;
}

/* line 252, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-context-section .context-info .context-item .context-link:hover {
  color: #4a90e2;
  text-decoration: underline;
}

/* line 263, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-assignations-section .assignations-list {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  max-height: 200px;
  overflow-y: auto;
  /* Scrollbar cohérente */
}

/* line 273, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-assignations-section .assignations-list::-webkit-scrollbar {
  width: 3px;
}

/* line 277, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-assignations-section .assignations-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 282, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-assignations-section .assignations-list::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 287, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-assignations-section .assignations-list::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 291, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-assignations-section .assignations-list .assignation-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  margin-bottom: 10px;
  transition: all 0.2s ease;
}

/* line 302, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-assignations-section .assignations-list .assignation-item:last-child {
  margin-bottom: 0;
}

/* line 306, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-assignations-section .assignations-list .assignation-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

/* line 311, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-assignations-section .assignations-list .assignation-item .contact-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  flex-shrink: 0;
}

/* line 324, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-assignations-section .assignations-list .assignation-item .contact-info {
  flex: 1;
}

/* line 327, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-assignations-section .assignations-list .assignation-item .contact-info .contact-name {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2px;
}

/* line 334, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-assignations-section .assignations-list .assignation-item .contact-info .contact-role {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 343, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-assignations-section .assignations-list .assignation-item .contact-actions .contact-link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(74, 144, 226, 0.1);
  border: 1px solid rgba(74, 144, 226, 0.2);
  border-radius: 6px;
  color: rgba(74, 144, 226, 0.8);
  text-decoration: none;
  transition: all 0.2s ease;
}

/* line 356, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-assignations-section .assignations-list .assignation-item .contact-actions .contact-link-btn:hover {
  background: rgba(74, 144, 226, 0.2);
  border-color: rgba(74, 144, 226, 0.4);
  color: rgba(74, 144, 226, 0.9);
  transform: scale(1.05);
}

/* line 363, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-assignations-section .assignations-list .assignation-item .contact-actions .contact-link-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* line 367, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-assignations-section .assignations-list .assignation-item .contact-actions .contact-link-btn.disabled:hover {
  transform: none;
  background: rgba(74, 144, 226, 0.1);
  border-color: rgba(74, 144, 226, 0.2);
}

/* line 374, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-assignations-section .assignations-list .assignation-item .contact-actions .contact-link-btn i {
  font-size: 11px;
}

/* line 381, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-assignations-section .assignations-list .empty-assignations {
  text-align: center;
  padding: 24px;
  color: rgba(255, 255, 255, 0.5);
}

/* line 386, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-assignations-section .assignations-list .empty-assignations i {
  font-size: 24px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.3);
}

/* line 392, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-assignations-section .assignations-list .empty-assignations p {
  font-size: 14px;
  margin-bottom: 4px;
}

/* line 397, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-assignations-section .assignations-list .empty-assignations small, .task-details-main .task-assignations-section .assignations-list .empty-assignations .small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* line 405, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-assignations-section .assignation-actions .assign-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.2);
  border-radius: 6px;
  color: rgba(40, 167, 69, 0.9);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
}

/* line 418, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-assignations-section .assignation-actions .assign-btn:hover {
  background: rgba(40, 167, 69, 0.2);
  border-color: rgba(40, 167, 69, 0.4);
  transform: translateY(-1px);
}

/* line 424, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.task-details-main .task-assignations-section .assignation-actions .assign-btn i {
  font-size: 12px;
}

/* Responsive pour la modal de détails */
@media (max-width: 768px) {
  /* line 434, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
  .task-details-modal {
    max-width: 95vw !important;
    max-height: 90vh !important;
    width: 95% !important;
    margin: 10px !important;
  }
  /* line 440, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
  .task-details-modal .custom-modal-header {
    padding: 12px 16px;
  }
  /* line 443, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
  .task-details-modal .custom-modal-header .custom-modal-title {
    font-size: 16px;
  }
  /* line 448, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
  .task-details-modal .custom-modal-body {
    padding: 0 10px;
    max-height: calc(90vh - 100px);
  }
  /* line 453, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
  .task-details-modal .custom-modal-footer {
    padding: 12px 16px;
    flex-direction: column;
    gap: 8px;
  }
  /* line 458, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
  .task-details-modal .custom-modal-footer .form-button, .task-details-modal .custom-modal-footer .users-management-container .users-header .add-user-btn, .users-management-container .users-header .task-details-modal .custom-modal-footer .add-user-btn, .task-details-modal .custom-modal-footer .crm-action-button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  /* line 467, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
  .task-details-main .task-header-details {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  /* line 473, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
  .task-details-main .task-header-details .task-name-status {
    width: 100%;
  }
  /* line 476, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
  .task-details-main .task-header-details .task-name-status .task-name {
    font-size: 20px;
  }
  /* line 481, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
  .task-details-main .task-header-details .task-actions-header {
    width: 100%;
  }
  /* line 484, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
  .task-details-main .task-header-details .task-actions-header .edit-btn {
    width: 100%;
    justify-content: center;
  }
  /* line 491, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
  .task-details-main .section-title {
    font-size: 14px;
    margin-bottom: 12px;
  }
  /* line 496, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
  .task-details-main .task-description-section,
.task-details-main .task-context-section,
.task-details-main .task-assignations-section {
    margin-bottom: 24px;
  }
  /* line 502, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
  .task-details-main .assignations-list {
    max-height: 150px;
  }
  /* line 505, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
  .task-details-main .assignations-list .assignation-item {
    padding: 8px;
  }
  /* line 508, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
  .task-details-main .assignations-list .assignation-item .contact-avatar {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  /* line 515, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
  .task-details-main .assignations-list .assignation-item .contact-info .contact-name {
    font-size: 13px;
  }
  /* line 519, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
  .task-details-main .assignations-list .assignation-item .contact-info .contact-role {
    font-size: 10px;
  }
  /* line 526, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
  .task-details-main .assignation-actions .assign-btn {
    width: 100%;
    justify-content: center;
  }
  /* line 531, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
  .task-details-main .context-info .context-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  /* line 536, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
  .task-details-main .context-info .context-item .context-label {
    min-width: auto;
    font-size: 12px;
  }
  /* line 541, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
  .task-details-main .context-info .context-item .context-value,
.task-details-main .context-info .context-item .context-link {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  /* line 550, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
  .task-details-modal {
    max-width: 98vw !important;
    max-height: 95vh !important;
    width: 98% !important;
    margin: 5px !important;
  }
  /* line 556, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
  .task-details-modal .custom-modal-body {
    max-height: calc(95vh - 80px);
  }
}

/* line 565, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .task-details-modal .custom-modal-header {
  background: transparent;
  border-bottom: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 570, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .task-details-modal .custom-modal-body {
  background: #e8e8e8;
  color: #140D23 !important;
  /* Scrollbar personnalisée pour light mode */
}

/* line 575, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .task-details-modal .custom-modal-body::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.05);
}

/* line 579, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .task-details-modal .custom-modal-body::-webkit-scrollbar-thumb {
  background: #C38761;
}

/* line 583, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .task-details-modal .custom-modal-body::-webkit-scrollbar-thumb:hover {
  background: #140D23;
}

/* line 588, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .task-details-modal .custom-modal-footer {
  background: white !important;
  border-top: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 595, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .task-header-details {
  border-bottom: 1px solid rgba(20, 13, 35, 0.1) !important;
}

/* line 599, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .task-header-details .task-name-status .task-name {
  color: #140D23 !important;
}

/* line 602, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .task-header-details .task-name-status .task-name.completed {
  color: rgba(20, 13, 35, 0.7) !important;
}

/* line 608, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .task-header-details .task-name-status .task-status-badge.completed {
  background: rgba(40, 167, 69, 0.15);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

/* line 614, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .task-header-details .task-name-status .task-status-badge.pending {
  background: rgba(195, 135, 97, 0.15);
  color: #C38761;
  border: 1px solid rgba(195, 135, 97, 0.3);
}

/* line 620, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .task-header-details .task-name-status .task-status-badge i {
  color: inherit;
}

/* line 627, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .task-header-details .task-actions-header .edit-btn {
  background: rgba(20, 13, 35, 0.08);
  border: 1px solid rgba(20, 13, 35, 0.15);
  color: rgba(20, 13, 35, 0.8) !important;
}

/* line 632, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .task-header-details .task-actions-header .edit-btn:hover {
  background: rgba(195, 135, 97, 0.1);
  border-color: rgba(195, 135, 97, 0.3);
  color: #C38761 !important;
}

/* line 642, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .section-title {
  color: #140D23 !important;
}

/* line 645, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .section-title i {
  color: rgba(20, 13, 35, 0.6) !important;
}

/* line 649, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .section-title .assignations-count {
  color: rgba(20, 13, 35, 0.6) !important;
}

/* line 656, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .task-description-section .task-description-content {
  background: rgba(20, 13, 35, 0.02);
  border: 1px solid rgba(20, 13, 35, 0.05);
}

/* line 660, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .task-description-section .task-description-content .description-text {
  color: rgba(20, 13, 35, 0.8) !important;
}

/* line 664, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .task-description-section .task-description-content .empty-description {
  color: rgba(20, 13, 35, 0.5) !important;
}

/* line 667, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .task-description-section .task-description-content .empty-description i {
  color: rgba(20, 13, 35, 0.3) !important;
}

/* line 671, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .task-description-section .task-description-content .empty-description small, .lightmode .task-description-section .task-description-content .empty-description .small {
  color: rgba(20, 13, 35, 0.4) !important;
}

/* line 680, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .task-context-section .context-info {
  background: rgba(20, 13, 35, 0.02);
  border: 1px solid rgba(20, 13, 35, 0.05);
}

/* line 685, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .task-context-section .context-info .context-item .context-label {
  color: rgba(20, 13, 35, 0.7) !important;
}

/* line 689, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .task-context-section .context-info .context-item .context-value {
  color: #140D23 !important;
}

/* line 693, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .task-context-section .context-info .context-item .context-link {
  color: #C38761 !important;
}

/* line 696, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .task-context-section .context-info .context-item .context-link:hover {
  color: #140D23 !important;
}

/* line 706, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .task-assignations-section .assignations-list {
  background: rgba(20, 13, 35, 0.02);
  border: 1px solid rgba(20, 13, 35, 0.05);
  /* Scrollbar cohérente */
}

/* line 711, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .task-assignations-section .assignations-list::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 715, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .task-assignations-section .assignations-list::-webkit-scrollbar-thumb {
  background: #C38761;
}

/* line 719, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .task-assignations-section .assignations-list::-webkit-scrollbar-thumb:hover {
  background: #140D23;
}

/* line 723, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .task-assignations-section .assignations-list .assignation-item {
  background: rgba(20, 13, 35, 0.02);
  border: 1px solid rgba(20, 13, 35, 0.05);
  color: #140D23 !important;
}

/* line 728, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .task-assignations-section .assignations-list .assignation-item:hover {
  background: rgba(20, 13, 35, 0.04);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 733, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .task-assignations-section .assignations-list .assignation-item .contact-avatar {
  background: rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.7) !important;
}

/* line 739, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .task-assignations-section .assignations-list .assignation-item .contact-info .contact-name {
  color: #140D23 !important;
}

/* line 743, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .task-assignations-section .assignations-list .assignation-item .contact-info .contact-role {
  color: rgba(20, 13, 35, 0.6) !important;
}

/* line 749, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .task-assignations-section .assignations-list .assignation-item .contact-actions .contact-link-btn {
  background: rgba(20, 13, 35, 0.05);
  border: 1px solid rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.7) !important;
}

/* line 754, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .task-assignations-section .assignations-list .assignation-item .contact-actions .contact-link-btn:hover {
  background: rgba(195, 135, 97, 0.1);
  border-color: rgba(195, 135, 97, 0.3);
  color: #C38761 !important;
}

/* line 760, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .task-assignations-section .assignations-list .assignation-item .contact-actions .contact-link-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* line 764, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .task-assignations-section .assignations-list .assignation-item .contact-actions .contact-link-btn.disabled:hover {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.7) !important;
}

/* line 774, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .task-assignations-section .assignations-list .empty-assignations {
  color: rgba(20, 13, 35, 0.5) !important;
}

/* line 777, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .task-assignations-section .assignations-list .empty-assignations i {
  color: rgba(20, 13, 35, 0.3) !important;
}

/* line 781, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .task-assignations-section .assignations-list .empty-assignations small, .lightmode .task-assignations-section .assignations-list .empty-assignations .small {
  color: rgba(20, 13, 35, 0.4) !important;
}

/* line 788, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .task-assignations-section .assignation-actions .assign-btn {
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.2);
  color: #28a745 !important;
}

/* line 793, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .task-assignations-section .assignation-actions .assign-btn:hover {
  background: rgba(40, 167, 69, 0.2);
  border-color: rgba(40, 167, 69, 0.4);
}

/* line 798, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .task-assignations-section .assignation-actions .assign-btn i {
  color: inherit;
}

/* line 807, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .form-button.btn-secondary, .lightmode .users-management-container .users-header .btn-secondary.add-user-btn, .users-management-container .users-header .lightmode .btn-secondary.add-user-btn, .lightmode .btn-secondary.crm-action-button, .lightmode .crm-action-button.crm-action-button-secondary {
  background: rgba(20, 13, 35, 0.05);
  border: 1px solid rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.8) !important;
}

/* line 812, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .form-button.btn-secondary:hover, .lightmode .users-management-container .users-header .btn-secondary.add-user-btn:hover, .users-management-container .users-header .lightmode .btn-secondary.add-user-btn:hover, .lightmode .btn-secondary.crm-action-button:hover, .lightmode .crm-action-button.crm-action-button-secondary:hover {
  background: rgba(20, 13, 35, 0.08);
  color: #140D23 !important;
}

/* line 818, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .form-button.btn-success, .lightmode .users-management-container .users-header .btn-success.add-user-btn, .users-management-container .users-header .lightmode .btn-success.add-user-btn, .lightmode .btn-success.crm-action-button {
  background: rgba(40, 167, 69, 0.15);
  border: 1px solid rgba(40, 167, 69, 0.3);
  color: #28a745 !important;
}

/* line 823, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .form-button.btn-success:hover, .lightmode .users-management-container .users-header .btn-success.add-user-btn:hover, .users-management-container .users-header .lightmode .btn-success.add-user-btn:hover, .lightmode .btn-success.crm-action-button:hover {
  background: rgba(40, 167, 69, 0.25);
  border-color: rgba(40, 167, 69, 0.5);
}

/* line 829, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .form-button.btn-warning, .lightmode .users-management-container .users-header .btn-warning.add-user-btn, .users-management-container .users-header .lightmode .btn-warning.add-user-btn, .lightmode .btn-warning.crm-action-button {
  background: rgba(195, 135, 97, 0.15);
  border: 1px solid rgba(195, 135, 97, 0.3);
  color: #C38761 !important;
}

/* line 834, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .form-button.btn-warning:hover, .lightmode .users-management-container .users-header .btn-warning.add-user-btn:hover, .users-management-container .users-header .lightmode .btn-warning.add-user-btn:hover, .lightmode .btn-warning.crm-action-button:hover {
  background: rgba(195, 135, 97, 0.25);
  border-color: rgba(195, 135, 97, 0.5);
}

/* line 842, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .custom-modal-title {
  color: #140D23 !important;
}

/* line 845, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .custom-modal-title i {
  color: rgba(20, 13, 35, 0.7) !important;
}

/* line 851, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .custom-modal-close {
  color: rgba(20, 13, 35, 0.7) !important;
}

/* line 854, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_details_modal.scss */
.lightmode .custom-modal-close:hover {
  color: #140D23 !important;
}

/* ==========================================================================
   DARK MODE STYLES - Modale de création/édition de tâche
   ========================================================================== */
/* line 9, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.task-form-modal {
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
  backdrop-filter: blur(12px);
  border: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* line 17, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.task-form-modal .custom-modal-header {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 21, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.task-form-modal .custom-modal-header .custom-modal-title {
  color: rgba(255, 255, 255, 0.95);
}

/* line 24, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.task-form-modal .custom-modal-header .custom-modal-title i {
  color: #C38761;
}

/* line 29, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.task-form-modal .custom-modal-header .custom-modal-close {
  color: rgba(255, 255, 255, 0.8);
  background: transparent;
}

/* line 33, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.task-form-modal .custom-modal-header .custom-modal-close:hover {
  color: #C38761;
}

/* line 40, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.task-form-modal .custom-modal-body {
  background: transparent;
}

/* line 43, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.task-form-modal .custom-modal-body .modal-label,
.custom-modal-overlay:not(.lightmode) .custom-modal.task-form-modal .custom-modal-body .form-group label,
.custom-modal-overlay:not(.lightmode) .custom-modal.task-form-modal .custom-modal-body label {
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: none !important;
  text-align: left !important;
  padding-left: 0 !important;
}

/* line 51, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.task-form-modal .custom-modal-body .modal-label i,
.custom-modal-overlay:not(.lightmode) .custom-modal.task-form-modal .custom-modal-body .form-group label i,
.custom-modal-overlay:not(.lightmode) .custom-modal.task-form-modal .custom-modal-body label i {
  color: #C38761;
}

/* line 57, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.task-form-modal .custom-modal-body .form-control,
.custom-modal-overlay:not(.lightmode) .custom-modal.task-form-modal .custom-modal-body input[type="text"],
.custom-modal-overlay:not(.lightmode) .custom-modal.task-form-modal .custom-modal-body textarea {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(195, 135, 97, 0.4) !important;
  color: rgba(255, 255, 255, 0.95) !important;
  border-radius: 8px;
  width: 100% !important;
  height: auto !important;
}

/* line 67, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.task-form-modal .custom-modal-body .form-control::placeholder,
.custom-modal-overlay:not(.lightmode) .custom-modal.task-form-modal .custom-modal-body input[type="text"]::placeholder,
.custom-modal-overlay:not(.lightmode) .custom-modal.task-form-modal .custom-modal-body textarea::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* line 71, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.task-form-modal .custom-modal-body .form-control:focus,
.custom-modal-overlay:not(.lightmode) .custom-modal.task-form-modal .custom-modal-body input[type="text"]:focus,
.custom-modal-overlay:not(.lightmode) .custom-modal.task-form-modal .custom-modal-body textarea:focus {
  border-color: rgba(195, 135, 97, 0.7) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.15) !important;
  outline: none;
}

/* line 80, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.task-form-modal .custom-modal-body .checkbox-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 85, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.task-form-modal .custom-modal-body .checkbox-group .form-checkbox {
  accent-color: #C38761;
}

/* line 89, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.task-form-modal .custom-modal-body .checkbox-group .checkbox-label {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* line 96, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.task-form-modal .custom-modal-footer {
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 101, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.task-form-modal .custom-modal-footer .form-button.btn-secondary, .custom-modal-overlay:not(.lightmode) .custom-modal.task-form-modal .custom-modal-footer .users-management-container .users-header .btn-secondary.add-user-btn, .users-management-container .users-header .custom-modal-overlay:not(.lightmode) .custom-modal.task-form-modal .custom-modal-footer .btn-secondary.add-user-btn, .custom-modal-overlay:not(.lightmode) .custom-modal.task-form-modal .custom-modal-footer .btn-secondary.crm-action-button, .custom-modal-overlay:not(.lightmode) .custom-modal.task-form-modal .custom-modal-footer .crm-action-button.crm-action-button-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}

/* line 106, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.task-form-modal .custom-modal-footer .form-button.btn-secondary:hover, .custom-modal-overlay:not(.lightmode) .custom-modal.task-form-modal .custom-modal-footer .users-management-container .users-header .btn-secondary.add-user-btn:hover, .users-management-container .users-header .custom-modal-overlay:not(.lightmode) .custom-modal.task-form-modal .custom-modal-footer .btn-secondary.add-user-btn:hover, .custom-modal-overlay:not(.lightmode) .custom-modal.task-form-modal .custom-modal-footer .btn-secondary.crm-action-button:hover, .custom-modal-overlay:not(.lightmode) .custom-modal.task-form-modal .custom-modal-footer .crm-action-button.crm-action-button-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

/* line 112, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.task-form-modal .custom-modal-footer .form-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary), .custom-modal-overlay:not(.lightmode) .custom-modal.task-form-modal .custom-modal-footer .users-management-container .users-header .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary), .users-management-container .users-header .custom-modal-overlay:not(.lightmode) .custom-modal.task-form-modal .custom-modal-footer .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary), .custom-modal-overlay:not(.lightmode) .custom-modal.task-form-modal .custom-modal-footer .crm-action-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary) {
  background: #C38761;
  border: 1px solid #C38761;
  color: white;
}

/* line 117, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.task-form-modal .custom-modal-footer .form-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover, .custom-modal-overlay:not(.lightmode) .custom-modal.task-form-modal .custom-modal-footer .users-management-container .users-header .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover, .users-management-container .users-header .custom-modal-overlay:not(.lightmode) .custom-modal.task-form-modal .custom-modal-footer .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover, .custom-modal-overlay:not(.lightmode) .custom-modal.task-form-modal .custom-modal-footer .crm-action-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover {
  background: #bc794f;
}

/* ==========================================================================
   BASE STYLES
   ========================================================================== */
/* line 130, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.custom-modal-body {
  overflow-y: auto;
  max-height: calc(85vh - 120px);
}

/* line 136, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.contact-selection .mode-info {
  margin-bottom: 1rem;
}

/* line 139, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.contact-selection .mode-info .alert-info {
  background-color: rgba(54, 162, 235, 0.1);
  border: 1px solid rgba(54, 162, 235, 0.3);
  color: #1e6ba8;
  padding: 0.75rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 149, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.contact-selection .mode-info .alert-info i {
  color: #36a2eb;
}

/* line 156, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.contact-selection .contact-search-container {
  margin-bottom: 1rem;
}

/* line 159, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.contact-selection .contact-search-container .search-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.9rem;
}

/* line 166, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.contact-selection .contact-search-container .search-input:focus {
  outline: none;
  border-color: #36a2eb;
  box-shadow: 0 0 0 2px rgba(54, 162, 235, 0.2);
}

/* line 174, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.contact-selection .mode-toggle {
  margin: 10px 0;
  text-align: center;
}

/* line 178, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.contact-selection .mode-toggle .toggle-creation-btn {
  background: transparent;
  border: 1px dashed #ddd;
  color: #666;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.7rem;
  transition: all 0.2s ease;
}

/* line 188, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.contact-selection .mode-toggle .toggle-creation-btn:hover {
  border-color: #36a2eb;
  color: #36a2eb;
  background-color: rgba(54, 162, 235, 0.05);
}

/* line 194, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.contact-selection .mode-toggle .toggle-creation-btn i {
  margin-right: 0.5rem;
}

/* line 200, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.contact-selection .creation-mode {
  border-top: 1px solid #eee;
  padding-top: 1rem;
  margin-top: 1rem;
}

/* line 205, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.contact-selection .creation-mode .form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

/* line 210, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.contact-selection .creation-mode .form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

/* line 216, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.contact-selection .creation-mode .form-group {
  margin-bottom: 1rem;
}

/* line 219, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.contact-selection .creation-mode .form-group .modal-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
  font-size: 0.9rem;
}

/* line 226, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.contact-selection .creation-mode .form-group .modal-label i {
  margin-right: 0.5rem;
  color: #666;
}

/* line 232, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.contact-selection .creation-mode .form-group .form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: border-color 0.2s ease;
}

/* line 240, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.contact-selection .creation-mode .form-group .form-control:focus {
  outline: none;
  border-color: #36a2eb;
  box-shadow: 0 0 0 2px rgba(54, 162, 235, 0.2);
}

/* line 246, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.contact-selection .creation-mode .form-group .form-control[required] {
  border-left: 3px solid #ff6b6b;
}

/* line 254, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.contact-selection .contacts-capsules {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 10px;
  max-height: 270px;
  overflow-y: auto;
  padding-right: 8px;
}

/* line 263, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.contact-selection .contacts-capsules::-webkit-scrollbar {
  width: 4px;
}

/* line 266, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.contact-selection .contacts-capsules::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
}

/* line 271, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.contact-selection .contacts-capsules::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

/* line 275, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.contact-selection .contacts-capsules::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* line 280, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.contact-selection .contacts-capsules .contact-capsule {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 291, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.contact-selection .contacts-capsules .contact-capsule:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #36a2eb;
  transform: translateY(-1px);
}

/* line 297, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.contact-selection .contacts-capsules .contact-capsule.selected {
  background: rgba(54, 162, 235, 0.2);
  border-color: #36a2eb;
  box-shadow: 0 0 0 2px rgba(54, 162, 235, 0.3);
}

/* line 303, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.contact-selection .contacts-capsules .contact-capsule .contact-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #36a2eb;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* line 317, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.contact-selection .contacts-capsules .contact-capsule .contact-details {
  flex: 1;
}

/* line 320, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.contact-selection .contacts-capsules .contact-capsule .contact-details .contact-name {
  font-weight: 600;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.25rem;
}

/* line 327, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.contact-selection .contacts-capsules .contact-capsule .contact-details .contact-email {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.25rem;
}

/* line 333, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.contact-selection .contacts-capsules .contact-capsule .contact-details .contact-title {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* line 341, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.contact-selection .contacts-capsules .no-results-message {
  padding: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

/* line 347, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.contact-selection .contacts-capsules .no-results-message i {
  margin-right: 0.5rem;
  color: rgba(255, 255, 255, 0.3);
}

/* line 355, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.contact-selection .contacts-list {
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid #eee;
  border-radius: 4px;
  margin-bottom: 1rem;
}

/* line 362, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.contact-selection .contacts-list .contact-item {
  padding: 0.75rem;
  border-bottom: 1px solid #f5f5f5;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

/* line 368, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.contact-selection .contacts-list .contact-item:hover {
  background-color: #f8f9fa;
}

/* line 372, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.contact-selection .contacts-list .contact-item.selected {
  background-color: rgba(54, 162, 235, 0.1);
  border-color: #36a2eb;
}

/* line 377, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.contact-selection .contacts-list .contact-item:last-child {
  border-bottom: none;
}

/* line 382, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.contact-selection .contacts-list .contact-item .contact-info .contact-name {
  font-weight: 500;
  color: #333;
  display: block;
  margin-bottom: 0.25rem;
}

/* line 389, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.contact-selection .contacts-list .contact-item .contact-info .contact-email {
  font-size: 0.85rem;
  color: #666;
}

/* line 396, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.contact-selection .contacts-list .no-results-message {
  padding: 1rem;
  text-align: center;
  color: #666;
  font-style: italic;
}

/* line 402, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.contact-selection .contacts-list .no-results-message i {
  margin-right: 0.5rem;
  color: #999;
}

/* line 410, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.contact-selection .form-error-message {
  background-color: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
  color: #c92a2a;
  padding: 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
}

/* line 424, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.custom-modal-footer .form-button[disabled], .custom-modal-footer .users-management-container .users-header .add-user-btn[disabled], .users-management-container .users-header .custom-modal-footer .add-user-btn[disabled], .custom-modal-footer .crm-action-button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

/* line 428, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_task_modals.scss */
.custom-modal-footer .form-button[disabled]:hover, .custom-modal-footer .users-management-container .users-header .add-user-btn[disabled]:hover, .users-management-container .users-header .custom-modal-footer .add-user-btn[disabled]:hover, .custom-modal-footer .crm-action-button[disabled]:hover {
  background-color: inherit;
}

/* ==========================================================================
   MODAL PARTAGE ESPACE PROJET
   Design aligné sur template-step-modal (gradient bleu/magenta + accents dorés)
   ========================================================================== */
/* ==========================================================================
   DARK MODE STYLES (défaut)
   ========================================================================== */
/* line 10, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.portal-share-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 1050;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  padding: 20px 0;
  animation: portalFadeIn 0.3s ease;
}

/* line 26, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.portal-share-modal-content {
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
  width: 500px;
  max-width: 90%;
  margin: 0 auto;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: none;
  display: flex;
  flex-direction: column;
  animation: portalSlideIn 0.3s ease-out;
}

/* line 42, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.portal-share-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
}

/* line 51, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.portal-share-modal-header h2, .portal-share-modal-header .h2 {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 1.2rem;
  margin: 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 60, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.portal-share-modal-header h2 i, .portal-share-modal-header .h2 i {
  color: #C38761;
}

/* line 66, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.portal-share-modal-close {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  cursor: pointer;
  transition: color 0.2s ease;
  background: transparent;
  border: none;
  padding: 0;
  line-height: 1;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

/* line 82, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.portal-share-modal-close:hover {
  color: #C38761;
  background: rgba(255, 255, 255, 0.1);
}

/* line 87, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.portal-share-modal-close i {
  color: inherit;
}

/* line 92, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.portal-share-modal-body {
  padding: 24px;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: transparent;
}

/* line 100, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.portal-share-modal-body .helper-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  margin: 0;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 3px solid rgba(195, 135, 97, 0.7);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 112, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.portal-share-modal-body .helper-text i {
  color: #C38761;
  font-size: 1.1rem;
}

/* line 118, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.portal-share-modal-body .portal-share-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 8px;
}

/* line 125, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.portal-share-modal-body .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

/* line 132, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.portal-share-modal-body .feature-item i {
  color: #2ecc71;
  width: 20px;
  text-align: center;
}

/* line 139, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.portal-share-modal-body .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 145, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.portal-share-modal-body .form-label {
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
}

/* line 151, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.portal-share-modal-body .copy-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* line 157, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.portal-share-modal-body .form-control {
  flex: 1;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(195, 135, 97, 0.4);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.85rem;
  font-family: monospace;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

/* line 168, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.portal-share-modal-body .form-control:focus {
  outline: none;
  border-color: rgba(195, 135, 97, 0.7);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.15);
}

/* line 175, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.portal-share-modal-body .form-control::selection {
  background: rgba(195, 135, 97, 0.3);
  color: white;
}

/* line 181, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.portal-share-modal-body .portal-share-warning {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 152, 0, 0.12);
  border-radius: 8px;
  border-left: 3px solid #ff9800;
}

/* line 190, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.portal-share-modal-body .portal-share-warning > i {
  color: #ff9800;
  margin-top: 2px;
  flex-shrink: 0;
}

/* line 196, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.portal-share-modal-body .portal-share-warning span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

/* line 201, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.portal-share-modal-body .portal-share-warning span strong {
  color: rgba(255, 255, 255, 0.95);
}

/* line 207, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.portal-share-modal-body .portal-share-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(195, 135, 97, 0.1);
  border-radius: 8px;
  border-left: 3px solid #C38761;
}

/* line 216, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.portal-share-modal-body .portal-share-info > i {
  color: #C38761;
  margin-top: 2px;
  flex-shrink: 0;
}

/* line 222, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.portal-share-modal-body .portal-share-info span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

/* line 227, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.portal-share-modal-body .portal-share-info span strong {
  color: #C38761;
}

/* line 234, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.portal-share-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 16px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
}

/* line 243, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.portal-share-modal-body .form-button, .portal-share-modal-body .users-management-container .users-header .add-user-btn, .users-management-container .users-header .portal-share-modal-body .add-user-btn, .portal-share-modal-body .crm-action-button,
.portal-share-modal-footer .form-button,
.portal-share-modal-footer .users-management-container .users-header .add-user-btn,
.users-management-container .users-header .portal-share-modal-footer .add-user-btn,
.portal-share-modal-footer .crm-action-button {
  padding: 10px 20px;
  font-size: 0.9rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
  border: none;
}

/* line 259, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.portal-share-modal-body .form-button.btn-secondary, .portal-share-modal-body .users-management-container .users-header .btn-secondary.add-user-btn, .users-management-container .users-header .portal-share-modal-body .btn-secondary.add-user-btn, .portal-share-modal-body .btn-secondary.crm-action-button, .portal-share-modal-body .crm-action-button.crm-action-button-secondary,
.portal-share-modal-footer .form-button.btn-secondary,
.portal-share-modal-footer .users-management-container .users-header .btn-secondary.add-user-btn,
.users-management-container .users-header .portal-share-modal-footer .btn-secondary.add-user-btn,
.portal-share-modal-footer .btn-secondary.crm-action-button,
.portal-share-modal-footer .crm-action-button.crm-action-button-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}

/* line 264, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.portal-share-modal-body .form-button.btn-secondary:hover, .portal-share-modal-body .users-management-container .users-header .btn-secondary.add-user-btn:hover, .users-management-container .users-header .portal-share-modal-body .btn-secondary.add-user-btn:hover, .portal-share-modal-body .btn-secondary.crm-action-button:hover, .portal-share-modal-body .crm-action-button.crm-action-button-secondary:hover,
.portal-share-modal-footer .form-button.btn-secondary:hover,
.portal-share-modal-footer .users-management-container .users-header .btn-secondary.add-user-btn:hover,
.users-management-container .users-header .portal-share-modal-footer .btn-secondary.add-user-btn:hover,
.portal-share-modal-footer .btn-secondary.crm-action-button:hover,
.portal-share-modal-footer .crm-action-button.crm-action-button-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

/* line 270, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.portal-share-modal-body .form-button.btn-primary, .portal-share-modal-body .users-management-container .users-header .btn-primary.add-user-btn, .users-management-container .users-header .portal-share-modal-body .btn-primary.add-user-btn, .portal-share-modal-body .btn-primary.crm-action-button, .portal-share-modal-body .crm-action-button.crm-action-button-primary,
.portal-share-modal-footer .form-button.btn-primary,
.portal-share-modal-footer .users-management-container .users-header .btn-primary.add-user-btn,
.users-management-container .users-header .portal-share-modal-footer .btn-primary.add-user-btn,
.portal-share-modal-footer .btn-primary.crm-action-button,
.portal-share-modal-footer .crm-action-button.crm-action-button-primary {
  background: #C38761;
  border: 1px solid #C38761;
  color: white;
}

/* line 275, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.portal-share-modal-body .form-button.btn-primary:hover, .portal-share-modal-body .users-management-container .users-header .btn-primary.add-user-btn:hover, .users-management-container .users-header .portal-share-modal-body .btn-primary.add-user-btn:hover, .portal-share-modal-body .btn-primary.crm-action-button:hover, .portal-share-modal-body .crm-action-button.crm-action-button-primary:hover,
.portal-share-modal-footer .form-button.btn-primary:hover,
.portal-share-modal-footer .users-management-container .users-header .btn-primary.add-user-btn:hover,
.users-management-container .users-header .portal-share-modal-footer .btn-primary.add-user-btn:hover,
.portal-share-modal-footer .btn-primary.crm-action-button:hover,
.portal-share-modal-footer .crm-action-button.crm-action-button-primary:hover {
  background: #bc794f;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(195, 135, 97, 0.3);
}

/* line 281, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.portal-share-modal-body .form-button.btn-primary:active, .portal-share-modal-body .users-management-container .users-header .btn-primary.add-user-btn:active, .users-management-container .users-header .portal-share-modal-body .btn-primary.add-user-btn:active, .portal-share-modal-body .btn-primary.crm-action-button:active, .portal-share-modal-body .crm-action-button.crm-action-button-primary:active,
.portal-share-modal-footer .form-button.btn-primary:active,
.portal-share-modal-footer .users-management-container .users-header .btn-primary.add-user-btn:active,
.users-management-container .users-header .portal-share-modal-footer .btn-primary.add-user-btn:active,
.portal-share-modal-footer .btn-primary.crm-action-button:active,
.portal-share-modal-footer .crm-action-button.crm-action-button-primary:active {
  transform: translateY(0);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes portalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes portalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ==========================================================================
   LIGHT MODE STYLES
   ========================================================================== */
/* line 317, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.lightmode .portal-share-modal-overlay .portal-share-modal-content,
.portal-share-modal-overlay.lightmode .portal-share-modal-content {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(20, 13, 35, 0.15);
  box-shadow: 0 8px 32px rgba(20, 13, 35, 0.15);
}

/* line 323, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.lightmode .portal-share-modal-overlay .portal-share-modal-header,
.portal-share-modal-overlay.lightmode .portal-share-modal-header {
  border-bottom: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 326, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.lightmode .portal-share-modal-overlay .portal-share-modal-header h2, .lightmode .portal-share-modal-overlay .portal-share-modal-header .h2,
.portal-share-modal-overlay.lightmode .portal-share-modal-header h2,
.portal-share-modal-overlay.lightmode .portal-share-modal-header .h2 {
  color: #140D23 !important;
}

/* line 329, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.lightmode .portal-share-modal-overlay .portal-share-modal-header h2 i, .lightmode .portal-share-modal-overlay .portal-share-modal-header .h2 i,
.portal-share-modal-overlay.lightmode .portal-share-modal-header h2 i,
.portal-share-modal-overlay.lightmode .portal-share-modal-header .h2 i {
  color: #C38761;
}

/* line 335, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.lightmode .portal-share-modal-overlay .portal-share-modal-close,
.portal-share-modal-overlay.lightmode .portal-share-modal-close {
  color: #140D23;
}

/* line 338, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.lightmode .portal-share-modal-overlay .portal-share-modal-close:hover,
.portal-share-modal-overlay.lightmode .portal-share-modal-close:hover {
  color: #C38761;
  background: rgba(20, 13, 35, 0.05);
}

/* line 344, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.lightmode .portal-share-modal-overlay .portal-share-modal-body,
.portal-share-modal-overlay.lightmode .portal-share-modal-body {
  color: #140D23;
}

/* line 347, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.lightmode .portal-share-modal-overlay .portal-share-modal-body .helper-text,
.portal-share-modal-overlay.lightmode .portal-share-modal-body .helper-text {
  color: rgba(20, 13, 35, 0.85);
  background: rgba(20, 13, 35, 0.05);
  border-left-color: rgba(195, 135, 97, 0.7);
}

/* line 352, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.lightmode .portal-share-modal-overlay .portal-share-modal-body .helper-text i,
.portal-share-modal-overlay.lightmode .portal-share-modal-body .helper-text i {
  color: #C38761;
}

/* line 357, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.lightmode .portal-share-modal-overlay .portal-share-modal-body .feature-item,
.portal-share-modal-overlay.lightmode .portal-share-modal-body .feature-item {
  color: rgba(20, 13, 35, 0.9);
}

/* line 360, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.lightmode .portal-share-modal-overlay .portal-share-modal-body .feature-item i,
.portal-share-modal-overlay.lightmode .portal-share-modal-body .feature-item i {
  color: #27ae60;
}

/* line 365, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.lightmode .portal-share-modal-overlay .portal-share-modal-body .form-label,
.portal-share-modal-overlay.lightmode .portal-share-modal-body .form-label {
  color: #140D23;
}

/* line 369, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.lightmode .portal-share-modal-overlay .portal-share-modal-body .form-control,
.portal-share-modal-overlay.lightmode .portal-share-modal-body .form-control {
  background: #e8e8e8;
  border: 1px solid rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 374, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.lightmode .portal-share-modal-overlay .portal-share-modal-body .form-control:focus,
.portal-share-modal-overlay.lightmode .portal-share-modal-body .form-control:focus {
  border-color: #C38761;
  background: white;
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.15);
}

/* line 381, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.lightmode .portal-share-modal-overlay .portal-share-modal-body .portal-share-warning,
.portal-share-modal-overlay.lightmode .portal-share-modal-body .portal-share-warning {
  background: rgba(255, 152, 0, 0.1);
}

/* line 384, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.lightmode .portal-share-modal-overlay .portal-share-modal-body .portal-share-warning span,
.portal-share-modal-overlay.lightmode .portal-share-modal-body .portal-share-warning span {
  color: rgba(20, 13, 35, 0.85);
}

/* line 387, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.lightmode .portal-share-modal-overlay .portal-share-modal-body .portal-share-warning span strong,
.portal-share-modal-overlay.lightmode .portal-share-modal-body .portal-share-warning span strong {
  color: #140D23;
}

/* line 393, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.lightmode .portal-share-modal-overlay .portal-share-modal-body .portal-share-info,
.portal-share-modal-overlay.lightmode .portal-share-modal-body .portal-share-info {
  background: rgba(195, 135, 97, 0.08);
  border-left-color: #C38761;
}

/* line 397, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.lightmode .portal-share-modal-overlay .portal-share-modal-body .portal-share-info > i,
.portal-share-modal-overlay.lightmode .portal-share-modal-body .portal-share-info > i {
  color: #C38761;
}

/* line 401, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.lightmode .portal-share-modal-overlay .portal-share-modal-body .portal-share-info span,
.portal-share-modal-overlay.lightmode .portal-share-modal-body .portal-share-info span {
  color: rgba(20, 13, 35, 0.85);
}

/* line 404, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.lightmode .portal-share-modal-overlay .portal-share-modal-body .portal-share-info span strong,
.portal-share-modal-overlay.lightmode .portal-share-modal-body .portal-share-info span strong {
  color: #C38761;
}

/* line 411, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.lightmode .portal-share-modal-overlay .portal-share-modal-footer,
.portal-share-modal-overlay.lightmode .portal-share-modal-footer {
  border-top: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 415, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.lightmode .portal-share-modal-overlay .portal-share-modal-footer .form-button.btn-secondary, .lightmode .portal-share-modal-overlay .portal-share-modal-footer .users-management-container .users-header .btn-secondary.add-user-btn, .users-management-container .users-header .lightmode .portal-share-modal-overlay .portal-share-modal-footer .btn-secondary.add-user-btn, .lightmode .portal-share-modal-overlay .portal-share-modal-footer .btn-secondary.crm-action-button, .lightmode .portal-share-modal-overlay .portal-share-modal-footer .crm-action-button.crm-action-button-secondary,
.portal-share-modal-overlay.lightmode .portal-share-modal-footer .form-button.btn-secondary,
.portal-share-modal-overlay.lightmode .portal-share-modal-footer .users-management-container .users-header .btn-secondary.add-user-btn,
.users-management-container .users-header .portal-share-modal-overlay.lightmode .portal-share-modal-footer .btn-secondary.add-user-btn,
.portal-share-modal-overlay.lightmode .portal-share-modal-footer .btn-secondary.crm-action-button,
.portal-share-modal-overlay.lightmode .portal-share-modal-footer .crm-action-button.crm-action-button-secondary {
  background: #e8e8e8;
  border: 1px solid rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 420, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.lightmode .portal-share-modal-overlay .portal-share-modal-footer .form-button.btn-secondary:hover, .lightmode .portal-share-modal-overlay .portal-share-modal-footer .users-management-container .users-header .btn-secondary.add-user-btn:hover, .users-management-container .users-header .lightmode .portal-share-modal-overlay .portal-share-modal-footer .btn-secondary.add-user-btn:hover, .lightmode .portal-share-modal-overlay .portal-share-modal-footer .btn-secondary.crm-action-button:hover, .lightmode .portal-share-modal-overlay .portal-share-modal-footer .crm-action-button.crm-action-button-secondary:hover,
.portal-share-modal-overlay.lightmode .portal-share-modal-footer .form-button.btn-secondary:hover,
.portal-share-modal-overlay.lightmode .portal-share-modal-footer .users-management-container .users-header .btn-secondary.add-user-btn:hover,
.users-management-container .users-header .portal-share-modal-overlay.lightmode .portal-share-modal-footer .btn-secondary.add-user-btn:hover,
.portal-share-modal-overlay.lightmode .portal-share-modal-footer .btn-secondary.crm-action-button:hover,
.portal-share-modal-overlay.lightmode .portal-share-modal-footer .crm-action-button.crm-action-button-secondary:hover {
  background: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 426, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.lightmode .portal-share-modal-overlay .portal-share-modal-footer .form-button.btn-primary, .lightmode .portal-share-modal-overlay .portal-share-modal-footer .users-management-container .users-header .btn-primary.add-user-btn, .users-management-container .users-header .lightmode .portal-share-modal-overlay .portal-share-modal-footer .btn-primary.add-user-btn, .lightmode .portal-share-modal-overlay .portal-share-modal-footer .btn-primary.crm-action-button, .lightmode .portal-share-modal-overlay .portal-share-modal-footer .crm-action-button.crm-action-button-primary,
.portal-share-modal-overlay.lightmode .portal-share-modal-footer .form-button.btn-primary,
.portal-share-modal-overlay.lightmode .portal-share-modal-footer .users-management-container .users-header .btn-primary.add-user-btn,
.users-management-container .users-header .portal-share-modal-overlay.lightmode .portal-share-modal-footer .btn-primary.add-user-btn,
.portal-share-modal-overlay.lightmode .portal-share-modal-footer .btn-primary.crm-action-button,
.portal-share-modal-overlay.lightmode .portal-share-modal-footer .crm-action-button.crm-action-button-primary {
  background: #C38761;
  border-color: #C38761;
  color: white;
}

/* line 431, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
.lightmode .portal-share-modal-overlay .portal-share-modal-footer .form-button.btn-primary:hover, .lightmode .portal-share-modal-overlay .portal-share-modal-footer .users-management-container .users-header .btn-primary.add-user-btn:hover, .users-management-container .users-header .lightmode .portal-share-modal-overlay .portal-share-modal-footer .btn-primary.add-user-btn:hover, .lightmode .portal-share-modal-overlay .portal-share-modal-footer .btn-primary.crm-action-button:hover, .lightmode .portal-share-modal-overlay .portal-share-modal-footer .crm-action-button.crm-action-button-primary:hover,
.portal-share-modal-overlay.lightmode .portal-share-modal-footer .form-button.btn-primary:hover,
.portal-share-modal-overlay.lightmode .portal-share-modal-footer .users-management-container .users-header .btn-primary.add-user-btn:hover,
.users-management-container .users-header .portal-share-modal-overlay.lightmode .portal-share-modal-footer .btn-primary.add-user-btn:hover,
.portal-share-modal-overlay.lightmode .portal-share-modal-footer .btn-primary.crm-action-button:hover,
.portal-share-modal-overlay.lightmode .portal-share-modal-footer .crm-action-button.crm-action-button-primary:hover {
  background: #bc794f;
  box-shadow: 0 4px 12px rgba(195, 135, 97, 0.3);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 768px) {
  /* line 445, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
  .portal-share-modal-content {
    width: 95%;
    max-width: none;
    margin: 10px;
  }
  /* line 451, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
  .portal-share-modal-header {
    padding: 14px 18px;
  }
  /* line 454, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
  .portal-share-modal-header h2, .portal-share-modal-header .h2 {
    font-size: 1.1rem;
  }
  /* line 459, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
  .portal-share-modal-body {
    padding: 18px;
    gap: 16px;
  }
  /* line 463, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
  .portal-share-modal-body .copy-row {
    flex-direction: column;
  }
  /* line 466, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
  .portal-share-modal-body .copy-row .form-control,
.portal-share-modal-body .copy-row .form-button,
.portal-share-modal-body .copy-row .users-management-container .users-header .add-user-btn,
.users-management-container .users-header .portal-share-modal-body .copy-row .add-user-btn,
.portal-share-modal-body .copy-row .crm-action-button {
    width: 100%;
  }
  /* line 473, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_portal_link_modal.scss */
  .portal-share-modal-footer {
    padding: 14px 18px;
  }
}

/* ========================================================================
   MODAL - Dépendances d'étape (FS)
   Inspirée des modals récentes (profil / participants)
   ======================================================================== */
/* line 6, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_dependencies_modal.scss */
.dependencies-modal {
  width: 92vw;
  max-width: 720px;
  border-radius: 12px;
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* line 16, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_dependencies_modal.scss */
.dependencies-modal .custom-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 23, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_dependencies_modal.scss */
.dependencies-modal .custom-modal-header .custom-modal-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

/* line 31, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_dependencies_modal.scss */
.dependencies-modal .custom-modal-header .custom-modal-title i {
  color: #C38761;
}

/* line 36, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_dependencies_modal.scss */
.dependencies-modal .custom-modal-header .custom-modal-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

/* line 50, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_dependencies_modal.scss */
.dependencies-modal .custom-modal-header .custom-modal-close:hover {
  color: #C38761;
  background: rgba(255, 255, 255, 0.1);
}

/* line 57, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_dependencies_modal.scss */
.dependencies-modal .custom-modal-body {
  padding: 18px 24px 6px 24px;
  max-height: 60vh;
  overflow-y: auto;
  /* Les styles pour .dependencies-checkboxes et .dependency-checkbox-label
       sont maintenant dans le composant commun components/_dependencies.scss */
}

/* line 62, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_dependencies_modal.scss */
.dependencies-modal .custom-modal-body .modal-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.9);
}

/* line 71, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_dependencies_modal.scss */
.dependencies-modal .custom-modal-body .modal-label i {
  color: #C38761;
}

/* line 77, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_dependencies_modal.scss */
.dependencies-modal .custom-modal-body .helper-text {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 86, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_dependencies_modal.scss */
.dependencies-modal .custom-modal-body .helper-text i {
  color: rgba(255, 255, 255, 0.45);
}

/* line 90, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_dependencies_modal.scss */
.dependencies-modal .custom-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 16px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 97, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_dependencies_modal.scss */
.dependencies-modal .custom-modal-footer .form-button, .dependencies-modal .custom-modal-footer .users-management-container .users-header .add-user-btn, .users-management-container .users-header .dependencies-modal .custom-modal-footer .add-user-btn, .dependencies-modal .custom-modal-footer .crm-action-button {
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
}

/* Light mode */
/* line 106, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_dependencies_modal.scss */
.lightmode .dependencies-modal {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(20, 13, 35, 0.15);
  box-shadow: 0 8px 32px rgba(20, 13, 35, 0.15);
}

/* line 111, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_dependencies_modal.scss */
.lightmode .dependencies-modal .custom-modal-header {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 112, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_dependencies_modal.scss */
.lightmode .dependencies-modal .custom-modal-footer {
  border-top-color: rgba(20, 13, 35, 0.1);
}

/* line 114, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_dependencies_modal.scss */
.lightmode .dependencies-modal .custom-modal-title {
  color: #140D23 !important;
}

/* line 115, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_dependencies_modal.scss */
.lightmode .dependencies-modal .custom-modal-close {
  color: #140D23 !important;
}

/* line 117, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_dependencies_modal.scss */
.lightmode .dependencies-modal .custom-modal-body {
  /* Les styles light mode pour .dependencies-checkboxes et .dependency-checkbox-label
       sont maintenant dans le composant commun components/_dependencies.scss */
}

/* line 118, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_dependencies_modal.scss */
.lightmode .dependencies-modal .custom-modal-body .modal-label {
  color: #140D23 !important;
}

/* line 123, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_dependencies_modal.scss */
.lightmode .dependencies-modal .custom-modal-body .helper-text {
  color: rgba(20, 13, 35, 0.6) !important;
}

/* ==========================================================================
   NOTIFICATIONS - MODULE GESTION DE PROJET
   Styles pour les notifications générées par les contrôleurs Stimulus
   ========================================================================== */
/* ==========================================================================
   NOTIFICATION DE BASE
   ========================================================================== */
/* line 10, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_notifications.scss */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  padding: 12px 16px;
  border-radius: 8px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 350px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  opacity: 0;
  /* Animation d'entrée */
  /* Animation de sortie */
}

/* line 30, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_notifications.scss */
.notification.show {
  transform: translateX(0);
  opacity: 1;
}

/* line 36, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_notifications.scss */
.notification.hide {
  transform: translateX(100%);
  opacity: 0;
}

/* line 41, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_notifications.scss */
.notification i {
  font-size: 16px;
  opacity: 0.9;
}

/* line 46, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_notifications.scss */
.notification span {
  flex: 1;
}

/* ==========================================================================
   TYPES DE NOTIFICATIONS
   ========================================================================== */
/* line 55, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_notifications.scss */
.notification-success {
  background: rgba(40, 167, 69, 0.9);
}

/* line 59, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_notifications.scss */
.notification-error {
  background: rgba(220, 53, 69, 0.9);
}

/* line 63, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_notifications.scss */
.notification-warning {
  background: rgba(255, 193, 7, 0.9);
  color: #333;
}

/* line 68, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_notifications.scss */
.notification-info {
  background: rgba(23, 162, 184, 0.9);
}

/* ==========================================================================
   NOTIFICATIONS SPÉCIALES - STATUT D'ÉTAPE
   ========================================================================== */
/* line 76, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_notifications.scss */
.notification-step-completed {
  top: 80px;
  /* Plus bas que les notifications normales */
  padding: 16px 20px;
  border-radius: 12px;
  max-width: 380px;
  background: rgba(40, 167, 69, 0.95);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* line 85, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_notifications.scss */
.notification-step-completed i {
  font-size: 24px;
}

/* line 89, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_notifications.scss */
.notification-step-completed span {
  font-weight: 600;
}

/* line 92, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_notifications.scss */
.notification-step-completed span::before {
  content: "🎉 ";
}

/* line 98, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_notifications.scss */
.notification-step-pending {
  top: 80px;
  padding: 16px 20px;
  border-radius: 12px;
  max-width: 380px;
  background: rgba(255, 193, 7, 0.95);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  color: #333;
}

/* line 108, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_notifications.scss */
.notification-step-pending i {
  font-size: 24px;
}

/* line 112, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_notifications.scss */
.notification-step-pending span {
  font-weight: 600;
}

/* line 115, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_notifications.scss */
.notification-step-pending span::before {
  content: "⏳ ";
}

/* ==========================================================================
   ANIMATIONS DES ÉLÉMENTS DE STATUT
   ========================================================================== */
/* line 125, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_notifications.scss */
.step-status-badge,
.step-status {
  transition: all 0.3s ease;
}

/* line 129, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_notifications.scss */
.step-status-badge.status-updated,
.step-status.status-updated {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(40, 167, 69, 0.6);
}

/* ==========================================================================
   NOTIFICATIONS D'AFFECTATION DES TÂCHES
   ========================================================================== */
/* line 139, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_notifications.scss */
.notification-message {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 20px;
  color: white;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  max-width: 400px;
  transition: opacity 0.3s ease;
}

/* line 151, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_notifications.scss */
.notification-message--success {
  background-color: #28a745;
}

/* line 155, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_notifications.scss */
.notification-message--error {
  background-color: #dc3545;
}

/* line 159, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_notifications.scss */
.notification-message--fade {
  opacity: 0;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
  /* line 169, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_notifications.scss */
  .notification {
    right: 10px;
    left: 10px;
    max-width: none;
    transform: translateY(-100%);
  }
  /* line 175, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_notifications.scss */
  .notification.show {
    transform: translateY(0);
  }
  /* line 179, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_notifications.scss */
  .notification.hide {
    transform: translateY(-100%);
  }
  /* line 184, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_notifications.scss */
  .notification-step-completed,
.notification-step-pending {
    right: 10px;
    left: 10px;
    max-width: none;
  }
  /* line 191, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_notifications.scss */
  .notification-message {
    right: 10px;
    left: 10px;
    max-width: calc(100vw - 20px);
  }
}

/* line 4, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.hidden {
  display: none !important;
}

/* line 9, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-template-form-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 1rem 0;
  margin-top: 0;
}

/* line 18, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-card-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px;
  border-radius: 18px;
}

/* line 25, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-main-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 31, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-section-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* line 37, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-card {
  background: rgba(254, 254, 254, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
  padding: 1.5rem;
  min-width: 260px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

/* line 50, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-card.full-width {
  width: 100%;
  flex: 1 1 100%;
}

/* line 55, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-card-header,
.template-card-header-with-action {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: #fff;
  display: flex;
  align-items: center;
}

/* line 65, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

/* line 71, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-card-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* line 72, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-card-content .multiselect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  /* line 72, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
  .template-card-content .multiselect-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* line 83, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-card-content .multiselect-grid .form-group {
  margin-bottom: 0;
}

/* line 86, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-card-content .multiselect-grid .form-group .form-label {
  color: #fff !important;
}

/* line 89, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-card-content .multiselect-grid .form-group .form-label {
  color: #140D23 !important;
}

/* line 100, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-form-control {
  width: 100%;
  background: rgba(254, 254, 254, 0.01) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #FFFFFF !important;
  border-radius: 7px;
  padding: 0.7rem 1rem;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

/* line 110, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-form-control:focus {
  color: #FFFFFF !important;
  background: rgba(254, 254, 254, 0.02) !important;
  border-color: #c188597a !important;
  box-shadow: 0 0 0 0.2rem rgba(193, 136, 89, 0.25) !important;
  outline: none;
}

/* line 118, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-form-control::placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* line 123, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-form-control.form-control {
  color: #FFFFFF !important;
}

/* line 126, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-form-control.form-control:focus {
  color: #FFFFFF !important;
}

/* line 133, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-card-container .template-form-control,
.template-step-card .template-form-control {
  color: #FFFFFF !important;
}

/* line 137, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-card-container .template-form-control:focus, .template-card-container .template-form-control:active,
.template-step-card .template-form-control:focus,
.template-step-card .template-form-control:active {
  color: #FFFFFF !important;
}

/* line 144, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-card.template-step-card-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 8px 12px;
  transition: all 0.2s ease;
  flex-shrink: 0;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* line 156, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-card.template-step-card-form.step-card-clickable {
  cursor: pointer;
}

/* line 160, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-card.template-step-card-form:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* line 164, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-card.template-step-card-form .step-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

/* line 170, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-card.template-step-card-form .step-title-row .step-name-display {
  flex: 1;
  min-width: 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

/* line 178, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-card.template-step-card-form .step-title-row .step-name-edit-inline {
  flex: 1;
  min-width: 0;
}

/* line 182, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-card.template-step-card-form .step-title-row .step-name-edit-inline input {
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

/* line 189, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-card.template-step-card-form .step-title-row .step-number-badge {
  background: rgba(62, 143, 255, 0.15);
  border: 1px solid rgba(62, 143, 255, 0.3);
  color: rgba(62, 143, 255, 0.9);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
}

/* line 200, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-card.template-step-card-form .step-title-row .step-actions {
  display: flex;
  cursor: default;
  gap: 4px;
  align-items: center;
}

/* line 206, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-card.template-step-card-form .step-title-row .step-actions .project-step__action-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 11px;
  padding: 0;
}

/* line 221, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-card.template-step-card-form .step-title-row .step-actions .project-step__action-btn:hover {
  background: rgba(193, 136, 89, 0.15);
  border-color: rgba(193, 136, 89, 0.4);
  color: #c18859;
  transform: translateY(-1px);
}

/* line 228, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-card.template-step-card-form .step-title-row .step-actions .project-step__action-btn:active {
  transform: translateY(0);
}

/* line 235, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-card.template-step-card-form .step-infos-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  margin-top: 4px;
}

/* line 241, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-card.template-step-card-form .step-infos-row .step-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* line 247, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-card.template-step-card-form .step-infos-row .step-meta .step-duration-display {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* line 252, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-card.template-step-card-form .step-infos-row .step-meta .step-duration-display i {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

/* line 257, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-card.template-step-card-form .step-infos-row .step-meta .step-duration-display span {
  font-size: 11px;
}

/* line 260, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-card.template-step-card-form .step-infos-row .step-meta .step-duration-display span.duration-value {
  color: rgba(255, 255, 255, 0.9);
}

/* line 264, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-card.template-step-card-form .step-infos-row .step-meta .step-duration-display span.duration-label {
  color: rgba(255, 255, 255, 0.6);
}

/* line 270, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-card.template-step-card-form .step-infos-row .step-meta .step-duration-edit-inline {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* line 275, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-card.template-step-card-form .step-infos-row .step-meta .step-duration-edit-inline i {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

/* line 280, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-card.template-step-card-form .step-infos-row .step-meta .step-duration-edit-inline input {
  width: 50px;
  padding: 2px 4px;
  font-size: 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

/* line 290, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-card.template-step-card-form .step-infos-row .step-meta .step-duration-edit-inline input:focus {
  border-color: rgba(193, 136, 89, 0.4);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

/* line 297, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-card.template-step-card-form .step-infos-row .step-meta .step-duration-edit-inline span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

/* line 303, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-card.template-step-card-form .step-infos-row .step-meta .step-form-badge,
.step-card.template-step-card-form .step-infos-row .step-meta .step-actions-badge,
.step-card.template-step-card-form .step-infos-row .step-meta .step-tasks-count {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
}

/* line 317, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-card.template-step-card-form .step-infos-row .step-meta .step-form-badge i,
.step-card.template-step-card-form .step-infos-row .step-meta .step-actions-badge i,
.step-card.template-step-card-form .step-infos-row .step-meta .step-tasks-count i {
  font-size: 9px;
}

/* line 322, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-card.template-step-card-form .step-infos-row .step-meta .step-form-badge {
  background: rgba(62, 143, 255, 0.15);
  border-color: rgba(62, 143, 255, 0.3);
  color: rgba(62, 143, 255, 0.9);
}

/* line 328, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-card.template-step-card-form .step-infos-row .step-meta .step-actions-badge {
  background: rgba(240, 165, 0, 0.15);
  border-color: rgba(240, 165, 0, 0.3);
  color: rgba(240, 165, 0, 0.9);
}

/* line 334, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-card.template-step-card-form .step-infos-row .step-meta .step-tasks-count {
  background: rgba(40, 167, 69, 0.15);
  border-color: rgba(40, 167, 69, 0.3);
  color: rgba(40, 167, 69, 0.9);
}

/* line 342, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-card.template-step-card-form .step-content-summary {
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 347, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-card.template-step-card-form .step-content-summary .step-tasks-summary {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 352, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-card.template-step-card-form .step-content-summary .step-tasks-summary .task-item-summary {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 359, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-card.template-step-card-form .step-content-summary .step-tasks-summary .task-item-summary .task-bullet-small {
  font-size: 4px;
  color: rgba(255, 255, 255, 0.4);
}

/* line 364, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-card.template-step-card-form .step-content-summary .step-tasks-summary .task-item-summary .task-label-summary {
  flex: 1;
  min-width: 0;
}

/* line 369, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-card.template-step-card-form .step-content-summary .step-tasks-summary .task-item-summary.task-more {
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

/* line 377, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-card.template-step-card-form .step-card-content-editable {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* line 384, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-step-card {
  border-radius: 10px;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.2s ease;
}

/* line 392, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-step-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* line 397, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: rgba(254, 254, 254, 0.05);
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 407, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-card-header:hover {
  background: rgba(254, 254, 254, 0.4);
}

/* line 412, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

/* line 419, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-toggle-icon {
  font-size: 0.9rem;
  color: #fff;
  transition: transform 0.2s ease;
  font-style: normal;
}

/* line 427, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-step-card[open] .step-toggle-icon {
  transform: rotate(180deg);
}

/* line 432, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-step-card > summary::-webkit-details-marker {
  display: none;
}

/* line 435, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-step-card > summary {
  list-style: none;
}

/* line 439, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-title-display {
  font-weight: 600;
  color: #fff;
  font-size: 1.1rem;
}

/* line 445, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-task-count {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

/* line 451, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-header-actions {
  display: flex;
  gap: 0.5rem;
}

/* line 456, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-card-content {
  padding: 1.5rem;
}

/* line 460, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-name-edit {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 466, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.7rem;
}

/* line 473, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-step-label {
  font-weight: 500;
  color: #fff;
  margin-right: 0.5rem;
}

/* line 479, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-task-section {
  margin-top: 0.5rem;
}

/* line 483, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-task-header {
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

/* line 492, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-task-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

/* line 498, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-task-card {
  border-radius: 7px;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(57, 55, 107, 0.3);
  margin-bottom: 0.5rem;
}

/* line 509, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.task-input-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

/* line 516, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-task-label {
  color: #fff;
  font-weight: 400;
  margin-right: 0.5rem;
}

/* line 522, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
}

/* line 530, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-btn {
  border: none;
  border-radius: 7px;
  padding: 0.5rem 1.2rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
  margin-left: 0.5rem;
}

/* line 540, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-btn.btn-sm, .btn-group-sm > .template-btn.btn {
  padding: 0.3rem 0.7rem;
  font-size: 0.85rem;
  margin-left: 0.25rem;
}

/* line 546, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-btn-primary {
  background: #3e8fff;
  color: #fff;
}

/* line 550, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-btn-secondary {
  background: #39376b;
  color: #fff;
}

/* line 554, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-btn-danger {
  background: #e74c3c;
  color: #fff;
}

/* line 558, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-btn-add {
  background: #f6f7f629;
  border-radius: 6px;
  color: #fff;
  font-size: 0.85rem;
  padding: 0.4rem 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}

/* line 569, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-btn-add:hover {
  background: #f6f7f640;
}

/* line 573, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-btn-xs {
  font-size: 0.75rem;
  padding: 0.2rem 0.7rem;
  margin-left: 0.3rem;
}

/* line 582, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-card-container {
  color: #140D23 !important;
}

/* line 585, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-main-card {
  color: #140D23;
}

/* line 588, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-card {
  border: 1px solid rgba(20, 13, 35, 0.15);
  color: #140D23;
}

/* line 592, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-card-header,
.lightmode .template-card-header-with-action,
.lightmode .template-card-title,
.lightmode .template-card-content,
.lightmode .template-step-label,
.lightmode .template-task-label {
  color: #140D23;
}

/* line 600, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-form-control {
  background: #e8e8e8 !important;
  border: 1px solid rgba(20, 13, 35, 0.25) !important;
  color: #140D23 !important;
}

/* line 605, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-form-control:focus {
  color: #140D23 !important;
  background: #e8e8e8 !important;
  border-color: #C38761 !important;
  box-shadow: 0 0 0 0.2rem rgba(195, 135, 97, 0.25) !important;
}

/* line 612, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-form-control::placeholder {
  color: rgba(20, 13, 35, 0.5) !important;
}

/* line 616, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-form-control.form-control {
  color: #140D23 !important;
}

/* line 619, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-form-control.form-control:focus {
  color: #140D23 !important;
}

/* line 624, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-step-card {
  border: 1px solid rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 628, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .step-card-header {
  color: #140D23;
}

/* line 631, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .step-title-display {
  color: #140D23;
}

/* line 634, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .step-task-count {
  color: rgba(20, 13, 35, 0.7);
}

/* line 637, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-task-header {
  color: #140D23;
}

/* line 640, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-actions {
  background: transparent;
}

/* line 644, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-btn {
  color: #140D23;
}

/* line 647, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-btn-primary {
  background: #C38761;
  color: #FFFFFF;
}

/* line 651, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-btn-secondary {
  background: #e8e8e8;
  color: #140D23;
}

/* line 655, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-btn-danger {
  background: #e74c3c;
  color: #FFFFFF;
}

/* line 659, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-btn-add {
  background: rgba(195, 135, 97, 0.1);
  color: #C38761;
}

/* line 663, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-btn-xs {
  background: #e8e8e8;
  color: #140D23;
}

/* line 669, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .form-check-input {
  width: 1.2rem !important;
  height: 1.2rem !important;
  min-width: 1.2rem !important;
  min-height: 1.2rem !important;
  border-color: rgba(20, 13, 35, 0.4);
  background-color: rgba(20, 13, 35, 0.05);
  margin: 0 !important;
  margin-right: 0.5rem !important;
}

/* line 679, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .form-check-input:checked {
  background-color: #C38761;
  border-color: #C38761;
}

/* line 684, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .form-check-input:focus {
  border-color: #C38761;
  box-shadow: 0 0 0 0.2rem rgba(195, 135, 97, 0.25);
}

/* line 690, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .form-check-label {
  color: #140D23;
}

/* line 695, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-sales-articles-select {
  background: #e8e8e8 !important;
  border: 1px solid rgba(20, 13, 35, 0.25) !important;
  color: #140D23 !important;
}

/* line 700, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-sales-articles-select:focus {
  background: #e8e8e8 !important;
  border-color: #C38761 !important;
  box-shadow: 0 0 0 0.2rem rgba(195, 135, 97, 0.25) !important;
  color: #140D23 !important;
}

/* line 707, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-sales-articles-select option {
  background-color: #e8e8e8 !important;
  color: #140D23 !important;
  border-bottom: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 712, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-sales-articles-select option:hover {
  background-color: rgba(20, 13, 35, 0.05) !important;
}

/* line 717, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-sales-articles-select option:checked {
  background: linear-gradient(90deg, #C38761 0%, #af6c42 100%) !important;
  color: #fff !important;
  font-weight: 500;
}

/* line 723, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-sales-articles-select::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 727, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-sales-articles-select::-webkit-scrollbar-thumb {
  background: rgba(20, 13, 35, 0.3);
}

/* line 730, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-sales-articles-select::-webkit-scrollbar-thumb:hover {
  background: rgba(20, 13, 35, 0.4);
}

/* line 740, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-card-content .multiselect-grid .form-group .form-label {
  color: #140D23 !important;
}

/* line 744, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-card-content .multiselect-grid .form-group .helper-text {
  color: rgba(20, 13, 35, 0.6) !important;
}

/* line 752, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .project-header-card {
  background: rgba(20, 13, 35, 0.02) !important;
  border-color: rgba(20, 13, 35, 0.12) !important;
}

/* line 756, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .project-header-card .project-title {
  color: #140D23 !important;
}

/* line 762, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .project-header-card .project-meta-grid .meta-item .label {
  color: rgba(20, 13, 35, 0.6) !important;
}

/* line 766, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .project-header-card .project-meta-grid .meta-item .value {
  color: #140D23 !important;
}

/* line 773, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .project-header-card .description-content::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 777, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .project-header-card .description-content::-webkit-scrollbar-thumb {
  background: rgba(20, 13, 35, 0.3);
}

/* line 780, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .project-header-card .description-content::-webkit-scrollbar-thumb:hover {
  background: rgba(20, 13, 35, 0.4);
}

/* line 789, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-sales-article-item {
  background: rgba(20, 13, 35, 0.05);
  border: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 793, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-sales-article-item:hover {
  background: rgba(20, 13, 35, 0.1);
}

/* line 797, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-sales-article-item span {
  color: #140D23;
}

/* line 802, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-sales-article-link {
  color: #C38761;
}

/* line 805, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-sales-article-link:hover {
  background-color: rgba(195, 135, 97, 0.1);
}

/* line 811, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-step-display-item {
  background: rgba(20, 13, 35, 0.05);
  border: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 816, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-step-display-number {
  background: #C38761;
}

/* line 820, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-step-display-label {
  color: #140D23;
}

/* line 824, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-step-display-duration {
  color: rgba(20, 13, 35, 0.7);
  background: rgba(20, 13, 35, 0.1);
}

/* line 829, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-task-display-item {
  color: rgba(20, 13, 35, 0.8);
}

/* line 832, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-task-display-item i {
  color: rgba(20, 13, 35, 0.5);
}

/* line 839, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.form-check-input {
  width: 1.2rem !important;
  height: 1.2rem !important;
  min-width: 1.2rem !important;
  min-height: 1.2rem !important;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  flex-shrink: 0;
  margin: 0 !important;
  margin-right: 0.5rem !important;
}

/* line 851, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.form-check-input:checked {
  background-color: #3e8fff;
  border-color: #3e8fff;
}

/* line 856, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.form-check-input:focus {
  border-color: #3e8fff;
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(62, 143, 255, 0.25);
}

/* line 863, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.form-check-label {
  cursor: pointer;
  user-select: none;
  color: #fff;
}

/* line 871, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-sales-articles-select {
  background: rgba(254, 254, 254, 0.01) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #FFFFFF !important;
  border-radius: 7px;
  padding: 0.75rem 1rem !important;
  font-size: 1rem;
  font-family: inherit;
  margin-bottom: 0.5rem;
  min-height: 150px;
}

/* line 884, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-sales-articles-select:focus {
  color: #FFFFFF !important;
  background: rgba(254, 254, 254, 0.02) !important;
  border-color: #c188597a !important;
  box-shadow: 0 0 0 0.2rem rgba(193, 136, 89, 0.25) !important;
  outline: none;
}

/* line 893, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-sales-articles-select option {
  padding: 0.5rem 0.75rem;
  background-color: rgba(254, 254, 254, 0.01) !important;
  color: #FFFFFF !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-family: inherit;
  font-size: 1rem;
}

/* line 901, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-sales-articles-select option:checked {
  background: linear-gradient(90deg, #3e8fff 0%, #2d6fcc 100%) !important;
  color: #fff !important;
  font-weight: 500;
}

/* line 907, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-sales-articles-select option:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
}

/* line 913, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-sales-articles-select option:checked {
  background: linear-gradient(90deg, #3e8fff 0%, #2d6fcc 100%) !important;
  color: #fff !important;
  font-weight: 500;
}

/* line 920, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-sales-articles-select::-webkit-scrollbar {
  width: 8px;
}

/* line 924, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-sales-articles-select::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

/* line 929, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-sales-articles-select::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

/* line 933, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-sales-articles-select::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* line 940, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-form-control.template-sales-articles-select {
  background: rgba(254, 254, 254, 0.01) !important;
  color: #FFFFFF !important;
}

/* line 944, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-form-control.template-sales-articles-select:focus {
  background: rgba(254, 254, 254, 0.02) !important;
  color: #FFFFFF !important;
}

/* line 951, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-sales-articles-display {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* line 957, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-sales-article-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  background: rgba(254, 254, 254, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

/* line 966, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-sales-article-item:hover {
  background: rgba(254, 254, 254, 0.1);
}

/* line 970, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-sales-article-item span {
  flex: 1;
  color: #fff;
  font-weight: 500;
}

/* line 977, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-sales-article-link {
  color: #3e8fff;
  text-decoration: none;
  margin-left: 0.5rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

/* line 985, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-sales-article-link:hover {
  background-color: rgba(62, 143, 255, 0.2);
}

/* line 991, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-steps-display {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* line 997, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-step-display-item {
  padding: 1rem;
  background: rgba(254, 254, 254, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

/* line 1005, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-step-display-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

/* line 1012, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-step-display-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: #3e8fff;
  color: #fff;
  border-radius: 50%;
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* line 1026, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-step-display-label {
  flex: 1;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
}

/* line 1033, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-step-display-duration {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

/* line 1041, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-step-display-tasks {
  margin-top: 0.75rem;
  padding-left: 2.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* line 1049, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-task-display-item {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  padding: 0.25rem 0;
}

/* line 1058, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

/* line 1063, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-tags {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* line 1069, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-auto-create-info {
  margin-bottom: 1rem;
}

/* line 1073, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-auto-create-message {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* line 1078, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-auto-create-icon {
  color: #3e8fff;
  margin-right: 0.5rem;
}

/* line 1083, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-sales-articles-label {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* line 1088, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-sales-article-icon {
  color: #3e8fff;
  margin-right: 0.5rem;
}

/* line 1093, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-no-triggering-articles {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  margin: 0;
}

/* line 1099, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-step-duration-icon {
  margin-right: 0.25rem;
}

/* line 1103, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-task-bullet-icon {
  font-size: 0.5rem;
  margin-right: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
}

/* line 1109, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-no-steps {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  margin: 0;
}

/* line 1116, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-checkbox-group {
  margin-bottom: 1rem;
}

/* line 1120, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
}

/* line 1127, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-checkbox-wrapper .form-check-label {
  margin: 0;
  font-weight: normal;
  flex: 1;
}

/* line 1133, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-sales-articles-helper {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: #6c757d;
}

/* line 1139, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-duration-edit {
  margin-top: 1rem;
}

/* line 1144, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-card-content[data-project-template-form-target="stepContent"] {
  display: none;
}

/* line 1148, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.step-card-content[data-project-template-form-target="stepContent"]:not([style*="display: none"]) {
  display: block;
}

/* line 1152, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
#template-modal-container[data-modal-manager-target="container"] {
  display: none;
}

/* line 1156, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
#template-modal-container[data-modal-manager-target="container"]:not([style*="display: none"]) {
  display: block;
}

/* line 1161, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-form-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

/* line 1168, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-form-label-large {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 1;
}

/* line 1180, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* line 1186, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-checkbox-large {
  width: 22px;
  height: 22px;
  cursor: pointer;
  accent-color: #4CAF50;
}

/* line 1193, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-label-text {
  color: rgba(255, 255, 255, 0.9);
}

/* line 1197, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-label-text-primary {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  font-weight: 500;
}

/* line 1203, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-label-text-secondary {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

/* line 1209, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-error-card {
  background: rgba(220, 53, 69, 0.1);
  border-color: rgba(220, 53, 69, 0.3);
}

/* line 1214, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-error-title {
  color: #dc3545;
  margin-bottom: 10px;
}

/* line 1219, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-error-list {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  padding-left: 20px;
}

/* line 1225, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-error-alert {
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 8px;
  color: #dc3545;
}

/* line 1237, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-error-list-inline {
  margin: 10px 0 0 20px;
}

/* line 1241, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-help-text {
  margin-top: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* line 1247, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-card-flex {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 15px;
}

/* line 1254, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-card-hidden {
  display: none;
}

/* line 1258, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-card-flex-visible {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 15px;
}

/* line 1265, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* line 1271, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-chevron {
  margin-left: 12px;
  font-size: 0.8em;
  transition: transform 0.3s;
}

/* line 1277, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-chevron-small {
  margin-left: 8px;
  font-size: 0.8em;
  transition: transform 0.3s;
}

/* line 1284, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-project-header-text {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 10px;
}

/* line 1289, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 1295, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 8px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
}

/* line 1305, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-contact-item-large {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 5px;
}

/* line 1313, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-contact-checkbox {
  width: 18px;
  height: 18px;
}

/* line 1318, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-contact-name {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

/* line 1323, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-contact-email {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

/* line 1328, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-contact-container {
  max-height: 150px;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  padding: 10px;
}

/* line 1336, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-contact-label {
  color: rgba(255, 255, 255, 0.9);
  display: block;
  margin-bottom: 10px;
}

/* line 1342, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-empty-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-style: italic;
}

/* line 1348, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-empty-text-small {
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

/* line 1353, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-code {
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

/* line 1359, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-button-small {
  font-size: 0.8rem;
  padding: 6px 12px;
}

/* line 1364, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-button-medium {
  font-size: 0.9rem;
}

/* line 1368, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-flex-1 {
  flex: 1;
}

/* line 1373, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .notification-label-text,
.lightmode .notification-label-text-primary {
  color: #140D23;
}

/* line 1378, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .notification-label-text-secondary {
  color: rgba(20, 13, 35, 0.6);
}

/* line 1382, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .notification-help-text {
  color: rgba(20, 13, 35, 0.6);
}

/* line 1386, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .notification-project-header-text {
  color: rgba(20, 13, 35, 0.7);
}

/* line 1390, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .notification-contact-name {
  color: #140D23;
}

/* line 1394, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .notification-contact-email {
  color: rgba(20, 13, 35, 0.6);
}

/* line 1398, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .notification-contact-label {
  color: #140D23;
}

/* line 1402, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .notification-empty-text,
.lightmode .notification-empty-text-small {
  color: rgba(20, 13, 35, 0.5);
}

/* line 1407, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .notification-contact-container {
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 1418, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .project-header-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 15px 15px;
  position: relative;
  z-index: 2;
}

/* line 1428, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .project-header-card .project-title {
  font-size: 19px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 16px;
  line-height: 1.2;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
  max-width: 100%;
  cursor: help;
}

/* line 1441, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .project-header-card .project-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  align-items: center;
}

/* line 1447, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .project-header-card .project-meta-grid .meta-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
}

/* line 1453, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .project-header-card .project-meta-grid .meta-item .label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  margin: 0;
  text-align: left;
  white-space: nowrap;
}

/* line 1464, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .project-header-card .project-meta-grid .meta-item .value {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  text-align: left;
}

/* line 1473, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .project-header-card .project-description {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* line 1483, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .description-section {
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 15px;
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* line 1494, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .description-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-shrink: 0;
}

/* line 1501, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .description-section .section-header .section-title {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 1509, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .description-section .section-header .section-title i {
  color: rgba(255, 255, 255, 0.7);
}

/* line 1515, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .description-section .description-content {
  flex: 1;
  overflow-y: auto;
  /* Scrollbar cohérente */
}

/* line 1520, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .description-section .description-content::-webkit-scrollbar {
  width: 3px;
}

/* line 1524, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .description-section .description-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 1529, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .description-section .description-content::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 1534, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .description-section .description-content::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 1538, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .description-section .description-content .description-textarea {
  width: 100% !important;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  resize: vertical;
  min-height: 100px;
  padding: 0 !important;
  box-shadow: none !important;
}

/* line 1551, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .description-section .description-content .description-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
}

/* line 1555, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .description-section .description-content .description-textarea:focus {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

/* line 1564, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .project-show-page .description-section {
  background: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.08);
}

/* line 1568, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .project-show-page .description-section .section-header .section-title {
  color: #140D23 !important;
}

/* line 1571, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .project-show-page .description-section .section-header .section-title i {
  color: rgba(20, 13, 35, 0.7);
}

/* line 1576, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .project-show-page .description-section .description-content .description-textarea {
  color: rgba(20, 13, 35, 0.8) !important;
}

/* line 1579, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .project-show-page .description-section .description-content .description-textarea::placeholder {
  color: rgba(20, 13, 35, 0.4);
}

/* line 1587, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .form-group[data-controller="multiselect-pills"] {
  max-width: 500px;
  width: 100%;
}

/* line 1592, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .form-group[data-controller="multiselect-pills"] .template-sales-articles-select {
  display: none !important;
}

/* line 1597, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .form-group[data-controller="multiselect-pills"] .multiselect-pills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  min-height: 32px;
}

/* line 1605, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .form-group[data-controller="multiselect-pills"] .multiselect-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 8px 16px;
  margin: 4px 6px 4px 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  transition: all 0.2s ease;
  cursor: default;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* line 1621, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .project-show-page .form-group[data-controller="multiselect-pills"] .multiselect-pill {
  background: white;
  border-color: rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.87);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* line 1628, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .form-group[data-controller="multiselect-pills"] .multiselect-pill:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.25);
}

/* line 1632, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .project-show-page .form-group[data-controller="multiselect-pills"] .multiselect-pill:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 0, 0, 0.2);
}

/* line 1638, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .form-group[data-controller="multiselect-pills"] .multiselect-pill .pill-icon {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* line 1646, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .form-group[data-controller="multiselect-pills"] .multiselect-pill .pill-label {
  font-weight: 400;
  letter-spacing: 0;
}

/* line 1651, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .form-group[data-controller="multiselect-pills"] .multiselect-pill .pill-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  padding: 0;
  margin: 0 0 0 4px;
}

/* line 1664, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .form-group[data-controller="multiselect-pills"] .multiselect-pill .pill-remove i {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* line 1668, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .project-show-page .form-group[data-controller="multiselect-pills"] .multiselect-pill .pill-remove i {
  color: rgba(0, 0, 0, 0.4);
}

/* line 1674, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .form-group[data-controller="multiselect-pills"] .multiselect-pill .pill-remove:hover i {
  color: rgba(255, 255, 255, 0.9);
}

/* line 1677, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .project-show-page .form-group[data-controller="multiselect-pills"] .multiselect-pill .pill-remove:hover i {
  color: rgba(0, 0, 0, 0.7);
}

/* line 1686, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .form-group[data-controller="multiselect-pills"] .multiselect-list-wrapper {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(91, 140, 219, 0.4);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* line 1693, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .project-show-page .form-group[data-controller="multiselect-pills"] .multiselect-list-wrapper {
  background: rgba(255, 255, 255, 0.95);
  border-color: #5B8CDB;
  box-shadow: 0 2px 8px rgba(91, 140, 219, 0.1);
}

/* line 1701, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .form-group[data-controller="multiselect-pills"] .multiselect-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 1709, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .project-show-page .form-group[data-controller="multiselect-pills"] .multiselect-search {
  background: rgba(0, 0, 0, 0.02);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

/* line 1714, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .form-group[data-controller="multiselect-pills"] .multiselect-search i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

/* line 1718, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .project-show-page .form-group[data-controller="multiselect-pills"] .multiselect-search i {
  color: rgba(0, 0, 0, 0.5);
}

/* line 1723, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .form-group[data-controller="multiselect-pills"] .multiselect-search .multiselect-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  padding: 4px 0;
}

/* line 1732, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .form-group[data-controller="multiselect-pills"] .multiselect-search .multiselect-search-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* line 1736, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .project-show-page .form-group[data-controller="multiselect-pills"] .multiselect-search .multiselect-search-input {
  color: rgba(0, 0, 0, 0.87);
}

/* line 1739, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .project-show-page .form-group[data-controller="multiselect-pills"] .multiselect-search .multiselect-search-input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

/* line 1747, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .form-group[data-controller="multiselect-pills"] .multiselect-options-list {
  max-height: 320px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 8px;
}

/* line 1753, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .form-group[data-controller="multiselect-pills"] .multiselect-options-list .multiselect-option {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s ease;
  margin: 2px 0;
  font-weight: normal !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  text-align: left !important;
  margin-bottom: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* line 1771, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .form-group[data-controller="multiselect-pills"] .multiselect-options-list .multiselect-option:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* line 1774, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .project-show-page .form-group[data-controller="multiselect-pills"] .multiselect-options-list .multiselect-option:hover {
  background: rgba(0, 0, 0, 0.04);
}

/* line 1779, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .form-group[data-controller="multiselect-pills"] .multiselect-options-list .multiselect-option .multiselect-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #5B8CDB;
  margin: 0 !important;
  flex-shrink: 0;
}

/* line 1788, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .form-group[data-controller="multiselect-pills"] .multiselect-options-list .multiselect-option .option-label {
  flex: 1;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  cursor: pointer;
  margin: 0 !important;
  padding: 0 !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  text-align: left !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

/* line 1803, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .project-show-page .form-group[data-controller="multiselect-pills"] .multiselect-options-list .multiselect-option .option-label {
  color: rgba(0, 0, 0, 0.87) !important;
}

/* line 1810, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .form-group[data-controller="multiselect-pills"] .multiselect-options-list::-webkit-scrollbar {
  width: 6px;
}

/* line 1814, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .form-group[data-controller="multiselect-pills"] .multiselect-options-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

/* line 1818, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .project-show-page .form-group[data-controller="multiselect-pills"] .multiselect-options-list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.04);
}

/* line 1823, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .form-group[data-controller="multiselect-pills"] .multiselect-options-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

/* line 1827, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .project-show-page .form-group[data-controller="multiselect-pills"] .multiselect-options-list::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
}

/* line 1831, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .form-group[data-controller="multiselect-pills"] .multiselect-options-list::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* line 1834, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .project-show-page .form-group[data-controller="multiselect-pills"] .multiselect-options-list::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

/* line 1842, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .project-stats-section {
  margin-bottom: 20px;
}

/* line 1846, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .project-steps-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 15px;
  backdrop-filter: blur(10px);
}

/* line 1855, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .project-steps-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

/* line 1861, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .project-steps-section .section-header .section-title {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 1871, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .project-steps-section .steps-card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 1877, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .project-steps-section .steps-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-height: 0;
  max-height: 100%;
  overflow-y: auto;
  padding-right: 5px;
  /* Personnalisation de la barre de défilement */
}

/* line 1888, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .project-steps-section .steps-container::-webkit-scrollbar {
  width: 3px;
}

/* line 1892, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .project-steps-section .steps-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 1897, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .project-steps-section .steps-container::-webkit-scrollbar-thumb {
  background: #c18859;
  border-radius: 10px;
}

/* line 1902, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .project-steps-section .steps-container::-webkit-scrollbar-thumb:hover {
  background: #fff;
}

/* line 1908, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .project-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 1918, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .project-content-grid {
  display: grid;
  padding-right: 10px;
  grid-template-columns: 40% 60%;
  gap: 10px;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

@media (max-width: 1200px) {
  /* line 1918, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
  .project-show-page .project-content-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    max-height: none;
    height: auto;
    overflow: visible;
  }
}

/* line 1937, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .project-calendar-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 15px;
  backdrop-filter: blur(10px);
  height: 100%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}

/* line 1950, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .project-calendar-section .project-calendar-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

/* line 1959, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .project-calendar-section .custom-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  overflow-y: auto;
}

/* line 1972, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .project-calendar-section .custom-modal-overlay .custom-modal-container {
  position: relative;
  background: #2c3e50;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 1000px;
  width: 90%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  margin: auto;
}

/* line 1984, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .project-calendar-section .custom-modal-overlay .custom-modal-container.modal-large {
  max-width: 1000px;
  max-height: 90vh;
}

/* line 1990, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .project-calendar-section .custom-modal-overlay .custom-modal-body {
  overflow-y: auto;
  max-height: calc(90vh - 180px);
}

/* line 1994, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .project-calendar-section .custom-modal-overlay .custom-modal-body .flash.flash-error {
  margin-bottom: 1rem;
}

/* line 1997, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .project-calendar-section .custom-modal-overlay .custom-modal-body .flash.flash-error ul {
  margin-top: 0.5rem;
}

/* line 2002, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .project-calendar-section .custom-modal-overlay .custom-modal-body .helper-text {
  margin-bottom: 1rem;
}

/* line 2008, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .project-calendar-section .template-gantt-simulator {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

/* line 2014, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .project-calendar-section .template-gantt-simulator .custom-gantt-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* line 2021, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .project-calendar-section .template-gantt-simulator .gantt-task-bar-simulated {
  background: linear-gradient(135deg, rgba(62, 143, 255, 0.6) 0%, rgba(62, 143, 255, 0.4) 100%);
  border: 1px solid rgba(62, 143, 255, 0.5);
  opacity: 0.8;
  position: relative;
}

/* line 2027, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .project-calendar-section .template-gantt-simulator .gantt-task-bar-simulated::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(62, 143, 255, 0.8);
}

/* line 2038, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .project-calendar-section .template-gantt-simulator .gantt-task-bar-simulated::after {
  content: '⏱';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  opacity: 0.7;
}

/* line 2050, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .project-calendar-section .template-gantt-simulator .custom-gantt-header h3, .project-show-page .project-calendar-section .template-gantt-simulator .custom-gantt-header .h3 {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* line 2054, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.project-show-page .project-calendar-section .template-gantt-simulator .custom-gantt-header h3::after, .project-show-page .project-calendar-section .template-gantt-simulator .custom-gantt-header .h3::after {
  content: ' (simulation)';
  font-size: 0.85rem;
  opacity: 0.7;
  font-weight: 400;
}

/* line 2069, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-stats-section {
  margin-bottom: 20px;
}

/* line 2073, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

/* line 2079, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-stat-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* line 2091, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-stat-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* line 2096, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-stat-item .stat-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(62, 143, 255, 0.2);
  border-radius: 8px;
  color: #3e8fff;
  font-size: 18px;
  flex-shrink: 0;
}

/* line 2109, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-stat-item .stat-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 2115, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-stat-item .stat-content .stat-value {
  font-size: 24px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1;
}

/* line 2122, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-stat-item .stat-content .stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 2135, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-step-display-card {
  background: rgba(254, 254, 254, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
  transition: all 0.2s ease;
}

/* line 2143, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-step-display-card:hover {
  background: rgba(254, 254, 254, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* line 2148, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-step-display-card .step-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

/* line 2154, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-step-display-card .step-title-row .step-name {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  flex: 1;
}

/* line 2161, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-step-display-card .step-title-row .step-number-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #3e8fff;
  color: #fff;
  border-radius: 50%;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
}

/* line 2176, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-step-display-card .step-infos-row {
  margin-bottom: 12px;
}

/* line 2179, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-step-display-card .step-infos-row .step-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

/* line 2185, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-step-display-card .step-infos-row .step-meta .step-duration,
.template-step-display-card .step-infos-row .step-meta .step-form-badge,
.template-step-display-card .step-infos-row .step-meta .step-actions-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* line 2198, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-step-display-card .step-infos-row .step-meta .step-duration i,
.template-step-display-card .step-infos-row .step-meta .step-form-badge i,
.template-step-display-card .step-infos-row .step-meta .step-actions-badge i {
  font-size: 12px;
}

/* line 2203, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-step-display-card .step-infos-row .step-meta .step-form-badge {
  background: rgba(62, 143, 255, 0.2);
  color: #3e8fff;
}

/* line 2208, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-step-display-card .step-infos-row .step-meta .step-actions-badge {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
}

/* line 2215, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-step-display-card .step-tasks {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 2220, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-step-display-card .step-tasks .tasks-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 2225, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-step-display-card .step-tasks .tasks-list .task-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.8);
}

/* line 2232, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-step-display-card .step-tasks .tasks-list .task-item .task-bullet {
  font-size: 6px;
  color: rgba(255, 255, 255, 0.5);
}

/* line 2237, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-step-display-card .step-tasks .tasks-list .task-item .task-label {
  font-size: 14px;
}

/* line 2244, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-step-display-card .step-scheduled-actions {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 2249, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-step-display-card .step-scheduled-actions .scheduled-actions-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

/* line 2258, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-step-display-card .step-scheduled-actions .scheduled-actions-header i {
  color: #ffc107;
}

/* line 2263, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-step-display-card .step-scheduled-actions .scheduled-actions-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 24px;
}

/* line 2269, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-step-display-card .step-scheduled-actions .scheduled-actions-list .scheduled-action-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: rgba(255, 193, 7, 0.1);
  border-radius: 6px;
  font-size: 12px;
}

/* line 2278, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-step-display-card .step-scheduled-actions .scheduled-actions-list .scheduled-action-item i {
  color: #ffc107;
  font-size: 12px;
}

/* line 2283, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-step-display-card .step-scheduled-actions .scheduled-actions-list .scheduled-action-item .action-label {
  flex: 1;
  color: rgba(255, 255, 255, 0.9);
}

/* line 2288, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-step-display-card .step-scheduled-actions .scheduled-actions-list .scheduled-action-item .action-order {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}

/* line 2297, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.empty-steps-message {
  text-align: center;
  padding: 40px 20px;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* line 2303, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.empty-steps-message p {
  margin: 0;
}

/* line 2314, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-stats-grid .template-stat-item {
  border-color: rgba(20, 13, 35, 0.12);
  background: rgba(20, 13, 35, 0.02);
}

/* line 2318, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-stats-grid .template-stat-item .stat-icon {
  background: rgba(195, 135, 97, 0.15);
  color: #C38761;
}

/* line 2324, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-stats-grid .template-stat-item .stat-content .stat-value {
  color: #140D23;
}

/* line 2328, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-stats-grid .template-stat-item .stat-content .stat-label {
  color: rgba(20, 13, 35, 0.6);
}

/* line 2335, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-step-display-card {
  border-color: rgba(20, 13, 35, 0.12);
  background: rgba(20, 13, 35, 0.02);
}

/* line 2340, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-step-display-card .step-title-row .step-name {
  color: #140D23;
}

/* line 2344, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-step-display-card .step-title-row .step-number-badge {
  background: #C38761;
}

/* line 2351, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-step-display-card .step-infos-row .step-meta .step-duration {
  background: rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.8);
}

/* line 2356, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-step-display-card .step-infos-row .step-meta .step-form-badge {
  background: rgba(195, 135, 97, 0.15);
  color: #C38761;
}

/* line 2361, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-step-display-card .step-infos-row .step-meta .step-actions-badge {
  background: rgba(255, 193, 7, 0.15);
  color: #d4a017;
}

/* line 2368, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-step-display-card .step-tasks {
  border-top-color: rgba(20, 13, 35, 0.1);
}

/* line 2371, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-step-display-card .step-tasks .task-item {
  color: rgba(20, 13, 35, 0.8);
}

/* line 2374, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-step-display-card .step-tasks .task-item .task-bullet {
  color: rgba(20, 13, 35, 0.4);
}

/* line 2380, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-step-display-card .step-scheduled-actions {
  border-top-color: rgba(20, 13, 35, 0.1);
}

/* line 2383, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-step-display-card .step-scheduled-actions .scheduled-actions-header {
  color: #140D23;
}

/* line 2387, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-step-display-card .step-scheduled-actions .scheduled-action-item {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 2391, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-step-display-card .step-scheduled-actions .scheduled-action-item .action-label {
  color: #140D23;
}

/* line 2398, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .empty-steps-message {
  color: rgba(20, 13, 35, 0.6);
}

/* line 2402, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .project-calendar-section {
  border-color: rgba(20, 13, 35, 0.12);
  background: rgba(20, 13, 35, 0.02);
}

/* line 2407, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .project-calendar-section .template-placeholder-calendar .placeholder-content {
  color: rgba(20, 13, 35, 0.4);
}

/* line 2410, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .project-calendar-section .template-placeholder-calendar .placeholder-content i {
  color: rgba(20, 13, 35, 0.3);
}

@media (max-width: 900px) {
  /* line 2420, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
  .template-section-group {
    flex-direction: column;
    gap: 1.2rem;
  }
  /* line 2424, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
  .template-card {
    min-width: 0;
    width: 100%;
  }
  /* line 2429, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
  .template-stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
  }
  /* line 2434, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
  .template-stat-item {
    padding: 12px;
  }
  /* line 2437, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
  .template-stat-item .stat-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
  /* line 2444, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
  .template-stat-item .stat-content .stat-value {
    font-size: 20px;
  }
}

/* line 2452, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-form-section {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 2460, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-form-header {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}

/* line 2466, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-form-header span {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

/* line 2472, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-form-header .helper-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

/* line 2479, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-form-input {
  margin-bottom: 0.5rem;
}

/* line 2483, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-form-preview {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(62, 143, 255, 0.05);
  border-radius: 6px;
  border: 1px dashed rgba(62, 143, 255, 0.3);
}

/* line 2490, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-form-preview .form-preview-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* line 2496, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-form-preview .form-preview-loading {
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  margin: 0;
}

/* line 2502, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-form-preview .form-preview-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

/* line 2509, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-form-preview .form-preview-info i {
  font-size: 2rem;
  color: #3e8fff;
}

/* line 2514, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-form-preview .form-preview-info p {
  margin: 0;
  font-weight: 600;
  color: #fff;
}

/* line 2520, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-form-preview .form-preview-info small, .template-form-preview .form-preview-info .small {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* line 2528, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-form-questions-section {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.01);
  border-radius: 8px;
}

/* line 2535, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-form-questions-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

/* line 2541, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-form-questions-header span {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

/* line 2548, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-form-questions-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* line 2554, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-question-card {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}

/* line 2565, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.question-input-group,
.question-type-group,
.question-required-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* line 2573, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.question-required-group {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

/* line 2579, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.question-options-container {
  margin-top: 0.5rem;
  padding: 0.75rem;
  background: rgba(62, 143, 255, 0.05);
  border-radius: 6px;
  border: 1px dashed rgba(62, 143, 255, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* line 2580, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.question-options-container.hidden {
  display: none;
}

/* line 2593, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.question-option-item {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

/* line 2598, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.question-option-item input {
  flex: 1;
}

/* line 2607, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.modal-tabs {
  display: flex;
  gap: 0;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding: 0;
  margin: 0;
}

/* line 2616, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.modal-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

/* line 2632, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.modal-tab i {
  font-size: 1rem;
}

/* line 2636, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.modal-tab .tab-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* line 2649, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.modal-tab:hover {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
}

/* line 2654, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.modal-tab.active {
  background: rgba(54, 162, 235, 0.1);
  color: #36a2eb;
  border-bottom: 2px solid #36a2eb;
}

/* line 2659, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.modal-tab.active .tab-badge {
  background: rgba(54, 162, 235, 0.3);
  color: #36a2eb;
}

/* line 2666, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.tab-content {
  display: none;
  animation: fadeIn 0.3s ease;
}

/* line 2670, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.tab-content.active {
  display: block;
}

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

/* line 2688, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.tab-content .form-section {
  margin-bottom: 0;
}

/* line 2692, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.tab-content .section-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 2701, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.tab-content .section-subtitle i {
  color: #36a2eb;
}

/* line 2708, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.scheduled-actions-list,
.template-form-questions-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* line 2715, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.scheduled-action-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.2s ease;
}

/* line 2725, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.scheduled-action-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(54, 162, 235, 0.3);
}

/* line 2730, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.scheduled-action-item .action-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* line 2736, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.scheduled-action-item .action-type-badge {
  padding: 0.25rem 0.75rem;
  background: rgba(54, 162, 235, 0.2);
  color: #36a2eb;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* line 2745, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.scheduled-action-item .action-order {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* line 2750, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.scheduled-action-item .action-actions {
  display: flex;
  gap: 0.5rem;
}

/* line 2764, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.template-card-content .question-fields .form-group label.template-task-label,
.template-card-content .question-fields .form-group label.form-label {
  color: #fff !important;
}

/* line 2768, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .template-card-content .question-fields .form-group label.template-task-label, .lightmode .template-card-content .question-fields .form-group label.form-label {
  color: #140D23 !important;
}

/* line 2775, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.validation-errors {
  background: #fee2e2;
  border: 1px solid #fecaca;
  color: #dc2626;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
}

/* line 2784, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.validation-errors,
.validation-errors strong,
.validation-errors ul,
.validation-errors li {
  color: #dc2626 !important;
}

/* line 2791, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.validation-errors .validation-errors-title {
  display: block;
  margin-bottom: 0.5rem;
}

/* line 2796, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.validation-errors .validation-errors-list {
  margin: 0;
  padding-left: 1.25rem;
}

/* line 2802, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.field-error-message {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: block;
}

/* line 2812, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.onboarding-new-page .form-errors,
.onboarding-edit-page .form-errors {
  background: rgba(220, 53, 69, 0.15) !important;
  border: 1px solid rgba(220, 53, 69, 0.5) !important;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 20px;
}

/* line 2819, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.onboarding-new-page .form-errors,
.onboarding-new-page .form-errors h4,
.onboarding-new-page .form-errors .h4,
.onboarding-new-page .form-errors ul,
.onboarding-new-page .form-errors li,
.onboarding-edit-page .form-errors,
.onboarding-edit-page .form-errors h4,
.onboarding-edit-page .form-errors .h4,
.onboarding-edit-page .form-errors ul,
.onboarding-edit-page .form-errors li {
  color: #dc3545 !important;
}

/* line 2826, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.onboarding-new-page .form-errors h4, .onboarding-new-page .form-errors .h4,
.onboarding-edit-page .form-errors h4,
.onboarding-edit-page .form-errors .h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* line 2831, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.onboarding-new-page .form-errors ul,
.onboarding-edit-page .form-errors ul {
  margin: 0;
  padding-left: 20px;
}

/* line 2836, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.onboarding-new-page .form-errors li,
.onboarding-edit-page .form-errors li {
  margin-bottom: 6px;
  font-weight: 500;
}

/* line 2847, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-rules-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 2853, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-rule-card {
  background: rgba(254, 254, 254, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 15px;
}

/* line 2860, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-rule-layout {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

/* line 2866, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-rule-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

/* line 2873, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-rule-trigger {
  color: rgba(255, 255, 255, 0.95);
}

/* line 2877, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-rule-detail {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9em;
  margin-bottom: 5px;
}

/* line 2883, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-rule-detail-muted {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85em;
}

/* line 2888, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-rule-actions {
  display: flex;
  gap: 8px;
}

/* line 2893, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-add-footer {
  margin-top: 15px;
  display: flex;
  justify-content: flex-end;
}

/* line 2899, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-empty-state {
  text-align: center;
  padding: 30px 20px;
  color: rgba(255, 255, 255, 0.6);
}

/* line 2905, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-empty-icon {
  font-size: 2.5em;
  margin-bottom: 15px;
  opacity: 0.5;
}

/* line 2911, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-empty-text-lg {
  margin-bottom: 15px;
  font-size: 0.95em;
}

/* line 2916, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.notification-empty-hint {
  margin-bottom: 20px;
  font-size: 0.85em;
  color: rgba(255, 255, 255, 0.5);
}

/* line 2923, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .notification-rule-card {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.1);
}

/* line 2928, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .notification-rule-trigger {
  color: rgba(0, 0, 0, 0.85);
}

/* line 2932, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .notification-rule-detail {
  color: rgba(0, 0, 0, 0.6);
}

/* line 2936, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .notification-rule-detail-muted {
  color: rgba(0, 0, 0, 0.5);
}

/* line 2940, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .notification-empty-state {
  color: rgba(0, 0, 0, 0.5);
}

/* line 2944, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template.scss */
.lightmode .notification-empty-hint {
  color: rgba(0, 0, 0, 0.4);
}

/* ==========================================================================
   PROJECT TEMPLATES INDEX - MODULE GESTION DE PROJET
   Structure principale et composants pour la gestion des templates de projet
   ========================================================================== */
/* ==========================================================================
   LAYOUT PRINCIPAL - Structure générale du module
   ========================================================================== */
/* line 10, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-board-capsule {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 5px 20px;
  font-size: 1rem;
  gap: 10px;
  overflow: hidden;
}

/* line 22, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-board-capsule.lightmode {
  color: #140D23;
}

/* line 26, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-board-capsule.nightmode {
  color: #FFFFFF;
}

/* ==========================================================================
   BARRE SUPÉRIEURE - Recherche et bouton création
   ========================================================================== */
/* line 35, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-row1 {
  width: 80%;
  height: 50px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  flex-shrink: 0;
  margin-bottom: 5px;
}

/* line 46, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-row1 form {
  width: 100%;
  display: flex;
}

/* ==========================================================================
   BARRE DE RECHERCHE - Composants et fonctionnalités
   ========================================================================== */
/* line 56, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-row1-searchbar {
  width: 100%;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 69, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-board-capsule.lightmode .project-templates-row1-searchbar {
  border-color: rgba(20, 13, 35, 0.5);
  color: #140D23;
}

/* line 74, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-row1-searchbar .project-templates-search-form {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 81, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-row1-searchbar .project-templates-search-input-wrapper {
  position: relative;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

/* line 88, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-row1-searchbar .project-templates-search-input {
  width: 100%;
  background: transparent;
  border: none;
  color: #FFFFFF;
  outline: none;
  padding-right: 25px;
}

/* line 96, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-board-capsule.lightmode .project-templates-row1-searchbar .project-templates-search-input {
  color: #140D23;
}

/* line 99, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-board-capsule.lightmode .project-templates-row1-searchbar .project-templates-search-input::placeholder {
  color: rgba(20, 13, 35, 0.6);
}

/* line 105, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-row1-searchbar .project-templates-clear-search-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 0.6rem;
  text-decoration: none;
}

/* line 120, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-board-capsule.lightmode .project-templates-row1-searchbar .project-templates-clear-search-btn {
  color: #140D23;
}

/* line 124, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-row1-searchbar .project-templates-clear-search-btn:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* line 127, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-board-capsule.lightmode .project-templates-row1-searchbar .project-templates-clear-search-btn:hover {
  color: rgba(20, 13, 35, 0.7);
}

/* line 133, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-row1-searchbar button {
  all: unset;
  cursor: pointer;
}

/* line 138, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-row1-searchbar .project-templates-search-btn {
  padding: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 146, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-row1-searchbar i {
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 151, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-board-capsule.lightmode .project-templates-row1-searchbar i {
  color: #140D23 !important;
}

/* line 156, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-row1-searchbar span {
  font-weight: normal !important;
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 162, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-board-capsule.lightmode .project-templates-row1-searchbar span {
  color: #140D23 !important;
}

/* line 168, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-create-btn {
  background: #C38761;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
  white-space: nowrap;
}

/* line 183, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-create-btn:hover {
  background: #E5A82E;
  color: #140D23;
}

/* ==========================================================================
   CONTENEUR PRINCIPAL DES DONNÉES - Structure du tableau des templates
   ========================================================================== */
/* line 193, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-list {
  width: 80%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 15px;
  overflow: hidden;
  margin-top: 15px;
  gap: 10px;
}

/* line 208, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-board-capsule.lightmode .project-templates-list {
  background: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   EN-TÊTE DU TABLEAU - Titres des colonnes et tri
   ========================================================================== */
/* line 217, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-list-head {
  width: 97%;
  display: flex;
  padding-right: 8px;
  flex-direction: row;
  font-weight: bold;
  font-size: 0.75rem;
  margin-bottom: 5px;
  color: #FFFFFF;
}

/* line 227, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-board-capsule.lightmode .project-templates-list-head {
  color: #140D23;
}

/* line 232, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-list-head .project-templates-list-column {
  width: calc(80% / 3);
  text-align: center;
  justify-content: flex-end;
  padding-left: 70px;
}

/* line 237, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-list-head .project-templates-list-column:first-child {
  text-align: left;
  justify-content: flex-start;
  padding-left: 20px;
}

/* line 243, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-list-head .project-templates-list-column a {
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: bold;
  color: #FFFFFF;
}

/* line 248, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-list-head .project-templates-list-column a span {
  font-weight: bold;
}

/* line 251, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-list-head .project-templates-list-column a:hover {
  text-decoration: none;
}

/* line 255, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-board-capsule.lightmode .project-templates-list-head .project-templates-list-column a {
  color: #140D23;
}

/* line 260, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-list-head .project-templates-list-column:last-child {
  width: 20%;
  text-align: right;
  justify-content: flex-end;
  padding-right: 15px;
}

/* Styles communs pour les colonnes */
/* line 269, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-list-column {
  display: flex;
  align-items: center;
  font-size: 0.7rem;
  padding: 5px 10px;
}

/* ==========================================================================
   CORPS DU TABLEAU - Liste des templates avec défilement
   ========================================================================== */
/* line 280, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-list-entries {
  width: 100%;
  height: calc(100% - 30px);
  display: flex;
  gap: 5px;
  flex-direction: column;
  overflow-y: auto;
  /* Personnalisation de la barre de défilement */
}

/* line 289, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-list-entries::-webkit-scrollbar {
  width: 8px;
}

/* line 293, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-list-entries::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 297, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-board-capsule.lightmode .project-templates-list-entries::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 302, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-list-entries::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 307, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-list-entries::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 310, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-board-capsule.lightmode .project-templates-list-entries::-webkit-scrollbar-thumb:hover {
  background: #140D23;
}

/* Lignes du tableau des templates */
/* line 317, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-list-entry {
  width: 97%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  font-size: 0.7rem;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 2px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 40px;
  padding: 3px 0;
  margin-bottom: 2px;
  color: #FFFFFF;
  background: transparent;
}

/* line 336, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-board-capsule.lightmode .project-templates-list-entry {
  color: #140D23;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 2px;
}

/* line 341, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-list-entry:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 346, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-board-capsule.lightmode .project-templates-list-entry:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 351, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-list-entry .project-templates-list-column {
  width: calc(80% / 3);
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: flex-end;
  font-size: 0.7rem;
  padding: 5px 10px;
  padding-right: 45px;
}

/* line 360, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-list-entry .project-templates-list-column:first-child {
  text-align: left;
  justify-content: flex-start;
}

/* line 365, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-list-entry .project-templates-list-column:last-child {
  width: 20%;
  text-align: right;
  justify-content: flex-end;
  padding-right: 25px;
  gap: 10px;
  z-index: 10;
}

/* line 376, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-list-entry-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

/* line 383, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-list-entry-link:hover {
  text-decoration: none;
  color: inherit;
}

/* line 388, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-list-entry-link:focus, .project-templates-list-entry-link:active {
  text-decoration: none;
  color: inherit;
}

/* line 395, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-link {
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: none;
}

/* line 399, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-link:hover {
  text-decoration: none;
}

/* line 402, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-board-capsule.lightmode .project-templates-link {
  color: #140D23;
}

/* line 404, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-board-capsule.lightmode .project-templates-link:hover {
  color: #C38761;
}

/* line 410, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-name {
  color: #FFFFFF;
  font-weight: 600;
}

/* line 414, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-board-capsule.lightmode .project-templates-name {
  color: #140D23;
}

/* ==========================================================================
   BOUTONS D'ACTION - Suppression des templates
   ========================================================================== */
/* line 423, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-action-btn {
  padding: 5px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px;
  width: 25px;
  height: 25px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s ease;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 20;
}

/* line 439, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-board-capsule.lightmode .project-templates-action-btn {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 443, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-action-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* line 446, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-board-capsule.lightmode .project-templates-action-btn:hover {
  background-color: rgba(20, 13, 35, 0.3);
}

/* line 451, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-action-btn i {
  font-size: 0.8rem;
  color: #FFFFFF;
}

/* line 455, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-board-capsule.lightmode .project-templates-action-btn i {
  color: #140D23;
}

/* line 461, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-no-results {
  width: 100%;
  padding: 20px;
  text-align: center;
  font-size: 1rem;
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-top: 10px;
}

/* line 470, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
.project-templates-board-capsule.lightmode .project-templates-no-results {
  color: #140D23;
  background-color: rgba(20, 13, 35, 0.05);
}

/* ==========================================================================
   RESPONSIVE - Adaptations pour mobile
   ========================================================================== */
@media (max-width: 900px) {
  /* line 481, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
  .project-templates-board-capsule {
    padding: 10px 2px;
  }
  /* line 485, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
  .project-templates-list-head,
.project-templates-list-entry {
    font-size: 0.9rem;
    padding: 0.5rem 0.2rem;
  }
  /* line 491, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
  .project-templates-row1 {
    width: 98%;
    flex-direction: column;
    gap: 10px;
  }
  /* line 497, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_templates_index.scss */
  .project-templates-list {
    width: 98%;
    padding: 8px;
  }
}

/* line 2, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.leads-board-capsule:has(.timeline-help) {
  overflow-y: auto !important;
  overflow-x: hidden;
  padding: 5px 0px !important;
}

/* line 8, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.timeline-card {
  margin: 25px auto 0;
  width: 80vw;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  padding: 16px 8px 8px;
}

/* line 17, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.leads-board-capsule.lightmode .timeline-card {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* line 24, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.projects-timeline-container {
  margin-top: 48px;
  padding: 0 32px;
  --timeline-max-width: 1100px;
  --bubble-gap: 80px;
  --v-step: 28px;
  --lane-step: 28px;
  height: 50vh;
  overflow: visible;
}

/* line 37, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.projects-timeline-container .timeline-scale {
  display: none;
}

/* line 41, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.projects-timeline-container .timeline-track {
  position: relative;
  margin: 56px 0 72px;
  height: 260px;
  width: 100%;
  max-width: var(--timeline-max-width);
  margin-left: auto;
  margin-right: auto;
  overflow: visible;
}

/* line 52, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.projects-timeline-container .timeline-track:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 30px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.49) 100%);
  border-radius: 4px;
}

/* line 67, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.projects-timeline-container .timeline-track .timeline-bound {
  position: absolute;
  top: calc(56% + 12px);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

/* line 73, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.projects-timeline-container .timeline-track .timeline-bound.min {
  left: -30px;
}

/* line 77, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.projects-timeline-container .timeline-track .timeline-bound.max {
  right: -30px;
}

/* line 83, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.leads-board-capsule.lightmode .projects-timeline-container .timeline-track:after {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.16) 50%, rgba(0, 0, 0, 0.08) 100%);
}

/* line 92, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.projects-timeline-container .timeline-today {
  position: absolute;
  top: calc(50% - 28px);
  transform: translateX(-50%);
  text-align: center;
}

/* line 98, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.projects-timeline-container .timeline-today .today-indicator {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffb703;
  border: 2px solid rgba(255, 255, 255, 0.9);
  margin: 0 auto 6px;
  position: relative;
  color: #ffb703;
  box-shadow: 0 0 0px 5px #ffb70366;
}

/* line 109, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.projects-timeline-container .timeline-today .today-indicator i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
}

/* line 119, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.projects-timeline-container .timeline-today .today-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
}

/* line 123, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.leads-board-capsule.lightmode .projects-timeline-container .timeline-today .today-label {
  color: rgba(0, 0, 0, 0.7);
}

/* line 130, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.projects-timeline-container .timeline-end {
  position: absolute !important;
  top: 50%;
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #3498db;
  border: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0px 4px #3498db54;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.95);
}

/* line 145, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.projects-timeline-container .timeline-end i {
  font-size: 14px;
}

/* line 149, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.projects-timeline-container .timeline-end.left {
  left: 0;
  right: auto;
  transform: translate(-50%, -50%);
}

/* line 156, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.projects-timeline-container .timeline-end.right {
  right: 0;
  left: auto;
  transform: translate(50%, -50%);
}

/* line 164, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.projects-timeline-container .timeline-item {
  position: absolute;
  top: 0;
  height: 100%;
  transform: translateX(-50%);
}

/* line 170, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.projects-timeline-container .timeline-item .timeline-dot {
  position: absolute;
  top: 50%;
  left: 0;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #2ecc71;
  border: 2px solid rgba(255, 255, 255, 0.9);
  transform: translate(-50%, -50%);
  box-shadow: none;
  position: relative;
}

/* line 183, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.projects-timeline-container .timeline-item .timeline-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  opacity: 0;
  filter: blur(3px);
  transform: scale(1.2);
  z-index: 1;
  background: currentColor;
}

/* line 195, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.projects-timeline-container .timeline-item .timeline-dot i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.95);
}

/* line 205, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.leads-board-capsule.lightmode .projects-timeline-container .timeline-item .timeline-dot {
  border-color: rgba(0, 0, 0, 0.8);
}

/* line 210, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.projects-timeline-container .timeline-item .timeline-chip {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, calc(var(--bubble-gap) + var(--v-offset, 0px)));
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 4px 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  white-space: nowrap;
}

/* line 224, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.projects-timeline-container .timeline-item .timeline-chip .chip-text {
  pointer-events: none;
}

/* line 228, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.leads-board-capsule.lightmode .projects-timeline-container .timeline-item .timeline-chip {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.15);
  color: #0f2440;
}

/* line 235, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.projects-timeline-container .timeline-item:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: calc(var(--bubble-gap) + var(--v-offset, 0px));
  background: rgba(255, 255, 255, 0.25);
  transform: translate(-50%, 0);
}

/* line 245, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.leads-board-capsule.lightmode .projects-timeline-container .timeline-item:before {
  background: rgba(0, 0, 0, 0.15);
}

/* line 250, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.projects-timeline-container .timeline-item .timeline-bubble {
  position: absolute;
  top: 50%;
  transform: translate(calc(-50% + var(--x-offset, 0px)), calc(var(--bubble-gap) + var(--v-offset, 0px)));
  left: 0;
  min-width: 260px;
  max-width: 420px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(4px);
}

/* line 265, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.leads-board-capsule.lightmode .projects-timeline-container .timeline-item .timeline-bubble {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(0, 0, 0, 0.12);
}

/* line 270, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.projects-timeline-container .timeline-item .timeline-bubble .bubble-title {
  font-weight: 600;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.95);
}

/* line 275, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.leads-board-capsule.lightmode .projects-timeline-container .timeline-item .timeline-bubble .bubble-title {
  color: rgba(0, 0, 0, 0.9);
}

/* line 280, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.projects-timeline-container .timeline-item .timeline-bubble .bubble-meta {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* line 285, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.leads-board-capsule.lightmode .projects-timeline-container .timeline-item .timeline-bubble .bubble-meta {
  color: rgba(0, 0, 0, 0.6);
}

/* line 290, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.projects-timeline-container .timeline-item .timeline-bubble .bubble-actions {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
}

/* line 296, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.projects-timeline-container .timeline-item .timeline-bubble .timeline-open-btn {
  display: inline-block;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1;
  border-radius: 6px;
  text-decoration: none;
  background: #c18859;
  color: white;
  border: 1px solid rgba(0, 0, 0, 0.15);
  transition: none;
}

/* line 308, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.projects-timeline-container .timeline-item .timeline-bubble .timeline-open-btn:hover {
  filter: brightness(0.95);
}

/* line 317, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.projects-timeline-container .timeline-item.is-above:before {
  top: calc(50% - (var(--bubble-gap) + var(--v-offset, 0px)));
}

/* line 322, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.projects-timeline-container .timeline-item.is-above .timeline-bubble {
  top: 50%;
  transform: translate(calc(-50% + var(--x-offset, 0px)), calc(-100% - var(--bubble-gap)));
}

/* line 329, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.projects-timeline-container .timeline-item.is-above .timeline-chip {
  top: 50%;
  transform: translate(-50%, calc(-100% - var(--bubble-gap) - var(--v-offset, 0px)));
}

/* line 337, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.projects-timeline-container .timeline-item.is-late .timeline-dot {
  background: #e74c3c;
  color: #e74c3c;
  box-shadow: 0 0 12px rgba(231, 76, 60, 0.28);
}

/* line 342, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.projects-timeline-container .timeline-item.is-late .timeline-dot i {
  color: rgba(255, 255, 255, 0.95);
}

/* line 347, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.projects-timeline-container .timeline-item.is-late .timeline-bubble {
  border-color: rgba(231, 76, 60, 0.35);
  background: rgba(231, 76, 60, 0.22);
}

/* line 352, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.projects-timeline-container .timeline-item.is-late .timeline-chip {
  background: rgba(231, 76, 60, 0.28);
  border-color: rgba(231, 76, 60, 0.55);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 0 12px rgba(231, 76, 60, 0.25);
}

/* line 362, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.projects-timeline-container .timeline-item.is-critical .timeline-dot {
  background: #f39c12;
  color: #f39c12;
  box-shadow: 0 0 12px rgba(243, 156, 18, 0.28);
}

/* line 367, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.projects-timeline-container .timeline-item.is-critical .timeline-dot i {
  color: rgba(255, 255, 255, 0.95);
}

/* line 372, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.projects-timeline-container .timeline-item.is-critical .timeline-bubble {
  border-color: rgba(243, 156, 18, 0.35);
  background: rgba(243, 156, 18, 0.22);
}

/* line 377, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.projects-timeline-container .timeline-item.is-critical .timeline-chip {
  background: rgba(243, 156, 18, 0.28);
  border-color: rgba(243, 156, 18, 0.55);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 0 12px rgba(243, 156, 18, 0.25);
}

/* line 387, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.projects-timeline-container .timeline-item.on-time .timeline-dot {
  background: #2ecc71;
  color: #2ecc71;
  box-shadow: 0 0 12px rgba(46, 204, 113, 0.28);
}

/* line 392, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.projects-timeline-container .timeline-item.on-time .timeline-dot i {
  color: rgba(255, 255, 255, 0.95);
}

/* line 397, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.projects-timeline-container .timeline-item.on-time .timeline-bubble {
  border-color: rgba(46, 204, 113, 0.35);
  background: rgba(46, 204, 113, 0.2);
}

/* line 402, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.projects-timeline-container .timeline-item.on-time .timeline-chip {
  background: rgba(46, 204, 113, 0.28);
  border-color: rgba(46, 204, 113, 0.55);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 0 12px rgba(46, 204, 113, 0.25);
}

/* line 412, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.projects-timeline-container .timeline-filters {
  margin-bottom: 16px;
}

/* line 417, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.timeline-help {
  margin-top: 12px;
  margin-bottom: 20px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 16px 18px;
  width: 80vw;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  overflow: visible !important;
  min-height: auto;
  position: relative;
  z-index: 1;
}

/* line 436, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.leads-board-capsule.lightmode .timeline-help {
  color: rgba(0, 0, 0, 0.7);
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.12);
}

/* line 442, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.timeline-help i {
  margin: 0 2px;
}

/* line 446, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.timeline-help p {
  margin: 6px 0;
}

/* line 450, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.timeline-help .help-green {
  color: #2ecc71 !important;
  font-weight: 700;
}

/* line 455, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.timeline-help .help-orange {
  color: #f39c12 !important;
  font-weight: 700;
}

/* line 460, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.timeline-help .help-red {
  color: #e74c3c !important;
  font-weight: 700;
}

/* line 465, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.leads-board-capsule.lightmode .timeline-help .help-green {
  color: #1e8e57 !important;
}

/* line 469, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.leads-board-capsule.lightmode .timeline-help .help-orange {
  color: #d68910 !important;
}

/* line 473, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.leads-board-capsule.lightmode .timeline-help .help-red {
  color: #c0392b !important;
}

@media (max-width: 1440px) {
  /* line 480, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
  .timeline-card {
    width: 80vw;
  }
  /* line 484, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
  .projects-timeline-container {
    --bubble-gap: 72px;
    padding: 0 28px;
  }
  /* line 488, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
  .projects-timeline-container .timeline-track {
    height: 240px;
  }
}

@media (max-width: 1280px) {
  /* line 495, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
  .timeline-card {
    width: 80vw;
  }
  /* line 499, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
  .projects-timeline-container {
    --bubble-gap: 64px;
    padding: 0 24px;
  }
  /* line 503, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
  .projects-timeline-container .timeline-track {
    height: 220px;
  }
  /* line 508, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
  .timeline-help {
    width: 80vw;
    max-width: none;
  }
}

@media (max-height: 800px) {
  /* line 516, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
  .projects-timeline-container {
    height: 40vh;
  }
}

@media (max-width: 1120px) {
  /* line 522, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
  .projects-timeline-container {
    --bubble-gap: 56px;
    padding: 0 20px;
  }
  /* line 526, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
  .projects-timeline-container .timeline-track {
    height: 200px;
  }
  /* line 531, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
  .timeline-help {
    width: 80vw;
    max-width: none;
  }
}

/* line 538, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.timeline-filter-form .timeline-filter-fields {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

/* line 544, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.timeline-filter-form .timeline-filter-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* line 549, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.timeline-filter-form .timeline-filter-field label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

/* line 553, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.leads-board-capsule.lightmode .timeline-filter-form .timeline-filter-field label {
  color: rgba(0, 0, 0, 0.6);
}

/* line 558, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.timeline-filter-form .timeline-filter-field .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white !important;
  font-size: 0.8rem;
  padding: 8px 12px;
  border-radius: 8px;
}

/* line 566, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.leads-board-capsule.lightmode .timeline-filter-form .timeline-filter-field .form-control {
  background-color: rgba(51, 51, 51, 0.1);
  border-color: rgba(51, 51, 51, 0.2);
  color: #0f2440 !important;
}

/* line 575, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.late-chip {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 10px;
  background: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
  font-weight: 600;
  font-size: 11px;
}

/* line 585, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.critical-chip {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 10px;
  background: rgba(243, 156, 18, 0.15);
  color: #f39c12;
  font-weight: 600;
  font-size: 11px;
}

/* line 596, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.timeline-cluster {
  position: absolute;
  top: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 2;
}

/* line 603, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.timeline-cluster .cluster-dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  background: #c18859;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 2px rgba(193, 136, 89, 0.25);
}

/* line 616, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.timeline-cluster .cluster-bubble {
  position: absolute;
  top: calc(50% + var(--bubble-gap));
  left: 0;
  transform: translate(-50%, 0);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 12px;
  white-space: nowrap;
  backdrop-filter: blur(2px);
}

/* line 633, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_late_projects_timeline.scss */
.timeline-cluster.expanded .cluster-bubble {
  display: none;
}

/* ==========================================================================
   GANTT MAISON - Styles pour le diagramme de Gantt custom
   Style cohérent avec les graphiques Chart.js du module
   ========================================================================== */
/* line 7, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.project-gantt-section {
  width: 100%;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 15px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  display: flex;
  height: 400px;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
}

/* line 20, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.project-board-capsule.lightmode .project-gantt-section {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 26, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.gantt-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 34, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.project-board-capsule.lightmode .gantt-header {
  border-bottom-color: rgba(20, 13, 35, 0.2);
}

/* line 39, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.gantt-title {
  color: #FFFFFF;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

/* line 45, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.project-board-capsule.lightmode .gantt-title {
  color: #140D23;
}

/* line 51, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.custom-gantt-container {
  width: 100%;
  max-width: 100%;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 15px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  min-height: 500px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
}

/* line 64, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.project-board-capsule.lightmode .custom-gantt-container {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 70, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.project-gantt-section .custom-gantt-container {
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  max-width: 100%;
}

/* line 79, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.custom-gantt-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  --timeline-width: 100%;
}

/* line 91, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.custom-gantt-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px 12px 0 0;
  position: relative;
  width: 100%;
  flex-shrink: 0;
  z-index: 20;
}

/* line 105, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.project-board-capsule.lightmode .custom-gantt-header {
  background: rgba(20, 13, 35, 0.05);
  border-bottom-color: rgba(20, 13, 35, 0.2);
}

/* line 110, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.custom-gantt-header h3, .custom-gantt-header .h3 {
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

/* line 116, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.project-board-capsule.lightmode .custom-gantt-header h3, .project-board-capsule.lightmode .custom-gantt-header .h3 {
  color: #140D23;
}

/* line 122, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.custom-gantt-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 128, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.gantt-control-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 12px;
}

/* line 142, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.project-board-capsule.lightmode .gantt-control-btn {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: rgba(20, 13, 35, 0.7);
}

/* line 148, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.gantt-control-btn:hover {
  background: rgba(195, 135, 97, 0.15);
  border-color: rgba(195, 135, 97, 0.4);
  color: #C38761;
  transform: translateY(-1px);
}

/* line 155, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.gantt-control-btn:active {
  transform: translateY(0);
}

/* line 160, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.gantt-zoom-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 500;
  min-width: 45px;
  text-align: center;
}

/* line 167, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.project-board-capsule.lightmode .gantt-zoom-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 172, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.gantt-view-select {
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 183, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.project-board-capsule.lightmode .gantt-view-select {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: rgba(20, 13, 35, 0.9);
}

/* line 189, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.gantt-view-select:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
}

/* line 196, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.gantt-view-select:focus {
  outline: 2px solid #C38761;
  outline-offset: 2px;
}

/* line 203, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.gantt-zoom-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 209, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.zoom-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 12px;
}

/* line 223, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.project-board-capsule.lightmode .zoom-btn {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: rgba(20, 13, 35, 0.7);
}

/* line 229, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.zoom-btn:hover {
  background: rgba(195, 135, 97, 0.15);
  border-color: rgba(195, 135, 97, 0.4);
  color: #C38761;
  transform: translateY(-1px);
}

/* line 236, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.zoom-btn:active {
  transform: translateY(0);
}

/* line 241, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.zoom-level-buttons {
  display: flex;
  gap: 4px;
}

/* line 246, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.zoom-level-btn {
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 257, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.project-board-capsule.lightmode .zoom-level-btn {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: rgba(20, 13, 35, 0.7);
}

/* line 263, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.zoom-level-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
}

/* line 270, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.zoom-level-btn.active {
  background: rgba(195, 135, 97, 0.15);
  border-color: rgba(195, 135, 97, 0.4);
  color: #C38761;
}

/* line 276, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.zoom-level-btn:active {
  transform: translateY(0);
}

/* line 282, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.custom-gantt-scroll-container {
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  min-width: 0;
  max-width: 100%;
}

/* line 290, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.custom-gantt-scroll-container::-webkit-scrollbar {
  height: 8px;
}

/* line 294, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.custom-gantt-scroll-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 299, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.custom-gantt-scroll-container::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 304, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.custom-gantt-scroll-container::-webkit-scrollbar-thumb:hover {
  background: #d1a386;
}

/* line 310, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.custom-gantt-timeline {
  display: flex;
  padding-bottom: 8px;
  margin-bottom: 10px;
  position: relative;
  width: var(--timeline-width, 100%);
  min-width: var(--timeline-width, 100%);
  z-index: 1;
}

/* line 320, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.custom-gantt-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: var(--timeline-width, 100%);
  height: 100%;
  background: rgba(255, 255, 255, 0.02);
  z-index: -1;
  pointer-events: none;
}

/* line 333, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.project-board-capsule.lightmode .custom-gantt-timeline::before {
  background: rgba(20, 13, 35, 0.05);
}

/* line 339, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.custom-gantt-timeline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: var(--timeline-width, 100%);
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: -1;
  pointer-events: none;
}

/* line 352, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.project-board-capsule.lightmode .custom-gantt-timeline::after {
  background: rgba(20, 13, 35, 0.2);
}

/* line 358, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.timeline-label-spacer {
  flex-shrink: 0;
  width: 210px;
  min-width: 210px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

/* line 364, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.project-board-capsule.lightmode .timeline-label-spacer {
  border-right-color: rgba(20, 13, 35, 0.1);
}

/* line 369, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.timeline-cell {
  flex-shrink: 0;
  padding: 8px 4px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  min-width: 40px;
}

/* line 376, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.project-board-capsule.lightmode .timeline-cell {
  border-right-color: rgba(20, 13, 35, 0.1);
}

/* line 381, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.timeline-date {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 4px;
}

/* line 387, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.project-board-capsule.lightmode .timeline-date {
  color: #140D23;
}

/* line 392, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.timeline-sublabel {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 400;
}

/* line 397, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.project-board-capsule.lightmode .timeline-sublabel {
  color: rgba(20, 13, 35, 0.6);
}

/* line 403, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.custom-gantt-tasks-area {
  position: relative;
  min-height: 400px;
}

/* line 408, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.gantt-task-row {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 8px 0;
  position: relative;
}

/* line 416, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.gantt-task-row::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: var(--timeline-width, 100%);
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

/* line 428, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.project-board-capsule.lightmode .gantt-task-row::after {
  background: rgba(20, 13, 35, 0.1);
}

/* line 434, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.gantt-task-label {
  width: 200px;
  min-width: 200px;
  padding: 0 15px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 500;
  left: 0;
  background: rgba(255, 255, 255, 0.02);
  z-index: 5;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  height: 100%;
}

/* line 449, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.project-board-capsule.lightmode .gantt-task-label {
  color: rgba(20, 13, 35, 0.9);
  background: rgba(20, 13, 35, 0.05);
  border-right-color: rgba(20, 13, 35, 0.1);
}

/* line 456, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.gantt-task-bar-container {
  flex: 1;
  position: relative;
  height: 34px;
  margin-left: 10px;
}

/* line 463, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.gantt-task-bar {
  position: absolute;
  top: 0;
  height: 34px;
  min-width: 40px;
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.8) 0%, rgba(195, 135, 97, 0.6) 100%);
  border: 1.5px solid rgba(195, 135, 97, 0.9);
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
  z-index: 2;
}

/* line 478, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.gantt-task-bar:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border-color: #C38761;
}

/* line 485, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.gantt-task-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.8) 0%, rgba(40, 167, 69, 0.6) 100%);
  border-radius: 6px 0 0 6px;
  z-index: 1;
}

/* line 495, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.gantt-task-bar-label {
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  z-index: 3;
  position: relative;
  pointer-events: none;
}

/* line 508, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.gantt-dependency-arrow {
  pointer-events: none;
  z-index: 0;
  position: absolute;
  left: 0;
  top: 0;
}

/* line 517, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.gantt-empty-state,
.gantt-error-state {
  text-align: center;
  padding: 60px 20px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* line 528, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.gantt-empty-icon {
  font-size: 48px;
  opacity: .5;
}

/* line 529, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.gantt-error-icon {
  font-size: 24px;
  opacity: .7;
}

/* line 530, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.gantt-empty-text {
  font-size: 15px;
  margin: 0;
}

/* line 531, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.gantt-error-text {
  font-size: 15px;
  margin: 0;
}

/* line 535, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.project-board-capsule.lightmode .zoom-btn,
.project-board-capsule.lightmode .zoom-level-btn {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.2);
  color: rgba(20, 13, 35, 0.7);
}

/* line 541, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.project-board-capsule.lightmode .zoom-btn:hover,
.project-board-capsule.lightmode .zoom-level-btn:hover {
  background: rgba(195, 135, 97, 0.15);
  border-color: rgba(195, 135, 97, 0.4);
  color: #C38761;
}

/* line 547, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
.project-board-capsule.lightmode .zoom-btn.active,
.project-board-capsule.lightmode .zoom-level-btn.active {
  background: rgba(195, 135, 97, 0.15);
  border-color: rgba(195, 135, 97, 0.4);
  color: #C38761;
}

@media (max-width: 1200px) {
  /* line 557, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
  .custom-gantt-header {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  /* line 562, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
  .custom-gantt-header .custom-gantt-controls {
    justify-content: center;
    flex-wrap: wrap;
  }
  /* line 568, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
  .gantt-task-label {
    width: 150px;
    min-width: 150px;
  }
}

@media (max-width: 768px) {
  /* line 575, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
  .custom-gantt-container {
    padding: 15px;
    min-height: 400px;
  }
  /* line 580, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
  .custom-gantt-header {
    padding: 10px;
  }
  /* line 583, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
  .custom-gantt-header h3, .custom-gantt-header .h3 {
    font-size: 1rem;
  }
  /* line 588, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
  .gantt-task-label {
    width: 120px;
    min-width: 120px;
    font-size: 12px;
  }
  /* line 594, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_gantt.scss */
  .gantt-task-bar {
    height: 28px;
    font-size: 10px;
  }
}

/* line 8, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.completion-report-form-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 14, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.completion-report-form-section .completion-report-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 23, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.project-show-page .project-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
  flex-wrap: wrap;
}

/* line 31, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.project-show-page .project-subtitle .project-name {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* line 37, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.project-show-page .project-subtitle .status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 48, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.project-show-page .project-subtitle .status-badge i {
  font-size: 12px;
}

/* line 52, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.project-show-page .project-subtitle .status-badge.draft {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

/* line 58, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.project-show-page .project-subtitle .status-badge.validated {
  background: rgba(40, 167, 69, 0.2);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

/* line 68, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.completion-report-actions-bar {
  width: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 15px;
  backdrop-filter: blur(10px);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

/* line 84, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.completion-report-section {
  width: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 20px;
  backdrop-filter: blur(10px);
}

/* line 94, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.completion-report-section .section-header {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 99, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.completion-report-section .section-header .section-title {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

/* line 110, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.completion-report-section .section-header .section-title i {
  font-size: 18px;
  color: #C38761;
}

/* line 118, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.completion-report-section .section-content .readonly-content {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 15px;
}

/* line 124, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.completion-report-section .section-content .readonly-content .objectives-text,
.completion-report-section .section-content .readonly-content .conclusion-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* line 131, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.completion-report-section .section-content .readonly-content .objectives-text p,
.completion-report-section .section-content .readonly-content .conclusion-text p {
  margin-bottom: 10px;
}

/* line 134, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.completion-report-section .section-content .readonly-content .objectives-text p:last-child,
.completion-report-section .section-content .readonly-content .conclusion-text p:last-child {
  margin-bottom: 0;
}

/* line 141, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.completion-report-section .section-content .empty-message {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  font-size: 14px;
  margin: 0;
  padding: 15px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

/* line 154, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.completion-report-section .section-content .empty-message i {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
}

/* line 160, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.completion-report-section .section-content .field-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}

/* line 169, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.completion-report-section .section-content .field-hint i {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* line 174, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.completion-report-section .section-content .field-hint.locked {
  color: rgba(255, 193, 7, 0.8);
}

/* line 177, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.completion-report-section .section-content .field-hint.locked i {
  color: #ffc107;
}

/* line 186, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.steps-table-wrapper {
  overflow-x: auto;
  border-radius: 8px;
  background: transparent;
}

/* line 192, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.completion-steps-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: transparent;
}

/* line 198, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.completion-steps-table thead {
  background: transparent;
}

/* line 202, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.completion-steps-table thead tr th {
  padding: 12px 15px;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
}

/* line 213, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.completion-steps-table thead tr th.step-number {
  width: 60px;
  text-align: center;
}

/* line 218, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.completion-steps-table thead tr th.step-name {
  font-weight: 600;
}

/* line 222, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.completion-steps-table thead tr th.step-date {
  width: 200px;
  text-align: right;
}

/* line 231, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.completion-steps-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease;
  background: transparent;
}

/* line 236, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.completion-steps-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

/* line 240, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.completion-steps-table tbody tr:last-child {
  border-bottom: none;
}

/* line 244, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.completion-steps-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 8px;
}

/* line 248, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.completion-steps-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 8px;
}

/* line 254, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.completion-steps-table tbody tr td {
  padding: 14px 15px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  background: transparent;
}

/* line 260, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.completion-steps-table tbody tr td.step-number {
  text-align: center;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

/* line 267, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.completion-steps-table tbody tr td.step-name {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

/* line 272, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.completion-steps-table tbody tr td.step-date {
  text-align: right;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

/* line 277, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.completion-steps-table tbody tr td.step-date i {
  color: rgba(255, 255, 255, 0.5);
  margin-right: 6px;
}

/* line 288, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.completion-textarea {
  width: 100%;
  min-height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 15px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.6;
  font-family: inherit;
  resize: vertical;
  transition: all 0.3s ease;
}

/* line 302, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.completion-textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 309, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.completion-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

/* line 316, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.completion-report-errors {
  width: 100%;
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.15) 0%, rgba(220, 53, 69, 0.05) 100%);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-left: 4px solid #dc3545;
  border-radius: 8px;
  padding: 15px 20px;
}

/* line 326, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.completion-report-errors .errors-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #dc3545;
  margin-bottom: 10px;
}

/* line 335, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.completion-report-errors .errors-header i {
  font-size: 18px;
}

/* line 340, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.completion-report-errors .errors-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* line 345, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.completion-report-errors .errors-list li {
  color: rgba(220, 53, 69, 0.9);
  font-size: 13px;
  padding: 5px 0;
  padding-left: 28px;
  position: relative;
}

/* line 352, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.completion-report-errors .errors-list li::before {
  content: '•';
  position: absolute;
  left: 15px;
  font-size: 18px;
  line-height: 1;
}

/* line 365, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.modal .completion-modal {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* line 374, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.modal .completion-modal .modal-header {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
}

/* line 379, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.modal .completion-modal .modal-header .modal-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  font-size: 18px;
  margin: 0;
}

/* line 388, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.modal .completion-modal .modal-header .modal-title i {
  color: #C38761;
  font-size: 20px;
}

/* line 394, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.modal .completion-modal .modal-header .modal-close {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.7);
}

/* line 407, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.modal .completion-modal .modal-header .modal-close:hover {
  background: rgba(220, 53, 69, 0.2);
  border-color: rgba(220, 53, 69, 0.4);
  color: #dc3545;
}

/* line 413, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.modal .completion-modal .modal-header .modal-close i {
  font-size: 14px;
}

/* line 419, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.modal .completion-modal .modal-body {
  padding: 20px;
}

/* line 422, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.modal .completion-modal .modal-body .form-group {
  margin-bottom: 15px;
}

/* line 425, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.modal .completion-modal .modal-body .form-group .form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 435, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.modal .completion-modal .modal-body .form-group .form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 12px 15px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  transition: all 0.3s ease;
}

/* line 445, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.modal .completion-modal .modal-body .form-group .form-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 452, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.modal .completion-modal .modal-body .form-group .form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* line 458, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.modal .completion-modal .modal-body .modal-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin: 15px 0 0 0;
}

/* line 466, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.modal .completion-modal .modal-body .modal-hint i {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* line 473, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
.modal .completion-modal .modal-footer {
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* line 486, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .completion-report-actions-bar,
body[data-theme="lightmode"] .completion-report-section {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.01) 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* line 494, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .completion-report-actions-bar .section-header,
body[data-theme="lightmode"] .completion-report-section .section-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* line 497, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .completion-report-actions-bar .section-header .section-title,
body[data-theme="lightmode"] .completion-report-section .section-header .section-title {
  color: #140D23;
}

/* line 500, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .completion-report-actions-bar .section-header .section-title i,
body[data-theme="lightmode"] .completion-report-section .section-header .section-title i {
  color: #C38761;
}

/* line 507, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .completion-report-actions-bar .section-content .readonly-content,
body[data-theme="lightmode"] .completion-report-section .section-content .readonly-content {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* line 511, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .completion-report-actions-bar .section-content .readonly-content .objectives-text,
body[data-theme="lightmode"] .completion-report-actions-bar .section-content .readonly-content .conclusion-text,
body[data-theme="lightmode"] .completion-report-section .section-content .readonly-content .objectives-text,
body[data-theme="lightmode"] .completion-report-section .section-content .readonly-content .conclusion-text {
  color: rgba(0, 0, 0, 0.85);
}

/* line 517, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .completion-report-actions-bar .section-content .empty-message,
body[data-theme="lightmode"] .completion-report-section .section-content .empty-message {
  color: rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* line 522, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .completion-report-actions-bar .section-content .empty-message i,
body[data-theme="lightmode"] .completion-report-section .section-content .empty-message i {
  color: rgba(0, 0, 0, 0.4);
}

/* line 527, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .completion-report-actions-bar .section-content .field-hint,
body[data-theme="lightmode"] .completion-report-section .section-content .field-hint {
  color: rgba(0, 0, 0, 0.6);
}

/* line 530, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .completion-report-actions-bar .section-content .field-hint i,
body[data-theme="lightmode"] .completion-report-section .section-content .field-hint i {
  color: rgba(0, 0, 0, 0.5);
}

/* line 534, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .completion-report-actions-bar .section-content .field-hint.locked,
body[data-theme="lightmode"] .completion-report-section .section-content .field-hint.locked {
  color: #ba8b00;
}

/* line 537, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .completion-report-actions-bar .section-content .field-hint.locked i,
body[data-theme="lightmode"] .completion-report-section .section-content .field-hint.locked i {
  color: #d39e00;
}

/* line 546, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .project-subtitle .project-name {
  color: rgba(0, 0, 0, 0.7);
}

/* line 551, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .project-subtitle .status-badge.draft {
  background: rgba(255, 193, 7, 0.15);
  color: #ba8b00;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

/* line 557, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .project-subtitle .status-badge.validated {
  background: rgba(40, 167, 69, 0.15);
  color: #1e7e34;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

/* line 565, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .steps-table-wrapper {
  background: transparent;
}

/* line 569, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .completion-steps-table {
  background: transparent;
}

/* line 572, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .completion-steps-table thead {
  background: transparent;
}

/* line 576, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .completion-steps-table thead tr th {
  color: rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: transparent;
}

/* line 585, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .completion-steps-table tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: transparent;
}

/* line 589, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .completion-steps-table tbody tr:hover {
  background: rgba(0, 0, 0, 0.02);
}

/* line 593, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .completion-steps-table tbody tr td {
  color: rgba(0, 0, 0, 0.85);
  background: transparent;
}

/* line 597, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .completion-steps-table tbody tr td.step-number {
  color: rgba(0, 0, 0, 0.5);
}

/* line 601, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .completion-steps-table tbody tr td.step-name {
  color: #140D23;
}

/* line 605, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .completion-steps-table tbody tr td.step-date {
  color: rgba(0, 0, 0, 0.7);
}

/* line 608, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .completion-steps-table tbody tr td.step-date i {
  color: rgba(0, 0, 0, 0.5);
}

/* line 617, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .completion-textarea {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #140D23;
}

/* line 622, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .completion-textarea:focus {
  background: rgba(0, 0, 0, 0.03);
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 628, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .completion-textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

/* line 633, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .completion-report-errors {
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.03) 100%);
  border: 1px solid rgba(220, 53, 69, 0.2);
  border-left: 4px solid #bd2130;
}

/* line 640, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .completion-report-errors .errors-header {
  color: #bd2130;
}

/* line 644, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .completion-report-errors .errors-list li {
  color: rgba(220, 53, 69, 0.8);
}

/* line 650, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .form-button.btn-primary, body[data-theme="lightmode"] .users-management-container .users-header .btn-primary.add-user-btn, .users-management-container .users-header body[data-theme="lightmode"] .btn-primary.add-user-btn, body[data-theme="lightmode"] .btn-primary.crm-action-button, body[data-theme="lightmode"] .crm-action-button.crm-action-button-primary {
  background: linear-gradient(135deg, #C38761 0%, #af6c42 100%) !important;
  color: #140D23 !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
}

/* line 655, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .form-button.btn-primary:hover, body[data-theme="lightmode"] .users-management-container .users-header .btn-primary.add-user-btn:hover, .users-management-container .users-header body[data-theme="lightmode"] .btn-primary.add-user-btn:hover, body[data-theme="lightmode"] .btn-primary.crm-action-button:hover, body[data-theme="lightmode"] .crm-action-button.crm-action-button-primary:hover {
  box-shadow: 0 4px 12px rgba(195, 135, 97, 0.4) !important;
  color: #140D23 !important;
}

/* line 660, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .form-button.btn-primary:focus, body[data-theme="lightmode"] .users-management-container .users-header .btn-primary.add-user-btn:focus, .users-management-container .users-header body[data-theme="lightmode"] .btn-primary.add-user-btn:focus, body[data-theme="lightmode"] .btn-primary.crm-action-button:focus, body[data-theme="lightmode"] .crm-action-button.crm-action-button-primary:focus {
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.3) !important;
  color: #140D23 !important;
}

/* line 666, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .form-button.btn-secondary, body[data-theme="lightmode"] .users-management-container .users-header .btn-secondary.add-user-btn, .users-management-container .users-header body[data-theme="lightmode"] .btn-secondary.add-user-btn, body[data-theme="lightmode"] .btn-secondary.crm-action-button, body[data-theme="lightmode"] .crm-action-button.crm-action-button-secondary {
  background: rgba(0, 0, 0, 0.04) !important;
  color: #140D23 !important;
  border-color: rgba(0, 0, 0, 0.12) !important;
}

/* line 671, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .form-button.btn-secondary:hover, body[data-theme="lightmode"] .users-management-container .users-header .btn-secondary.add-user-btn:hover, .users-management-container .users-header body[data-theme="lightmode"] .btn-secondary.add-user-btn:hover, body[data-theme="lightmode"] .btn-secondary.crm-action-button:hover, body[data-theme="lightmode"] .crm-action-button.crm-action-button-secondary:hover {
  background: rgba(0, 0, 0, 0.08) !important;
  color: #140D23 !important;
}

/* line 676, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .form-button.btn-secondary:focus, body[data-theme="lightmode"] .users-management-container .users-header .btn-secondary.add-user-btn:focus, .users-management-container .users-header body[data-theme="lightmode"] .btn-secondary.add-user-btn:focus, body[data-theme="lightmode"] .btn-secondary.crm-action-button:focus, body[data-theme="lightmode"] .crm-action-button.crm-action-button-secondary:focus {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1) !important;
}

/* line 681, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .form-button.btn-success, body[data-theme="lightmode"] .users-management-container .users-header .btn-success.add-user-btn, .users-management-container .users-header body[data-theme="lightmode"] .btn-success.add-user-btn, body[data-theme="lightmode"] .btn-success.crm-action-button {
  color: white !important;
}

/* line 684, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .form-button.btn-success:hover, body[data-theme="lightmode"] .users-management-container .users-header .btn-success.add-user-btn:hover, .users-management-container .users-header body[data-theme="lightmode"] .btn-success.add-user-btn:hover, body[data-theme="lightmode"] .btn-success.crm-action-button:hover {
  color: white !important;
}

/* line 688, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .form-button.btn-success:focus, body[data-theme="lightmode"] .users-management-container .users-header .btn-success.add-user-btn:focus, .users-management-container .users-header body[data-theme="lightmode"] .btn-success.add-user-btn:focus, body[data-theme="lightmode"] .btn-success.crm-action-button:focus {
  color: white !important;
}

/* line 693, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .form-button.btn-info, body[data-theme="lightmode"] .users-management-container .users-header .btn-info.add-user-btn, .users-management-container .users-header body[data-theme="lightmode"] .btn-info.add-user-btn, body[data-theme="lightmode"] .btn-info.crm-action-button {
  color: white !important;
}

/* line 696, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .form-button.btn-info:hover, body[data-theme="lightmode"] .users-management-container .users-header .btn-info.add-user-btn:hover, .users-management-container .users-header body[data-theme="lightmode"] .btn-info.add-user-btn:hover, body[data-theme="lightmode"] .btn-info.crm-action-button:hover {
  color: white !important;
}

/* line 700, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .form-button.btn-info:focus, body[data-theme="lightmode"] .users-management-container .users-header .btn-info.add-user-btn:focus, .users-management-container .users-header body[data-theme="lightmode"] .btn-info.add-user-btn:focus, body[data-theme="lightmode"] .btn-info.crm-action-button:focus {
  color: white !important;
}

/* line 706, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .modal .completion-modal {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* line 713, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .modal .completion-modal .modal-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* line 716, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .modal .completion-modal .modal-header .modal-title {
  color: #140D23;
}

/* line 719, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .modal .completion-modal .modal-header .modal-title i {
  color: #C38761;
}

/* line 724, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .modal .completion-modal .modal-header .modal-close {
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.7);
}

/* line 729, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .modal .completion-modal .modal-header .modal-close:hover {
  background: rgba(220, 53, 69, 0.1);
  border-color: rgba(220, 53, 69, 0.3);
  color: #bd2130;
}

/* line 738, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .modal .completion-modal .modal-body .form-label {
  color: #140D23;
}

/* line 742, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .modal .completion-modal .modal-body .form-input {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #140D23;
}

/* line 747, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .modal .completion-modal .modal-body .form-input:focus {
  background: rgba(0, 0, 0, 0.03);
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 753, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .modal .completion-modal .modal-body .form-input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

/* line 758, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .modal .completion-modal .modal-body .modal-hint {
  color: rgba(0, 0, 0, 0.6);
}

/* line 761, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .modal .completion-modal .modal-body .modal-hint i {
  color: rgba(0, 0, 0, 0.5);
}

/* line 767, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
body[data-theme="lightmode"] .modal .completion-modal .modal-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  /* line 775, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
  .completion-report-actions-bar {
    flex-direction: column;
    align-items: stretch;
  }
  /* line 779, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
  .completion-report-actions-bar .action-btn {
    width: 100%;
    justify-content: center;
  }
  /* line 785, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
  .completion-report-section {
    padding: 15px;
  }
  /* line 789, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
  .completion-report-section .section-header .section-title {
    font-size: 14px;
  }
  /* line 792, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
  .completion-report-section .section-header .section-title i {
    font-size: 16px;
  }
  /* line 801, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
  .steps-table-wrapper .completion-steps-table thead th,
.steps-table-wrapper .completion-steps-table tbody td {
    padding: 10px 8px;
    font-size: 12px;
  }
  /* line 807, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
  .steps-table-wrapper .completion-steps-table thead th.step-date,
.steps-table-wrapper .completion-steps-table tbody td.step-date {
    width: auto;
  }
  /* line 814, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
  .completion-report-actions {
    flex-direction: column;
  }
  /* line 817, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
  .completion-report-actions .action-btn {
    width: 100%;
    justify-content: center;
  }
  /* line 824, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
  .modal .completion-modal .modal-header,
.modal .completion-modal .modal-body,
.modal .completion-modal .modal-footer {
    padding: 15px;
  }
  /* line 830, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
  .modal .completion-modal .modal-footer {
    flex-direction: column;
  }
  /* line 833, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_completion_reports.scss */
  .modal .completion-modal .modal-footer .action-btn {
    width: 100%;
  }
}

/* ==========================================================================
   SCHEDULED ACTIONS - Styles pour les actions planifiées
   ========================================================================== */
/* line 7, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_scheduled_actions.scss */
.template-card-container .form-container .form-label {
  color: #fff !important;
}

/* ==========================================================================
   TEMPLATE STEP MODAL STYLES
   Styles pour la modale de création/édition d'étape de template
   Aligné avec le design de project-template-modal
   ========================================================================== */
/* ==========================================================================
   DARK MODE STYLES (défaut)
   ========================================================================== */
/* Fond de la modal */
/* line 12, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  padding: 20px 0;
}

/* Contenu de la modal */
/* line 28, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-content {
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
  width: 750px;
  max-width: 90%;
  margin: 0 auto;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: none;
  height: 85vh;
  max-height: 700px;
  display: flex;
  flex-direction: column;
}

/* En-tête de la modal */
/* line 47, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
}

/* line 56, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-header h2, .template-step-modal-header .h2 {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 1.2rem;
  margin: 0;
  font-weight: 600;
}

/* line 64, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-close {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s ease;
  background: transparent;
  border: none;
  padding: 0;
  line-height: 1;
}

/* line 74, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-close:hover {
  color: #C38761;
}

/* line 78, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-close i {
  color: inherit;
}

/* Onglets de navigation */
/* line 84, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-tabs {
  display: flex;
  gap: 8px;
  padding: 0 24px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
}

/* line 92, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-tab,
.template-step-modal-tabs .modal-tab {
  padding: 8px 16px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

/* line 107, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-tab i,
.template-step-modal-tabs .modal-tab i {
  font-size: 0.9rem;
}

/* line 111, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-tab .tab-badge,
.template-step-modal-tabs .modal-tab .tab-badge {
  background: rgba(195, 135, 97, 0.3);
  color: #C38761;
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-left: 4px;
}

/* line 121, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-tab:hover,
.template-step-modal-tabs .modal-tab:hover {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
}

/* line 126, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-tab.active,
.template-step-modal-tabs .modal-tab.active {
  background: rgba(195, 135, 97, 0.2);
  color: #C38761;
  font-weight: 500;
}

/* Corps de la modal */
/* line 134, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body {
  flex: 1;
  overflow: hidden;
  color: white;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: transparent;
}

/* Texte d'aide */
/* line 146, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .helper-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-bottom: 20px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 3px solid rgba(195, 135, 97, 0.5);
}

/* line 155, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .helper-text i {
  margin-right: 6px;
  color: #C38761;
}

/* Sections de formulaire */
/* line 162, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .form-section {
  margin-bottom: 30px;
  min-height: 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

/* line 172, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .section-subtitle {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Groupes de formulaire */
/* line 182, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 189, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .form-label {
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 5px;
}

/* Champs de formulaire */
/* line 197, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body input[type="text"],
.template-step-modal-body input[type="number"],
.template-step-modal-body input[type="email"],
.template-step-modal-body input[type="date"],
.template-step-modal-body select,
.template-step-modal-body textarea,
.template-step-modal-body .form-control,
.template-step-modal-body .template-form-control {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(195, 135, 97, 0.4);
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

/* line 215, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body input[type="text"]:focus,
.template-step-modal-body input[type="number"]:focus,
.template-step-modal-body input[type="email"]:focus,
.template-step-modal-body input[type="date"]:focus,
.template-step-modal-body select:focus,
.template-step-modal-body textarea:focus,
.template-step-modal-body .form-control:focus,
.template-step-modal-body .template-form-control:focus {
  outline: none;
  border-color: rgba(195, 135, 97, 0.7);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.15);
}

/* line 222, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body input[type="text"]::placeholder,
.template-step-modal-body input[type="number"]::placeholder,
.template-step-modal-body input[type="email"]::placeholder,
.template-step-modal-body input[type="date"]::placeholder,
.template-step-modal-body select::placeholder,
.template-step-modal-body textarea::placeholder,
.template-step-modal-body .form-control::placeholder,
.template-step-modal-body .template-form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 227, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body select {
  cursor: pointer;
}

/* line 230, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body select option {
  background-color: #140D23;
  color: white;
}

/* line 236, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body textarea {
  resize: vertical;
  min-height: 80px;
}

/* Texte d'aide pour les champs */
/* line 242, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .form-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  margin-top: 4px;
}

/* line 247, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .form-text.text-muted {
  color: rgba(255, 255, 255, 0.5);
}

/* Messages d'erreur */
/* line 253, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .flash.flash-error {
  background: rgba(220, 53, 69, 0.2);
  border: 1px solid rgba(220, 53, 69, 0.4);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

/* line 261, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .flash.flash-error strong {
  color: white;
  display: block;
  margin-bottom: 8px;
}

/* line 267, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .flash.flash-error ul {
  margin: 8px 0 0 20px;
  padding: 0;
}

/* line 272, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .flash.flash-error li {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 4px;
}

/* Contenu des onglets */
/* line 279, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .tab-content {
  display: none;
  flex: 1;
  overflow-y: auto;
  min-height: 0;
  /* Scrollbar personnalisée pour les onglets */
  /* S'assurer que les sections prennent toute la hauteur disponible */
}

/* line 286, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .tab-content::-webkit-scrollbar {
  width: 6px;
}

/* line 290, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .tab-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

/* line 295, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .tab-content::-webkit-scrollbar-thumb {
  background: rgba(195, 135, 97, 0.5);
  border-radius: 3px;
}

/* line 299, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .tab-content::-webkit-scrollbar-thumb:hover {
  background: rgba(195, 135, 97, 0.7);
}

/* line 304, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .tab-content.active {
  display: flex;
  flex-direction: column;
}

/* line 310, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .tab-content .form-section {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Pied de la modal */
/* line 318, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 16px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
}

/* Boutons */
/* line 328, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-footer .form-button, .template-step-modal-footer .users-management-container .users-header .add-user-btn, .users-management-container .users-header .template-step-modal-footer .add-user-btn, .template-step-modal-footer .crm-action-button {
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

/* line 341, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-footer .form-button.btn-secondary, .template-step-modal-footer .users-management-container .users-header .btn-secondary.add-user-btn, .users-management-container .users-header .template-step-modal-footer .btn-secondary.add-user-btn, .template-step-modal-footer .btn-secondary.crm-action-button, .template-step-modal-footer .crm-action-button.crm-action-button-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}

/* line 346, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-footer .form-button.btn-secondary:hover, .template-step-modal-footer .users-management-container .users-header .btn-secondary.add-user-btn:hover, .users-management-container .users-header .template-step-modal-footer .btn-secondary.add-user-btn:hover, .template-step-modal-footer .btn-secondary.crm-action-button:hover, .template-step-modal-footer .crm-action-button.crm-action-button-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

/* line 352, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-footer .form-button.btn-primary, .template-step-modal-footer .users-management-container .users-header .btn-primary.add-user-btn, .users-management-container .users-header .template-step-modal-footer .btn-primary.add-user-btn, .template-step-modal-footer .btn-primary.crm-action-button, .template-step-modal-footer .crm-action-button.crm-action-button-primary {
  background: #C38761;
  border: 1px solid #C38761;
  color: white;
}

/* line 357, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-footer .form-button.btn-primary:hover, .template-step-modal-footer .users-management-container .users-header .btn-primary.add-user-btn:hover, .users-management-container .users-header .template-step-modal-footer .btn-primary.add-user-btn:hover, .template-step-modal-footer .btn-primary.crm-action-button:hover, .template-step-modal-footer .crm-action-button.crm-action-button-primary:hover {
  background: #bc794f;
}

/* Styles pour les sections spéciales (tâches, actions, etc.) */
/* line 364, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .template-task-section,
.template-step-modal-body .template-actions-section,
.template-step-modal-body .template-form-section {
  margin-top: 20px;
}

/* line 370, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .template-task-header,
.template-step-modal-body .template-actions-header,
.template-step-modal-body .template-form-questions-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

/* Boutons */
/* line 380, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .template-btn {
  padding: 6px 12px;
  font-size: 0.85rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  border: none;
  gap: 6px;
}

/* line 395, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .template-btn.btn-sm, .template-step-modal-body .btn-group-sm > .template-btn.btn {
  padding: 4px 10px;
  font-size: 0.75rem;
}

/* line 400, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .template-btn.template-btn-add {
  background: rgba(195, 135, 97, 0.2);
  color: #C38761;
  border: 1px solid rgba(195, 135, 97, 0.4);
}

/* line 405, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .template-btn.template-btn-add:hover {
  background: rgba(195, 135, 97, 0.3);
  border-color: rgba(195, 135, 97, 0.6);
}

/* line 411, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .template-btn.template-btn-danger {
  background: rgba(220, 53, 69, 0.2);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.4);
}

/* line 416, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .template-btn.template-btn-danger:hover {
  background: rgba(220, 53, 69, 0.3);
  border-color: rgba(220, 53, 69, 0.6);
}

/* line 422, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .template-btn i {
  font-size: 0.7rem;
}

/* Checkboxes */
/* line 428, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

/* line 435, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .form-check-input {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #C38761;
}

/* line 442, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .form-check-label {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9rem;
  cursor: pointer;
  margin: 0;
}

/* Cartes de tâches et actions */
/* line 450, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .template-task-card,
.template-step-modal-body .scheduled-action-form-card,
.template-step-modal-body .form-question-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
}

/* line 460, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .template-task-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

/* line 465, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .template-task-card .template-task-fields {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 471, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .template-task-card .template-task-fields .form-control {
  width: 100%;
  margin: 0;
}

/* line 477, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .template-task-card .template-btn-danger {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

/* Listes */
/* line 490, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .template-task-list,
.template-step-modal-body .scheduled-actions-list,
.template-step-modal-body .template-form-questions-list {
  margin-top: 15px;
}

/* Dépendances */
/* line 497, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .dependencies-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

/* line 504, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .dependency-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

/* line 515, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .dependency-checkbox-label:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* line 520, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .dependency-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #C38761;
}

/* line 527, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .dependency-label {
  flex: 1;
}

/* Options de questions */
/* line 532, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .question-options-container {
  margin-top: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 539, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .question-options-container.hidden {
  display: none;
}

/* line 544, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .question-options-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}

/* line 551, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .option-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 556, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.template-step-modal-body .option-item .form-control {
  flex: 1;
  margin: 0;
}

/* ==========================================================================
   LIGHT MODE STYLES
   ========================================================================== */
/* line 568, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.lightmode .template-step-modal-overlay .template-step-modal-content,
.template-step-modal-overlay.lightmode .template-step-modal-content {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(20, 13, 35, 0.15);
  box-shadow: 0 8px 32px rgba(20, 13, 35, 0.15);
}

/* line 574, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.lightmode .template-step-modal-overlay .template-step-modal-header,
.template-step-modal-overlay.lightmode .template-step-modal-header {
  border-bottom: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 577, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.lightmode .template-step-modal-overlay .template-step-modal-header h2, .lightmode .template-step-modal-overlay .template-step-modal-header .h2,
.template-step-modal-overlay.lightmode .template-step-modal-header h2,
.template-step-modal-overlay.lightmode .template-step-modal-header .h2 {
  color: #140D23 !important;
}

/* line 582, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.lightmode .template-step-modal-overlay .template-step-modal-close,
.template-step-modal-overlay.lightmode .template-step-modal-close {
  color: #140D23;
}

/* line 585, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.lightmode .template-step-modal-overlay .template-step-modal-close:hover,
.template-step-modal-overlay.lightmode .template-step-modal-close:hover {
  color: #C38761;
}

/* line 590, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.lightmode .template-step-modal-overlay .template-step-modal-tabs,
.template-step-modal-overlay.lightmode .template-step-modal-tabs {
  border-bottom: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 594, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.lightmode .template-step-modal-overlay .template-step-modal-tab,
.lightmode .template-step-modal-overlay .template-step-modal-tabs .modal-tab,
.template-step-modal-overlay.lightmode .template-step-modal-tab,
.template-step-modal-overlay.lightmode .template-step-modal-tabs .modal-tab {
  color: rgba(20, 13, 35, 0.6);
}

/* line 598, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.lightmode .template-step-modal-overlay .template-step-modal-tab .tab-badge,
.lightmode .template-step-modal-overlay .template-step-modal-tabs .modal-tab .tab-badge,
.template-step-modal-overlay.lightmode .template-step-modal-tab .tab-badge,
.template-step-modal-overlay.lightmode .template-step-modal-tabs .modal-tab .tab-badge {
  background: rgba(195, 135, 97, 0.15);
  color: #C38761;
}

/* line 603, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.lightmode .template-step-modal-overlay .template-step-modal-tab:hover,
.lightmode .template-step-modal-overlay .template-step-modal-tabs .modal-tab:hover,
.template-step-modal-overlay.lightmode .template-step-modal-tab:hover,
.template-step-modal-overlay.lightmode .template-step-modal-tabs .modal-tab:hover {
  background: rgba(20, 13, 35, 0.05);
  color: rgba(20, 13, 35, 0.8);
}

/* line 608, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.lightmode .template-step-modal-overlay .template-step-modal-tab.active,
.lightmode .template-step-modal-overlay .template-step-modal-tabs .modal-tab.active,
.template-step-modal-overlay.lightmode .template-step-modal-tab.active,
.template-step-modal-overlay.lightmode .template-step-modal-tabs .modal-tab.active {
  background: rgba(195, 135, 97, 0.1);
  color: #C38761;
}

/* line 614, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.lightmode .template-step-modal-overlay .template-step-modal-body,
.template-step-modal-overlay.lightmode .template-step-modal-body {
  color: #140D23;
}

/* line 617, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.lightmode .template-step-modal-overlay .template-step-modal-body .helper-text,
.template-step-modal-overlay.lightmode .template-step-modal-body .helper-text {
  color: rgba(20, 13, 35, 0.7);
  background: rgba(20, 13, 35, 0.05);
  border-left-color: rgba(195, 135, 97, 0.5);
}

/* line 622, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.lightmode .template-step-modal-overlay .template-step-modal-body .helper-text i,
.template-step-modal-overlay.lightmode .template-step-modal-body .helper-text i {
  color: #C38761;
}

/* line 627, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.lightmode .template-step-modal-overlay .template-step-modal-body .section-subtitle,
.template-step-modal-overlay.lightmode .template-step-modal-body .section-subtitle {
  color: #140D23;
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 632, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.lightmode .template-step-modal-overlay .template-step-modal-body .form-label,
.template-step-modal-overlay.lightmode .template-step-modal-body .form-label {
  color: #140D23;
}

/* line 636, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.lightmode .template-step-modal-overlay .template-step-modal-body input[type="text"],
.lightmode .template-step-modal-overlay .template-step-modal-body input[type="number"],
.lightmode .template-step-modal-overlay .template-step-modal-body input[type="email"],
.lightmode .template-step-modal-overlay .template-step-modal-body input[type="date"],
.lightmode .template-step-modal-overlay .template-step-modal-body select,
.lightmode .template-step-modal-overlay .template-step-modal-body textarea,
.lightmode .template-step-modal-overlay .template-step-modal-body .form-control,
.lightmode .template-step-modal-overlay .template-step-modal-body .template-form-control,
.template-step-modal-overlay.lightmode .template-step-modal-body input[type="text"],
.template-step-modal-overlay.lightmode .template-step-modal-body input[type="number"],
.template-step-modal-overlay.lightmode .template-step-modal-body input[type="email"],
.template-step-modal-overlay.lightmode .template-step-modal-body input[type="date"],
.template-step-modal-overlay.lightmode .template-step-modal-body select,
.template-step-modal-overlay.lightmode .template-step-modal-body textarea,
.template-step-modal-overlay.lightmode .template-step-modal-body .form-control,
.template-step-modal-overlay.lightmode .template-step-modal-body .template-form-control {
  background: #e8e8e8;
  border: 1px solid rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 648, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.lightmode .template-step-modal-overlay .template-step-modal-body input[type="text"]::placeholder,
.lightmode .template-step-modal-overlay .template-step-modal-body input[type="number"]::placeholder,
.lightmode .template-step-modal-overlay .template-step-modal-body input[type="email"]::placeholder,
.lightmode .template-step-modal-overlay .template-step-modal-body input[type="date"]::placeholder,
.lightmode .template-step-modal-overlay .template-step-modal-body select::placeholder,
.lightmode .template-step-modal-overlay .template-step-modal-body textarea::placeholder,
.lightmode .template-step-modal-overlay .template-step-modal-body .form-control::placeholder,
.lightmode .template-step-modal-overlay .template-step-modal-body .template-form-control::placeholder,
.template-step-modal-overlay.lightmode .template-step-modal-body input[type="text"]::placeholder,
.template-step-modal-overlay.lightmode .template-step-modal-body input[type="number"]::placeholder,
.template-step-modal-overlay.lightmode .template-step-modal-body input[type="email"]::placeholder,
.template-step-modal-overlay.lightmode .template-step-modal-body input[type="date"]::placeholder,
.template-step-modal-overlay.lightmode .template-step-modal-body select::placeholder,
.template-step-modal-overlay.lightmode .template-step-modal-body textarea::placeholder,
.template-step-modal-overlay.lightmode .template-step-modal-body .form-control::placeholder,
.template-step-modal-overlay.lightmode .template-step-modal-body .template-form-control::placeholder {
  color: rgba(20, 13, 35, 0.5);
}

/* line 652, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.lightmode .template-step-modal-overlay .template-step-modal-body input[type="text"]:focus,
.lightmode .template-step-modal-overlay .template-step-modal-body input[type="number"]:focus,
.lightmode .template-step-modal-overlay .template-step-modal-body input[type="email"]:focus,
.lightmode .template-step-modal-overlay .template-step-modal-body input[type="date"]:focus,
.lightmode .template-step-modal-overlay .template-step-modal-body select:focus,
.lightmode .template-step-modal-overlay .template-step-modal-body textarea:focus,
.lightmode .template-step-modal-overlay .template-step-modal-body .form-control:focus,
.lightmode .template-step-modal-overlay .template-step-modal-body .template-form-control:focus,
.template-step-modal-overlay.lightmode .template-step-modal-body input[type="text"]:focus,
.template-step-modal-overlay.lightmode .template-step-modal-body input[type="number"]:focus,
.template-step-modal-overlay.lightmode .template-step-modal-body input[type="email"]:focus,
.template-step-modal-overlay.lightmode .template-step-modal-body input[type="date"]:focus,
.template-step-modal-overlay.lightmode .template-step-modal-body select:focus,
.template-step-modal-overlay.lightmode .template-step-modal-body textarea:focus,
.template-step-modal-overlay.lightmode .template-step-modal-body .form-control:focus,
.template-step-modal-overlay.lightmode .template-step-modal-body .template-form-control:focus {
  border-color: #C38761;
  background: white;
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.15);
}

/* line 659, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.lightmode .template-step-modal-overlay .template-step-modal-body select option,
.template-step-modal-overlay.lightmode .template-step-modal-body select option {
  background-color: white;
  color: #140D23;
}

/* line 664, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.lightmode .template-step-modal-overlay .template-step-modal-body .form-text,
.template-step-modal-overlay.lightmode .template-step-modal-body .form-text {
  color: rgba(20, 13, 35, 0.6);
}

/* line 667, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.lightmode .template-step-modal-overlay .template-step-modal-body .form-text.text-muted,
.template-step-modal-overlay.lightmode .template-step-modal-body .form-text.text-muted {
  color: rgba(20, 13, 35, 0.5);
}

/* line 672, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.lightmode .template-step-modal-overlay .template-step-modal-body .flash.flash-error,
.template-step-modal-overlay.lightmode .template-step-modal-body .flash.flash-error {
  background: rgba(220, 53, 69, 0.1);
  border-color: rgba(220, 53, 69, 0.3);
  color: rgba(20, 13, 35, 0.9);
}

/* line 677, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.lightmode .template-step-modal-overlay .template-step-modal-body .flash.flash-error strong,
.template-step-modal-overlay.lightmode .template-step-modal-body .flash.flash-error strong {
  color: #140D23;
}

/* line 681, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.lightmode .template-step-modal-overlay .template-step-modal-body .flash.flash-error li,
.template-step-modal-overlay.lightmode .template-step-modal-body .flash.flash-error li {
  color: rgba(20, 13, 35, 0.8);
}

/* line 687, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.lightmode .template-step-modal-overlay .template-step-modal-body .tab-content::-webkit-scrollbar-track,
.template-step-modal-overlay.lightmode .template-step-modal-body .tab-content::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.05);
}

/* line 691, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.lightmode .template-step-modal-overlay .template-step-modal-body .tab-content::-webkit-scrollbar-thumb,
.template-step-modal-overlay.lightmode .template-step-modal-body .tab-content::-webkit-scrollbar-thumb {
  background: rgba(195, 135, 97, 0.5);
}

/* line 694, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.lightmode .template-step-modal-overlay .template-step-modal-body .tab-content::-webkit-scrollbar-thumb:hover,
.template-step-modal-overlay.lightmode .template-step-modal-body .tab-content::-webkit-scrollbar-thumb:hover {
  background: rgba(195, 135, 97, 0.7);
}

/* line 701, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.lightmode .template-step-modal-overlay .template-step-modal-body .template-btn.template-btn-add,
.template-step-modal-overlay.lightmode .template-step-modal-body .template-btn.template-btn-add {
  background: rgba(195, 135, 97, 0.1);
  color: #C38761;
  border-color: rgba(195, 135, 97, 0.3);
}

/* line 706, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.lightmode .template-step-modal-overlay .template-step-modal-body .template-btn.template-btn-add:hover,
.template-step-modal-overlay.lightmode .template-step-modal-body .template-btn.template-btn-add:hover {
  background: rgba(195, 135, 97, 0.2);
  border-color: rgba(195, 135, 97, 0.5);
}

/* line 713, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.lightmode .template-step-modal-overlay .template-step-modal-body .form-check-input,
.template-step-modal-overlay.lightmode .template-step-modal-body .form-check-input {
  accent-color: #C38761;
}

/* line 717, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.lightmode .template-step-modal-overlay .template-step-modal-body .form-check-label,
.template-step-modal-overlay.lightmode .template-step-modal-body .form-check-label {
  color: #140D23;
}

/* line 721, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.lightmode .template-step-modal-overlay .template-step-modal-body .template-task-card,
.lightmode .template-step-modal-overlay .template-step-modal-body .scheduled-action-form-card,
.lightmode .template-step-modal-overlay .template-step-modal-body .form-question-card,
.template-step-modal-overlay.lightmode .template-step-modal-body .template-task-card,
.template-step-modal-overlay.lightmode .template-step-modal-body .scheduled-action-form-card,
.template-step-modal-overlay.lightmode .template-step-modal-body .form-question-card {
  background: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 728, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.lightmode .template-step-modal-overlay .template-step-modal-body .dependency-checkbox-label,
.template-step-modal-overlay.lightmode .template-step-modal-body .dependency-checkbox-label {
  color: #140D23;
}

/* line 731, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.lightmode .template-step-modal-overlay .template-step-modal-body .dependency-checkbox-label:hover,
.template-step-modal-overlay.lightmode .template-step-modal-body .dependency-checkbox-label:hover {
  background: rgba(20, 13, 35, 0.05);
}

/* line 736, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.lightmode .template-step-modal-overlay .template-step-modal-body .dependency-checkbox,
.template-step-modal-overlay.lightmode .template-step-modal-body .dependency-checkbox {
  accent-color: #C38761;
}

/* line 740, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.lightmode .template-step-modal-overlay .template-step-modal-body .question-options-container,
.template-step-modal-overlay.lightmode .template-step-modal-body .question-options-container {
  background: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 746, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.lightmode .template-step-modal-overlay .template-step-modal-footer,
.template-step-modal-overlay.lightmode .template-step-modal-footer {
  border-top: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 750, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.lightmode .template-step-modal-overlay .template-step-modal-footer .form-button.btn-secondary, .lightmode .template-step-modal-overlay .template-step-modal-footer .users-management-container .users-header .btn-secondary.add-user-btn, .users-management-container .users-header .lightmode .template-step-modal-overlay .template-step-modal-footer .btn-secondary.add-user-btn, .lightmode .template-step-modal-overlay .template-step-modal-footer .btn-secondary.crm-action-button, .lightmode .template-step-modal-overlay .template-step-modal-footer .crm-action-button.crm-action-button-secondary,
.template-step-modal-overlay.lightmode .template-step-modal-footer .form-button.btn-secondary,
.template-step-modal-overlay.lightmode .template-step-modal-footer .users-management-container .users-header .btn-secondary.add-user-btn,
.users-management-container .users-header .template-step-modal-overlay.lightmode .template-step-modal-footer .btn-secondary.add-user-btn,
.template-step-modal-overlay.lightmode .template-step-modal-footer .btn-secondary.crm-action-button,
.template-step-modal-overlay.lightmode .template-step-modal-footer .crm-action-button.crm-action-button-secondary {
  background: #e8e8e8;
  border: 1px solid rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 755, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.lightmode .template-step-modal-overlay .template-step-modal-footer .form-button.btn-secondary:hover, .lightmode .template-step-modal-overlay .template-step-modal-footer .users-management-container .users-header .btn-secondary.add-user-btn:hover, .users-management-container .users-header .lightmode .template-step-modal-overlay .template-step-modal-footer .btn-secondary.add-user-btn:hover, .lightmode .template-step-modal-overlay .template-step-modal-footer .btn-secondary.crm-action-button:hover, .lightmode .template-step-modal-overlay .template-step-modal-footer .crm-action-button.crm-action-button-secondary:hover,
.template-step-modal-overlay.lightmode .template-step-modal-footer .form-button.btn-secondary:hover,
.template-step-modal-overlay.lightmode .template-step-modal-footer .users-management-container .users-header .btn-secondary.add-user-btn:hover,
.users-management-container .users-header .template-step-modal-overlay.lightmode .template-step-modal-footer .btn-secondary.add-user-btn:hover,
.template-step-modal-overlay.lightmode .template-step-modal-footer .btn-secondary.crm-action-button:hover,
.template-step-modal-overlay.lightmode .template-step-modal-footer .crm-action-button.crm-action-button-secondary:hover {
  background: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 761, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.lightmode .template-step-modal-overlay .template-step-modal-footer .form-button.btn-primary, .lightmode .template-step-modal-overlay .template-step-modal-footer .users-management-container .users-header .btn-primary.add-user-btn, .users-management-container .users-header .lightmode .template-step-modal-overlay .template-step-modal-footer .btn-primary.add-user-btn, .lightmode .template-step-modal-overlay .template-step-modal-footer .btn-primary.crm-action-button, .lightmode .template-step-modal-overlay .template-step-modal-footer .crm-action-button.crm-action-button-primary,
.template-step-modal-overlay.lightmode .template-step-modal-footer .form-button.btn-primary,
.template-step-modal-overlay.lightmode .template-step-modal-footer .users-management-container .users-header .btn-primary.add-user-btn,
.users-management-container .users-header .template-step-modal-overlay.lightmode .template-step-modal-footer .btn-primary.add-user-btn,
.template-step-modal-overlay.lightmode .template-step-modal-footer .btn-primary.crm-action-button,
.template-step-modal-overlay.lightmode .template-step-modal-footer .crm-action-button.crm-action-button-primary {
  background: #C38761;
  border-color: #C38761;
  color: white;
}

/* line 766, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
.lightmode .template-step-modal-overlay .template-step-modal-footer .form-button.btn-primary:hover, .lightmode .template-step-modal-overlay .template-step-modal-footer .users-management-container .users-header .btn-primary.add-user-btn:hover, .users-management-container .users-header .lightmode .template-step-modal-overlay .template-step-modal-footer .btn-primary.add-user-btn:hover, .lightmode .template-step-modal-overlay .template-step-modal-footer .btn-primary.crm-action-button:hover, .lightmode .template-step-modal-overlay .template-step-modal-footer .crm-action-button.crm-action-button-primary:hover,
.template-step-modal-overlay.lightmode .template-step-modal-footer .form-button.btn-primary:hover,
.template-step-modal-overlay.lightmode .template-step-modal-footer .users-management-container .users-header .btn-primary.add-user-btn:hover,
.users-management-container .users-header .template-step-modal-overlay.lightmode .template-step-modal-footer .btn-primary.add-user-btn:hover,
.template-step-modal-overlay.lightmode .template-step-modal-footer .btn-primary.crm-action-button:hover,
.template-step-modal-overlay.lightmode .template-step-modal-footer .crm-action-button.crm-action-button-primary:hover {
  background: #bc794f;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 768px) {
  /* line 779, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
  .template-step-modal-content {
    width: 95%;
    max-width: none;
  }
  /* line 784, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
  .template-step-modal-header {
    padding: 12px 16px;
  }
  /* line 788, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
  .template-step-modal-tabs {
    flex-wrap: wrap;
    gap: 4px;
    padding: 0 16px 12px;
  }
  /* line 794, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
  .template-step-modal-tab {
    font-size: 0.75rem;
    padding: 6px 12px;
  }
  /* line 799, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
  .template-step-modal-body {
    padding: 16px;
  }
  /* line 803, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
  .template-step-modal-footer {
    padding: 12px 16px;
    flex-direction: column-reverse;
  }
  /* line 808, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_template_step_modal.scss */
  .template-step-modal-footer .form-button, .template-step-modal-footer .users-management-container .users-header .add-user-btn, .users-management-container .users-header .template-step-modal-footer .add-user-btn, .template-step-modal-footer .crm-action-button {
    width: 100%;
  }
}

/* ==========================================================================
   DARK MODE STYLES - Modale de création de modèle de projet
   ========================================================================== */
/* line 9, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal {
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
  backdrop-filter: blur(12px);
  border: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  max-width: 500px;
  width: 90%;
  margin: auto;
}

/* line 20, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-header {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 24, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-header .custom-modal-title {
  color: rgba(255, 255, 255, 0.95);
}

/* line 27, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-header .custom-modal-title i {
  color: #C38761;
}

/* line 32, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-header .custom-modal-close {
  color: rgba(255, 255, 255, 0.8);
  background: transparent;
}

/* line 36, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-header .custom-modal-close:hover {
  color: #C38761;
}

/* line 43, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-body {
  background: transparent;
  padding: 20px 24px;
}

/* line 47, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-body .form-group {
  margin-bottom: 20px;
}

/* line 50, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-body .form-group:last-child {
  margin-bottom: 0;
}

/* line 56, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-body .modal-label,
.custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-body label {
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: none !important;
  text-align: left !important;
  padding-left: 0 !important;
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 14px;
}

/* line 67, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-body .modal-label i,
.custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-body label i {
  color: #C38761;
  opacity: 1;
}

/* line 74, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-body .form-control,
.custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-body input[type="text"],
.custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-body textarea {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(195, 135, 97, 0.4) !important;
  color: rgba(255, 255, 255, 0.95) !important;
  border-radius: 8px;
  width: 100%;
  padding: 12px;
  font-size: 14px;
}

/* line 85, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-body .form-control::placeholder,
.custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-body input[type="text"]::placeholder,
.custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-body textarea::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* line 89, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-body .form-control:focus,
.custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-body input[type="text"]:focus,
.custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-body textarea:focus {
  border-color: rgba(195, 135, 97, 0.7) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.15) !important;
  outline: none;
}

/* line 97, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-body textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

/* line 104, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-footer {
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 24px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* line 113, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-footer .form-button.btn-secondary, .custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-footer .users-management-container .users-header .btn-secondary.add-user-btn, .users-management-container .users-header .custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-footer .btn-secondary.add-user-btn, .custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-footer .btn-secondary.crm-action-button, .custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-footer .crm-action-button.crm-action-button-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}

/* line 118, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-footer .form-button.btn-secondary:hover, .custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-footer .users-management-container .users-header .btn-secondary.add-user-btn:hover, .users-management-container .users-header .custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-footer .btn-secondary.add-user-btn:hover, .custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-footer .btn-secondary.crm-action-button:hover, .custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-footer .crm-action-button.crm-action-button-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

/* line 124, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-footer .form-button.btn-primary, .custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-footer .users-management-container .users-header .btn-primary.add-user-btn, .users-management-container .users-header .custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-footer .btn-primary.add-user-btn, .custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-footer .btn-primary.crm-action-button, .custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-footer .crm-action-button.crm-action-button-primary, .custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-footer .form-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary), .custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-footer .users-management-container .users-header .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary), .users-management-container .users-header .custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-footer .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary), .custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-footer .crm-action-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary) {
  background: #C38761;
  border: 1px solid #C38761;
  color: white;
}

/* line 130, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template_modal.scss */
.custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-footer .form-button.btn-primary:hover, .custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-footer .users-management-container .users-header .btn-primary.add-user-btn:hover, .users-management-container .users-header .custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-footer .btn-primary.add-user-btn:hover, .custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-footer .btn-primary.crm-action-button:hover, .custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-footer .crm-action-button.crm-action-button-primary:hover, .custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-footer .form-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover, .custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-footer .users-management-container .users-header .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover, .users-management-container .users-header .custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-footer .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover, .custom-modal-overlay:not(.lightmode) .custom-modal.project-template-modal .custom-modal-footer .crm-action-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover {
  background: #bc794f;
}

/* ==========================================================================
   LIGHT MODE STYLES - Modale de création de modèle de projet
   ========================================================================== */
/* line 145, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template_modal.scss */
.lightmode .custom-modal-overlay .custom-modal.project-template-modal,
.custom-modal-overlay.lightmode .custom-modal.project-template-modal {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(20, 13, 35, 0.15);
  box-shadow: 0 8px 32px rgba(20, 13, 35, 0.15);
}

/* line 150, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template_modal.scss */
.lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-header,
.custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-header {
  background: white;
  border-bottom: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 154, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template_modal.scss */
.lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-header .custom-modal-title,
.custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-header .custom-modal-title {
  color: #140D23 !important;
}

/* line 157, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template_modal.scss */
.lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-header .custom-modal-title i,
.custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-header .custom-modal-title i {
  color: #C38761;
}

/* line 162, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template_modal.scss */
.lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-header .custom-modal-close,
.custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-header .custom-modal-close {
  color: #140D23 !important;
}

/* line 165, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template_modal.scss */
.lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-header .custom-modal-close:hover,
.custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-header .custom-modal-close:hover {
  color: #C38761;
}

/* line 171, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template_modal.scss */
.lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-body,
.custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-body {
  background: transparent;
}

/* line 174, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template_modal.scss */
.lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-body .modal-label,
.lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-body label,
.custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-body .modal-label,
.custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-body label {
  color: #140D23 !important;
}

/* line 179, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template_modal.scss */
.lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-body .form-control,
.lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-body input[type="text"],
.lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-body textarea,
.custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-body .form-control,
.custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-body input[type="text"],
.custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-body textarea {
  background: #e8e8e8 !important;
  border: 1px solid rgba(20, 13, 35, 0.2) !important;
  color: #140D23 !important;
}

/* line 186, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template_modal.scss */
.lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-body .form-control::placeholder,
.lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-body input[type="text"]::placeholder,
.lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-body textarea::placeholder,
.custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-body .form-control::placeholder,
.custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-body input[type="text"]::placeholder,
.custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-body textarea::placeholder {
  color: rgba(20, 13, 35, 0.5) !important;
}

/* line 190, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template_modal.scss */
.lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-body .form-control:focus,
.lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-body input[type="text"]:focus,
.lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-body textarea:focus,
.custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-body .form-control:focus,
.custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-body input[type="text"]:focus,
.custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-body textarea:focus {
  border-color: #C38761 !important;
  background: white !important;
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.15) !important;
}

/* line 198, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template_modal.scss */
.lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-footer,
.custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-footer {
  background: white;
  border-top: 1px solid rgba(20, 13, 35, 0.1);
}

/* line 203, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template_modal.scss */
.lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-footer .form-button.btn-secondary, .lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-footer .users-management-container .users-header .btn-secondary.add-user-btn, .users-management-container .users-header .lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-footer .btn-secondary.add-user-btn, .lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-footer .btn-secondary.crm-action-button, .lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-footer .crm-action-button.crm-action-button-secondary,
.custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-footer .form-button.btn-secondary,
.custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-footer .users-management-container .users-header .btn-secondary.add-user-btn,
.users-management-container .users-header .custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-footer .btn-secondary.add-user-btn,
.custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-footer .btn-secondary.crm-action-button,
.custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-footer .crm-action-button.crm-action-button-secondary {
  background: #e8e8e8;
  border: 1px solid rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 208, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template_modal.scss */
.lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-footer .form-button.btn-secondary:hover, .lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-footer .users-management-container .users-header .btn-secondary.add-user-btn:hover, .users-management-container .users-header .lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-footer .btn-secondary.add-user-btn:hover, .lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-footer .btn-secondary.crm-action-button:hover, .lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-footer .crm-action-button.crm-action-button-secondary:hover,
.custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-footer .form-button.btn-secondary:hover,
.custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-footer .users-management-container .users-header .btn-secondary.add-user-btn:hover,
.users-management-container .users-header .custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-footer .btn-secondary.add-user-btn:hover,
.custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-footer .btn-secondary.crm-action-button:hover,
.custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-footer .crm-action-button.crm-action-button-secondary:hover {
  background: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 214, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template_modal.scss */
.lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-footer .form-button.btn-primary, .lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-footer .users-management-container .users-header .btn-primary.add-user-btn, .users-management-container .users-header .lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-footer .btn-primary.add-user-btn, .lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-footer .btn-primary.crm-action-button, .lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-footer .crm-action-button.crm-action-button-primary, .lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-footer .form-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary), .lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-footer .users-management-container .users-header .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary), .users-management-container .users-header .lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-footer .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary), .lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-footer .crm-action-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary),
.custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-footer .form-button.btn-primary,
.custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-footer .users-management-container .users-header .btn-primary.add-user-btn,
.users-management-container .users-header .custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-footer .btn-primary.add-user-btn,
.custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-footer .btn-primary.crm-action-button,
.custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-footer .crm-action-button.crm-action-button-primary,
.custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-footer .form-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary),
.custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-footer .users-management-container .users-header .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary),
.users-management-container .users-header .custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-footer .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary),
.custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-footer .crm-action-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary) {
  background: #C38761;
  border: 1px solid #C38761;
  color: white;
}

/* line 220, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template_modal.scss */
.lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-footer .form-button.btn-primary:hover, .lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-footer .users-management-container .users-header .btn-primary.add-user-btn:hover, .users-management-container .users-header .lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-footer .btn-primary.add-user-btn:hover, .lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-footer .btn-primary.crm-action-button:hover, .lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-footer .crm-action-button.crm-action-button-primary:hover, .lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-footer .form-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover, .lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-footer .users-management-container .users-header .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover, .users-management-container .users-header .lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-footer .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover, .lightmode .custom-modal-overlay .custom-modal.project-template-modal .custom-modal-footer .crm-action-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover,
.custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-footer .form-button.btn-primary:hover,
.custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-footer .users-management-container .users-header .btn-primary.add-user-btn:hover,
.users-management-container .users-header .custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-footer .btn-primary.add-user-btn:hover,
.custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-footer .btn-primary.crm-action-button:hover,
.custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-footer .crm-action-button.crm-action-button-primary:hover,
.custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-footer .form-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover,
.custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-footer .users-management-container .users-header .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover,
.users-management-container .users-header .custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-footer .add-user-btn:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover,
.custom-modal-overlay.lightmode .custom-modal.project-template-modal .custom-modal-footer .crm-action-button:not(.btn-secondary):not(.crm-action-button.crm-action-button-secondary):hover {
  background: #bc794f;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 576px) {
  /* line 234, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template_modal.scss */
  .custom-modal.project-template-modal {
    width: 95%;
    max-width: none;
  }
  /* line 238, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template_modal.scss */
  .custom-modal.project-template-modal .custom-modal-body {
    padding: 16px;
  }
  /* line 242, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template_modal.scss */
  .custom-modal.project-template-modal .custom-modal-footer {
    padding: 12px 16px;
    flex-direction: column-reverse;
  }
  /* line 246, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_project_template_modal.scss */
  .custom-modal.project-template-modal .custom-modal-footer .form-button, .custom-modal.project-template-modal .custom-modal-footer .users-management-container .users-header .add-user-btn, .users-management-container .users-header .custom-modal.project-template-modal .custom-modal-footer .add-user-btn, .custom-modal.project-template-modal .custom-modal-footer .crm-action-button {
    width: 100%;
  }
}

/* ==========================================================================
   FORMULAIRES CLIENT - Page d'index des formulaires
   ========================================================================== */
/* ==========================================================================
   BANNIERE D'INFORMATION
   ========================================================================== */
/* Position relative pour le FAB */
/* line 10, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.leads-board-capsule {
  position: relative;
}

/* Container pour la bannière (collapse quand vide) */
/* line 15, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.formulaires-help-container {
  margin: 0 16px;
}

/* line 18, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.formulaires-help-container:empty, .formulaires-help-container:has(.formulaires-info-banner.hidden) {
  margin: 0;
}

/* Bouton flottant aide (FAB) */
/* line 25, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.formulaires-help-fab {
  display: none;
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

/* line 43, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.formulaires-help-fab:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
  transform: scale(1.05);
}

/* line 50, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.formulaires-help-fab i {
  font-size: 1rem;
}

/* line 54, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.formulaires-help-fab.visible {
  display: flex;
}

/* line 59, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.formulaires-info-banner {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 0.5rem 3rem 0.5rem 0.75rem;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid #C38761;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* line 69, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.formulaires-info-banner.hidden {
  display: none;
}

/* line 73, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.formulaires-info-banner .info-banner-content {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

/* line 78, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.formulaires-info-banner .info-banner-content > i {
  color: #C38761;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* line 86, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.formulaires-info-banner .info-banner-text {
  text-align: left;
}

/* line 89, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.formulaires-info-banner .info-banner-text strong {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.125rem;
}

/* line 97, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.formulaires-info-banner .info-banner-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.75rem;
  line-height: 1.4;
}

/* line 105, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.formulaires-info-banner .info-banner-close {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 4px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 122, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.formulaires-info-banner .info-banner-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

/* line 127, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.formulaires-info-banner .info-banner-close i {
  font-size: 0.875rem;
}

/* Lightmode */
/* line 134, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.lightmode .formulaires-help-fab {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
  color: rgba(20, 13, 35, 0.4);
}

/* line 139, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.lightmode .formulaires-help-fab:hover {
  background: rgba(20, 13, 35, 0.1);
  border-color: rgba(20, 13, 35, 0.25);
  color: rgba(20, 13, 35, 0.8);
}

/* line 146, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.lightmode .formulaires-info-banner {
  background: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 151, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.lightmode .formulaires-info-banner .info-banner-text strong {
  color: #140D23;
}

/* line 155, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.lightmode .formulaires-info-banner .info-banner-text p {
  color: rgba(20, 13, 35, 0.65);
}

/* line 160, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.lightmode .formulaires-info-banner .info-banner-close {
  color: rgba(20, 13, 35, 0.4);
}

/* line 163, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.lightmode .formulaires-info-banner .info-banner-close:hover {
  background: rgba(20, 13, 35, 0.08);
  color: rgba(20, 13, 35, 0.7);
}

/* ==========================================================================
   ÉTAT VIDE AMÉLIORÉ
   ========================================================================== */
/* line 174, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.empty-state-enhanced {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
}

/* line 182, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.empty-state-enhanced .empty-state-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(195, 135, 97, 0.1);
  border-radius: 16px;
  margin-bottom: 20px;
}

/* line 192, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.empty-state-enhanced .empty-state-icon i {
  font-size: 28px;
  color: #C38761;
}

/* line 198, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.empty-state-enhanced h3, .empty-state-enhanced .h3 {
  margin: 0 0 8px 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

/* line 205, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.empty-state-enhanced > p {
  margin: 0 0 24px 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 400px;
}

/* line 211, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.empty-state-enhanced > p strong {
  color: rgba(255, 255, 255, 0.85);
}

/* line 216, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.empty-state-enhanced .empty-state-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

/* line 221, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.empty-state-enhanced .empty-state-actions .form-button, .empty-state-enhanced .empty-state-actions .users-management-container .users-header .add-user-btn, .users-management-container .users-header .empty-state-enhanced .empty-state-actions .add-user-btn, .empty-state-enhanced .empty-state-actions .crm-action-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* line 232, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.empty-state-enhanced .empty-state-actions .form-button.btn-primary, .empty-state-enhanced .empty-state-actions .users-management-container .users-header .btn-primary.add-user-btn, .users-management-container .users-header .empty-state-enhanced .empty-state-actions .btn-primary.add-user-btn, .empty-state-enhanced .empty-state-actions .btn-primary.crm-action-button, .empty-state-enhanced .empty-state-actions .crm-action-button.crm-action-button-primary {
  background: #C38761;
  color: white;
  border: 1px solid #C38761;
}

/* line 237, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.empty-state-enhanced .empty-state-actions .form-button.btn-primary:hover, .empty-state-enhanced .empty-state-actions .users-management-container .users-header .btn-primary.add-user-btn:hover, .users-management-container .users-header .empty-state-enhanced .empty-state-actions .btn-primary.add-user-btn:hover, .empty-state-enhanced .empty-state-actions .btn-primary.crm-action-button:hover, .empty-state-enhanced .empty-state-actions .crm-action-button.crm-action-button-primary:hover {
  background: #b67145;
  transform: translateY(-1px);
}

/* line 245, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.empty-state-enhanced .empty-state-tip {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 8px;
  max-width: 450px;
  text-align: left;
}

/* line 256, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.empty-state-enhanced .empty-state-tip > i {
  color: #3b82f6;
  margin-top: 2px;
  flex-shrink: 0;
}

/* line 262, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.empty-state-enhanced .empty-state-tip span {
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
}

/* line 267, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.empty-state-enhanced .empty-state-tip span strong {
  color: rgba(255, 255, 255, 0.9);
}

/* Lightmode */
/* line 276, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.lightmode .empty-state-enhanced .empty-state-icon {
  background: rgba(195, 135, 97, 0.15);
}

/* line 279, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.lightmode .empty-state-enhanced .empty-state-icon i {
  color: #bc794f;
}

/* line 284, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.lightmode .empty-state-enhanced h3, .lightmode .empty-state-enhanced .h3 {
  color: #140D23;
}

/* line 288, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.lightmode .empty-state-enhanced > p {
  color: rgba(20, 13, 35, 0.6);
}

/* line 291, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.lightmode .empty-state-enhanced > p strong {
  color: rgba(20, 13, 35, 0.8);
}

/* line 297, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.lightmode .empty-state-enhanced .empty-state-actions .form-button.btn-primary, .lightmode .empty-state-enhanced .empty-state-actions .users-management-container .users-header .btn-primary.add-user-btn, .users-management-container .users-header .lightmode .empty-state-enhanced .empty-state-actions .btn-primary.add-user-btn, .lightmode .empty-state-enhanced .empty-state-actions .btn-primary.crm-action-button, .lightmode .empty-state-enhanced .empty-state-actions .crm-action-button.crm-action-button-primary {
  background: #C38761;
  border-color: #C38761;
}

/* line 301, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.lightmode .empty-state-enhanced .empty-state-actions .form-button.btn-primary:hover, .lightmode .empty-state-enhanced .empty-state-actions .users-management-container .users-header .btn-primary.add-user-btn:hover, .users-management-container .users-header .lightmode .empty-state-enhanced .empty-state-actions .btn-primary.add-user-btn:hover, .lightmode .empty-state-enhanced .empty-state-actions .btn-primary.crm-action-button:hover, .lightmode .empty-state-enhanced .empty-state-actions .crm-action-button.crm-action-button-primary:hover {
  background: #b67145;
}

/* line 307, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.lightmode .empty-state-enhanced .empty-state-tip {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.25);
}

/* line 311, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.lightmode .empty-state-enhanced .empty-state-tip span {
  color: rgba(20, 13, 35, 0.7);
}

/* line 314, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
.lightmode .empty-state-enhanced .empty-state-tip span strong {
  color: #140D23;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
  /* line 326, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
  .formulaires-help-container {
    margin: 0 12px;
  }
  /* line 329, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
  .formulaires-help-container:empty, .formulaires-help-container:has(.formulaires-info-banner.hidden) {
    margin: 0;
  }
  /* line 335, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
  .formulaires-help-fab {
    width: 44px;
    height: 44px;
    bottom: 12px;
    right: 12px;
  }
  /* line 342, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
  .formulaires-info-banner {
    padding: 0.5rem 2.75rem 0.5rem 0.625rem;
  }
  /* line 345, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
  .formulaires-info-banner .info-banner-content {
    gap: 0.5rem;
  }
  /* line 348, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
  .formulaires-info-banner .info-banner-content > i {
    font-size: 0.8rem;
  }
  /* line 354, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
  .formulaires-info-banner .info-banner-text strong {
    font-size: 0.75rem;
  }
  /* line 358, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
  .formulaires-info-banner .info-banner-text p {
    font-size: 0.7rem;
  }
  /* line 363, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
  .formulaires-info-banner .info-banner-close {
    right: 0;
  }
  /* line 368, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
  .empty-state-enhanced {
    padding: 32px 16px;
  }
  /* line 371, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
  .empty-state-enhanced .empty-state-icon {
    width: 56px;
    height: 56px;
  }
  /* line 375, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
  .empty-state-enhanced .empty-state-icon i {
    font-size: 24px;
  }
  /* line 380, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
  .empty-state-enhanced h3, .empty-state-enhanced .h3 {
    font-size: 1rem;
  }
  /* line 384, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_onboardings_list.scss */
  .empty-state-enhanced .empty-state-tip {
    max-width: 100%;
  }
}

/* ==========================================================================
   PROJECTS INDEX - Utilise les styles du CRM pour la cohérence
   ========================================================================== */
/* Importe tous les styles du module CRM leads_board */
/* ==========================================================================
   LEADS BOARD - MODULE CRM
   Structure principale et composants pour la gestion des prospects
   ========================================================================== */
/* ==========================================================================
   LAYOUT PRINCIPAL - Structure générale du module
   ========================================================================== */
/* line 10, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-right: 15px;
  font-size: 1rem;
  gap: 5px;
  overflow: hidden;
}

/* line 22, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode {
  color: #140D23;
}

/* line 26, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.nightmode {
  color: #FFFFFF;
}

/* line 31, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule p {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* line 37, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule span:not(.crm-label-badge):not(.crm-label-filter-active-chip) {
  all: unset;
  font-size: 0.8rem;
  text-align: center;
}

/* Variations de thème clair/sombre */
/* line 44, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode span:not(.crm-label-badge):not(.crm-label-filter-active-chip) {
  color: #C38761;
}

/* line 48, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.nightmode span:not(.crm-label-badge):not(.crm-label-filter-active-chip) {
  color: rgba(232, 232, 232, 0.7);
}

/* line 52, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode p {
  color: #140D23;
}

/* line 56, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.nightmode p {
  color: #FFFFFF;
}

/* line 60, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode i {
  color: #140D23;
}

/* line 64, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.nightmode i {
  color: #FFFFFF;
}

/* ==========================================================================
   BARRE SUPÉRIEURE - Recherche et bouton création
   ========================================================================== */
/* line 72, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row1 {
  width: 100%;
  height: 50px;
  /* Hauteur réduite */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  /* Empêche la compression */
  margin-bottom: 5px;
  /* Ajoute un peu d'espace en bas */
}

/* line 83, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row1 form {
  width: 100%;
  display: flex;
}

/* ==========================================================================
   BARRE DE RECHERCHE - Composants et fonctionnalités
   ========================================================================== */
/* line 93, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row1-searchbar {
  width: 100%;
  background-color: rgba(254, 254, 254, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 15px;
}

/* line 106, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row1-searchbar {
  border-color: rgba(20, 13, 35, 0.5);
  color: #140D23;
}

/* line 111, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row1-searchbar .crm-search-form {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 118, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row1-searchbar .crm-search-input-wrapper {
  position: relative;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

/* line 125, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row1-searchbar .crm-search-input {
  width: 100%;
  background: transparent;
  border: none;
  color: #FFFFFF;
  outline: none;
  padding-right: 25px;
  /* Espace pour l'icône de suppression */
}

/* line 133, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row1-searchbar .crm-search-input {
  color: #140D23;
}

/* line 136, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row1-searchbar .crm-search-input::placeholder {
  color: rgba(20, 13, 35, 0.6);
}

/* line 142, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row1-searchbar .crm-clear-search-button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 0.6rem;
  text-decoration: none;
}

/* line 157, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row1-searchbar .crm-clear-search-button {
  color: #140D23;
}

/* line 161, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row1-searchbar .crm-clear-search-button:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* line 164, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row1-searchbar .crm-clear-search-button:hover {
  color: rgba(20, 13, 35, 0.7);
}

/* line 170, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row1-searchbar button {
  all: unset;
  cursor: pointer;
}

/* line 175, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row1-searchbar .crm-search-button {
  padding: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 183, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row1-searchbar i {
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 188, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row1-searchbar i {
  color: #140D23 !important;
}

/* line 193, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row1-searchbar span {
  font-weight: normal !important;
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  text-align: center;
}

/* line 199, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row1-searchbar span {
  color: #140D23 !important;
}

/* Bannière d'information sur la recherche en cours */
/* line 206, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.crm-search-info {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: #FFFFFF;
  margin-bottom: -10px;
  z-index: 5;
}

/* line 216, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .crm-search-info {
  color: #140D23;
}

/* line 220, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.crm-search-info span {
  opacity: 0.8;
}

/* line 224, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.crm-search-info .crm-reset-search-link {
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s ease;
}

/* line 235, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .crm-search-info .crm-reset-search-link {
  color: #140D23;
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 240, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.crm-search-info .crm-reset-search-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 243, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .crm-search-info .crm-reset-search-link:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* ==========================================================================
   ONGLETS DE NAVIGATION - Entre prospects actifs et archivés
   ========================================================================== */
/* line 254, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-tabs {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
  z-index: 10;
  position: relative;
  flex-shrink: 0;
  min-height: 35px;
}

/* line 265, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.tab-link {
  padding: 10px 20px;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  margin-right: 5px;
  font-size: 0.8rem;
  transition: background-color 0.3s ease;
  background-color: rgba(255, 255, 255, 0.05);
}

/* line 275, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .tab-link {
  color: #140D23;
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 280, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.tab-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

/* line 284, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .tab-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #140D23;
}

/* line 290, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.tab-link.active {
  background-color: rgba(255, 255, 255, 0.1);
  font-weight: bold;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 296, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .tab-link.active {
  background-color: rgba(20, 13, 35, 0.1);
  border: 1px solid rgba(20, 13, 35, 0.2);
}

/* line 301, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.tab-link.active:after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
}

/* ==========================================================================
   CONTENEUR PRINCIPAL DES DONNÉES - Structure du tableau des prospects
   ========================================================================== */
/* line 316, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2 {
  width: 100%;
  flex: 1;
  /* Prend le reste de l'espace disponible */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  /* Aligne au sommet au lieu du centre */
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  /* Réduit le rayon pour gagner de l'espace */
  padding: 15px;
  /* Réduit le padding */
  overflow: hidden;
  /* Empêche le scroll sur ce conteneur */
}

/* line 329, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row2 {
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 334, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  /* Cache tout débordement */
}

/* ==========================================================================
   EN-TÊTE DU TABLEAU - Titres des colonnes et tri
   ========================================================================== */
/* line 347, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-head {
  width: 97%;
  display: flex;
  padding-right: 8px;
  flex-direction: row;
  font-weight: bold;
  font-size: 0.75rem;
  /* Taille réduite */
  margin-bottom: 5px;
  color: #FFFFFF;
}

/* line 357, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row2-list-head {
  color: #140D23;
}

/* line 362, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-head .leads-board-row2-list-column {
  width: calc(80% / 3);
  text-align: center;
  justify-content: center;
}

/* line 367, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-head .leads-board-row2-list-column:first-child {
  text-align: left;
  justify-content: flex-start;
  padding-left: 20px;
}

/* line 373, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-head .leads-board-row2-list-column:last-child {
  width: 20%;
  text-align: right;
  justify-content: flex-end;
  padding-right: 15px;
}

/* line 380, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-head .leads-board-row2-list-column.sortable {
  cursor: pointer;
  transition: background-color 0.2s ease;
}

/* line 384, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-head .leads-board-row2-list-column.sortable:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

/* line 387, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row2-list-head .leads-board-row2-list-column.sortable:hover {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 392, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-head .leads-board-row2-list-column.sortable .sort-link {
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 100%;
  height: 100%;
}

/* line 402, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row2-list-head .leads-board-row2-list-column.sortable .sort-link {
  color: #140D23;
}

/* line 406, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-head .leads-board-row2-list-column.sortable .sort-link i {
  font-size: 0.6rem !important;
}

/* line 409, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row2-list-head .leads-board-row2-list-column.sortable .sort-link i {
  color: #140D23 !important;
}

/* line 415, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-head .leads-board-row2-list-column.sortable:first-child .sort-link {
  justify-content: flex-start;
}

/* line 419, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-head .leads-board-row2-list-column.sortable:last-child .sort-link {
  justify-content: flex-end;
}

/* Styles communs pour les colonnes */
/* line 426, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-column {
  display: flex;
  align-items: center;
  font-size: 0.7rem;
  padding: 5px 10px;
}

/* ==========================================================================
   CORPS DU TABLEAU - Liste des prospects avec défilement
   ========================================================================== */
/* line 437, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-entries {
  width: 100%;
  height: calc(100% - 30px);
  /* Hauteur calculée en fonction de l'en-tête réduit */
  display: flex;
  gap: 5px;
  /* Espace réduit entre les lignes */
  flex-direction: column;
  overflow-y: auto;
  /* Permet le scroll vertical uniquement dans cette section */
  /* Personnalisation de la barre de défilement */
}

/* line 445, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-entries::-webkit-scrollbar {
  width: 8px;
  /* Largeur de la barre de défilement */
}

/* line 449, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-entries::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  /* Couleur de l'arrière-plan de la barre */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 453, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row2-list-entries::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 458, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-entries::-webkit-scrollbar-thumb {
  background: #C38761;
  /* Couleur de la barre de défilement */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 463, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-entries::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
  /* Couleur de la barre au survol */
}

/* line 466, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row2-list-entries::-webkit-scrollbar-thumb:hover {
  background: #140D23;
}

/* Lignes du tableau des prospects */
/* line 473, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-entry {
  width: 97%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  font-size: 0.7rem;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 2px;
  /* Ombre plus légère */
  cursor: pointer;
  transition: 0.3s ease-in-out;
  position: relative;
  border-radius: 6px;
  /* Réduit le rayon */
  overflow: hidden;
  min-height: 40px;
  /* Hauteur réduite */
  padding: 3px 0;
  /* Padding réduit */
  margin-bottom: 2px;
  /* Ajoute une petite marge en bas */
  color: #FFFFFF;
}

/* line 491, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row2-list-entry {
  color: #140D23;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 2px;
}

/* line 496, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-entry:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 501, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row2-list-entry:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 506, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-entry .leads-board-row2-list-column {
  text-align: center;
  justify-content: center;
}

/* line 510, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-entry .leads-board-row2-list-column:first-child {
  text-align: left;
  justify-content: flex-start;
  padding-left: 20px;
}

/* line 517, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-entry .leads-board-row2-list-column:last-child {
  width: 20%;
  justify-content: flex-end;
  display: flex;
  gap: 10px;
  padding-right: 15px;
  z-index: 10;
}

/* line 526, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-entry .leads-board-row2-list-column:not(:last-child) {
  width: calc(80% / 3);
}

/* ==========================================================================
   BADGES DE STATUT - Styles pour les différents types de statuts
   ========================================================================== */
/* line 535, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.status-badge {
  padding: 4px 8px;
  border-radius: 8px !important;
  font-size: 0.65rem;
  font-weight: 500;
  display: inline-block;
  min-width: 70px;
  text-align: center;
  transition: all 0.2s ease-in-out;
}

/* line 545, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .status-badge {
  padding: 4px 10px !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* line 549, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .status-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* line 555, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.status-badge.qualifié {
  background-color: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
}

/* line 560, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.status-badge.non-qualifié {
  background-color: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
}

/* line 565, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.status-badge.archivé {
  background-color: rgba(149, 165, 166, 0.2);
  color: #95a5a6;
}

/* line 570, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.status-badge.devis\ envoyé, .status-badge.devis-envoyé {
  background-color: rgba(52, 152, 219, 0.2);
  color: #3498db;
}

/* line 575, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.status-badge.non-defini {
  background-color: rgba(241, 196, 15, 0.2);
  color: #f1c40f;
}

/* line 581, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.status-badge[class*="devis"] {
  background-color: rgba(52, 152, 219, 0.2);
  color: #3498db;
}

/* line 588, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .status-badge {
  /* Important: Ces styles complètent mais ne remplacent pas les styles de base */
}

/* line 590, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .status-badge.qualifié {
  background-color: rgba(46, 204, 113, 0.4);
  color: #1e8449;
  font-weight: 600;
  border: 1px solid rgba(46, 204, 113, 0.2);
}

/* line 597, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .status-badge.non-qualifié {
  background-color: rgba(231, 76, 60, 0.4);
  color: #a93226;
  font-weight: 600;
  border: 1px solid rgba(231, 76, 60, 0.2);
}

/* line 604, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .status-badge.archivé {
  background-color: rgba(149, 165, 166, 0.4);
  color: #616a6b;
  font-weight: 600;
  border: 1px solid rgba(149, 165, 166, 0.2);
}

/* line 611, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .status-badge.devis\ envoyé, .leads-board-capsule.lightmode .status-badge.devis-envoyé {
  background-color: rgba(52, 152, 219, 0.4);
  color: #1a5276;
  font-weight: 600;
  border: 1px solid rgba(52, 152, 219, 0.2);
}

/* line 618, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .status-badge.non-defini {
  background-color: rgba(241, 196, 15, 0.4);
  color: #b7950b;
  font-weight: 600;
  border: 1px solid rgba(241, 196, 15, 0.2);
}

/* line 626, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .status-badge[class*="devis"] {
  background-color: rgba(52, 152, 219, 0.4);
  color: #1a5276;
  font-weight: 600;
  border: 1px solid rgba(52, 152, 219, 0.2);
}

/* Assurez-vous que le padding des badges est toujours appliqué */
/* line 635, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-row2-list-column .status-badge {
  padding: 4px 8px !important;
}

/* line 638, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-row2-list-column .status-badge {
  padding: 4px 10px !important;
}

/* Message quand aucun prospect n'est trouvé */
/* line 644, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.no-results {
  width: 100%;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-top: 10px;
}

/* line 654, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .no-results {
  color: #140D23;
  background-color: rgba(20, 13, 35, 0.05);
}

/* ==========================================================================
   BOUTONS D'ACTION - Édition et archivage des prospects
   ========================================================================== */
/* line 664, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.action-btn {
  padding: 5px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px;
  width: 25px;
  height: 25px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s ease;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 20;
}

/* line 680, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .action-btn {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 684, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.action-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* line 687, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .action-btn:hover {
  background-color: rgba(20, 13, 35, 0.3);
}

/* line 692, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.action-btn i {
  font-size: 0.8rem;
  color: #FFFFFF;
}

/* line 696, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .action-btn i {
  color: #140D23;
}

/* Styles pour les boutons de formulaire */
/* line 703, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
form.button_to {
  margin: 0;
  padding: 0;
  display: inline-block;
  background: none;
}

/* line 709, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
form.button_to button.action-btn {
  all: unset;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 720, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode form.button_to button.action-btn {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 724, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
form.button_to button.action-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* line 727, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode form.button_to button.action-btn:hover {
  background-color: rgba(20, 13, 35, 0.3);
}

/* ==========================================================================
   FORMULAIRES - Styles pour les écrans de création/édition de prospects
   ========================================================================== */
/* Styles pour les pages new, edit et show prospect */
/* line 739, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.new-prospect-capsule,
.edit-prospect-capsule,
.show-prospect-capsule {
  width: 80%;
  margin: 0 auto;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
}

/* line 749, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .new-prospect-capsule, .leads-board-capsule.lightmode .edit-prospect-capsule, .leads-board-capsule.lightmode .show-prospect-capsule {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 754, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.new-prospect-capsule h2, .new-prospect-capsule .h2,
.edit-prospect-capsule h2,
.edit-prospect-capsule .h2,
.show-prospect-capsule h2,
.show-prospect-capsule .h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: #FFFFFF;
}

/* line 762, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .new-prospect-capsule h2, .leads-board-capsule.lightmode .new-prospect-capsule .h2, .leads-board-capsule.lightmode .edit-prospect-capsule h2, .leads-board-capsule.lightmode .edit-prospect-capsule .h2, .leads-board-capsule.lightmode .show-prospect-capsule h2, .leads-board-capsule.lightmode .show-prospect-capsule .h2 {
  color: #140D23;
}

/* line 767, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.form-group {
  margin-bottom: 15px;
}

/* line 770, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.form-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.8rem;
  color: #FFFFFF;
}

/* line 776, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .form-group label {
  color: #140D23;
}

/* line 781, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.form-group .form-control {
  width: 100%;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-size: 0.8rem;
}

/* line 790, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .form-group .form-control {
  border: 1px solid rgba(20, 13, 35, 0.3);
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 798, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.form-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

/* line 804, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.btn-secondary, .crm-action-button.crm-action-button-secondary {
  background-color: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

/* line 808, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .btn-secondary, .leads-board-capsule.lightmode .crm-action-button.crm-action-button-secondary {
  background-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 814, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.btn-danger {
  background-color: #dc3545;
  color: #FFFFFF;
}

/* ==========================================================================
   DÉTAILS DU PROSPECT - Affichage des informations détaillées
   ========================================================================== */
/* line 823, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-details {
  margin-bottom: 25px;
}

/* line 827, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.detail-row {
  display: flex;
  margin-bottom: 10px;
  padding: 8px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

/* line 834, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .detail-row {
  background-color: rgba(20, 13, 35, 0.05);
}

/* line 839, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.detail-label {
  width: 40%;
  font-weight: bold;
  font-size: 0.8rem;
  color: #FFFFFF;
}

/* line 845, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .detail-label {
  color: #140D23;
}

/* line 850, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.detail-value {
  width: 60%;
  font-size: 0.8rem;
  color: #FFFFFF;
}

/* line 855, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .detail-value {
  color: #140D23;
}

/* line 860, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* ==========================================================================
   TOGGLE VUE - Bascule entre vue par prospect et vue par société
   ========================================================================== */
/* line 870, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-view-toggle {
  display: flex;
  gap: 8px;
  width: 80%;
  margin-bottom: 10px;
  flex-shrink: 0;
}

/* line 877, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-view-toggle .view-toggle-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.75rem;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: all 0.2s;
}

/* line 890, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-view-toggle .view-toggle-btn {
  color: #140D23;
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 896, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-view-toggle .view-toggle-btn:hover {
  background: rgba(195, 135, 97, 0.1);
  border-color: rgba(195, 135, 97, 0.3);
}

/* line 901, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-view-toggle .view-toggle-btn.active {
  background: rgba(195, 135, 97, 0.15);
  border-color: #C38761;
  color: #C38761;
}

/* line 906, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-view-toggle .view-toggle-btn.active {
  background: rgba(195, 135, 97, 0.2);
  color: #af6c42;
}

/* line 912, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-view-toggle .view-toggle-btn i {
  font-size: 0.8rem !important;
}

/* ==========================================================================
   VUE PAR SOCIÉTÉ - Affichage groupé par organisation
   ========================================================================== */
/* line 922, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-by-organization {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  /* Personnalisation de la barre de défilement */
}

/* line 931, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-by-organization::-webkit-scrollbar {
  width: 8px;
}

/* line 935, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-by-organization::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 939, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-by-organization::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 944, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-by-organization::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 949, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-by-organization::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 952, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-by-organization::-webkit-scrollbar-thumb:hover {
  background: #140D23;
}

/* line 958, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.organization-group {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

/* line 964, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .organization-group {
  background: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 969, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.organization-group.no-organization {
  border-left: 3px solid rgba(195, 135, 97, 0.5);
}

/* line 972, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.organization-group.no-organization .organization-header {
  background: rgba(195, 135, 97, 0.03);
}

/* line 978, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.organization-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(195, 135, 97, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 986, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .organization-header {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 990, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.organization-header .organization-name {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 995, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.organization-header .organization-name i {
  color: #C38761 !important;
  font-size: 1rem !important;
}

/* line 1000, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.organization-header .organization-name h3, .organization-header .organization-name .h3 {
  all: unset;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* line 1007, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .organization-header .organization-name h3, .leads-board-capsule.lightmode .organization-header .organization-name .h3 {
  color: #140D23;
}

/* line 1013, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.organization-header .organization-meta {
  display: flex;
  gap: 16px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  align-items: center;
}

/* line 1020, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .organization-header .organization-meta {
  color: rgba(20, 13, 35, 0.6);
}

/* line 1024, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.organization-header .organization-meta .prospect-count {
  background: rgba(195, 135, 97, 0.15);
  padding: 3px 10px;
  border-radius: 10px;
  color: #C38761;
  font-weight: 500;
}

/* line 1032, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.organization-header .organization-meta .org-email {
  font-size: 0.65rem;
}

/* line 1038, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.organization-prospects {
  padding: 8px;
}

/* line 1042, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-row {
  display: grid;
  grid-template-columns: 1fr 120px 100px 50px;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  align-items: center;
}

/* line 1052, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-row:hover {
  background: rgba(195, 135, 97, 0.08);
}

/* line 1056, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-row .prospect-name {
  font-weight: 500;
  font-size: 0.75rem;
  color: #FFFFFF;
}

/* line 1061, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .prospect-row .prospect-name {
  color: #140D23;
}

/* line 1066, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-row .prospect-status {
  display: flex;
  justify-content: center;
}

/* line 1071, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-row .prospect-date {
  text-align: right;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
}

/* line 1076, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .prospect-row .prospect-date {
  color: rgba(20, 13, 35, 0.5);
}

/* line 1081, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-row .prospect-actions {
  display: flex;
  justify-content: flex-end;
}

/* line 1087, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.no-prospects {
  padding: 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
  font-size: 0.75rem;
}

/* line 1094, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .no-prospects {
  color: rgba(20, 13, 35, 0.4);
}

/* ==========================================================================
   VUE PROSPECTS/CLIENTS AVEC ORGANISATIONS - Affichage hierarchique
   ========================================================================== */
/* line 1103, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-prospects-with-orgs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  /* Personnalisation de la barre de defilement */
}

/* line 1112, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-prospects-with-orgs::-webkit-scrollbar {
  width: 8px;
}

/* line 1116, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-prospects-with-orgs::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 1120, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-prospects-with-orgs::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 1125, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-prospects-with-orgs::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 1130, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-prospects-with-orgs::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 1133, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .leads-board-prospects-with-orgs::-webkit-scrollbar-thumb:hover {
  background: #140D23;
}

/* line 1139, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

/* line 1146, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .prospect-card {
  background: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 1152, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: rgba(195, 135, 97, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background 0.2s;
}

/* line 1162, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-card-header:hover {
  background: rgba(195, 135, 97, 0.1);
}

/* line 1166, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .prospect-card-header {
  border-bottom-color: rgba(20, 13, 35, 0.08);
}

/* line 1171, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-card-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

/* line 1178, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-card-name {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 1183, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-card-name i {
  color: #C38761 !important;
  font-size: 1rem !important;
}

/* line 1188, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-card-name span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* line 1193, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .prospect-card-name span {
  color: #140D23;
}

/* line 1199, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 1205, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-card-date {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
}

/* line 1209, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .prospect-card-date {
  color: rgba(20, 13, 35, 0.5);
}

/* line 1214, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-card-actions {
  display: flex;
  gap: 8px;
}

/* line 1219, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-card-organizations {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.01);
}

/* line 1223, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .prospect-card-organizations {
  background: rgba(20, 13, 35, 0.01);
}

/* line 1228, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.org-child-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  margin-left: 20px;
  border-left: 2px solid rgba(195, 135, 97, 0.3);
  border-radius: 0 6px 6px 0;
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 4px;
  transition: background 0.2s;
}

/* line 1240, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.org-child-row:hover {
  background: rgba(195, 135, 97, 0.05);
}

/* line 1244, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.org-child-row:last-child {
  margin-bottom: 0;
}

/* line 1248, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .org-child-row {
  background: rgba(20, 13, 35, 0.02);
}

/* line 1251, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .org-child-row:hover {
  background: rgba(195, 135, 97, 0.08);
}

/* line 1257, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.org-child-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 1262, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.org-child-info i {
  color: rgba(195, 135, 97, 0.7) !important;
  font-size: 0.75rem !important;
}

/* line 1268, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.org-child-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: #FFFFFF;
}

/* line 1273, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .org-child-name {
  color: #140D23;
}

/* line 1278, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.org-child-details {
  display: flex;
  gap: 16px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
}

/* line 1284, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .org-child-details {
  color: rgba(20, 13, 35, 0.5);
}

/* line 1289, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.org-child-email,
.org-child-siret {
  font-size: 0.65rem;
}

/* line 1294, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.org-child-empty {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  margin-left: 20px;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
  font-size: 0.75rem;
}

/* line 1305, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.org-child-empty i {
  font-size: 0.8rem !important;
  color: rgba(255, 255, 255, 0.3) !important;
}

/* line 1310, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .org-child-empty {
  border-left-color: rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.4);
}

/* line 1314, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .org-child-empty i {
  color: rgba(20, 13, 35, 0.3) !important;
}

/* ==========================================================================
   AFFICHAGE COMPACT - Pour 0 ou 1 organisation
   ========================================================================== */
/* line 1325, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-card.compact .prospect-card-header {
  border-bottom: none;
}

/* line 1330, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-card.no-org {
  border-left: 3px solid rgba(195, 135, 97, 0.3);
}

/* line 1334, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-card-org-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
}

/* line 1342, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-card-org-inline i {
  color: rgba(195, 135, 97, 0.7) !important;
  font-size: 0.75rem !important;
}

/* line 1347, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .prospect-card-org-inline {
  background: rgba(20, 13, 35, 0.05);
}

/* line 1351, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-card-org-inline.empty {
  background: transparent;
  border: 1px dashed rgba(255, 255, 255, 0.15);
}

/* line 1355, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.prospect-card-org-inline.empty i {
  color: rgba(255, 255, 255, 0.4) !important;
}

/* line 1359, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .prospect-card-org-inline.empty {
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 1362, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .prospect-card-org-inline.empty i {
  color: rgba(20, 13, 35, 0.4) !important;
}

/* line 1369, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.org-inline-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: #FFFFFF;
}

/* line 1374, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .org-inline-name {
  color: #140D23;
}

/* line 1379, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.org-inline-siret {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  padding-left: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

/* line 1385, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .org-inline-siret {
  color: rgba(20, 13, 35, 0.5);
  border-left-color: rgba(20, 13, 35, 0.15);
}

/* line 1391, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.org-inline-empty {
  font-size: 0.75rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.4);
}

/* line 1396, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.leads-board-capsule.lightmode .org-inline-empty {
  color: rgba(20, 13, 35, 0.4);
}

/* line 1401, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.org-count-badge {
  background: rgba(195, 135, 97, 0.15);
  padding: 3px 8px;
  border-radius: 10px;
  color: #C38761;
  font-size: 0.65rem;
  font-weight: 500;
}

/* ==========================================================================
   CLASSES UTILITAIRES - Classes d'aide diverses
   ========================================================================== */
/* line 1414, app/assets/stylesheets/pages/servicespace/commerce/crm/leads_management/_leads_board.scss */
.d-none {
  display: none !important;
}

/* Les styles de modals sont définis dans ./modals, ./step_modal et ./task_details_modal */
/* ==========================================================================
   STYLES SPÉCIFIQUES AUX PROJETS - Badges de statut
   ========================================================================== */
/* line 39, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.status-badge.en_cours {
  background-color: rgba(52, 152, 219, 0.1);
  color: #3498db;
  border: 1px solid rgba(52, 152, 219, 0.3);
}

/* line 44, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.leads-board-capsule.lightmode .status-badge.en_cours {
  background-color: rgba(52, 152, 219, 0.15);
  color: #2980b9;
  border: 1px solid rgba(52, 152, 219, 0.4);
}

/* line 51, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.status-badge.terminé {
  background-color: rgba(46, 204, 113, 0.1);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.3);
}

/* line 56, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.leads-board-capsule.lightmode .status-badge.terminé {
  background-color: rgba(46, 204, 113, 0.15);
  color: #27ae60;
  border: 1px solid rgba(46, 204, 113, 0.4);
}

/* line 63, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.status-badge.en_retard {
  background-color: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.3);
}

/* line 68, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.leads-board-capsule.lightmode .status-badge.en_retard {
  background-color: rgba(231, 76, 60, 0.15);
  color: #c0392b;
  border: 1px solid rgba(231, 76, 60, 0.4);
}

/* Header inline pour retards + filtres de dates */
/* line 77, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.timeline-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 98%;
}

/* line 84, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.timeline-header .tab-link.active {
  margin-bottom: 0;
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 14px;
}

/* line 95, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.timeline-header .tab-link.active .status-badge {
  margin-left: 6px;
  padding: 4px 8px;
  display: inline-block;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
}

/* line 106, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.timeline-header .timeline-filters-inline .timeline-filter-form .timeline-filter-fields {
  gap: 12px;
  align-items: center;
}

/* line 111, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.timeline-header .timeline-filters-inline .timeline-filter-form .timeline-filter-fields .timeline-filter-field label {
  display: none;
}

/* line 116, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.timeline-header .timeline-filters-inline .timeline-filter-form .timeline-filter-fields .form-control {
  height: 40px;
  padding: 10px 10px;
  font-size: 14px;
}

/* line 122, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.timeline-header .timeline-filters-inline .timeline-filter-form .timeline-filter-fields .form-button, .timeline-header .timeline-filters-inline .timeline-filter-form .timeline-filter-fields .users-management-container .users-header .add-user-btn, .users-management-container .users-header .timeline-header .timeline-filters-inline .timeline-filter-form .timeline-filter-fields .add-user-btn, .timeline-header .timeline-filters-inline .timeline-filter-form .timeline-filter-fields .crm-action-button,
.timeline-header .timeline-filters-inline .timeline-filter-form .timeline-filter-fields button,
.timeline-header .timeline-filters-inline .timeline-filter-form .timeline-filter-fields .btn,
.timeline-header .timeline-filters-inline .timeline-filter-form .timeline-filter-fields .primary-button {
  height: 40px;
  padding: 0 14px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
}

/* Assurer que le padding des badges projets est toujours appliqué */
/* line 138, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.leads-board-row2-list-column .status-badge.en_cours, .leads-board-row2-list-column .status-badge.terminé, .leads-board-row2-list-column .status-badge.en_retard {
  padding: 4px 8px !important;
  font-size: 0.7rem;
  border-radius: 12px;
  font-weight: 500;
}

/* ==========================================================================
   BADGES DE STATUT DES FORMULAIRES - Styles spécifiques pour l'index des formulaires
   ========================================================================== */
/* line 153, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.leads-board-capsule .form-status-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.2s ease-in-out;
}

/* line 162, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.leads-board-capsule .form-status-badge.pending {
  background-color: rgba(255, 143, 31, 0.1) !important;
  color: #ff8f1f !important;
  border: 1px solid rgba(255, 143, 31, 0.3) !important;
}

/* line 168, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.leads-board-capsule .form-status-badge.in_progress {
  background-color: rgba(255, 193, 7, 0.1) !important;
  color: #ffc107 !important;
  border: 1px solid rgba(255, 193, 7, 0.3) !important;
}

/* line 174, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.leads-board-capsule .form-status-badge.completed {
  background-color: rgba(46, 204, 113, 0.1) !important;
  color: #2ecc71 !important;
  border: 1px solid rgba(46, 204, 113, 0.3) !important;
}

/* line 183, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.leads-board-capsule.lightmode .form-status-badge.pending {
  background-color: rgba(255, 143, 31, 0.15) !important;
  color: #d68910 !important;
  border: 1px solid rgba(255, 143, 31, 0.4) !important;
}

/* line 189, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.leads-board-capsule.lightmode .form-status-badge.in_progress {
  background-color: rgba(255, 193, 7, 0.15) !important;
  color: #d68910 !important;
  border: 1px solid rgba(255, 193, 7, 0.4) !important;
}

/* line 195, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.leads-board-capsule.lightmode .form-status-badge.completed {
  background-color: rgba(46, 204, 113, 0.15) !important;
  color: #27ae60 !important;
  border: 1px solid rgba(46, 204, 113, 0.4) !important;
}

/* ==========================================================================
   LIENS DANS LES WIDGETS - Style pour les widgets cliquables
   ========================================================================== */
/* line 208, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-board-widget {
  text-decoration: none;
}

/* line 211, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-board-widget:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* line 216, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-board-capsule.lightmode .project-board-widget:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* line 220, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-board-widget:hover .widget-number {
  color: #C38761;
}

/* line 223, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-board-capsule.lightmode .project-board-widget:hover .widget-number {
  color: #140D23;
}

/* line 229, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-board-widget:focus {
  outline: 2px solid #C38761;
  outline-offset: 2px;
}

/* ==========================================================================
   STYLES SPÉCIFIQUES À LA VUE PROJETS EN RETARD
   ========================================================================== */
/* line 239, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.text-muted {
  color: rgba(255, 255, 255, 0.7) !important;
  font-style: italic;
}

/* line 243, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.leads-board-capsule.lightmode .text-muted {
  color: rgba(0, 0, 0, 0.6);
}

/* Icône d'alerte pour les projets en retard */
/* line 249, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-alert-icon {
  color: #e74c3c !important;
  margin-right: 8px;
  font-size: 0.8rem;
  animation: pulse-alert 2s infinite;
}

/* line 255, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.leads-board-capsule.lightmode .project-alert-icon {
  color: #c0392b !important;
}

/* Animation subtile pour attirer l'attention */
@keyframes pulse-alert {
  0%,
100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* ==========================================================================
   FORMULAIRE DE CRÉATION DE PROJET
   Styles pour la page de création d'un nouveau projet
   ========================================================================== */
/* ==========================================================================
   NEW CUSTOMER - MODULE CRM (Harmonisé avec ADV)
   ========================================================================== */
/* line 5, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-capsule {
  width: 98%;
  height: 97%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  box-shadow: 0 2px 16px 0 rgba(20, 13, 35, 0.08);
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.8rem;
  gap: 0;
  min-height: auto;
}

/* line 22, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-capsule .crm-new-customer-capsule-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 32px 28px 24px 28px;
}

/* line 32, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .crm-new-customer-capsule {
  background-color: rgba(240, 242, 245, 0.7);
  border-color: rgba(20, 13, 35, 0.12);
  color: #140D23;
}

/* line 39, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-form {
  width: 100%;
}

/* line 43, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-header {
  width: 100%;
  text-align: left;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 50, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-header h2, .crm-new-customer-header .h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: inherit;
  letter-spacing: -0.01em;
}

/* line 57, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-header .crm-new-customer-description {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

/* line 61, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .crm-new-customer-header .crm-new-customer-description {
  color: rgba(20, 13, 35, 0.5);
}

/* line 66, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .crm-new-customer-header {
  border-bottom-color: rgba(20, 13, 35, 0.08);
}

/* line 71, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-form-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 10px;
}

/* line 79, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-section-group {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

/* line 83, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-section-group:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  /* line 79, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
  .crm-new-customer-section-group {
    flex-direction: column;
  }
}

/* line 91, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-card {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* line 99, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-card.crm-new-customer-card-full-width {
  width: 100%;
}

/* line 103, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .crm-new-customer-card {
  background-color: rgba(255, 255, 255, 0.65);
  border-color: rgba(20, 13, 35, 0.12);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* line 110, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-card-header,
.crm-new-customer-card-header-with-action {
  padding: 8px 14px;
  font-size: 0.65rem;
  font-weight: 700;
  color: #C38761;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background-color: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
}

/* line 122, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .crm-new-customer-card-header, .lightmode .crm-new-customer-card-header-with-action {
  color: #C38761;
  background-color: rgba(20, 13, 35, 0.03);
  border-bottom-color: rgba(20, 13, 35, 0.08);
}

/* line 129, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-card-header-with-action {
  justify-content: space-between;
  align-items: center;
}

/* line 134, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-card-title {
  font-size: 0.65rem;
  font-weight: 700;
  color: #C38761;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* line 142, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-card-content {
  padding: 14px;
}

/* line 146, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-input {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
  color: #FFFFFF;
  padding: 10px 14px;
  margin: 0 auto;
  box-sizing: border-box;
  font-family: inherit;
  text-align: left;
  transition: border-color 0.2s, box-shadow 0.2s;
}

/* line 160, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-input:focus {
  outline: none;
  border-color: rgba(195, 135, 97, 0.5);
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

/* line 166, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.72rem;
  font-family: inherit;
}

/* line 171, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .crm-new-customer-input {
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.12);
  background: rgba(255, 255, 255, 0.6);
}

/* line 175, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .crm-new-customer-input:focus {
  border-color: rgba(195, 135, 97, 0.5);
  background: #FFFFFF;
}

/* line 179, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .crm-new-customer-input::placeholder {
  color: rgba(20, 13, 35, 0.3);
}

/* line 185, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='4' viewBox='0 0 8 4'%3E%3Cpath fill='rgba(255,255,255,0.4)' d='M8 0H0l4 4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 8px 4px;
  padding-right: 30px;
}

/* line 196, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .crm-new-customer-select {
  background-color: rgba(255, 255, 255, 0.6);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='4' viewBox='0 0 8 4'%3E%3Cpath fill='rgba(20,13,35,0.4)' d='M8 0H0l4 4z'/%3E%3C/svg%3E");
}

/* line 202, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-circular-add-btn {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(195, 135, 97, 0.15);
  border: 1px solid rgba(195, 135, 97, 0.3);
  color: #C38761;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  margin: 0;
  outline: none;
  transition: all 0.2s ease;
}

/* line 221, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-circular-add-btn:hover {
  background-color: rgba(195, 135, 97, 0.3);
  color: white;
}

/* line 226, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .crm-new-customer-circular-add-btn {
  background-color: rgba(195, 135, 97, 0.1);
  border-color: rgba(195, 135, 97, 0.25);
  color: #C38761;
}

/* line 231, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .crm-new-customer-circular-add-btn:hover {
  background-color: rgba(195, 135, 97, 0.2);
}

/* line 237, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-organizations-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-height: 300px;
  overflow-y: auto;
}

/* line 246, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-empty-state {
  padding: 20px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* line 251, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .crm-new-customer-empty-state {
  color: rgba(20, 13, 35, 0.6);
}

/* line 256, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
#organizations-table-container {
  max-height: 250px;
  overflow-y: auto;
  width: 100%;
}

/* line 262, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
#organizations-table-container::-webkit-scrollbar {
  width: 6px;
}

/* line 266, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
#organizations-table-container::-webkit-scrollbar-track {
  background: rgba(232, 232, 232, 0.1);
  border-radius: 10px;
}

/* line 269, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode #organizations-table-container::-webkit-scrollbar-track {
  background: rgba(20, 13, 35, 0.1);
}

/* line 274, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
#organizations-table-container::-webkit-scrollbar-thumb {
  background: rgba(195, 135, 97, 0.5);
  border-radius: 10px;
}

/* line 277, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
#organizations-table-container::-webkit-scrollbar-thumb:hover {
  background: #C38761;
}

/* line 283, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-new-customer-actions {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

/* line 294, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .crm-new-customer-actions {
  border-top-color: rgba(20, 13, 35, 0.08);
}

/* line 300, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.instance-index {
  width: 100%;
}

/* line 302, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.instance-index .instance-header {
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid rgba(232, 232, 232, 0.2);
}

/* line 306, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.instance-index .instance-header .instance-column {
  flex: 1;
  font-weight: 500;
  font-size: 0.85rem;
  color: #FFFFFF;
  text-transform: capitalize;
}

/* line 312, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .instance-index .instance-header .instance-column {
  color: #140D23;
}

/* line 317, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.instance-index .instance-row {
  display: flex;
  padding: 8px 0;
  border-bottom: 1px solid rgba(232, 232, 232, 0.1);
}

/* line 321, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.instance-index .instance-row .instance-column {
  flex: 1;
  padding: 2px 10px;
  font-size: 0.75rem;
  color: #FFFFFF;
}

/* line 326, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .instance-index .instance-row .instance-column {
  color: #140D23;
}

/* line 333, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.delete-btn {
  background-color: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.2s;
  padding: 4px 8px;
  font-size: 0.8rem;
  border-radius: 4px;
}

/* line 342, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.delete-btn:hover {
  color: #C38761;
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 346, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .delete-btn {
  color: rgba(20, 13, 35, 0.7);
}

/* line 348, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .delete-btn:hover {
  color: #C38761;
  background-color: rgba(20, 13, 35, 0.1);
}

/* ==========================================================================
   MODAL WIZARD ORGANIZATION - MODULE CRM
   ========================================================================== */
/* line 360, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
#organizationModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto;
  padding: 50px 0;
}

/* line 376, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.modal-content {
  background-color: rgba(20, 13, 35, 0.65);
  height: auto;
  width: 700px;
  max-width: 90%;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(232, 232, 232, 0.31);
}

/* line 390, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .modal-content {
  background-color: rgba(255, 255, 255, 0.85);
  border-color: rgba(20, 13, 35, 0.31);
}

/* line 397, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #FFFFFF;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 406, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .crm-modal-header {
  color: #140D23;
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 411, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-modal-header h2, .crm-modal-header .h2 {
  color: #FFFFFF !important;
  font-size: 1.2rem;
  margin: 0;
  font-weight: 600;
}

/* line 416, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .crm-modal-header h2, .lightmode .crm-modal-header .h2 {
  color: #140D23 !important;
}

/* line 422, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.modal-close {
  color: #FFFFFF !important;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease, color 0.2s;
}

/* line 429, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .modal-close {
  color: #140D23 !important;
}

/* line 433, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.modal-close:hover {
  opacity: 1;
  color: #C38761 !important;
}

/* line 440, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.progress-bar {
  height: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 20px;
}

/* line 447, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .progress-bar {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 451, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.progress-bar .progress-fill {
  height: 100%;
  background-color: #C38761;
  transition: width 0.3s ease;
  border-radius: 2px;
}

/* line 460, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.wizard-step {
  display: none;
}

/* line 463, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.wizard-step.active {
  display: block;
}

/* line 469, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.form-group {
  margin-bottom: 15px;
}

/* line 472, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.form-group label {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

/* line 479, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .form-group label {
  color: rgba(20, 13, 35, 0.9);
}

/* line 484, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

/* line 494, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .form-group input, .lightmode .form-group select, .lightmode .form-group textarea {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 500, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: #C38761;
  background-color: rgba(255, 255, 255, 0.15);
}

/* line 505, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .form-group input:focus, .lightmode .form-group select:focus, .lightmode .form-group textarea:focus {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 510, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.form-group input::placeholder, .form-group select::placeholder, .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 512, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .form-group input::placeholder, .lightmode .form-group select::placeholder, .lightmode .form-group textarea::placeholder {
  color: rgba(20, 13, 35, 0.5);
}

/* line 520, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.siret-input-group {
  display: flex;
  gap: 10px;
}

/* line 524, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.siret-input-group input {
  flex: 1;
}

/* line 528, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.siret-input-group .verify-btn {
  padding: 10px 15px;
  background-color: #C38761;
  color: #140D23;
  border: none;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

/* line 540, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.siret-input-group .verify-btn:hover {
  background-color: #af6c42;
}

/* line 546, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
#siret-verification-result {
  margin-top: 8px;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* line 553, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
#siret-verification-result.siret-result-loading {
  background-color: rgba(195, 135, 97, 0.2);
  color: #C38761;
  border: 1px solid rgba(195, 135, 97, 0.3);
}

/* line 559, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
#siret-verification-result.siret-result-success {
  background-color: rgba(76, 175, 80, 0.2);
  color: #4CAF50;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

/* line 565, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
#siret-verification-result.siret-result-error {
  background-color: rgba(244, 67, 54, 0.2);
  color: #f44336;
  border: 1px solid rgba(244, 67, 54, 0.3);
}

/* line 573, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.address-copy-container {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

/* line 579, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.btn-copy-address {
  padding: 8px 16px;
  font-size: 0.8rem;
  background-color: rgba(195, 135, 97, 0.2);
  color: #C38761;
  border: 1px solid rgba(195, 135, 97, 0.4);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

/* line 593, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.btn-copy-address:hover {
  background-color: rgba(195, 135, 97, 0.3);
  border-color: rgba(195, 135, 97, 0.6);
  transform: translateY(-1px);
}

/* line 599, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.btn-copy-address i {
  font-size: 0.75rem;
}

/* line 605, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.modal-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
  gap: 10px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 613, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .modal-footer {
  border-top-color: rgba(20, 13, 35, 0.1);
}

/* line 619, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.btn-prev,
.btn-next,
.btn-submit {
  padding: 8px 20px;
  font-size: 0.8rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  border: none;
}

/* line 635, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.btn-prev:hover,
.btn-next:hover,
.btn-submit:hover {
  opacity: 0.9;
}

/* line 640, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.btn-prev {
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* line 645, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.btn-prev:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 649, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .btn-prev {
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.3);
}

/* line 652, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .btn-prev:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 658, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.btn-next,
.btn-submit {
  background-color: #C38761;
  color: #FFFFFF;
}

/* line 663, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.btn-next:hover,
.btn-submit:hover {
  background-color: #d1a386;
}

/* line 667, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .btn-next, .lightmode .btn-submit {
  color: #FFFFFF;
}

/* ==========================================================================
   SECTION CONTACT PRINCIPAL
   ========================================================================== */
/* line 676, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-contact-toggle-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #FFFFFF;
}

/* line 686, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .crm-contact-toggle-label {
  color: #140D23;
}

/* line 691, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-contact-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #C38761;
}

/* line 698, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-optional-badge {
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: lowercase;
  opacity: 0.7;
  margin-left: 5px;
}

/* line 706, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

@media (max-width: 768px) {
  /* line 706, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
  .crm-contact-form-grid {
    grid-template-columns: 1fr;
  }
}

/* line 716, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-contact-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* line 722, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-field-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

/* line 727, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.lightmode .crm-field-label {
  color: rgba(20, 13, 35, 0.8);
}

/* line 732, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-contact-fields {
  transition: all 0.3s ease;
}

/* line 735, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
.crm-contact-fields.hidden {
  display: none;
}

@media (max-width: 768px) {
  /* line 742, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
  .crm-new-customer-capsule {
    width: 95%;
    padding: 20px 16px;
  }
  /* line 747, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
  .crm-new-customer-actions {
    flex-direction: column;
    gap: 10px;
  }
  /* line 751, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
  .crm-new-customer-actions .form-button, .crm-new-customer-actions .users-management-container .users-header .add-user-btn, .users-management-container .users-header .crm-new-customer-actions .add-user-btn, .crm-new-customer-actions .crm-action-button {
    width: 100%;
  }
  /* line 756, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
  .modal-content {
    width: 95%;
    padding: 16px;
  }
  /* line 761, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
  .modal-footer {
    flex-direction: column;
  }
  /* line 765, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
  .btn-prev,
.btn-next,
.btn-submit {
    width: 100%;
    margin-bottom: 5px;
  }
  /* line 772, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
  .siret-input-group {
    flex-direction: column;
  }
  /* line 775, app/assets/stylesheets/pages/servicespace/commerce/crm/customers_management/_new_customer.scss */
  .siret-input-group .verify-btn {
    width: 100%;
  }
}

/* line 281, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-creation-container .crm-main-card {
  min-height: auto;
}

/* line 285, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-creation-container .crm-main-card .crm-card.full-width {
  flex: 1 1 100%;
}

/* line 292, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-creation-container .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white !important;
  font-size: 0.8rem;
  padding: 8px 12px;
  border-radius: 8px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

/* line 301, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.crm-main-card.lightmode .project-creation-container .form-control {
  background-color: rgba(51, 51, 51, 0.1);
  border-color: rgba(51, 51, 51, 0.2);
  color: #140D23 !important;
}

/* line 307, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-creation-container .form-control:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.15);
  color: white !important;
}

/* line 313, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.crm-main-card.lightmode .project-creation-container .form-control:focus {
  border-color: rgba(51, 51, 51, 0.4);
  background-color: rgba(51, 51, 51, 0.15);
  color: #140D23 !important;
}

/* line 320, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-creation-container .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 323, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.crm-main-card.lightmode .project-creation-container .form-control::placeholder {
  color: rgba(51, 51, 51, 0.5);
}

/* line 330, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-creation-container select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='4' viewBox='0 0 8 4'%3E%3Cpath fill='rgba(255,255,255,0.6)' d='M8 0H0l4 4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 8px 4px;
  padding-right: 30px;
}

/* line 340, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-creation-container .no-templates-message {
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  font-size: 0.8rem;
  margin: 0;
  padding: 10px 0;
}

/* line 347, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.crm-main-card.lightmode .project-creation-container .no-templates-message {
  color: rgba(51, 51, 51, 0.7);
}

/* line 353, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-creation-container .step-form-row {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 10px;
  position: relative;
}

/* line 361, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.crm-main-card.lightmode .project-creation-container .step-form-row {
  background-color: rgba(51, 51, 51, 0.05);
  border-color: rgba(51, 51, 51, 0.1);
}

/* line 366, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-creation-container .step-form-row .step-form-fields {
  display: grid;
  grid-template-columns: 2fr 1fr auto;
  gap: 15px;
  align-items: end;
}

/* line 373, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-creation-container .step-form-row .step-field {
  display: flex;
  flex-direction: column;
}

/* line 377, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-creation-container .step-form-row .step-field .step-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  margin-bottom: 5px;
  text-transform: uppercase;
}

/* line 384, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.crm-main-card.lightmode .project-creation-container .step-form-row .step-field .step-label {
  color: #140D23;
}

/* line 389, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-creation-container .step-form-row .step-field .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 0.8rem;
  padding: 8px 12px;
}

/* line 396, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.crm-main-card.lightmode .project-creation-container .step-form-row .step-field .form-control {
  background-color: rgba(51, 51, 51, 0.1);
  border-color: rgba(51, 51, 51, 0.2);
  color: #140D23;
}

/* line 402, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-creation-container .step-form-row .step-field .form-control:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.15);
}

/* line 407, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.crm-main-card.lightmode .project-creation-container .step-form-row .step-field .form-control:focus {
  border-color: rgba(51, 51, 51, 0.4);
  background-color: rgba(51, 51, 51, 0.15);
}

/* line 413, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-creation-container .step-form-row .step-field .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 416, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.crm-main-card.lightmode .project-creation-container .step-form-row .step-field .form-control::placeholder {
  color: rgba(51, 51, 51, 0.5);
}

/* line 423, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-creation-container .step-form-row .step-actions {
  display: flex;
  align-items: center;
}

/* line 427, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-creation-container .step-form-row .step-actions .remove-step-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(231, 76, 60, 0.2);
  border: 1px solid rgba(231, 76, 60, 0.4);
  color: #e74c3c;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 442, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-creation-container .step-form-row .step-actions .remove-step-btn:hover {
  background-color: rgba(231, 76, 60, 0.3);
  border-color: rgba(231, 76, 60, 0.6);
}

/* line 447, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.crm-main-card.lightmode .project-creation-container .step-form-row .step-actions .remove-step-btn {
  background-color: rgba(231, 76, 60, 0.1);
  border-color: rgba(231, 76, 60, 0.3);
  color: #a82315;
}

/* line 452, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.crm-main-card.lightmode .project-creation-container .step-form-row .step-actions .remove-step-btn:hover {
  background-color: rgba(231, 76, 60, 0.2);
  border-color: rgba(231, 76, 60, 0.4);
}

/* line 461, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-creation-container .empty-steps-message {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  font-size: 0.8rem;
  padding: 20px;
}

/* line 468, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.crm-main-card.lightmode .project-creation-container .empty-steps-message {
  color: rgba(51, 51, 51, 0.6);
}

/* line 474, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-creation-container .error-messages {
  margin-bottom: 20px;
  padding: 15px;
  background-color: rgba(231, 76, 60, 0.2);
  border: 1px solid rgba(231, 76, 60, 0.4);
  border-radius: 8px;
}

/* line 481, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-creation-container .error-messages ul {
  margin: 0;
  padding-left: 20px;
}

/* line 485, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-creation-container .error-messages ul li {
  color: #e74c3c;
  font-size: 0.8rem;
  margin-bottom: 5px;
}

/* line 492, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.crm-main-card.lightmode .project-creation-container .error-messages {
  background-color: rgba(231, 76, 60, 0.1);
  border-color: rgba(231, 76, 60, 0.2);
}

/* line 496, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.crm-main-card.lightmode .project-creation-container .error-messages ul li {
  color: #a82315;
}

/* line 503, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-creation-container .prospect-actions {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 20px;
}

/* line 509, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-creation-container .prospect-actions .form-button, .project-creation-container .prospect-actions .users-management-container .users-header .add-user-btn, .users-management-container .users-header .project-creation-container .prospect-actions .add-user-btn, .project-creation-container .prospect-actions .crm-action-button {
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 519, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-creation-container .prospect-actions .form-button.btn-secondary, .project-creation-container .prospect-actions .users-management-container .users-header .btn-secondary.add-user-btn, .users-management-container .users-header .project-creation-container .prospect-actions .btn-secondary.add-user-btn, .project-creation-container .prospect-actions .btn-secondary.crm-action-button, .project-creation-container .prospect-actions .crm-action-button.crm-action-button-secondary {
  background-color: rgba(155, 155, 155, 0.2);
  border: 1px solid rgba(155, 155, 155, 0.4);
  color: white;
}

/* line 524, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-creation-container .prospect-actions .form-button.btn-secondary:hover, .project-creation-container .prospect-actions .users-management-container .users-header .btn-secondary.add-user-btn:hover, .users-management-container .users-header .project-creation-container .prospect-actions .btn-secondary.add-user-btn:hover, .project-creation-container .prospect-actions .btn-secondary.crm-action-button:hover, .project-creation-container .prospect-actions .crm-action-button.crm-action-button-secondary:hover {
  background-color: rgba(155, 155, 155, 0.3);
}

/* line 528, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.crm-main-card.lightmode .project-creation-container .prospect-actions .form-button.btn-secondary, .crm-main-card.lightmode .project-creation-container .prospect-actions .users-management-container .users-header .btn-secondary.add-user-btn, .users-management-container .users-header .crm-main-card.lightmode .project-creation-container .prospect-actions .btn-secondary.add-user-btn, .crm-main-card.lightmode .project-creation-container .prospect-actions .btn-secondary.crm-action-button, .crm-main-card.lightmode .project-creation-container .prospect-actions .crm-action-button.crm-action-button-secondary {
  color: #140D23;
  border-color: rgba(51, 51, 51, 0.3);
}

/* line 532, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.crm-main-card.lightmode .project-creation-container .prospect-actions .form-button.btn-secondary:hover, .crm-main-card.lightmode .project-creation-container .prospect-actions .users-management-container .users-header .btn-secondary.add-user-btn:hover, .users-management-container .users-header .crm-main-card.lightmode .project-creation-container .prospect-actions .btn-secondary.add-user-btn:hover, .crm-main-card.lightmode .project-creation-container .prospect-actions .btn-secondary.crm-action-button:hover, .crm-main-card.lightmode .project-creation-container .prospect-actions .crm-action-button.crm-action-button-secondary:hover {
  background-color: rgba(51, 51, 51, 0.1);
}

/* line 538, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-creation-container .prospect-actions .form-button.btn-primary, .project-creation-container .prospect-actions .users-management-container .users-header .btn-primary.add-user-btn, .users-management-container .users-header .project-creation-container .prospect-actions .btn-primary.add-user-btn, .project-creation-container .prospect-actions .btn-primary.crm-action-button, .project-creation-container .prospect-actions .crm-action-button.crm-action-button-primary {
  background-color: #c18859;
  border: 1px solid #c18859;
  color: white;
}

/* line 543, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-creation-container .prospect-actions .form-button.btn-primary:hover, .project-creation-container .prospect-actions .users-management-container .users-header .btn-primary.add-user-btn:hover, .users-management-container .users-header .project-creation-container .prospect-actions .btn-primary.add-user-btn:hover, .project-creation-container .prospect-actions .btn-primary.crm-action-button:hover, .project-creation-container .prospect-actions .crm-action-button.crm-action-button-primary:hover {
  background-color: #a67548;
  border-color: #a67548;
}

/* ==========================================================================
   VUE DÉTAILLÉE DU PROJET
   Styles pour la page de visualisation d'un projet
   ========================================================================== */
/* line 558, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .breadcrumb-nav {
  margin-bottom: 20px;
  font-size: 14px;
}

/* line 562, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .breadcrumb-nav .breadcrumb-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

/* line 566, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .breadcrumb-nav .breadcrumb-link:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* line 571, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .breadcrumb-nav .breadcrumb-separator {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.5);
}

/* line 576, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .breadcrumb-nav .breadcrumb-current {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* line 583, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-header-section {
  margin-bottom: 20px;
}

/* line 587, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-header-section .project-header-content .project-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

/* line 592, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-header-section .project-header-content .project-info-grid .project-info-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* line 597, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-header-section .project-header-content .project-info-grid .project-info-item .info-label {
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* line 604, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-header-section .project-header-content .project-info-grid .project-info-item .info-value {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 16px;
}

/* line 613, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-header-section .status-badge {
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

/* line 619, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-header-section .status-badge.en_cours {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

/* line 625, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-header-section .status-badge.terminé {
  background: rgba(40, 167, 69, 0.2);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

/* line 634, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-steps-section {
  margin-bottom: 30px;
}

/* line 637, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-steps-section .project-steps-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* line 642, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-steps-section .project-steps-container .empty-steps {
  text-align: center;
  padding: 40px 20px;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* line 652, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-step-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 20px;
  transition: all 0.2s ease;
  cursor: move;
}

/* line 660, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-step-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.2);
}

/* line 665, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-step-card.step-hidden {
  opacity: 0.5;
  background: rgba(255, 255, 255, 0.01);
}

/* line 670, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-step-card.dragging {
  opacity: 0.5;
  transform: rotate(2deg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

/* line 677, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-step-card .step-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

/* line 683, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-step-card .step-header .step-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 688, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-step-card .step-header .step-title .drag-handle {
  color: rgba(255, 255, 255, 0.4);
  cursor: grab;
}

/* line 692, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-step-card .step-header .step-title .drag-handle:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* line 696, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-step-card .step-header .step-title .drag-handle:active {
  cursor: grabbing;
}

/* line 701, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-step-card .step-header .step-title .step-name {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

/* line 708, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-step-card .step-header .step-actions {
  display: flex;
  gap: 8px;
}

/* line 712, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-step-card .step-header .step-actions .step-action-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 721, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-step-card .step-header .step-actions .step-action-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

/* line 727, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-step-card .step-header .step-actions .step-action-btn.delete-step:hover {
  background: rgba(220, 53, 69, 0.2);
  border-color: rgba(220, 53, 69, 0.4);
  color: #dc3545;
}

/* line 738, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-step-card .step-content .step-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

/* line 744, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-step-card .step-content .step-info .step-deadline {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* line 751, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-step-card .step-content .step-info .step-deadline i {
  color: rgba(255, 255, 255, 0.5);
}

/* line 757, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-step-card .step-content .step-info .step-status .status-label {
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

/* line 769, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-step-card .step-content .step-progress {
  margin-bottom: 15px;
}

/* line 772, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-step-card .step-content .step-progress .progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

/* line 778, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-step-card .step-content .step-progress .progress-info .progress-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* line 783, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-step-card .step-content .step-progress .progress-info .progress-percentage {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 14px;
}

/* line 790, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-step-card .step-content .step-progress .progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

/* line 797, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-step-card .step-content .step-progress .progress-bar .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
  border-radius: 4px;
  transition: width 0.3s ease;
}

/* line 808, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-step-card .step-content .step-tasks .tasks-toggle {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  transition: color 0.2s ease;
}

/* line 820, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-step-card .step-content .step-tasks .tasks-toggle:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* line 824, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-step-card .step-content .step-tasks .tasks-toggle i {
  transition: transform 0.2s ease;
}

/* line 829, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-step-card .step-content .step-tasks .tasks-list {
  margin-top: 10px;
  padding-left: 10px;
}

/* line 833, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-step-card .step-content .step-tasks .tasks-list .task-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
}

/* line 839, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-step-card .step-content .step-tasks .tasks-list .task-item .task-checkbox {
  width: 16px;
  height: 16px;
  accent-color: #28a745;
}

/* line 845, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-step-card .step-content .step-tasks .tasks-list .task-item .task-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: all 0.2s ease;
}

/* line 850, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-step-card .step-content .step-tasks .tasks-list .task-item .task-label.completed {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.5);
}

/* line 863, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-calendar-section .calendar-view-toggle {
  display: flex;
  gap: 8px;
}

/* line 867, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-calendar-section .calendar-view-toggle .view-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
}

/* line 877, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-calendar-section .calendar-view-toggle .view-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

/* line 882, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .project-calendar-section .calendar-view-toggle .view-btn.active {
  background: rgba(var(--primary-color-rgb), 0.2);
  border-color: rgba(var(--primary-color-rgb), 0.4);
  color: var(--primary-color);
}

/* line 893, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container #project-calendar .calendar-placeholder {
  text-align: center;
  padding: 40px 20px;
  color: rgba(255, 255, 255, 0.6);
}

/* line 899, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container #project-calendar .calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

/* line 905, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container #project-calendar .calendar-header .calendar-nav-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 10px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 914, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container #project-calendar .calendar-header .calendar-nav-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

/* line 920, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container #project-calendar .calendar-header .calendar-title {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  margin: 0;
  text-transform: capitalize;
}

/* line 930, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container #project-calendar .calendar-grid.month-view .calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  margin-bottom: 10px;
}

/* line 936, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container #project-calendar .calendar-grid.month-view .calendar-weekdays .weekday {
  text-align: center;
  padding: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  text-transform: uppercase;
}

/* line 946, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container #project-calendar .calendar-grid.month-view .calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
}

/* line 951, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container #project-calendar .calendar-grid.month-view .calendar-days .calendar-day {
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 8px;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* line 960, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container #project-calendar .calendar-grid.month-view .calendar-days .calendar-day.other-month {
  opacity: 0.3;
}

/* line 964, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container #project-calendar .calendar-grid.month-view .calendar-days .calendar-day.today {
  background: rgba(var(--primary-color-rgb), 0.1);
  border-color: rgba(var(--primary-color-rgb), 0.3);
}

/* line 969, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container #project-calendar .calendar-grid.month-view .calendar-days .calendar-day .day-number {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 4px;
}

/* line 976, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container #project-calendar .calendar-grid.month-view .calendar-days .calendar-day .day-steps {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* line 983, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container #project-calendar .calendar-grid.month-view .calendar-days .calendar-day .day-steps .step-marker .step-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #28a745;
}

/* line 990, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.status-todo .project-show-container #project-calendar .calendar-grid.month-view .calendar-days .calendar-day .day-steps .step-marker .step-dot {
  background: #6c757d;
}

/* line 994, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.status-on_going .project-show-container #project-calendar .calendar-grid.month-view .calendar-days .calendar-day .day-steps .step-marker .step-dot {
  background: #ffc107;
}

/* line 998, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.status-done .project-show-container #project-calendar .calendar-grid.month-view .calendar-days .calendar-day .day-steps .step-marker .step-dot {
  background: #28a745;
}

/* line 1010, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container #project-calendar .calendar-grid.week-view .week-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

/* line 1015, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container #project-calendar .calendar-grid.week-view .week-days .week-day {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 15px;
  min-height: 200px;
}

/* line 1022, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container #project-calendar .calendar-grid.week-view .week-days .week-day.today {
  background: rgba(var(--primary-color-rgb), 0.1);
  border-color: rgba(var(--primary-color-rgb), 0.3);
}

/* line 1027, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container #project-calendar .calendar-grid.week-view .week-days .week-day .week-day-header {
  text-align: center;
  margin-bottom: 15px;
}

/* line 1031, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container #project-calendar .calendar-grid.week-view .week-days .week-day .week-day-header .weekday-name {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  font-weight: 600;
}

/* line 1038, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container #project-calendar .calendar-grid.week-view .week-days .week-day .week-day-header .day-number {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  margin-top: 4px;
}

/* line 1047, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container #project-calendar .calendar-grid.week-view .week-days .week-day .week-day-steps .week-step-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 8px 10px;
  margin-bottom: 8px;
  border-left: 3px solid #28a745;
}

/* line 1054, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container #project-calendar .calendar-grid.week-view .week-days .week-day .week-day-steps .week-step-item.status-todo {
  border-left-color: #6c757d;
}

/* line 1058, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container #project-calendar .calendar-grid.week-view .week-days .week-day .week-day-steps .week-step-item.status-on_going {
  border-left-color: #ffc107;
}

/* line 1062, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container #project-calendar .calendar-grid.week-view .week-days .week-day .week-day-steps .week-step-item.status-done {
  border-left-color: #28a745;
}

/* line 1066, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container #project-calendar .calendar-grid.week-view .week-days .week-day .week-day-steps .week-step-item .step-time {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  font-weight: 600;
}

/* line 1073, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container #project-calendar .calendar-grid.week-view .week-days .week-day .week-day-steps .week-step-item .step-title {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2px;
  line-height: 1.3;
}

/* line 1087, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .crm-action-buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  justify-content: flex-start;
}

/* line 1093, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .crm-action-buttons .secondary-button,
.project-show-container .crm-action-buttons .primary-button,
.project-show-container .crm-action-buttons .danger-button {
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

/* line 1106, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .crm-action-buttons .secondary-button {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}

/* line 1111, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .crm-action-buttons .secondary-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* line 1116, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .crm-action-buttons .primary-button {
  background: var(--primary-color);
  color: white;
}

/* line 1120, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .crm-action-buttons .primary-button:hover {
  background: var(--primary-color-dark);
}

/* line 1125, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .crm-action-buttons .danger-button {
  background: #dc3545;
  color: white;
}

/* line 1129, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.project-show-container .crm-action-buttons .danger-button:hover {
  background: #c82333;
}

/* line 1135, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.add-btn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  margin: 0;
  margin-left: auto;
  outline: none;
}

@media (max-width: 768px) {
  /* line 1156, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
  .project-creation-container .step-form-row .step-form-fields {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  /* line 1160, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
  .project-creation-container .step-form-row .step-form-fields .step-actions {
    justify-content: center;
  }
  /* line 1165, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
  .project-creation-container .prospect-actions {
    flex-direction: column;
    align-items: stretch;
  }
  /* line 1169, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
  .project-creation-container .prospect-actions .form-button, .project-creation-container .prospect-actions .users-management-container .users-header .add-user-btn, .users-management-container .users-header .project-creation-container .prospect-actions .add-user-btn, .project-creation-container .prospect-actions .crm-action-button {
    text-align: center;
  }
}

/* line 1177, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.lightmode .project-creation-container {
  /* Largeurs prédéfinies pour la progress bar (CSP-friendly) */
}

/* line 1178, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.lightmode .project-creation-container .empty-steps-message {
  color: rgba(20, 13, 35, 0.6) !important;
}

/* line 1181, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.lightmode .project-creation-container .empty-steps-message p {
  color: #140D23 !important;
}

/* line 1186, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.lightmode .project-creation-container .form-control {
  background: #e8e8e8 !important;
  border: 1px solid rgba(20, 13, 35, 0.25) !important;
  color: #140D23 !important;
}

/* line 1192, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.lightmode .project-creation-container .add-btn {
  background: rgba(20, 13, 35, 0.05) !important;
  border: 1px solid rgba(20, 13, 35, 0.15) !important;
  color: #140D23 !important;
}

/* line 1197, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.lightmode .project-creation-container .add-btn:hover {
  background: rgba(195, 135, 97, 0.1) !important;
  border-color: rgba(195, 135, 97, 0.3) !important;
  color: #C38761 !important;
}

/* line 1203, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.lightmode .project-creation-container .project-show-page
.project-progress-section
.progress-bar-container
.progress-bar-fill {
  background: linear-gradient(90deg, #bc7892 0%, #28a745 100%) !important;
}

/* line 1211, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.lightmode .project-creation-container .project-progress-bar-fill.progress-0 {
  width: 0%;
}

/* line 1212, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.lightmode .project-creation-container .project-progress-bar-fill.progress-5 {
  width: 5%;
}

/* line 1213, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.lightmode .project-creation-container .project-progress-bar-fill.progress-10 {
  width: 10%;
}

/* line 1214, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.lightmode .project-creation-container .project-progress-bar-fill.progress-15 {
  width: 15%;
}

/* line 1215, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.lightmode .project-creation-container .project-progress-bar-fill.progress-20 {
  width: 20%;
}

/* line 1216, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.lightmode .project-creation-container .project-progress-bar-fill.progress-25 {
  width: 25%;
}

/* line 1217, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.lightmode .project-creation-container .project-progress-bar-fill.progress-30 {
  width: 30%;
}

/* line 1218, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.lightmode .project-creation-container .project-progress-bar-fill.progress-35 {
  width: 35%;
}

/* line 1219, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.lightmode .project-creation-container .project-progress-bar-fill.progress-40 {
  width: 40%;
}

/* line 1220, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.lightmode .project-creation-container .project-progress-bar-fill.progress-45 {
  width: 45%;
}

/* line 1221, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.lightmode .project-creation-container .project-progress-bar-fill.progress-50 {
  width: 50%;
}

/* line 1222, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.lightmode .project-creation-container .project-progress-bar-fill.progress-55 {
  width: 55%;
}

/* line 1223, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.lightmode .project-creation-container .project-progress-bar-fill.progress-60 {
  width: 60%;
}

/* line 1224, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.lightmode .project-creation-container .project-progress-bar-fill.progress-65 {
  width: 65%;
}

/* line 1225, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.lightmode .project-creation-container .project-progress-bar-fill.progress-70 {
  width: 70%;
}

/* line 1226, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.lightmode .project-creation-container .project-progress-bar-fill.progress-75 {
  width: 75%;
}

/* line 1227, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.lightmode .project-creation-container .project-progress-bar-fill.progress-80 {
  width: 80%;
}

/* line 1228, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.lightmode .project-creation-container .project-progress-bar-fill.progress-85 {
  width: 85%;
}

/* line 1229, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.lightmode .project-creation-container .project-progress-bar-fill.progress-90 {
  width: 90%;
}

/* line 1230, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.lightmode .project-creation-container .project-progress-bar-fill.progress-95 {
  width: 95%;
}

/* line 1231, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.lightmode .project-creation-container .project-progress-bar-fill.progress-100 {
  width: 100%;
}

/* line 1234, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.lightmode .project-creation-container .prospect-actions .form-button.btn-primary, .lightmode .project-creation-container .prospect-actions .users-management-container .users-header .btn-primary.add-user-btn, .users-management-container .users-header .lightmode .project-creation-container .prospect-actions .btn-primary.add-user-btn, .lightmode .project-creation-container .prospect-actions .btn-primary.crm-action-button, .lightmode .project-creation-container .prospect-actions .crm-action-button.crm-action-button-primary {
  background: #C38761 !important;
  border: 1px solid rgba(195, 135, 97, 0.3) !important;
  color: #140D23 !important;
}

/* line 1239, app/assets/stylesheets/pages/servicespace/commerce/gestion_de_projet/_index.scss */
.lightmode .project-creation-container .prospect-actions .form-button.btn-primary:hover, .lightmode .project-creation-container .prospect-actions .users-management-container .users-header .btn-primary.add-user-btn:hover, .users-management-container .users-header .lightmode .project-creation-container .prospect-actions .btn-primary.add-user-btn:hover, .lightmode .project-creation-container .prospect-actions .btn-primary.crm-action-button:hover, .lightmode .project-creation-container .prospect-actions .crm-action-button.crm-action-button-primary:hover {
  background: rgba(195, 135, 97, 0.9) !important;
  border-color: rgba(195, 135, 97, 0.5) !important;
}

/* line 2, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_community_board.scss */
.social-dashboard {
  width: 80%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding-left: 15px;
  padding-right: 15px;
  gap: 80px;
}

/* line 15, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_community_board.scss */
.social-dashboard-accounts {
  width: 100%;
}

/* line 20, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_community_board.scss */
.social-dashboard-accounts-connected {
  width: 100%;
}

/* line 25, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_community_board.scss */
.social-dashboard-accounts-followers {
  width: 100%;
}

/* line 30, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_community_board.scss */
.social-dashboard-campaigns {
  width: 100%;
}

/* line 35, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_community_board.scss */
.social-dashboard-posts {
  width: 100%;
}

/* ==========================================================================
   COMPTES RÉSEAUX SOCIAUX - Module Community Management
   Interface moderne pour la gestion des comptes connectés
   Respect du système dark/light mode de l'application
   ========================================================================== */
/* line 7, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.social-accounts-page {
  width: 100%;
  height: 100%;
  padding: 20px;
  overflow-y: auto;
}

/* line 14, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.social-accounts-container {
  max-width: 1200px;
  margin: 0 auto;
  color: #FFFFFF;
}

/* line 19, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.social-accounts-container.lightmode {
  color: #140D23;
}

/* ==========================================================================
   SECTION DES COMPTES CONNECTÉS
   ========================================================================== */
/* line 28, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.connected-accounts-section {
  margin-bottom: 40px;
}

/* line 31, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.connected-accounts-section .section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

/* line 37, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.connected-accounts-section .section-header .section-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #A60240 0%, #640127 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #FFFFFF;
}

/* line 49, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.connected-accounts-section .section-header .section-title {
  flex: 1;
}

/* line 52, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.connected-accounts-section .section-header .section-title h2, .connected-accounts-section .section-header .section-title .h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: #FFFFFF;
}

/* line 58, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.lightmode .connected-accounts-section .section-header .section-title h2, .lightmode .connected-accounts-section .section-header .section-title .h2 {
  color: #140D23;
}

/* line 63, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.connected-accounts-section .section-header .section-title .section-subtitle {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 2px;
}

/* line 70, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.connected-accounts-section .section-header .accounts-count {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* line 78, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.lightmode .connected-accounts-section .section-header .accounts-count {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.15);
}

/* ==========================================================================
   GRILLE DES COMPTES
   ========================================================================== */
/* line 90, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.accounts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

/* line 97, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.account-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* line 106, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.lightmode .account-card {
  background: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.12);
}

/* line 111, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.account-card:hover {
  transform: translateY(-2px);
  border-color: rgba(166, 2, 64, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

/* line 116, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.lightmode .account-card:hover {
  background: rgba(20, 13, 35, 0.06);
  border-color: rgba(166, 2, 64, 0.4);
}

/* line 123, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.account-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #A60240 0%, #E5A82E 100%);
}

/* line 133, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.account-card[data-provider='instagram']::before {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* line 144, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.account-card[data-provider='linkedin']::before {
  background: #0077b5;
}

/* line 148, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.account-card[data-provider='twitter']::before {
  background: #1da1f2;
}

/* line 152, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.account-card[data-provider='facebook']::before {
  background: #1877f2;
}

/* line 156, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.account-card[data-provider='youtube']::before {
  background: #ff0000;
}

/* line 160, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.account-card .account-header {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}

/* line 166, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.account-card .account-header .account-avatar {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

/* line 178, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.lightmode .account-card .account-header .account-avatar {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 184, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.account-card .account-header .account-avatar[data-provider='instagram'] {
  background: linear-gradient(45deg, rgba(240, 148, 51, 0.15), rgba(188, 24, 136, 0.15));
  color: #e1306c;
}

/* line 193, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.account-card .account-header .account-avatar[data-provider='linkedin'] {
  background: rgba(0, 119, 181, 0.15);
  color: #0077b5;
}

/* line 198, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.account-card .account-header .account-avatar[data-provider='twitter'] {
  background: rgba(29, 161, 242, 0.15);
  color: #1da1f2;
}

/* line 203, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.account-card .account-header .account-avatar[data-provider='facebook'] {
  background: rgba(24, 119, 242, 0.15);
  color: #1877f2;
}

/* line 208, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.account-card .account-header .account-avatar[data-provider='youtube'] {
  background: rgba(255, 0, 0, 0.15);
  color: #ff0000;
}

/* line 214, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.account-card .account-header .account-info {
  flex: 1;
  min-width: 0;
}

/* line 218, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.account-card .account-header .account-info .account-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: #FFFFFF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 227, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.lightmode .account-card .account-header .account-info .account-name {
  color: #140D23;
}

/* line 232, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.account-card .account-header .account-info .account-username {
  font-size: 0.9rem;
  opacity: 0.7;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 241, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.account-card .account-header .account-info .account-email {
  font-size: 0.8rem;
  opacity: 0.6;
  margin: 4px 0 0 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 252, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.account-card .account-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 260, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.lightmode .account-card .account-status {
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 264, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.account-card .account-status .status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* line 273, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.account-card .account-status .status-badge.badge-active {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* line 278, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.lightmode .account-card .account-status .status-badge.badge-active {
  background: rgba(16, 185, 129, 0.12);
}

/* line 282, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.account-card .account-status .status-badge.badge-active i {
  font-size: 0.7rem;
}

/* line 287, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.account-card .account-status .status-badge.badge-expired {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

/* line 292, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.lightmode .account-card .account-status .status-badge.badge-expired {
  background: rgba(245, 158, 11, 0.12);
}

/* line 296, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.account-card .account-status .status-badge.badge-expired i {
  font-size: 0.7rem;
}

/* line 303, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.account-card .account-actions {
  display: flex;
  gap: 8px;
}

/* line 307, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.account-card .account-actions .btn-action {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
}

/* line 322, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.account-card .account-actions .btn-action.btn-disconnect {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* line 327, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.lightmode .account-card .account-actions .btn-action.btn-disconnect {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.2);
}

/* line 332, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.account-card .account-actions .btn-action.btn-disconnect:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.4);
  transform: translateY(-1px);
}

/* État vide */
/* line 343, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.empty-state {
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px dashed rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 50px 30px;
  text-align: center;
}

/* line 350, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.lightmode .empty-state {
  background: rgba(20, 13, 35, 0.02);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 355, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.empty-state .empty-icon {
  font-size: 3rem;
  opacity: 0.4;
  margin-bottom: 15px;
}

/* line 361, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.empty-state .empty-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #FFFFFF;
}

/* line 367, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.lightmode .empty-state .empty-title {
  color: #140D23;
}

/* line 372, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.empty-state .empty-description {
  font-size: 0.95rem;
  opacity: 0.7;
  margin: 0;
}

/* ==========================================================================
   SECTION CONNEXION DE NOUVEAUX COMPTES
   ========================================================================== */
/* line 384, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.connect-accounts-section .section-header {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 12px;
}

/* line 390, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.connect-accounts-section .section-header .section-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #E5A82E 0%, #864B28 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #FFFFFF;
}

/* line 402, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.connect-accounts-section .section-header .section-title {
  display: flex;
  align-self: center;
  justify-content: center;
  margin: 0 !important;
}

/* line 407, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.connect-accounts-section .section-header .section-title h3, .connect-accounts-section .section-header .section-title .h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
  color: #FFFFFF;
}

/* line 413, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.lightmode .connect-accounts-section .section-header .section-title h3, .lightmode .connect-accounts-section .section-header .section-title .h3 {
  color: #140D23;
}

/* line 418, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.connect-accounts-section .section-header .section-title .section-subtitle {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* line 426, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}

/* line 432, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.provider-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

/* line 448, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.lightmode .provider-card {
  background: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.12);
}

/* line 453, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.provider-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(166, 2, 64, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* line 469, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.provider-card:hover {
  transform: translateY(-4px);
  border-color: rgba(166, 2, 64, 0.4);
}

/* line 473, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.provider-card:hover::before {
  opacity: 1;
}

/* line 477, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.provider-card:hover .provider-icon {
  transform: scale(1.1);
}

/* line 482, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.provider-card .provider-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

/* line 495, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.provider-card .provider-icon[data-provider='instagram'] {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #FFFFFF;
}

/* line 507, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.provider-card .provider-icon[data-provider='linkedin'] {
  background: #0077b5;
  color: #FFFFFF;
}

/* line 512, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.provider-card .provider-icon[data-provider='twitter'] {
  background: #1da1f2;
  color: #FFFFFF;
}

/* line 517, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.provider-card .provider-icon[data-provider='facebook'] {
  background: #1877f2;
  color: #FFFFFF;
}

/* line 522, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.provider-card .provider-icon[data-provider='youtube'] {
  background: #ff0000;
  color: #FFFFFF;
}

/* line 528, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.provider-card .provider-name {
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* line 536, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.lightmode .provider-card .provider-name {
  color: #140D23;
}

/* line 541, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.provider-card .provider-status {
  font-size: 0.8rem;
  opacity: 0.7;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* line 550, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.coming-soon-section {
  margin-top: 40px;
}

/* line 553, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.coming-soon-section providers-grid {
  opacity: 0.2;
  pointer-events: none;
}

/* line 558, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
.coming-soon-section coming-soon {
  cursor: none;
  opacity: 0.6;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
  /* line 569, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
  .accounts-grid {
    grid-template-columns: 1fr;
  }
  /* line 573, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
  .providers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* line 577, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
  .social-accounts-page {
    padding: 15px;
  }
  /* line 583, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
  .connected-accounts-section .section-header,
.connect-accounts-section .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  /* line 587, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
  .connected-accounts-section .section-header .accounts-count,
.connect-accounts-section .section-header .accounts-count {
    align-self: flex-start;
  }
}

@media (max-width: 576px) {
  /* line 595, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
  .providers-grid {
    grid-template-columns: 1fr;
  }
  /* line 601, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_accounts.scss */
  .account-card .account-header .account-avatar {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
}

/* ==========================================================================
   SOCIAL DASHBOARD - Tableau de bord des réseaux sociaux
   Design moderne avec support dark/light mode
   ========================================================================== */
/* ==========================================================================
   CONTAINER PRINCIPAL
   ========================================================================== */
/* line 18, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-dashboard-capsule {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 20px;
  overflow-y: auto;
  color: #FFFFFF;
  /* Scrollbar personnalisée */
}

/* line 28, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-dashboard-capsule.lightmode {
  color: #140D23;
}

/* line 33, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-dashboard-capsule::-webkit-scrollbar {
  width: 8px;
}

/* line 37, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-dashboard-capsule::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 42, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-dashboard-capsule::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 47, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-dashboard-capsule::-webkit-scrollbar-thumb:hover {
  background: #E5A82E;
}

/* ==========================================================================
   EN-TÊTE
   ========================================================================== */
/* line 56, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 15px;
}

@media (max-width: 768px) {
  /* line 56, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
  .social-dashboard-header {
    flex-direction: column;
    align-items: stretch;
  }
}

/* line 71, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-dashboard-title-section h2, .social-dashboard-title-section .h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: #FFFFFF;
}

/* line 77, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-dashboard-capsule.lightmode .social-dashboard-title-section h2, .social-dashboard-capsule.lightmode .social-dashboard-title-section .h2 {
  color: #140D23;
}

/* line 83, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-dashboard-subtitle {
  font-size: 0.95rem;
  opacity: 0.7;
  margin: 0;
}

/* line 89, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-last-update {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(195, 135, 97, 0.1);
  border: 1.5px solid rgba(195, 135, 97, 0.2);
  border-radius: 25px;
  color: #C38761;
  font-size: 0.9rem;
  font-weight: 500;
}

/* line 101, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-dashboard-capsule.lightmode .social-last-update {
  background: rgba(195, 135, 97, 0.08);
  border-color: rgba(195, 135, 97, 0.3);
  color: #af6c42;
}

/* line 107, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-last-update i {
  font-size: 1rem;
  opacity: 0.8;
}

/* line 112, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-last-update span {
  opacity: 0.9;
}

@media (max-width: 768px) {
  /* line 89, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
  .social-last-update {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   STATISTIQUES GLOBALES
   ========================================================================== */
/* line 126, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-global-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  /* line 126, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
  .social-global-stats {
    grid-template-columns: 1fr;
  }
}

/* line 137, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-stat-card {
  background: rgba(254, 254, 254, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}

/* line 147, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-dashboard-capsule.lightmode .social-stat-card {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 152, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* line 158, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-stat-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.8rem;
}

/* line 167, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.followers .social-stat-icon {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
}

/* line 172, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.engagement .social-stat-icon {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

/* line 177, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.impressions .social-stat-icon {
  background: rgba(168, 85, 247, 0.15);
  color: #a855f7;
}

/* line 182, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.accounts .social-stat-icon {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}

/* line 187, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.pages .social-stat-icon {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}

/* line 193, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-stat-content {
  flex: 1;
}

/* line 197, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-stat-label {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 5px;
}

/* line 203, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-stat-value {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #FFFFFF;
}

/* line 209, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-dashboard-capsule.lightmode .social-stat-value {
  color: #140D23;
}

/* ==========================================================================
   GRAPHIQUE PRINCIPAL
   ========================================================================== */
/* line 218, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-main-chart-section {
  background: rgba(254, 254, 254, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  min-height: 500px;
}

/* line 225, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-dashboard-capsule.lightmode .social-main-chart-section {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 231, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
}

/* line 239, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-chart-header h3, .social-chart-header .h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  color: #FFFFFF;
}

/* line 245, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-dashboard-capsule.lightmode .social-chart-header h3, .social-dashboard-capsule.lightmode .social-chart-header .h3 {
  color: #140D23;
}

@media (max-width: 768px) {
  /* line 231, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
  .social-chart-header {
    flex-direction: column;
    align-items: stretch;
  }
}

/* line 256, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-chart-wrapper {
  position: relative;
  height: 350px;
}

/* line 261, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-chart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  opacity: 0.6;
}

/* line 270, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-chart-empty i {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #C38761;
}

/* line 276, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-chart-empty p {
  font-size: 1.1rem;
  margin: 0 0 8px 0;
  color: #FFFFFF;
}

/* line 281, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-dashboard-capsule.lightmode .social-chart-empty p {
  color: #140D23;
}

/* line 286, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-chart-empty small, .social-chart-empty .small {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* ==========================================================================
   FILTRES DU GRAPHIQUE
   ========================================================================== */
/* line 296, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-chart-filters {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  /* line 296, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
  .social-chart-filters {
    width: 100%;
  }
}

/* line 307, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-filters-form {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  /* line 307, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
  .social-filters-form {
    width: 100%;
  }
}

/* line 318, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* line 323, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-filter-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #FFFFFF;
  opacity: 0.8;
}

/* line 332, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-dashboard-capsule.lightmode .social-filter-group label {
  color: #140D23;
}

/* line 336, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-filter-group label i {
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  /* line 318, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
  .social-filter-group {
    flex: 1;
    min-width: 200px;
  }
}

/* line 347, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-select {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 200px;
}

/* line 359, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-dashboard-capsule.lightmode .social-select {
  background: rgba(20, 13, 35, 0.04);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 365, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-select:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(195, 135, 97, 0.4);
}

/* line 369, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-dashboard-capsule.lightmode .social-select:hover {
  background: rgba(20, 13, 35, 0.08);
}

/* line 374, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-select:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 380, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-select option {
  background: #140D23;
  color: #FFFFFF;
  padding: 8px;
}

@media (max-width: 768px) {
  /* line 347, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
  .social-select {
    width: 100%;
    min-width: auto;
  }
}

/* line 392, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-filter-submit {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(195, 135, 97, 0.15);
  border: 1.5px solid rgba(195, 135, 97, 0.3);
  border-radius: 8px;
  color: #C38761;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
}

/* line 407, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-dashboard-capsule.lightmode .social-filter-submit {
  background: rgba(195, 135, 97, 0.1);
  border-color: rgba(195, 135, 97, 0.4);
}

/* line 412, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-filter-submit:hover {
  background: rgba(195, 135, 97, 0.25);
  border-color: #C38761;
  transform: translateY(-2px);
}

/* line 418, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-filter-submit i {
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  /* line 392, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
  .social-filter-submit {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   GRILLE DES COMPTES
   ========================================================================== */
/* line 432, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-accounts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 20px;
}

@media (max-width: 1400px) {
  /* line 432, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
  .social-accounts-grid {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  }
}

@media (max-width: 768px) {
  /* line 432, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
  .social-accounts-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   CARTE DE COMPTE
   ========================================================================== */
/* line 450, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-account-card {
  background: rgba(254, 254, 254, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: all 0.3s ease;
}

/* line 460, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-dashboard-capsule.lightmode .social-account-card {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 465, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-account-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-color: rgba(195, 135, 97, 0.4);
}

/* En-tête du compte */
/* line 473, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-account-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 480, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-dashboard-capsule.lightmode .social-account-header {
  border-bottom-color: rgba(20, 13, 35, 0.2);
}

/* line 485, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-account-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 491, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-account-provider-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.5rem;
}

/* line 500, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-account-provider-icon.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

/* line 512, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-account-provider-icon.facebook {
  background: #1877f2;
  color: white;
}

/* line 517, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-account-provider-icon.linkedin {
  background: #0077b5;
  color: white;
}

/* line 522, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-account-provider-icon.twitter {
  background: #1da1f2;
  color: white;
}

/* line 527, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-account-provider-icon.tiktok {
  background: #000000;
  color: white;
}

/* line 532, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-account-provider-icon.youtube {
  background: #ff0000;
  color: white;
}

/* line 538, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-account-details {
  flex: 1;
}

/* line 542, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-account-username {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 3px 0;
  color: #FFFFFF;
}

/* line 548, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-dashboard-capsule.lightmode .social-account-username {
  color: #140D23;
}

/* line 553, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-account-provider {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* line 558, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-account-actions {
  display: flex;
  gap: 8px;
}

/* line 563, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-action-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* line 577, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-dashboard-capsule.lightmode .social-action-btn {
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 582, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-action-btn:hover {
  background: rgba(195, 135, 97, 0.15);
  border-color: #C38761;
  color: #C38761;
  transform: scale(1.1);
}

/* line 589, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-action-btn.stats:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: #3b82f6;
  color: #3b82f6;
}

/* line 595, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-action-btn.refresh:hover {
  background: rgba(16, 185, 129, 0.15);
  border-color: #10b981;
  color: #10b981;
}

/* Métrique principale */
/* line 603, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-account-main-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
}

/* line 611, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-dashboard-capsule.lightmode .social-account-main-metric {
  background: rgba(20, 13, 35, 0.03);
}

/* line 616, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-metric-current {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

/* line 622, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-metric-value {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #FFFFFF;
}

/* line 628, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-dashboard-capsule.lightmode .social-metric-value {
  color: #140D23;
}

/* line 633, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-metric-label {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* line 638, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-metric-change {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* line 646, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-metric-change.positive {
  color: #10b981;
}

/* line 650, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-metric-change.negative {
  color: #ef4444;
}

/* line 654, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-metric-change i {
  font-size: 0.8rem;
}

/* line 659, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.change-value {
  font-size: 1.1rem;
}

/* line 663, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.change-percent {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Mini graphique */
/* line 669, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-account-mini-chart {
  height: 120px;
  position: relative;
  margin: 5px 0;
}

/* État sans données */
/* line 676, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-account-no-data {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  opacity: 0.6;
}

/* line 685, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-account-no-data i {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

/* line 690, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-account-no-data p {
  margin: 0;
  font-size: 0.9rem;
}

/* Grille des métriques supplémentaires */
/* line 697, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-account-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

/* line 703, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-metric-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

/* line 713, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-dashboard-capsule.lightmode .social-metric-item {
  background: rgba(20, 13, 35, 0.03);
}

/* line 717, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-metric-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(3px);
}

/* line 721, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-dashboard-capsule.lightmode .social-metric-item:hover {
  background: rgba(20, 13, 35, 0.06);
}

/* line 727, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-metric-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 0.9rem;
}

/* line 736, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.pink .social-metric-icon {
  background: rgba(236, 72, 153, 0.15);
  color: #ec4899;
}

/* line 741, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.blue .social-metric-icon {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
}

/* line 746, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.green .social-metric-icon {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}

/* line 751, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.purple .social-metric-icon {
  background: rgba(168, 85, 247, 0.15);
  color: #a855f7;
}

/* line 756, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.teal .social-metric-icon {
  background: rgba(20, 184, 166, 0.15);
  color: #14b8a6;
}

/* line 761, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.orange .social-metric-icon {
  background: rgba(249, 115, 22, 0.15);
  color: #f97316;
}

/* line 766, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.gold .social-metric-icon {
  background: rgba(195, 135, 97, 0.15);
  color: #C38761;
}

/* line 771, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.indigo .social-metric-icon {
  background: rgba(99, 102, 241, 0.15);
  color: #6366f1;
}

/* line 777, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-metric-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* line 784, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-metric-value-small {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  color: #FFFFFF;
}

/* line 790, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-dashboard-capsule.lightmode .social-metric-value-small {
  color: #140D23;
}

/* line 795, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-metric-label-small {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* line 800, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-no-metrics-message {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  opacity: 0.5;
  font-size: 0.85rem;
  text-align: center;
}

/* Pied de carte */
/* line 813, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-account-footer {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 817, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-dashboard-capsule.lightmode .social-account-footer {
  border-top-color: rgba(20, 13, 35, 0.2);
}

/* line 822, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-last-update {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* line 829, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-last-update i {
  font-size: 0.75rem;
}

/* ==========================================================================
   ÉTAT VIDE
   ========================================================================== */
/* line 838, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
  background: rgba(254, 254, 254, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
}

/* line 849, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-dashboard-capsule.lightmode .social-empty-state {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 855, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-empty-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(195, 135, 97, 0.1);
  margin-bottom: 20px;
}

/* line 865, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-empty-icon i {
  font-size: 3rem;
  color: #C38761;
}

/* line 871, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-empty-state h3, .social-empty-state .h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 10px 0;
  color: #FFFFFF;
}

/* line 877, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-dashboard-capsule.lightmode .social-empty-state h3, .social-dashboard-capsule.lightmode .social-empty-state .h3 {
  color: #140D23;
}

/* line 882, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-empty-state p {
  font-size: 1rem;
  opacity: 0.7;
  margin: 0 0 25px 0;
  max-width: 400px;
}

/* line 889, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-empty-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #C38761;
  color: white;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* line 902, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-empty-cta:hover {
  background: #E5A82E;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(195, 135, 97, 0.3);
  color: white;
}

/* line 909, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
.social-empty-cta i {
  font-size: 1.1rem;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1200px) {
  /* line 919, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
  .social-accounts-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
}

@media (max-width: 768px) {
  /* line 925, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
  .social-dashboard-capsule {
    padding: 15px;
  }
  /* line 929, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
  .social-dashboard-header {
    margin-bottom: 15px;
  }
  /* line 933, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
  .social-dashboard-title-section h2, .social-dashboard-title-section .h2 {
    font-size: 1.5rem;
  }
  /* line 937, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
  .social-global-stats {
    gap: 12px;
  }
  /* line 941, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
  .social-stat-card {
    padding: 15px;
  }
  /* line 945, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
  .social-stat-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  /* line 951, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
  .social-stat-value {
    font-size: 1.6rem;
  }
  /* line 955, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
  .social-main-chart-section {
    padding: 15px;
    min-height: 300px;
  }
  /* line 960, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
  .social-chart-wrapper {
    height: 250px;
  }
  /* line 964, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
  .social-account-card {
    padding: 15px;
  }
  /* line 968, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
  .social-account-metrics-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  /* line 974, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
  .social-dashboard-title-section h2, .social-dashboard-title-section .h2 {
    font-size: 1.3rem;
  }
  /* line 978, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
  .social-stat-value {
    font-size: 1.4rem;
  }
  /* line 982, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_social_dashboard.scss */
  .social-metric-value {
    font-size: 1.6rem;
  }
}

/* ==========================================================================
   CAMPAGNES RÉSEAUX SOCIAUX - Gestion des publications et campagnes
   Design moderne avec support dark/light mode
   ========================================================================== */
/* ==========================================================================
   CONTAINER PRINCIPAL
   ========================================================================== */
/* line 18, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaigns-page-capsule {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 20px;
  color: #FFFFFF;
}

/* line 27, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaigns-page-capsule.lightmode {
  color: #140D23;
}

/* ==========================================================================
   EN-TÊTE DE PAGE
   ========================================================================== */
/* line 36, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaigns-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 15px;
}

@media (max-width: 768px) {
  /* line 36, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
  .campaigns-header {
    flex-direction: column;
    align-items: stretch;
  }
}

/* line 51, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaigns-title-section h2, .campaigns-title-section .h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: #FFFFFF;
}

/* line 57, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaigns-page-capsule.lightmode .campaigns-title-section h2, .campaigns-page-capsule.lightmode .campaigns-title-section .h2 {
  color: #140D23;
}

/* line 63, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaigns-subtitle {
  font-size: 0.95rem;
  opacity: 0.7;
  margin: 0;
}

/* ==========================================================================
   ONGLETS PROVIDERS
   ========================================================================== */
/* line 73, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaigns-provider-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(254, 254, 254, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
}

/* line 83, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaigns-page-capsule.lightmode .campaigns-provider-tabs {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 89, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.provider-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* line 104, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaigns-page-capsule.lightmode .provider-tab {
  background: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 110, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.provider-tab i {
  font-size: 1.2rem;
}

/* line 114, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.provider-tab:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(195, 135, 97, 0.4);
  transform: translateY(-2px);
}

/* line 119, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaigns-page-capsule.lightmode .provider-tab:hover {
  background: rgba(20, 13, 35, 0.08);
}

/* line 124, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.provider-tab.active {
  background: rgba(195, 135, 97, 0.15);
  border-color: #C38761;
  color: #C38761;
  font-weight: 600;
}

/* line 130, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaigns-page-capsule.lightmode .provider-tab.active {
  background: rgba(195, 135, 97, 0.12);
}

/* line 137, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.provider-tab.instagram.active {
  background: linear-gradient(45deg, rgba(240, 148, 51, 0.15), rgba(188, 24, 136, 0.15));
  border-color: #e1306c;
  color: #e1306c;
}

/* line 145, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.provider-tab.facebook.active {
  background: rgba(24, 119, 242, 0.15);
  border-color: #1877f2;
  color: #1877f2;
}

/* line 153, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.provider-tab.linkedin.active {
  background: rgba(0, 119, 181, 0.15);
  border-color: #0077b5;
  color: #0077b5;
}

/* line 161, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.provider-tab.twitter.active {
  background: rgba(29, 161, 242, 0.15);
  border-color: #1da1f2;
  color: #1da1f2;
}

/* ==========================================================================
   SECTION NOUVELLE PUBLICATION
   ========================================================================== */
/* line 173, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.new-post-section {
  background: rgba(254, 254, 254, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: visible;
}

/* line 179, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaigns-page-capsule.lightmode .new-post-section {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 184, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.new-post-section .section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: rgba(166, 2, 64, 0.1);
  border-bottom: 1.5px solid rgba(166, 2, 64, 0.2);
}

/* line 192, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaigns-page-capsule.lightmode .new-post-section .section-header {
  background: rgba(166, 2, 64, 0.08);
  border-bottom-color: rgba(166, 2, 64, 0.15);
}

/* line 197, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.new-post-section .section-header h5, .new-post-section .section-header .h5 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* line 206, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaigns-page-capsule.lightmode .new-post-section .section-header h5, .campaigns-page-capsule.lightmode .new-post-section .section-header .h5 {
  color: #140D23;
}

/* line 210, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.new-post-section .section-header h5 i, .new-post-section .section-header .h5 i {
  font-size: 1.1rem;
  color: #A60240;
}

/* line 218, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.section-body {
  padding: 20px;
  overflow: visible;
}

/* ==========================================================================
   SECTION POSTS PROGRAMMÉS
   ========================================================================== */
/* line 229, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.scheduled-posts-section {
  background: rgba(254, 254, 254, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: visible;
}

/* line 235, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaigns-page-capsule.lightmode .scheduled-posts-section {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 240, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.scheduled-posts-section .section-header {
  padding: 20px;
  background: rgba(59, 130, 246, 0.1);
  border-bottom-color: rgba(59, 130, 246, 0.2);
}

/* line 245, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaigns-page-capsule.lightmode .scheduled-posts-section .section-header {
  background: rgba(59, 130, 246, 0.08);
  border-bottom-color: rgba(59, 130, 246, 0.15);
}

/* line 250, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.scheduled-posts-section .section-header h5 i, .scheduled-posts-section .section-header .h5 i {
  color: #3b82f6;
}

/* ==========================================================================
   SECTION CAMPAGNES ACTIVES
   ========================================================================== */
/* line 260, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.active-campaigns-section {
  background: rgba(254, 254, 254, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: visible;
}

/* line 266, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaigns-page-capsule.lightmode .active-campaigns-section {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 271, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.active-campaigns-section .section-header {
  padding: 20px;
  background: rgba(16, 185, 129, 0.1);
  border-bottom-color: rgba(16, 185, 129, 0.2);
}

/* line 276, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaigns-page-capsule.lightmode .active-campaigns-section .section-header {
  background: rgba(16, 185, 129, 0.08);
  border-bottom-color: rgba(16, 185, 129, 0.15);
}

/* line 281, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.active-campaigns-section .section-header h5 i, .active-campaigns-section .section-header .h5 i {
  color: #10b981;
}

/* line 287, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.new-campaign-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(195, 135, 97, 0.15);
  border: 1.5px solid rgba(195, 135, 97, 0.3);
  border-radius: 8px;
  color: #C38761;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* line 301, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaigns-page-capsule.lightmode .new-campaign-btn {
  background: rgba(195, 135, 97, 0.12);
  border-color: rgba(195, 135, 97, 0.4);
}

/* line 306, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.new-campaign-btn:hover {
  background: rgba(195, 135, 97, 0.25);
  border-color: #C38761;
  transform: translateY(-2px);
  color: #C38761;
}

/* line 313, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.new-campaign-btn i {
  font-size: 0.85rem;
}

/* ==========================================================================
   CARTE DE CAMPAGNE
   ========================================================================== */
/* line 322, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaign-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* line 330, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaigns-page-capsule.lightmode .campaign-card {
  background: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 335, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaign-card:hover {
  transform: translateY(-2px);
  border-color: rgba(195, 135, 97, 0.4);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* line 341, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaign-card:last-child {
  margin-bottom: 0;
}

/* line 346, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaign-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 354, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaigns-page-capsule.lightmode .campaign-card-header {
  background: rgba(20, 13, 35, 0.02);
  border-bottom-color: rgba(20, 13, 35, 0.2);
}

/* line 360, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaign-info {
  flex: 1;
}

/* line 363, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaign-info h6, .campaign-info .h6 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 5px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* line 372, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaigns-page-capsule.lightmode .campaign-info h6, .campaigns-page-capsule.lightmode .campaign-info .h6 {
  color: #140D23;
}

/* line 377, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaign-info .campaign-description {
  font-size: 0.85rem;
  opacity: 0.7;
  margin: 0;
}

/* line 384, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaign-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* line 393, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaign-status-badge.draft {
  background: rgba(156, 163, 175, 0.15);
  color: #9ca3af;
  border: 1px solid rgba(156, 163, 175, 0.3);
}

/* line 399, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaign-status-badge.scheduled {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

/* line 405, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaign-status-badge.active {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* line 411, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaign-status-badge.completed {
  background: rgba(99, 102, 241, 0.15);
  color: #6366f1;
  border: 1px solid rgba(99, 102, 241, 0.3);
}

/* line 417, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaign-status-badge.canceled {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* line 424, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaign-actions {
  display: flex;
  gap: 8px;
  margin-left: 15px;
}

/* line 430, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaign-action-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* line 445, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaigns-page-capsule.lightmode .campaign-action-btn {
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 450, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaign-action-btn:hover {
  background: rgba(195, 135, 97, 0.15);
  border-color: #C38761;
  color: #C38761;
  transform: translateY(-2px);
}

/* line 457, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaign-action-btn i {
  font-size: 0.8rem;
}

/* line 462, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaign-card-body {
  padding: 20px;
}

/* line 466, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaign-section-title {
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.7;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   LISTE DES POSTS
   ========================================================================== */
/* line 479, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.posts-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 485, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.post-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

/* line 495, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaigns-page-capsule.lightmode .post-item {
  background: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 500, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.post-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(195, 135, 97, 0.3);
  transform: translateX(5px);
}

/* line 505, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaigns-page-capsule.lightmode .post-item:hover {
  background: rgba(20, 13, 35, 0.06);
}

/* line 511, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.post-page-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 120px;
}

/* line 517, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.post-page-info .page-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* line 522, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaigns-page-capsule.lightmode .post-page-info .page-name {
  color: #140D23;
}

/* line 527, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.post-page-info .page-undefined {
  font-size: 0.85rem;
  opacity: 0.5;
  font-style: italic;
}

/* line 534, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.post-content {
  flex: 1;
  min-width: 0;
}

/* line 538, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.post-content .content-text {
  font-size: 0.9rem;
  color: #FFFFFF;
  margin: 0 0 5px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 546, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaigns-page-capsule.lightmode .post-content .content-text {
  color: #140D23;
}

/* line 551, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.post-content .content-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* line 558, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.post-content .content-meta i {
  font-size: 0.75rem;
}

/* line 564, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.post-schedule {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  min-width: 140px;
}

/* line 571, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.post-schedule .schedule-date {
  font-size: 0.85rem;
  font-weight: 500;
  color: #FFFFFF;
}

/* line 576, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaigns-page-capsule.lightmode .post-schedule .schedule-date {
  color: #140D23;
}

/* line 581, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.post-schedule .schedule-time {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* line 587, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.post-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

/* line 597, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.post-status-badge.draft {
  background: rgba(156, 163, 175, 0.15);
  color: #9ca3af;
}

/* line 602, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.post-status-badge.scheduled {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
}

/* line 607, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.post-status-badge.published {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}

/* line 612, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.post-status-badge.failed {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

/* line 618, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.post-actions {
  display: flex;
  gap: 6px;
}

/* line 623, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.post-action-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* line 637, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaigns-page-capsule.lightmode .post-action-btn {
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 642, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.post-action-btn i {
  font-size: 0.85rem;
}

/* line 646, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.post-action-btn:hover {
  transform: scale(1.1);
}

/* line 650, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.post-action-btn.edit:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: #3b82f6;
  color: #3b82f6;
}

/* line 656, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.post-action-btn.delete:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: #ef4444;
  color: #ef4444;
}

/* ==========================================================================
   ÉTAT VIDE
   ========================================================================== */
/* line 667, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
}

/* line 677, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaigns-page-capsule.lightmode .empty-state {
  background: rgba(20, 13, 35, 0.02);
}

/* line 681, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.empty-state i {
  font-size: 2.5rem;
  opacity: 0.4;
  margin-bottom: 15px;
  color: #C38761;
}

/* line 688, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.empty-state p {
  font-size: 0.95rem;
  opacity: 0.7;
  margin: 0;
}

/* line 694, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.empty-state .empty-hint {
  font-size: 0.85rem;
  opacity: 0.5;
  margin-top: 8px;
}

/* line 701, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.no-account-warning {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 60px 40px;
  background: rgba(239, 68, 68, 0.1);
  border: 1.5px solid rgba(239, 68, 68, 0.2);
  border-radius: 15px;
  text-align: center;
}

/* line 712, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaigns-page-capsule.lightmode .no-account-warning {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.15);
}

/* line 717, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.no-account-warning i {
  font-size: 3rem;
  color: #ef4444;
}

/* line 722, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.no-account-warning h5, .no-account-warning .h5 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  color: #FFFFFF;
}

/* line 728, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaigns-page-capsule.lightmode .no-account-warning h5, .campaigns-page-capsule.lightmode .no-account-warning .h5 {
  color: #140D23;
}

/* line 733, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.no-account-warning p {
  font-size: 1rem;
  opacity: 0.8;
  margin: 0;
  max-width: 500px;
}

/* line 740, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.no-account-warning .connect-account-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: #C38761;
  color: white;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* line 753, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.no-account-warning .connect-account-btn:hover {
  background: #E5A82E;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(195, 135, 97, 0.3);
  color: white;
}

/* ==========================================================================
   FORMULAIRES
   ========================================================================== */
/* line 766, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.form-group {
  margin-bottom: 20px;
}

/* line 769, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.95) !important;
}

/* line 776, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaigns-page-capsule.lightmode .form-group label {
  color: #140D23 !important;
}

/* line 781, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.form-group .form-control,
.form-group .form-select {
  width: 100%;
  max-width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #FFFFFF;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

/* line 794, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaigns-page-capsule.lightmode .form-group .form-control, .campaigns-page-capsule.lightmode .form-group .form-select {
  background: rgba(20, 13, 35, 0.04);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 800, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.form-group .form-control:focus,
.form-group .form-select:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

/* line 806, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaigns-page-capsule.lightmode .form-group .form-control:focus, .campaigns-page-capsule.lightmode .form-group .form-select:focus {
  background: rgba(20, 13, 35, 0.08);
}

/* line 811, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.form-group .form-control::placeholder,
.form-group .form-select::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* line 814, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaigns-page-capsule.lightmode .form-group .form-control::placeholder, .campaigns-page-capsule.lightmode .form-group .form-select::placeholder {
  color: rgba(20, 13, 35, 0.4);
}

/* line 820, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.form-group textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

/* line 825, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.form-group .form-text {
  display: block;
  font-size: 0.8rem;
  opacity: 0.6;
  margin-top: 6px;
}

/* line 832, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.form-group .publication-timing-options {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

/* line 838, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.form-group .publication-timing-options .timing-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #FFFFFF;
}

/* line 850, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaigns-page-capsule.lightmode .form-group .publication-timing-options .timing-option {
  background: rgba(20, 13, 35, 0.03);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 856, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.form-group .publication-timing-options .timing-option:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(195, 135, 97, 0.4);
}

/* line 860, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaigns-page-capsule.lightmode .form-group .publication-timing-options .timing-option:hover {
  background: rgba(20, 13, 35, 0.06);
}

/* line 865, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.form-group .publication-timing-options .timing-option input[type="radio"] {
  cursor: pointer;
  width: 18px;
  height: 18px;
  accent-color: #C38761;
}

/* line 871, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.form-group .publication-timing-options .timing-option input[type="radio"]:checked + span {
  font-weight: 600;
}

/* line 876, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.form-group .publication-timing-options .timing-option span {
  font-size: 0.9rem;
  user-select: none;
}

/* line 882, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.form-group .publication-timing-options .timing-option:has(input:checked) {
  background: rgba(195, 135, 97, 0.15);
  border-color: #C38761;
  color: #C38761;
}

/* line 887, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaigns-page-capsule.lightmode .form-group .publication-timing-options .timing-option:has(input:checked) {
  background: rgba(195, 135, 97, 0.12);
  color: #af6c42;
}

/* line 895, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.form-group #scheduled-at-field {
  transition: all 0.3s ease;
}

/* line 900, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 908, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaigns-page-capsule.lightmode .form-actions {
  border-top-color: rgba(20, 13, 35, 0.2);
}

/* line 913, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.btn-cancel {
  padding: 10px 20px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* line 925, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaigns-page-capsule.lightmode .btn-cancel {
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 930, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.btn-cancel:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(156, 163, 175, 0.4);
}

/* line 934, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.campaigns-page-capsule.lightmode .btn-cancel:hover {
  background: rgba(20, 13, 35, 0.05);
}

/* line 940, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.btn-submit {
  padding: 10px 24px;
  background: #C38761;
  border: 1.5px solid #C38761;
  border-radius: 8px;
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* line 952, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
.btn-submit:hover {
  background: #E5A82E;
  border-color: #E5A82E;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(195, 135, 97, 0.3);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  /* line 965, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
  .post-item {
    flex-wrap: wrap;
  }
  /* line 969, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
  .post-schedule {
    order: 1;
    width: 100%;
    align-items: flex-start;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  /* line 977, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
  .campaigns-page-capsule.lightmode .post-schedule {
    border-top-color: rgba(20, 13, 35, 0.2);
  }
}

@media (max-width: 768px) {
  /* line 984, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
  .campaigns-page-capsule {
    padding: 15px;
  }
  /* line 988, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
  .campaigns-header {
    margin-bottom: 15px;
  }
  /* line 992, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
  .campaigns-title-section h2, .campaigns-title-section .h2 {
    font-size: 1.5rem;
  }
  /* line 996, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
  .campaigns-provider-tabs {
    padding: 12px;
  }
  /* line 1000, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
  .provider-tab {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
  /* line 1005, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  /* line 1010, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
  .section-header h5, .section-header .h5 {
    font-size: 1.1rem;
  }
  /* line 1015, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
  .campaign-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  /* line 1021, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
  .campaign-actions {
    margin-left: 0;
    width: 100%;
  }
  /* line 1026, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
  .campaign-action-btn {
    flex: 1;
    justify-content: center;
  }
  /* line 1031, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
  .post-item {
    flex-direction: column;
    align-items: flex-start;
  }
  /* line 1036, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
  .post-page-info,
.post-schedule {
    min-width: 100%;
  }
  /* line 1041, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
  .post-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 480px) {
  /* line 1048, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
  .campaigns-title-section h2, .campaigns-title-section .h2 {
    font-size: 1.3rem;
  }
  /* line 1052, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
  .provider-tab {
    flex: 1;
    justify-content: center;
    min-width: calc(50% - 5px);
  }
  /* line 1058, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
  .form-actions {
    flex-direction: column;
  }
  /* line 1061, app/assets/stylesheets/pages/servicespace/commerce/reseaux_sociaux/_campaigns.scss */
  .form-actions .btn-cancel,
.form-actions .btn-submit {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   ADV BUTTONS - MODULE ADV
   Classes homogènes pour les boutons d'actions du module ADV
   ========================================================================== */
/* ==========================================================================
   CLASSE PRINCIPALE POUR TOUS LES BOUTONS ADV
   ========================================================================== */
/* line 9, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-button, .adv-button-regular, .adv-back-button, .adv-cancel-button, .adv-button-success, .adv-button-warning, .adv-button-disabled {
  padding: 12px 24px;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

/* line 24, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.lightmode .adv-button, .lightmode .adv-button-regular, .lightmode .adv-back-button, .lightmode .adv-cancel-button, .lightmode .adv-button-success, .lightmode .adv-button-warning, .lightmode .adv-button-disabled {
  border-color: rgba(20, 13, 35, 0.3);
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
}

/* line 30, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-button:hover, .adv-button-regular:hover, .adv-back-button:hover, .adv-cancel-button:hover, .adv-button-success:hover, .adv-button-warning:hover, .adv-button-disabled:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* line 35, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.lightmode .adv-button:hover, .lightmode .adv-button-regular:hover, .lightmode .adv-back-button:hover, .lightmode .adv-cancel-button:hover, .lightmode .adv-button-success:hover, .lightmode .adv-button-warning:hover, .lightmode .adv-button-disabled:hover {
  background-color: rgba(20, 13, 35, 0.2);
}

/* line 40, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-button:focus, .adv-button-regular:focus, .adv-back-button:focus, .adv-cancel-button:focus, .adv-button-success:focus, .adv-button-warning:focus, .adv-button-disabled:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.3);
}

/* line 45, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-button:disabled, .adv-button-regular:disabled, .adv-back-button:disabled, .adv-cancel-button:disabled, .adv-button-success:disabled, .adv-button-warning:disabled, .adv-button-disabled:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* line 50, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-button:disabled:hover, .adv-button-regular:disabled:hover, .adv-back-button:disabled:hover, .adv-cancel-button:disabled:hover, .adv-button-success:disabled:hover, .adv-button-warning:disabled:hover, .adv-button-disabled:disabled:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: none;
  box-shadow: none;
}

/* line 55, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.lightmode .adv-button:disabled:hover, .lightmode .adv-button-regular:disabled:hover, .lightmode .adv-back-button:disabled:hover, .lightmode .adv-cancel-button:disabled:hover, .lightmode .adv-button-success:disabled:hover, .lightmode .adv-button-warning:disabled:hover, .lightmode .adv-button-disabled:disabled:hover {
  background-color: rgba(20, 13, 35, 0.1);
}

/* ==========================================================================
   BOUTON RÉGULIER (PRINCIPAL) - Basé sur le bouton "Valider"
   ========================================================================== */
/* line 65, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-button-regular {
  background-color: #E5A82E;
  border-color: #C38761;
  color: #140D23;
}

/* line 71, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.lightmode .adv-button-regular {
  background-color: #c38761;
  border-color: #c38761;
  color: #140D23;
}

/* line 77, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-button-regular:hover {
  background-color: #af6c42;
  border-color: #af6c42;
  transform: translateY(-2px);
  color: #140D23;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* line 84, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.lightmode .adv-button-regular:hover {
  background-color: rgba(195, 135, 97, 0.9);
  border-color: rgba(195, 135, 97, 0.9);
  color: #140D23;
}

/* line 91, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-button-regular:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.3);
}

/* line 96, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-button-regular:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* line 101, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-button-regular:disabled:hover {
  background-color: #C38761;
  border-color: #C38761;
  transform: none;
  box-shadow: none;
}

/* ==========================================================================
   BOUTON RETOUR/SECONDAIRE - Basé sur le bouton "Créer un avoir complet"
   ========================================================================== */
/* line 113, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-back-button {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
}

/* line 119, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.lightmode .adv-back-button {
  background-color: rgba(20, 13, 35, 0.15);
  border-color: rgba(20, 13, 35, 0.4);
  color: #140D23;
}

/* line 125, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-back-button:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* line 131, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.lightmode .adv-back-button:hover {
  background-color: rgba(20, 13, 35, 0.25);
  color: #140D23;
}

/* line 137, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-back-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* line 141, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.lightmode .adv-back-button:focus {
  box-shadow: 0 0 0 3px rgba(20, 13, 35, 0.3);
}

/* line 146, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-back-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* line 151, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-back-button:disabled:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: none;
  box-shadow: none;
}

/* line 156, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.lightmode .adv-back-button:disabled:hover {
  background-color: rgba(20, 13, 35, 0.15);
}

/* ==========================================================================
   BOUTON ANNULER - Basé sur le bouton "Annuler"
   ========================================================================== */
/* line 166, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-cancel-button {
  background-color: rgba(220, 53, 69, 0.8);
  border-color: rgba(220, 53, 69, 0.8);
  color: white;
}

/* line 172, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.lightmode .adv-cancel-button {
  background-color: rgba(220, 53, 69, 0.8);
  border-color: rgba(220, 53, 69, 0.8);
  color: white;
}

/* line 178, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-cancel-button:hover {
  background-color: rgba(220, 53, 69, 0.9);
  border-color: rgba(220, 53, 69, 0.9);
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* line 185, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.lightmode .adv-cancel-button:hover {
  background-color: rgba(220, 53, 69, 0.7);
  border-color: rgba(220, 53, 69, 0.7);
  color: white;
}

/* line 192, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-cancel-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.3);
}

/* line 197, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-cancel-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* line 202, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-cancel-button:disabled:hover {
  background-color: rgba(220, 53, 69, 0.8);
  border-color: rgba(220, 53, 69, 0.8);
  transform: none;
  box-shadow: none;
}

/* ==========================================================================
   BOUTON SUCCESS - Pour actions de validation/paiement
   ========================================================================== */
/* line 214, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-button-success {
  background: linear-gradient(135deg, #10b981 0%, #22c55e 100%);
  border-color: #10b981;
  color: white;
  font-weight: 600;
}

/* line 221, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.lightmode .adv-button-success {
  background: linear-gradient(135deg, #10b981 0%, #22c55e 100%);
  border-color: #10b981;
  color: white;
}

/* line 228, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-button-success:not(:disabled):hover {
  background: linear-gradient(135deg, #0d9367 0%, #1ca24d 100%);
  border-color: #0d9367;
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

/* line 235, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.lightmode .adv-button-success:not(:disabled):hover {
  background: linear-gradient(135deg, #0d9367 0%, #1ca24d 100%);
  border-color: #0d9367;
  color: white;
}

/* line 241, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-button-success:not(:disabled):hover i {
  color: white !important;
  transform: scale(1.15);
}

/* line 247, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-button-success:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.3);
}

/* line 252, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-button-success:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* line 257, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-button-success:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* line 264, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-button-success:disabled:hover {
  background: linear-gradient(135deg, #10b981 0%, #22c55e 100%);
  border-color: #10b981;
  transform: none;
  box-shadow: none;
}

/* line 272, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-button-success i {
  color: white !important;
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}

/* ==========================================================================
   BOUTON WARNING - Pour actions nécessitant attention
   ========================================================================== */
/* line 282, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-button-warning {
  background: linear-gradient(135deg, #ff9800 0%, #ff6f00 100%);
  border-color: #ff9800;
  color: white;
}

/* line 288, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.lightmode .adv-button-warning {
  background: linear-gradient(135deg, #ff9800 0%, #ff6f00 100%);
  border-color: #ff9800;
  color: white;
}

/* line 294, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-button-warning:hover {
  background: linear-gradient(135deg, #ff6f00 0%, #ff5722 100%);
  border-color: #ff6f00;
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
}

/* line 301, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.lightmode .adv-button-warning:hover {
  background: linear-gradient(135deg, #ff6f00 0%, #ff5722 100%);
  border-color: #ff6f00;
  color: white;
}

/* line 308, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-button-warning:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.3);
}

/* line 313, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-button-warning:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* line 318, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-button-warning:disabled:hover {
  background: linear-gradient(135deg, #ff9800 0%, #ff6f00 100%);
  border-color: #ff9800;
  transform: none;
  box-shadow: none;
}

/* ==========================================================================
   VARIANTES DE TAILLE
   ========================================================================== */
/* line 330, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-button-small {
  padding: 8px 16px;
  font-size: 0.8rem;
  border-radius: 15px;
  height: fit-content;
  white-space: nowrap;
}

/* line 338, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-button-large {
  padding: 16px 32px;
  font-size: 1rem;
  border-radius: 15px;
}

/* ==========================================================================
   VARIANTES AVEC ICÔNES
   ========================================================================== */
/* line 348, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-button-with-icon i {
  font-size: 0.8rem;
}

/* line 352, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-button-with-icon.adv-button-small i {
  font-size: 0.7rem;
}

/* line 356, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-button-with-icon.adv-button-large i {
  font-size: 0.9rem;
}

/* ==========================================================================
   BOUTONS EN GROUPE
   ========================================================================== */
/* line 364, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-button-group {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* line 369, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-button-group.adv-button-group-vertical {
  flex-direction: column;
  align-items: stretch;
}

/* line 374, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-button-group.adv-button-group-centered {
  justify-content: center;
}

/* line 378, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-button-group.adv-button-group-end {
  justify-content: flex-end;
}

/* line 382, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-button-group.adv-button-group-space-between {
  justify-content: space-between;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 768px) {
  /* line 391, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
  .adv-button, .adv-button-regular, .adv-back-button, .adv-cancel-button, .adv-button-success, .adv-button-warning, .adv-button-disabled {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
  /* line 396, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
  .adv-button-small {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
  /* line 401, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
  .adv-button-large {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
  /* line 406, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
  .adv-button-group {
    flex-direction: column;
    gap: 8px;
  }
  /* line 410, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
  .adv-button-group.adv-button-group-vertical {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  /* line 417, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
  .adv-button, .adv-button-regular, .adv-back-button, .adv-cancel-button, .adv-button-success, .adv-button-warning, .adv-button-disabled {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
  /* line 422, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
  .adv-button-small {
    padding: 5px 10px;
    font-size: 0.7rem;
  }
  /* line 427, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
  .adv-button-large {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

/* ==========================================================================
   BOUTON DÉSACTIVÉ - Pour fonctionnalités nécessitant le mode Entreprise
   ========================================================================== */
/* line 436, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-button-disabled {
  background-color: rgba(128, 128, 128, 0.3);
  border-color: rgba(128, 128, 128, 0.5);
  color: rgba(255, 255, 255, 0.6);
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: none;
}

/* line 445, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.lightmode .adv-button-disabled {
  background-color: rgba(128, 128, 128, 0.2);
  border-color: rgba(128, 128, 128, 0.4);
  color: rgba(20, 13, 35, 0.5);
}

/* line 451, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-button-disabled:hover {
  background-color: rgba(128, 128, 128, 0.3);
  transform: none;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.6);
}

/* line 457, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.lightmode .adv-button-disabled:hover {
  background-color: rgba(128, 128, 128, 0.2);
  color: rgba(20, 13, 35, 0.5);
}

/* line 463, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.adv-button-disabled i {
  opacity: 0.6;
}

/* ==========================================================================
   MESSAGE D'AVERTISSEMENT MODE ENTREPRISE
   ========================================================================== */
/* line 471, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.business-mode-warning {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ff9800;
  font-size: 0.85rem;
  font-weight: 500;
}

/* line 479, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.business-mode-warning i {
  font-size: 0.9rem;
}

/* line 483, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.lightmode .business-mode-warning {
  color: #ff9800;
}

/* line 488, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.business-mode-warning--inline {
  margin-left: 10px;
  color: #ff9800;
  font-size: 0.85rem;
}

/* line 495, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_buttons.scss */
.business-mode-warning--block {
  margin-top: 8px;
}

/* ==========================================================================
   ADV ICON COLORS - HARMONISATION DES COULEURS DES PICTOGRAMMES
   Harmonise les couleurs des pictos avec le texte des boutons
   ========================================================================== */
/* ==========================================================================
   PICTOGRAMMES DE RECHERCHE - COULEUR DEEPBLUE
   ========================================================================== */
/* line 11, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_icon_colors.scss */
.adv-searchbar-container .search-button i {
  color: #140D23 !important;
  font-size: 0.8rem !important;
}

/* Styles spécifiques pour les boutons de recherche dans les listes */
/* line 27, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_icon_colors.scss */
.adv-category-list-search-button i,
.adv-customer-list-search-button i,
.adv-order-form-list-search-button i,
.adv-quote-list-search-button i,
.adv-client-acceptance-report-list-search-button i,
.adv-invoice-list-search-button i,
.adv-contract-list-search-button i,
.adv-sales-articles-list-search-button i {
  color: #140D23 !important;
}

/* Override pour forcer la couleur deepblue sur tous les pictos de recherche */
/* line 33, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_icon_colors.scss */
.adv-searchbar-container .search-button i,
.adv-category-list-capsule .search-button i,
.adv-customer-list-capsule .search-button i,
.adv-order-form-list-capsule .search-button i,
.adv-quote-list-capsule .search-button i,
.adv-client-acceptance-report-list-capsule .search-button i,
.adv-invoice-list-capsule .search-button i,
.adv-contract-list-capsule .search-button i,
.adv-sales-articles-list-capsule .search-button i {
  color: #140D23 !important;
}

/* ==========================================================================
   PICTOGRAMMES DANS LES BOUTONS ADV - HARMONISATION AVEC LE TEXTE
   ========================================================================== */
/* Boutons réguliers (adv-button-regular) - Texte deepblue */
/* line 51, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_icon_colors.scss */
.adv-button-regular i {
  color: #140D23 !important;
}

/* line 55, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_icon_colors.scss */
.adv-button-regular:hover i {
  color: #140D23 !important;
}

/* Boutons de retour (adv-back-button) - Texte deepblue en lightmode */
/* line 62, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_icon_colors.scss */
.adv-back-button i {
  color: white !important;
}

/* line 67, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_icon_colors.scss */
.lightmode .adv-back-button i {
  color: #140D23 !important;
}

/* line 72, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_icon_colors.scss */
.adv-back-button:hover i {
  color: white !important;
}

/* line 76, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_icon_colors.scss */
.lightmode .adv-back-button:hover i {
  color: #140D23 !important;
}

/* Boutons d'annulation (adv-cancel-button) - Texte blanc */
/* line 83, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_icon_colors.scss */
.adv-cancel-button i {
  color: white !important;
}

/* line 87, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_icon_colors.scss */
.adv-cancel-button:hover i {
  color: white !important;
}

/* ==========================================================================
   PICTOGRAMMES DANS LES BOUTONS D'ACTIONS - HARMONISATION AVEC LE TEXTE
   ========================================================================== */
/* Boutons d'actions primaires - Texte deepblue */
/* line 98, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_icon_colors.scss */
.adv-action-button.adv-action-button-primary i {
  color: #140D23 !important;
}

/* line 102, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_icon_colors.scss */
.adv-action-button.adv-action-button-primary:hover i {
  color: #140D23 !important;
}

/* Boutons d'actions secondaires - Texte blanc/deepblue selon le mode */
/* line 109, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_icon_colors.scss */
.adv-action-button.adv-action-button-secondary i {
  color: white !important;
}

/* line 114, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_icon_colors.scss */
.lightmode .adv-action-button.adv-action-button-secondary i {
  color: #140D23 !important;
}

/* line 119, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_icon_colors.scss */
.adv-action-button.adv-action-button-secondary:hover i {
  color: white !important;
}

/* line 123, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_icon_colors.scss */
.lightmode .adv-action-button.adv-action-button-secondary:hover i {
  color: #140D23 !important;
}

/* Boutons d'actions d'annulation - Texte blanc */
/* line 131, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_icon_colors.scss */
.adv-action-button.adv-action-button-cancel i,
.adv-action-button.adv-action-button-danger i {
  color: white !important;
}

/* line 135, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_icon_colors.scss */
.adv-action-button.adv-action-button-cancel:hover i,
.adv-action-button.adv-action-button-danger:hover i {
  color: white !important;
}

/* ==========================================================================
   PICTOGRAMMES DANS LES BOUTONS DE RECHERCHE - COULEUR DEEPBLUE
   ========================================================================== */
/* line 143, app/assets/stylesheets/pages/servicespace/commerce/../back-office/adv/_adv_icon_colors.scss */
.adv-searchbar-container .search-button i,
.adv-category-list-capsule .search-button i,
.adv-customer-list-capsule .search-button i,
.adv-order-form-list-capsule .search-button i,
.adv-quote-list-capsule .search-button i,
.adv-client-acceptance-report-list-capsule .search-button i,
.adv-invoice-list-capsule .search-button i,
.adv-contract-list-capsule .search-button i,
.adv-sales-articles-list-capsule .search-button i {
  color: #140D23 !important;
}

/* line 13, app/assets/stylesheets/pages/servicespace/_index.scss */
.services-general input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

/* line 17, app/assets/stylesheets/pages/servicespace/_index.scss */
.services-general input[type="number"]::-webkit-outer-spin-button, .services-general input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* line 3, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page {
  padding: 24px;
  margin: 0 auto;
  gap: 18px;
}

/* line 9, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .admin-page-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

/* line 17, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .admin-page-header .header-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(246, 229, 179, 0.2), rgba(255, 215, 0, 0.2));
  border: 2px solid rgba(246, 229, 179, 0.4);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #F6E5B3;
  flex-shrink: 0;
}

/* line 31, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .admin-page-header .header-content {
  flex: 1;
}

/* line 34, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .admin-page-header .header-content h1, .admin-theme-settings-page .admin-page-header .header-content .h1 {
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  margin: 0 0 4px 0;
}

/* line 41, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .admin-page-header .header-content .text-muted {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* line 50, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-settings-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 18px;
}

/* line 56, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 0;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* line 69, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
}

/* line 73, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card.disabled {
  opacity: 0.5;
  pointer-events: none;
  position: relative;
}

/* line 78, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card.disabled::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  z-index: 1;
}

/* line 91, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

/* line 96, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-header .setting-icon {
  width: 56px;
  height: 56px;
  background: rgba(246, 229, 179, 0.1);
  border: 1px solid rgba(246, 229, 179, 0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #F6E5B3;
  flex-shrink: 0;
}

/* line 109, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-header .setting-icon.lightmode-icon {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(246, 229, 179, 0.1));
}

/* line 113, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-header .setting-icon.colors-icon {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(156, 39, 176, 0.1));
  color: #9CA3FF;
}

/* line 118, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-header .setting-icon.logos-icon {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(139, 195, 74, 0.1));
  color: #8BC34A;
}

/* line 124, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-header .setting-info {
  flex: 1;
}

/* line 127, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-header .setting-info h3, .admin-theme-settings-page .theme-setting-card .setting-header .setting-info .h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  margin: 0 0 6px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 136, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-header .setting-info h3 .badge-coming-soon, .admin-theme-settings-page .theme-setting-card .setting-header .setting-info .h3 .badge-coming-soon {
  padding: 4px 12px;
  background: rgba(255, 152, 0, 0.2);
  border: 1px solid rgba(255, 152, 0, 0.3);
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #FF9800;
  text-transform: uppercase;
}

/* line 148, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-header .setting-info p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.5;
}

/* line 157, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-control {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* line 163, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-control .toggle-switch-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  gap: 16px;
}

/* line 172, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-control .toggle-switch-group .toggle-switch-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  opacity: 1;
}

/* line 180, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-control .toggle-switch-group .toggle-switch {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 10px;
}

/* line 187, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-control .toggle-switch-group .toggle-switch .toggle-checkbox {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

/* line 196, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-control .toggle-switch-group .toggle-switch .toggle-checkbox:checked + .toggle-label .toggle-slider {
  background: linear-gradient(135deg, #4caf50, #76d86b);
  box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.15);
}

/* line 200, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-control .toggle-switch-group .toggle-switch .toggle-checkbox:checked + .toggle-label .toggle-slider::before {
  transform: translateX(32px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

/* line 206, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-control .toggle-switch-group .toggle-switch .toggle-checkbox:focus-visible + .toggle-label .toggle-slider {
  outline: 2px solid rgba(246, 229, 179, 0.5);
  outline-offset: 2px;
}

/* line 212, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-control .toggle-switch-group .toggle-switch .toggle-label {
  position: relative;
  display: inline-block;
  width: 68px;
  height: 36px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

/* line 220, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-control .toggle-switch-group .toggle-switch .toggle-label:active {
  transform: scale(0.98);
}

/* line 224, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-control .toggle-switch-group .toggle-switch .toggle-label .toggle-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  border-radius: 36px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 235, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-control .toggle-switch-group .toggle-switch .toggle-label .toggle-slider::before {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  left: 3px;
  top: 3px;
  background: linear-gradient(135deg, #ffffff, #f1f1f1);
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* line 249, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-control .toggle-switch-group .toggle-switch .toggle-label:hover .toggle-slider {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.12));
  border-color: rgba(255, 255, 255, 0.35);
}

/* line 255, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-control .toggle-switch-group .toggle-switch .toggle-state {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  min-width: 34px;
  text-align: left;
  color: rgba(255, 255, 255, 0.7);
}

/* line 263, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-control .toggle-switch-group .toggle-switch .toggle-state::after {
  content: 'OFF';
}

/* line 268, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-control .toggle-switch-group .toggle-switch .toggle-checkbox:checked + .toggle-label + .toggle-state::after {
  content: 'ON';
  color: #a5f0a5;
}

/* line 276, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-control .default-theme-group {
  padding: 16px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
}

/* line 282, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-control .default-theme-group.disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* line 287, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-control .default-theme-group .form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
  display: block;
}

/* line 295, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-control .default-theme-group .theme-select {
  width: 100%;
  max-width: 260px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: white;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

/* line 306, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-control .default-theme-group .theme-select:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(246, 229, 179, 0.4);
  outline: none;
}

/* line 312, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-control .default-theme-group .theme-select option {
  background: #1A1A2E;
  color: white;
}

/* line 318, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-control .default-theme-group .form-text {
  display: block;
  margin-top: 6px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* line 327, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-control .color-pickers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

/* line 332, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-control .color-pickers-grid .color-picker-group {
  padding: 16px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}

/* line 337, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-control .color-pickers-grid .color-picker-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}

/* line 345, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-control .color-pickers-grid .color-picker-group .color-input {
  width: 100%;
  height: 50px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

/* line 352, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-control .color-pickers-grid .color-picker-group .color-input:hover:not(:disabled) {
  border-color: rgba(246, 229, 179, 0.4);
}

/* line 357, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-control .color-pickers-grid .color-picker-group small, .admin-theme-settings-page .theme-setting-card .setting-control .color-pickers-grid .color-picker-group .small {
  display: block;
  margin-top: 8px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: monospace;
}

/* line 368, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-control .logos-upload-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* line 373, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-control .logos-upload-grid .logo-upload-group {
  padding: 16px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}

/* line 378, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-control .logos-upload-grid .logo-upload-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}

/* line 386, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-control .logos-upload-grid .logo-upload-group .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: white;
  font-size: 0.85rem;
}

/* line 393, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-control .logos-upload-grid .logo-upload-group .form-control:hover:not(:disabled) {
  border-color: rgba(246, 229, 179, 0.4);
}

/* line 397, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-control .logos-upload-grid .logo-upload-group .form-control::file-selector-button {
  background: rgba(246, 229, 179, 0.2);
  border: none;
  color: #F6E5B3;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 407, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-control .logos-upload-grid .logo-upload-group .form-control::file-selector-button:hover {
  background: rgba(246, 229, 179, 0.3);
}

/* line 418, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-settings-footer {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px 22px;
  backdrop-filter: blur(10px);
}

/* line 425, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-settings-footer .footer-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

/* line 432, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-settings-footer .footer-actions .btn-reset {
  padding: 8px 16px;
  background: rgba(255, 68, 68, 0.15);
  border: 1px solid rgba(255, 68, 68, 0.3);
  border-radius: 10px;
  color: #FF4444;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 446, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-settings-footer .footer-actions .btn-reset:hover {
  background: rgba(255, 68, 68, 0.2);
  border-color: rgba(255, 68, 68, 0.45);
  transform: translateY(-1px);
}

/* line 453, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-settings-footer .footer-actions .btn-save {
  padding: 10px 20px;
  background: linear-gradient(135deg, #F6E5B3, #FFD700);
  border: none;
  border-radius: 10px;
  color: #1A1A2E;
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(246, 229, 179, 0.3);
}

/* line 464, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-settings-footer .footer-actions .btn-save:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(246, 229, 179, 0.45);
}

/* line 469, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-settings-footer .footer-actions .btn-save:active {
  transform: translateY(0);
}

/* line 475, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-settings-footer .footer-info {
  text-align: center;
}

/* line 478, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-settings-footer .footer-info small, .admin-theme-settings-page .theme-settings-footer .footer-info .small {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* line 486, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-settings-footer .footer-info small i, .admin-theme-settings-page .theme-settings-footer .footer-info .small i {
  color: #2196F3;
}

/* line 493, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-settings-footer {
  grid-column: 1 / -1;
}

@media (max-width: 768px) {
  /* line 500, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
  .admin-theme-settings-page {
    padding: 16px;
  }
  /* line 503, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
  .admin-theme-settings-page .admin-page-header {
    flex-direction: column;
    text-align: center;
  }
  /* line 507, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
  .admin-theme-settings-page .admin-page-header .header-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  /* line 513, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
  .admin-theme-settings-page .admin-page-header .header-content h1, .admin-theme-settings-page .admin-page-header .header-content .h1 {
    font-size: 1.5rem;
  }
  /* line 518, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
  .admin-theme-settings-page .theme-setting-card {
    padding: 20px;
  }
  /* line 521, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
  .admin-theme-settings-page .theme-setting-card .setting-header {
    flex-direction: column;
    text-align: center;
  }
  /* line 525, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
  .admin-theme-settings-page .theme-setting-card .setting-header .setting-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }
  /* line 532, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
  .admin-theme-settings-page .theme-setting-card .toggle-switch-group {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  /* line 539, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
  .admin-theme-settings-page .theme-settings-footer .footer-actions {
    flex-direction: column;
    gap: 10px;
  }
  /* line 543, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
  .admin-theme-settings-page .theme-settings-footer .footer-actions .btn-reset,
.admin-theme-settings-page .theme-settings-footer .footer-actions .btn-save {
    width: 100%;
    justify-content: center;
  }
}

/* line 553, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page {
  padding: 24px;
  gap: 18px;
}

/* line 558, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .admin-page-header {
  gap: 18px;
  margin-bottom: 12px;
  padding-bottom: 16px;
}

/* line 563, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .admin-page-header .header-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  font-size: 2rem;
}

/* line 570, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .admin-page-header .header-content h1, .admin-theme-settings-page .admin-page-header .header-content .h1 {
  font-size: 1.6rem;
  margin-bottom: 4px;
}

/* line 575, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .admin-page-header .header-content .text-muted {
  font-size: 0.9rem;
}

/* line 580, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-settings-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 18px;
}

/* line 586, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card {
  padding: 22px;
  border-radius: 18px;
  gap: 18px;
}

/* line 592, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-header {
  gap: 16px;
}

/* line 595, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-header .setting-icon {
  width: 56px;
  height: 56px;
  font-size: 1.6rem;
  border-radius: 14px;
}

/* line 602, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-header .setting-info h3, .admin-theme-settings-page .theme-setting-card .setting-header .setting-info .h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

/* line 607, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-header .setting-info p {
  font-size: 0.85rem;
}

/* line 612, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-control {
  gap: 16px;
}

/* line 615, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-control .toggle-switch-group {
  padding: 14px 18px;
}

/* line 619, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-control .default-theme-group {
  padding: 16px;
}

/* line 622, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-control .default-theme-group .form-label {
  font-size: 0.85rem;
  margin-bottom: 10px;
}

/* line 627, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-control .default-theme-group .theme-select {
  max-width: 260px;
  padding: 8px 14px;
}

/* line 632, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-setting-card .setting-control .default-theme-group .form-text {
  margin-top: 6px;
  font-size: 0.75rem;
}

/* line 639, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-settings-footer {
  padding: 18px 22px;
  border-radius: 18px;
}

/* line 643, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-settings-footer .footer-actions {
  gap: 12px;
  margin-bottom: 12px;
}

/* line 647, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-settings-footer .footer-actions .btn-reset {
  padding: 8px 16px;
  font-size: 0.85rem;
}

/* line 652, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-settings-footer .footer-actions .btn-save {
  padding: 10px 20px;
  font-size: 0.95rem;
}

/* line 658, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.admin-theme-settings-page .theme-settings-footer .footer-info small, .admin-theme-settings-page .theme-settings-footer .footer-info .small {
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  /* line 664, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
  .admin-theme-settings-page {
    padding: 16px;
  }
  /* line 668, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
  .admin-theme-settings-page .theme-settings-form {
    grid-template-columns: 1fr;
  }
  /* line 672, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
  .admin-theme-settings-page .theme-settings-footer .footer-actions {
    flex-direction: column;
  }
  /* line 675, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
  .admin-theme-settings-page .theme-settings-footer .footer-actions .btn-reset,
.admin-theme-settings-page .theme-settings-footer .footer-actions .btn-save {
    width: 100%;
    justify-content: center;
  }
}

/* line 684, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.mode-toggler {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
  margin: 0 5px;
  cursor: pointer;
}

/* line 692, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.mode-toggler input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* line 697, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.mode-toggler input:checked + .mode-slider {
  background-color: #e8b972;
}

/* line 701, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.mode-toggler input:checked + .mode-slider:before {
  transform: translateX(26px);
}

/* line 705, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.mode-toggler input:focus + .mode-slider {
  box-shadow: 0 0 1px #e8b972;
}

/* line 711, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.mode-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}

/* line 722, app/assets/stylesheets/pages/forge_the_web/_admin_theme_settings.scss */
.mode-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

/* line 6, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.services-details-menu .admin-menu-link {
  font-size: 0.7rem;
  width: 90%;
  margin-left: 10px;
}

/* line 15, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-dashboard-content,
.admin-users-content,
.admin-organizations-content,
.admin-platforms-content,
.admin-analytics-content,
.admin-observability-content,
.admin-agent-ia-content {
  padding: 1rem 0.5rem;
  max-width: 100% !important;
  width: 100% !important;
  box-sizing: border-box;
  overflow: visible;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* line 41, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
#admin-toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* line 52, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-toast {
  pointer-events: auto;
  animation: slideInRight 0.3s ease-out;
}

/* line 57, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1200;
}

/* line 66, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-modal-overlay .admin-modal {
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: none;
  border-radius: 12px;
  padding: 1.5rem;
  width: 90vw;
  max-width: 640px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* line 77, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-modal-overlay .admin-modal .admin-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

/* line 84, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-modal-overlay .admin-modal .admin-modal-header .admin-modal-title .admin-modal-mode {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin: 0 0 0.25rem 0;
}

/* line 90, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-modal-overlay .admin-modal .admin-modal-header .admin-modal-title h3, .admin-modal-overlay .admin-modal .admin-modal-header .admin-modal-title .h3 {
  margin: 0;
  color: #FFFFFF;
}

/* line 96, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-modal-overlay .admin-modal .admin-modal-header .admin-modal-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  font-size: 1.2rem;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

/* line 110, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-modal-overlay .admin-modal .admin-modal-header .admin-modal-close:hover {
  color: #C38761;
  background: rgba(255, 255, 255, 0.1);
}

/* line 117, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-modal-overlay .admin-modal .admin-modal-body {
  max-height: 70vh;
  overflow-y: auto;
  padding-right: 0.5rem;
}

/* line 123, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-modal-overlay .admin-modal .admin-modal-body::-webkit-scrollbar {
  width: 8px;
}

/* line 127, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-modal-overlay .admin-modal .admin-modal-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

/* line 132, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-modal-overlay .admin-modal .admin-modal-body::-webkit-scrollbar-thumb {
  background: rgba(195, 135, 97, 0.6);
  border-radius: 4px;
}

/* line 136, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-modal-overlay .admin-modal .admin-modal-body::-webkit-scrollbar-thumb:hover {
  background: rgba(195, 135, 97, 0.8);
}

/* line 141, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-modal-overlay .admin-modal .admin-modal-body .admin-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

/* line 147, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-modal-overlay .admin-modal .admin-modal-body .admin-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: #FFFFFF;
}

/* line 153, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-modal-overlay .admin-modal .admin-modal-body .admin-form-field span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

/* line 158, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-modal-overlay .admin-modal .admin-modal-body .admin-form-field input,
.admin-modal-overlay .admin-modal .admin-modal-body .admin-form-field select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(195, 135, 97, 0.4);
  border-radius: 8px;
  padding: 0.75rem;
  color: #FFFFFF;
  outline: none;
  transition: all 0.2s ease;
}

/* line 168, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-modal-overlay .admin-modal .admin-modal-body .admin-form-field input:focus,
.admin-modal-overlay .admin-modal .admin-modal-body .admin-form-field select:focus {
  border-color: rgba(195, 135, 97, 0.7);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.15);
}

/* line 176, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-modal-overlay .admin-modal .admin-modal-body .admin-form-field.readonly .admin-form-static {
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  min-height: 44px;
}

/* line 188, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-modal-overlay .admin-modal .admin-modal-feedback {
  margin-top: 0.75rem;
  color: #FFFFFF;
}

/* line 192, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-modal-overlay .admin-modal .admin-modal-feedback.error {
  color: #ff6b6b;
}

/* line 197, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-modal-overlay .admin-modal .admin-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1rem;
}

/* line 204, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-modal-overlay .admin-modal.confirm {
  width: 90vw;
  max-width: 520px;
}

/* line 209, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-modal-overlay .admin-modal.confirm .admin-modal-body p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1rem 0;
}

/* line 219, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-header {
  margin-bottom: 2rem;
}

/* line 222, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-header .admin-title {
  color: #FFFFFF;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* line 231, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-header .admin-title i {
  color: #E5A82E;
}

/* line 236, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-header .admin-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin: 0;
}

/* line 244, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}

/* line 250, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-stats-grid .stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

/* line 261, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-stats-grid .stat-card .stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #E5A82E, #140D23);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 270, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-stats-grid .stat-card .stat-icon i {
  color: #FFFFFF;
  font-size: 1.5rem;
}

/* line 277, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-stats-grid .stat-card .stat-content .stat-value {
  display: block;
  color: #FFFFFF;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

/* line 285, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-stats-grid .stat-card .stat-content .stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 297, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-quick-actions h3, .admin-quick-actions .h3 {
  color: #FFFFFF;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* line 303, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-quick-actions .quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* line 308, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-quick-actions .quick-actions-grid .quick-action-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1rem;
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

/* line 321, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-quick-actions .quick-actions-grid .quick-action-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #E5A82E;
  color: #E5A82E;
  text-decoration: none;
  transform: translateY(-2px);
}

/* line 329, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-quick-actions .quick-actions-grid .quick-action-btn i {
  font-size: 1.5rem;
}

/* line 333, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-quick-actions .quick-actions-grid .quick-action-btn span {
  font-size: 0.9rem;
  text-align: center;
}

/* line 342, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-tabs {
  width: 100%;
  margin-bottom: 2rem;
}

/* line 346, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-tabs .tab-navigation {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 355, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-tabs .tab-navigation .tab-button {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 370, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-tabs .tab-navigation .tab-button:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
}

/* line 375, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-tabs .tab-navigation .tab-button.active {
  background: rgba(246, 229, 179, 0.2);
  color: #F6E5B3;
  box-shadow: 0 0 5px rgba(246, 229, 179, 0.3);
  border: 1px solid rgba(246, 229, 179, 0.1);
}

/* line 381, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-tabs .tab-navigation .tab-button.active i {
  color: #F6E5B3;
}

/* line 386, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-tabs .tab-navigation .tab-button i {
  font-size: 0.9rem;
}

/* line 392, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-tabs .tab-content {
  position: relative;
}

/* line 395, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-tabs .tab-content .tab-panel {
  display: none;
}

/* line 398, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-tabs .tab-content .tab-panel.active {
  display: block;
}

/* line 406, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.badge {
  background: rgba(246, 229, 179, 0.2);
  color: #F6E5B3;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(246, 229, 179, 0.1);
}

/* line 417, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container,
.admin-users-content,
.admin-organizations-content,
.admin-platforms-content,
.admin-contact-requests-content {
  padding: 2rem;
  width: 100% !important;
  max-width: 100% !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  height: auto;
}

/* line 431, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .admin-card,
.admin-page-container .admin-table-container,
.admin-users-content .admin-card,
.admin-users-content .admin-table-container,
.admin-organizations-content .admin-card,
.admin-organizations-content .admin-table-container,
.admin-platforms-content .admin-card,
.admin-platforms-content .admin-table-container,
.admin-contact-requests-content .admin-card,
.admin-contact-requests-content .admin-table-container {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 1rem !important;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  transition: all 0.3s ease;
  padding: 0.75rem !important;
}

/* line 444, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .admin-card.is-expanded,
.admin-page-container .admin-table-container.is-expanded,
.admin-users-content .admin-card.is-expanded,
.admin-users-content .admin-table-container.is-expanded,
.admin-organizations-content .admin-card.is-expanded,
.admin-organizations-content .admin-table-container.is-expanded,
.admin-platforms-content .admin-card.is-expanded,
.admin-platforms-content .admin-table-container.is-expanded,
.admin-contact-requests-content .admin-card.is-expanded,
.admin-contact-requests-content .admin-table-container.is-expanded {
  border-color: rgba(195, 135, 97, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* line 448, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .admin-card.is-expanded .card-header,
.admin-page-container .admin-table-container.is-expanded .card-header,
.admin-users-content .admin-card.is-expanded .card-header,
.admin-users-content .admin-table-container.is-expanded .card-header,
.admin-organizations-content .admin-card.is-expanded .card-header,
.admin-organizations-content .admin-table-container.is-expanded .card-header,
.admin-platforms-content .admin-card.is-expanded .card-header,
.admin-platforms-content .admin-table-container.is-expanded .card-header,
.admin-contact-requests-content .admin-card.is-expanded .card-header,
.admin-contact-requests-content .admin-table-container.is-expanded .card-header {
  background: rgba(195, 135, 97, 0.1);
  border-bottom-color: rgba(195, 135, 97, 0.2);
}

/* line 454, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .admin-card .card-header,
.admin-page-container .admin-table-container .card-header,
.admin-users-content .admin-card .card-header,
.admin-users-content .admin-table-container .card-header,
.admin-organizations-content .admin-card .card-header,
.admin-organizations-content .admin-table-container .card-header,
.admin-platforms-content .admin-card .card-header,
.admin-platforms-content .admin-table-container .card-header,
.admin-contact-requests-content .admin-card .card-header,
.admin-contact-requests-content .admin-table-container .card-header {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
  margin-bottom: 0rem !important;
}

/* line 466, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .admin-card .card-header:hover,
.admin-page-container .admin-table-container .card-header:hover,
.admin-users-content .admin-card .card-header:hover,
.admin-users-content .admin-table-container .card-header:hover,
.admin-organizations-content .admin-card .card-header:hover,
.admin-organizations-content .admin-table-container .card-header:hover,
.admin-platforms-content .admin-card .card-header:hover,
.admin-platforms-content .admin-table-container .card-header:hover,
.admin-contact-requests-content .admin-card .card-header:hover,
.admin-contact-requests-content .admin-table-container .card-header:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* line 470, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .admin-card .card-header h3, .admin-page-container .admin-card .card-header .h3,
.admin-page-container .admin-table-container .card-header h3,
.admin-page-container .admin-table-container .card-header .h3,
.admin-users-content .admin-card .card-header h3,
.admin-users-content .admin-card .card-header .h3,
.admin-users-content .admin-table-container .card-header h3,
.admin-users-content .admin-table-container .card-header .h3,
.admin-organizations-content .admin-card .card-header h3,
.admin-organizations-content .admin-card .card-header .h3,
.admin-organizations-content .admin-table-container .card-header h3,
.admin-organizations-content .admin-table-container .card-header .h3,
.admin-platforms-content .admin-card .card-header h3,
.admin-platforms-content .admin-card .card-header .h3,
.admin-platforms-content .admin-table-container .card-header h3,
.admin-platforms-content .admin-table-container .card-header .h3,
.admin-contact-requests-content .admin-card .card-header h3,
.admin-contact-requests-content .admin-card .card-header .h3,
.admin-contact-requests-content .admin-table-container .card-header h3,
.admin-contact-requests-content .admin-table-container .card-header .h3 {
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* line 479, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .admin-card .card-header h3 i, .admin-page-container .admin-card .card-header .h3 i,
.admin-page-container .admin-table-container .card-header h3 i,
.admin-page-container .admin-table-container .card-header .h3 i,
.admin-users-content .admin-card .card-header h3 i,
.admin-users-content .admin-card .card-header .h3 i,
.admin-users-content .admin-table-container .card-header h3 i,
.admin-users-content .admin-table-container .card-header .h3 i,
.admin-organizations-content .admin-card .card-header h3 i,
.admin-organizations-content .admin-card .card-header .h3 i,
.admin-organizations-content .admin-table-container .card-header h3 i,
.admin-organizations-content .admin-table-container .card-header .h3 i,
.admin-platforms-content .admin-card .card-header h3 i,
.admin-platforms-content .admin-card .card-header .h3 i,
.admin-platforms-content .admin-table-container .card-header h3 i,
.admin-platforms-content .admin-table-container .card-header .h3 i,
.admin-contact-requests-content .admin-card .card-header h3 i,
.admin-contact-requests-content .admin-card .card-header .h3 i,
.admin-contact-requests-content .admin-table-container .card-header h3 i,
.admin-contact-requests-content .admin-table-container .card-header .h3 i {
  color: #ff6b35;
  font-size: 1.1rem;
}

/* line 485, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .admin-card .card-header .collapsible-icon,
.admin-page-container .admin-table-container .card-header .collapsible-icon,
.admin-users-content .admin-card .card-header .collapsible-icon,
.admin-users-content .admin-table-container .card-header .collapsible-icon,
.admin-organizations-content .admin-card .card-header .collapsible-icon,
.admin-organizations-content .admin-table-container .card-header .collapsible-icon,
.admin-platforms-content .admin-card .card-header .collapsible-icon,
.admin-platforms-content .admin-table-container .card-header .collapsible-icon,
.admin-contact-requests-content .admin-card .card-header .collapsible-icon,
.admin-contact-requests-content .admin-table-container .card-header .collapsible-icon {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  transition: all 0.3s ease;
}

/* line 490, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .admin-card .card-header .collapsible-icon:hover,
.admin-page-container .admin-table-container .card-header .collapsible-icon:hover,
.admin-users-content .admin-card .card-header .collapsible-icon:hover,
.admin-users-content .admin-table-container .card-header .collapsible-icon:hover,
.admin-organizations-content .admin-card .card-header .collapsible-icon:hover,
.admin-organizations-content .admin-table-container .card-header .collapsible-icon:hover,
.admin-platforms-content .admin-card .card-header .collapsible-icon:hover,
.admin-platforms-content .admin-table-container .card-header .collapsible-icon:hover,
.admin-contact-requests-content .admin-card .card-header .collapsible-icon:hover,
.admin-contact-requests-content .admin-table-container .card-header .collapsible-icon:hover {
  color: #C38761;
}

/* line 496, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .admin-card .card-content,
.admin-page-container .admin-table-container .card-content,
.admin-users-content .admin-card .card-content,
.admin-users-content .admin-table-container .card-content,
.admin-organizations-content .admin-card .card-content,
.admin-organizations-content .admin-table-container .card-content,
.admin-platforms-content .admin-card .card-content,
.admin-platforms-content .admin-table-container .card-content,
.admin-contact-requests-content .admin-card .card-content,
.admin-contact-requests-content .admin-table-container .card-content {
  padding: 0;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
  overflow: visible;
}

/* line 503, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .admin-card .card-content .admin-table-container,
.admin-page-container .admin-table-container .card-content .admin-table-container,
.admin-users-content .admin-card .card-content .admin-table-container,
.admin-users-content .admin-table-container .card-content .admin-table-container,
.admin-organizations-content .admin-card .card-content .admin-table-container,
.admin-organizations-content .admin-table-container .card-content .admin-table-container,
.admin-platforms-content .admin-card .card-content .admin-table-container,
.admin-platforms-content .admin-table-container .card-content .admin-table-container,
.admin-contact-requests-content .admin-card .card-content .admin-table-container,
.admin-contact-requests-content .admin-table-container .card-content .admin-table-container {
  padding: 0.75rem !important;
  max-height: calc(100vh - 300px);
  overflow-y: auto;
  overflow-x: auto;
}

/* line 510, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .admin-card .card-content .admin-table-container::-webkit-scrollbar,
.admin-page-container .admin-table-container .card-content .admin-table-container::-webkit-scrollbar,
.admin-users-content .admin-card .card-content .admin-table-container::-webkit-scrollbar,
.admin-users-content .admin-table-container .card-content .admin-table-container::-webkit-scrollbar,
.admin-organizations-content .admin-card .card-content .admin-table-container::-webkit-scrollbar,
.admin-organizations-content .admin-table-container .card-content .admin-table-container::-webkit-scrollbar,
.admin-platforms-content .admin-card .card-content .admin-table-container::-webkit-scrollbar,
.admin-platforms-content .admin-table-container .card-content .admin-table-container::-webkit-scrollbar,
.admin-contact-requests-content .admin-card .card-content .admin-table-container::-webkit-scrollbar,
.admin-contact-requests-content .admin-table-container .card-content .admin-table-container::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

/* line 515, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .admin-card .card-content .admin-table-container::-webkit-scrollbar-track,
.admin-page-container .admin-table-container .card-content .admin-table-container::-webkit-scrollbar-track,
.admin-users-content .admin-card .card-content .admin-table-container::-webkit-scrollbar-track,
.admin-users-content .admin-table-container .card-content .admin-table-container::-webkit-scrollbar-track,
.admin-organizations-content .admin-card .card-content .admin-table-container::-webkit-scrollbar-track,
.admin-organizations-content .admin-table-container .card-content .admin-table-container::-webkit-scrollbar-track,
.admin-platforms-content .admin-card .card-content .admin-table-container::-webkit-scrollbar-track,
.admin-platforms-content .admin-table-container .card-content .admin-table-container::-webkit-scrollbar-track,
.admin-contact-requests-content .admin-card .card-content .admin-table-container::-webkit-scrollbar-track,
.admin-contact-requests-content .admin-table-container .card-content .admin-table-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

/* line 520, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .admin-card .card-content .admin-table-container::-webkit-scrollbar-thumb,
.admin-page-container .admin-table-container .card-content .admin-table-container::-webkit-scrollbar-thumb,
.admin-users-content .admin-card .card-content .admin-table-container::-webkit-scrollbar-thumb,
.admin-users-content .admin-table-container .card-content .admin-table-container::-webkit-scrollbar-thumb,
.admin-organizations-content .admin-card .card-content .admin-table-container::-webkit-scrollbar-thumb,
.admin-organizations-content .admin-table-container .card-content .admin-table-container::-webkit-scrollbar-thumb,
.admin-platforms-content .admin-card .card-content .admin-table-container::-webkit-scrollbar-thumb,
.admin-platforms-content .admin-table-container .card-content .admin-table-container::-webkit-scrollbar-thumb,
.admin-contact-requests-content .admin-card .card-content .admin-table-container::-webkit-scrollbar-thumb,
.admin-contact-requests-content .admin-table-container .card-content .admin-table-container::-webkit-scrollbar-thumb {
  background: rgba(195, 135, 97, 0.6);
  border-radius: 4px;
}

/* line 524, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .admin-card .card-content .admin-table-container::-webkit-scrollbar-thumb:hover,
.admin-page-container .admin-table-container .card-content .admin-table-container::-webkit-scrollbar-thumb:hover,
.admin-users-content .admin-card .card-content .admin-table-container::-webkit-scrollbar-thumb:hover,
.admin-users-content .admin-table-container .card-content .admin-table-container::-webkit-scrollbar-thumb:hover,
.admin-organizations-content .admin-card .card-content .admin-table-container::-webkit-scrollbar-thumb:hover,
.admin-organizations-content .admin-table-container .card-content .admin-table-container::-webkit-scrollbar-thumb:hover,
.admin-platforms-content .admin-card .card-content .admin-table-container::-webkit-scrollbar-thumb:hover,
.admin-platforms-content .admin-table-container .card-content .admin-table-container::-webkit-scrollbar-thumb:hover,
.admin-contact-requests-content .admin-card .card-content .admin-table-container::-webkit-scrollbar-thumb:hover,
.admin-contact-requests-content .admin-table-container .card-content .admin-table-container::-webkit-scrollbar-thumb:hover {
  background: rgba(195, 135, 97, 0.8);
}

/* line 529, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .admin-card .card-content .admin-table-container::-webkit-scrollbar-corner,
.admin-page-container .admin-table-container .card-content .admin-table-container::-webkit-scrollbar-corner,
.admin-users-content .admin-card .card-content .admin-table-container::-webkit-scrollbar-corner,
.admin-users-content .admin-table-container .card-content .admin-table-container::-webkit-scrollbar-corner,
.admin-organizations-content .admin-card .card-content .admin-table-container::-webkit-scrollbar-corner,
.admin-organizations-content .admin-table-container .card-content .admin-table-container::-webkit-scrollbar-corner,
.admin-platforms-content .admin-card .card-content .admin-table-container::-webkit-scrollbar-corner,
.admin-platforms-content .admin-table-container .card-content .admin-table-container::-webkit-scrollbar-corner,
.admin-contact-requests-content .admin-card .card-content .admin-table-container::-webkit-scrollbar-corner,
.admin-contact-requests-content .admin-table-container .card-content .admin-table-container::-webkit-scrollbar-corner {
  background: rgba(255, 255, 255, 0.1);
}

/* line 534, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .admin-card .card-content p,
.admin-page-container .admin-table-container .card-content p,
.admin-users-content .admin-card .card-content p,
.admin-users-content .admin-table-container .card-content p,
.admin-organizations-content .admin-card .card-content p,
.admin-organizations-content .admin-table-container .card-content p,
.admin-platforms-content .admin-card .card-content p,
.admin-platforms-content .admin-table-container .card-content p,
.admin-contact-requests-content .admin-card .card-content p,
.admin-contact-requests-content .admin-table-container .card-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  padding: 1.5rem;
}

/* line 543, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .admin-card:not(:has(.card-header)),
.admin-page-container .admin-table-container:not(:has(.card-header)),
.admin-users-content .admin-card:not(:has(.card-header)),
.admin-users-content .admin-table-container:not(:has(.card-header)),
.admin-organizations-content .admin-card:not(:has(.card-header)),
.admin-organizations-content .admin-table-container:not(:has(.card-header)),
.admin-platforms-content .admin-card:not(:has(.card-header)),
.admin-platforms-content .admin-table-container:not(:has(.card-header)),
.admin-contact-requests-content .admin-card:not(:has(.card-header)),
.admin-contact-requests-content .admin-table-container:not(:has(.card-header)) {
  padding: 0.75rem !important;
}

/* line 552, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .admin-table-container .admin-table,
.admin-users-content .admin-table-container .admin-table,
.admin-organizations-content .admin-table-container .admin-table,
.admin-platforms-content .admin-table-container .admin-table,
.admin-contact-requests-content .admin-table-container .admin-table {
  width: 100%;
  border-collapse: collapse;
}

/* line 556, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .admin-table-container .admin-table thead,
.admin-users-content .admin-table-container .admin-table thead,
.admin-organizations-content .admin-table-container .admin-table thead,
.admin-platforms-content .admin-table-container .admin-table thead,
.admin-contact-requests-content .admin-table-container .admin-table thead {
  background: rgba(255, 255, 255, 0.1);
}

/* line 559, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .admin-table-container .admin-table thead th,
.admin-users-content .admin-table-container .admin-table thead th,
.admin-organizations-content .admin-table-container .admin-table thead th,
.admin-platforms-content .admin-table-container .admin-table thead th,
.admin-contact-requests-content .admin-table-container .admin-table thead th {
  color: #FFFFFF;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.8rem;
  border: none;
}

/* line 572, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .admin-table-container .admin-table tbody tr,
.admin-users-content .admin-table-container .admin-table tbody tr,
.admin-organizations-content .admin-table-container .admin-table tbody tr,
.admin-platforms-content .admin-table-container .admin-table tbody tr,
.admin-contact-requests-content .admin-table-container .admin-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

/* line 576, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .admin-table-container .admin-table tbody tr:hover,
.admin-users-content .admin-table-container .admin-table tbody tr:hover,
.admin-organizations-content .admin-table-container .admin-table tbody tr:hover,
.admin-platforms-content .admin-table-container .admin-table tbody tr:hover,
.admin-contact-requests-content .admin-table-container .admin-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

/* line 580, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .admin-table-container .admin-table tbody tr:last-child,
.admin-users-content .admin-table-container .admin-table tbody tr:last-child,
.admin-organizations-content .admin-table-container .admin-table tbody tr:last-child,
.admin-platforms-content .admin-table-container .admin-table tbody tr:last-child,
.admin-contact-requests-content .admin-table-container .admin-table tbody tr:last-child {
  border-bottom: none;
}

/* line 584, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .admin-table-container .admin-table tbody tr td,
.admin-users-content .admin-table-container .admin-table tbody tr td,
.admin-organizations-content .admin-table-container .admin-table tbody tr td,
.admin-platforms-content .admin-table-container .admin-table tbody tr td,
.admin-contact-requests-content .admin-table-container .admin-table tbody tr td {
  color: #FFFFFF;
  padding: 1rem;
  vertical-align: middle;
  font-weight: 400;
  font-size: 0.9rem;
}

/* line 597, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .metrics-grid,
.admin-page-container .voting-stats-grid,
.admin-users-content .metrics-grid,
.admin-users-content .voting-stats-grid,
.admin-organizations-content .metrics-grid,
.admin-organizations-content .voting-stats-grid,
.admin-platforms-content .metrics-grid,
.admin-platforms-content .voting-stats-grid,
.admin-contact-requests-content .metrics-grid,
.admin-contact-requests-content .voting-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* line 603, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .metrics-grid .metric-item,
.admin-page-container .metrics-grid .stat-item,
.admin-page-container .voting-stats-grid .metric-item,
.admin-page-container .voting-stats-grid .stat-item,
.admin-users-content .metrics-grid .metric-item,
.admin-users-content .metrics-grid .stat-item,
.admin-users-content .voting-stats-grid .metric-item,
.admin-users-content .voting-stats-grid .stat-item,
.admin-organizations-content .metrics-grid .metric-item,
.admin-organizations-content .metrics-grid .stat-item,
.admin-organizations-content .voting-stats-grid .metric-item,
.admin-organizations-content .voting-stats-grid .stat-item,
.admin-platforms-content .metrics-grid .metric-item,
.admin-platforms-content .metrics-grid .stat-item,
.admin-platforms-content .voting-stats-grid .metric-item,
.admin-platforms-content .voting-stats-grid .stat-item,
.admin-contact-requests-content .metrics-grid .metric-item,
.admin-contact-requests-content .metrics-grid .stat-item,
.admin-contact-requests-content .voting-stats-grid .metric-item,
.admin-contact-requests-content .voting-stats-grid .stat-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* line 613, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .metrics-grid .metric-item .metric-icon,
.admin-page-container .metrics-grid .metric-item .stat-icon,
.admin-page-container .metrics-grid .stat-item .metric-icon,
.admin-page-container .metrics-grid .stat-item .stat-icon,
.admin-page-container .voting-stats-grid .metric-item .metric-icon,
.admin-page-container .voting-stats-grid .metric-item .stat-icon,
.admin-page-container .voting-stats-grid .stat-item .metric-icon,
.admin-page-container .voting-stats-grid .stat-item .stat-icon,
.admin-users-content .metrics-grid .metric-item .metric-icon,
.admin-users-content .metrics-grid .metric-item .stat-icon,
.admin-users-content .metrics-grid .stat-item .metric-icon,
.admin-users-content .metrics-grid .stat-item .stat-icon,
.admin-users-content .voting-stats-grid .metric-item .metric-icon,
.admin-users-content .voting-stats-grid .metric-item .stat-icon,
.admin-users-content .voting-stats-grid .stat-item .metric-icon,
.admin-users-content .voting-stats-grid .stat-item .stat-icon,
.admin-organizations-content .metrics-grid .metric-item .metric-icon,
.admin-organizations-content .metrics-grid .metric-item .stat-icon,
.admin-organizations-content .metrics-grid .stat-item .metric-icon,
.admin-organizations-content .metrics-grid .stat-item .stat-icon,
.admin-organizations-content .voting-stats-grid .metric-item .metric-icon,
.admin-organizations-content .voting-stats-grid .metric-item .stat-icon,
.admin-organizations-content .voting-stats-grid .stat-item .metric-icon,
.admin-organizations-content .voting-stats-grid .stat-item .stat-icon,
.admin-platforms-content .metrics-grid .metric-item .metric-icon,
.admin-platforms-content .metrics-grid .metric-item .stat-icon,
.admin-platforms-content .metrics-grid .stat-item .metric-icon,
.admin-platforms-content .metrics-grid .stat-item .stat-icon,
.admin-platforms-content .voting-stats-grid .metric-item .metric-icon,
.admin-platforms-content .voting-stats-grid .metric-item .stat-icon,
.admin-platforms-content .voting-stats-grid .stat-item .metric-icon,
.admin-platforms-content .voting-stats-grid .stat-item .stat-icon,
.admin-contact-requests-content .metrics-grid .metric-item .metric-icon,
.admin-contact-requests-content .metrics-grid .metric-item .stat-icon,
.admin-contact-requests-content .metrics-grid .stat-item .metric-icon,
.admin-contact-requests-content .metrics-grid .stat-item .stat-icon,
.admin-contact-requests-content .voting-stats-grid .metric-item .metric-icon,
.admin-contact-requests-content .voting-stats-grid .metric-item .stat-icon,
.admin-contact-requests-content .voting-stats-grid .stat-item .metric-icon,
.admin-contact-requests-content .voting-stats-grid .stat-item .stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 622, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .metrics-grid .metric-item .metric-icon.success,
.admin-page-container .metrics-grid .metric-item .stat-icon.success,
.admin-page-container .metrics-grid .stat-item .metric-icon.success,
.admin-page-container .metrics-grid .stat-item .stat-icon.success,
.admin-page-container .voting-stats-grid .metric-item .metric-icon.success,
.admin-page-container .voting-stats-grid .metric-item .stat-icon.success,
.admin-page-container .voting-stats-grid .stat-item .metric-icon.success,
.admin-page-container .voting-stats-grid .stat-item .stat-icon.success,
.admin-users-content .metrics-grid .metric-item .metric-icon.success,
.admin-users-content .metrics-grid .metric-item .stat-icon.success,
.admin-users-content .metrics-grid .stat-item .metric-icon.success,
.admin-users-content .metrics-grid .stat-item .stat-icon.success,
.admin-users-content .voting-stats-grid .metric-item .metric-icon.success,
.admin-users-content .voting-stats-grid .metric-item .stat-icon.success,
.admin-users-content .voting-stats-grid .stat-item .metric-icon.success,
.admin-users-content .voting-stats-grid .stat-item .stat-icon.success,
.admin-organizations-content .metrics-grid .metric-item .metric-icon.success,
.admin-organizations-content .metrics-grid .metric-item .stat-icon.success,
.admin-organizations-content .metrics-grid .stat-item .metric-icon.success,
.admin-organizations-content .metrics-grid .stat-item .stat-icon.success,
.admin-organizations-content .voting-stats-grid .metric-item .metric-icon.success,
.admin-organizations-content .voting-stats-grid .metric-item .stat-icon.success,
.admin-organizations-content .voting-stats-grid .stat-item .metric-icon.success,
.admin-organizations-content .voting-stats-grid .stat-item .stat-icon.success,
.admin-platforms-content .metrics-grid .metric-item .metric-icon.success,
.admin-platforms-content .metrics-grid .metric-item .stat-icon.success,
.admin-platforms-content .metrics-grid .stat-item .metric-icon.success,
.admin-platforms-content .metrics-grid .stat-item .stat-icon.success,
.admin-platforms-content .voting-stats-grid .metric-item .metric-icon.success,
.admin-platforms-content .voting-stats-grid .metric-item .stat-icon.success,
.admin-platforms-content .voting-stats-grid .stat-item .metric-icon.success,
.admin-platforms-content .voting-stats-grid .stat-item .stat-icon.success,
.admin-contact-requests-content .metrics-grid .metric-item .metric-icon.success,
.admin-contact-requests-content .metrics-grid .metric-item .stat-icon.success,
.admin-contact-requests-content .metrics-grid .stat-item .metric-icon.success,
.admin-contact-requests-content .metrics-grid .stat-item .stat-icon.success,
.admin-contact-requests-content .voting-stats-grid .metric-item .metric-icon.success,
.admin-contact-requests-content .voting-stats-grid .metric-item .stat-icon.success,
.admin-contact-requests-content .voting-stats-grid .stat-item .metric-icon.success,
.admin-contact-requests-content .voting-stats-grid .stat-item .stat-icon.success {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

/* line 627, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .metrics-grid .metric-item .metric-icon.error,
.admin-page-container .metrics-grid .metric-item .stat-icon.error,
.admin-page-container .metrics-grid .stat-item .metric-icon.error,
.admin-page-container .metrics-grid .stat-item .stat-icon.error,
.admin-page-container .voting-stats-grid .metric-item .metric-icon.error,
.admin-page-container .voting-stats-grid .metric-item .stat-icon.error,
.admin-page-container .voting-stats-grid .stat-item .metric-icon.error,
.admin-page-container .voting-stats-grid .stat-item .stat-icon.error,
.admin-users-content .metrics-grid .metric-item .metric-icon.error,
.admin-users-content .metrics-grid .metric-item .stat-icon.error,
.admin-users-content .metrics-grid .stat-item .metric-icon.error,
.admin-users-content .metrics-grid .stat-item .stat-icon.error,
.admin-users-content .voting-stats-grid .metric-item .metric-icon.error,
.admin-users-content .voting-stats-grid .metric-item .stat-icon.error,
.admin-users-content .voting-stats-grid .stat-item .metric-icon.error,
.admin-users-content .voting-stats-grid .stat-item .stat-icon.error,
.admin-organizations-content .metrics-grid .metric-item .metric-icon.error,
.admin-organizations-content .metrics-grid .metric-item .stat-icon.error,
.admin-organizations-content .metrics-grid .stat-item .metric-icon.error,
.admin-organizations-content .metrics-grid .stat-item .stat-icon.error,
.admin-organizations-content .voting-stats-grid .metric-item .metric-icon.error,
.admin-organizations-content .voting-stats-grid .metric-item .stat-icon.error,
.admin-organizations-content .voting-stats-grid .stat-item .metric-icon.error,
.admin-organizations-content .voting-stats-grid .stat-item .stat-icon.error,
.admin-platforms-content .metrics-grid .metric-item .metric-icon.error,
.admin-platforms-content .metrics-grid .metric-item .stat-icon.error,
.admin-platforms-content .metrics-grid .stat-item .metric-icon.error,
.admin-platforms-content .metrics-grid .stat-item .stat-icon.error,
.admin-platforms-content .voting-stats-grid .metric-item .metric-icon.error,
.admin-platforms-content .voting-stats-grid .metric-item .stat-icon.error,
.admin-platforms-content .voting-stats-grid .stat-item .metric-icon.error,
.admin-platforms-content .voting-stats-grid .stat-item .stat-icon.error,
.admin-contact-requests-content .metrics-grid .metric-item .metric-icon.error,
.admin-contact-requests-content .metrics-grid .metric-item .stat-icon.error,
.admin-contact-requests-content .metrics-grid .stat-item .metric-icon.error,
.admin-contact-requests-content .metrics-grid .stat-item .stat-icon.error,
.admin-contact-requests-content .voting-stats-grid .metric-item .metric-icon.error,
.admin-contact-requests-content .voting-stats-grid .metric-item .stat-icon.error,
.admin-contact-requests-content .voting-stats-grid .stat-item .metric-icon.error,
.admin-contact-requests-content .voting-stats-grid .stat-item .stat-icon.error {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

/* line 632, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .metrics-grid .metric-item .metric-icon.warning,
.admin-page-container .metrics-grid .metric-item .stat-icon.warning,
.admin-page-container .metrics-grid .stat-item .metric-icon.warning,
.admin-page-container .metrics-grid .stat-item .stat-icon.warning,
.admin-page-container .voting-stats-grid .metric-item .metric-icon.warning,
.admin-page-container .voting-stats-grid .metric-item .stat-icon.warning,
.admin-page-container .voting-stats-grid .stat-item .metric-icon.warning,
.admin-page-container .voting-stats-grid .stat-item .stat-icon.warning,
.admin-users-content .metrics-grid .metric-item .metric-icon.warning,
.admin-users-content .metrics-grid .metric-item .stat-icon.warning,
.admin-users-content .metrics-grid .stat-item .metric-icon.warning,
.admin-users-content .metrics-grid .stat-item .stat-icon.warning,
.admin-users-content .voting-stats-grid .metric-item .metric-icon.warning,
.admin-users-content .voting-stats-grid .metric-item .stat-icon.warning,
.admin-users-content .voting-stats-grid .stat-item .metric-icon.warning,
.admin-users-content .voting-stats-grid .stat-item .stat-icon.warning,
.admin-organizations-content .metrics-grid .metric-item .metric-icon.warning,
.admin-organizations-content .metrics-grid .metric-item .stat-icon.warning,
.admin-organizations-content .metrics-grid .stat-item .metric-icon.warning,
.admin-organizations-content .metrics-grid .stat-item .stat-icon.warning,
.admin-organizations-content .voting-stats-grid .metric-item .metric-icon.warning,
.admin-organizations-content .voting-stats-grid .metric-item .stat-icon.warning,
.admin-organizations-content .voting-stats-grid .stat-item .metric-icon.warning,
.admin-organizations-content .voting-stats-grid .stat-item .stat-icon.warning,
.admin-platforms-content .metrics-grid .metric-item .metric-icon.warning,
.admin-platforms-content .metrics-grid .metric-item .stat-icon.warning,
.admin-platforms-content .metrics-grid .stat-item .metric-icon.warning,
.admin-platforms-content .metrics-grid .stat-item .stat-icon.warning,
.admin-platforms-content .voting-stats-grid .metric-item .metric-icon.warning,
.admin-platforms-content .voting-stats-grid .metric-item .stat-icon.warning,
.admin-platforms-content .voting-stats-grid .stat-item .metric-icon.warning,
.admin-platforms-content .voting-stats-grid .stat-item .stat-icon.warning,
.admin-contact-requests-content .metrics-grid .metric-item .metric-icon.warning,
.admin-contact-requests-content .metrics-grid .metric-item .stat-icon.warning,
.admin-contact-requests-content .metrics-grid .stat-item .metric-icon.warning,
.admin-contact-requests-content .metrics-grid .stat-item .stat-icon.warning,
.admin-contact-requests-content .voting-stats-grid .metric-item .metric-icon.warning,
.admin-contact-requests-content .voting-stats-grid .metric-item .stat-icon.warning,
.admin-contact-requests-content .voting-stats-grid .stat-item .metric-icon.warning,
.admin-contact-requests-content .voting-stats-grid .stat-item .stat-icon.warning {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

/* line 637, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .metrics-grid .metric-item .metric-icon i,
.admin-page-container .metrics-grid .metric-item .stat-icon i,
.admin-page-container .metrics-grid .stat-item .metric-icon i,
.admin-page-container .metrics-grid .stat-item .stat-icon i,
.admin-page-container .voting-stats-grid .metric-item .metric-icon i,
.admin-page-container .voting-stats-grid .metric-item .stat-icon i,
.admin-page-container .voting-stats-grid .stat-item .metric-icon i,
.admin-page-container .voting-stats-grid .stat-item .stat-icon i,
.admin-users-content .metrics-grid .metric-item .metric-icon i,
.admin-users-content .metrics-grid .metric-item .stat-icon i,
.admin-users-content .metrics-grid .stat-item .metric-icon i,
.admin-users-content .metrics-grid .stat-item .stat-icon i,
.admin-users-content .voting-stats-grid .metric-item .metric-icon i,
.admin-users-content .voting-stats-grid .metric-item .stat-icon i,
.admin-users-content .voting-stats-grid .stat-item .metric-icon i,
.admin-users-content .voting-stats-grid .stat-item .stat-icon i,
.admin-organizations-content .metrics-grid .metric-item .metric-icon i,
.admin-organizations-content .metrics-grid .metric-item .stat-icon i,
.admin-organizations-content .metrics-grid .stat-item .metric-icon i,
.admin-organizations-content .metrics-grid .stat-item .stat-icon i,
.admin-organizations-content .voting-stats-grid .metric-item .metric-icon i,
.admin-organizations-content .voting-stats-grid .metric-item .stat-icon i,
.admin-organizations-content .voting-stats-grid .stat-item .metric-icon i,
.admin-organizations-content .voting-stats-grid .stat-item .stat-icon i,
.admin-platforms-content .metrics-grid .metric-item .metric-icon i,
.admin-platforms-content .metrics-grid .metric-item .stat-icon i,
.admin-platforms-content .metrics-grid .stat-item .metric-icon i,
.admin-platforms-content .metrics-grid .stat-item .stat-icon i,
.admin-platforms-content .voting-stats-grid .metric-item .metric-icon i,
.admin-platforms-content .voting-stats-grid .metric-item .stat-icon i,
.admin-platforms-content .voting-stats-grid .stat-item .metric-icon i,
.admin-platforms-content .voting-stats-grid .stat-item .stat-icon i,
.admin-contact-requests-content .metrics-grid .metric-item .metric-icon i,
.admin-contact-requests-content .metrics-grid .metric-item .stat-icon i,
.admin-contact-requests-content .metrics-grid .stat-item .metric-icon i,
.admin-contact-requests-content .metrics-grid .stat-item .stat-icon i,
.admin-contact-requests-content .voting-stats-grid .metric-item .metric-icon i,
.admin-contact-requests-content .voting-stats-grid .metric-item .stat-icon i,
.admin-contact-requests-content .voting-stats-grid .stat-item .metric-icon i,
.admin-contact-requests-content .voting-stats-grid .stat-item .stat-icon i {
  font-size: 1.1rem;
}

/* line 642, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .metrics-grid .metric-item .metric-info,
.admin-page-container .metrics-grid .metric-item .stat-info,
.admin-page-container .metrics-grid .stat-item .metric-info,
.admin-page-container .metrics-grid .stat-item .stat-info,
.admin-page-container .voting-stats-grid .metric-item .metric-info,
.admin-page-container .voting-stats-grid .metric-item .stat-info,
.admin-page-container .voting-stats-grid .stat-item .metric-info,
.admin-page-container .voting-stats-grid .stat-item .stat-info,
.admin-users-content .metrics-grid .metric-item .metric-info,
.admin-users-content .metrics-grid .metric-item .stat-info,
.admin-users-content .metrics-grid .stat-item .metric-info,
.admin-users-content .metrics-grid .stat-item .stat-info,
.admin-users-content .voting-stats-grid .metric-item .metric-info,
.admin-users-content .voting-stats-grid .metric-item .stat-info,
.admin-users-content .voting-stats-grid .stat-item .metric-info,
.admin-users-content .voting-stats-grid .stat-item .stat-info,
.admin-organizations-content .metrics-grid .metric-item .metric-info,
.admin-organizations-content .metrics-grid .metric-item .stat-info,
.admin-organizations-content .metrics-grid .stat-item .metric-info,
.admin-organizations-content .metrics-grid .stat-item .stat-info,
.admin-organizations-content .voting-stats-grid .metric-item .metric-info,
.admin-organizations-content .voting-stats-grid .metric-item .stat-info,
.admin-organizations-content .voting-stats-grid .stat-item .metric-info,
.admin-organizations-content .voting-stats-grid .stat-item .stat-info,
.admin-platforms-content .metrics-grid .metric-item .metric-info,
.admin-platforms-content .metrics-grid .metric-item .stat-info,
.admin-platforms-content .metrics-grid .stat-item .metric-info,
.admin-platforms-content .metrics-grid .stat-item .stat-info,
.admin-platforms-content .voting-stats-grid .metric-item .metric-info,
.admin-platforms-content .voting-stats-grid .metric-item .stat-info,
.admin-platforms-content .voting-stats-grid .stat-item .metric-info,
.admin-platforms-content .voting-stats-grid .stat-item .stat-info,
.admin-contact-requests-content .metrics-grid .metric-item .metric-info,
.admin-contact-requests-content .metrics-grid .metric-item .stat-info,
.admin-contact-requests-content .metrics-grid .stat-item .metric-info,
.admin-contact-requests-content .metrics-grid .stat-item .stat-info,
.admin-contact-requests-content .voting-stats-grid .metric-item .metric-info,
.admin-contact-requests-content .voting-stats-grid .metric-item .stat-info,
.admin-contact-requests-content .voting-stats-grid .stat-item .metric-info,
.admin-contact-requests-content .voting-stats-grid .stat-item .stat-info {
  flex: 1;
}

/* line 646, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .metrics-grid .metric-item .metric-info .metric-value,
.admin-page-container .metrics-grid .metric-item .metric-info .stat-value,
.admin-page-container .metrics-grid .metric-item .stat-info .metric-value,
.admin-page-container .metrics-grid .metric-item .stat-info .stat-value,
.admin-page-container .metrics-grid .stat-item .metric-info .metric-value,
.admin-page-container .metrics-grid .stat-item .metric-info .stat-value,
.admin-page-container .metrics-grid .stat-item .stat-info .metric-value,
.admin-page-container .metrics-grid .stat-item .stat-info .stat-value,
.admin-page-container .voting-stats-grid .metric-item .metric-info .metric-value,
.admin-page-container .voting-stats-grid .metric-item .metric-info .stat-value,
.admin-page-container .voting-stats-grid .metric-item .stat-info .metric-value,
.admin-page-container .voting-stats-grid .metric-item .stat-info .stat-value,
.admin-page-container .voting-stats-grid .stat-item .metric-info .metric-value,
.admin-page-container .voting-stats-grid .stat-item .metric-info .stat-value,
.admin-page-container .voting-stats-grid .stat-item .stat-info .metric-value,
.admin-page-container .voting-stats-grid .stat-item .stat-info .stat-value,
.admin-users-content .metrics-grid .metric-item .metric-info .metric-value,
.admin-users-content .metrics-grid .metric-item .metric-info .stat-value,
.admin-users-content .metrics-grid .metric-item .stat-info .metric-value,
.admin-users-content .metrics-grid .metric-item .stat-info .stat-value,
.admin-users-content .metrics-grid .stat-item .metric-info .metric-value,
.admin-users-content .metrics-grid .stat-item .metric-info .stat-value,
.admin-users-content .metrics-grid .stat-item .stat-info .metric-value,
.admin-users-content .metrics-grid .stat-item .stat-info .stat-value,
.admin-users-content .voting-stats-grid .metric-item .metric-info .metric-value,
.admin-users-content .voting-stats-grid .metric-item .metric-info .stat-value,
.admin-users-content .voting-stats-grid .metric-item .stat-info .metric-value,
.admin-users-content .voting-stats-grid .metric-item .stat-info .stat-value,
.admin-users-content .voting-stats-grid .stat-item .metric-info .metric-value,
.admin-users-content .voting-stats-grid .stat-item .metric-info .stat-value,
.admin-users-content .voting-stats-grid .stat-item .stat-info .metric-value,
.admin-users-content .voting-stats-grid .stat-item .stat-info .stat-value,
.admin-organizations-content .metrics-grid .metric-item .metric-info .metric-value,
.admin-organizations-content .metrics-grid .metric-item .metric-info .stat-value,
.admin-organizations-content .metrics-grid .metric-item .stat-info .metric-value,
.admin-organizations-content .metrics-grid .metric-item .stat-info .stat-value,
.admin-organizations-content .metrics-grid .stat-item .metric-info .metric-value,
.admin-organizations-content .metrics-grid .stat-item .metric-info .stat-value,
.admin-organizations-content .metrics-grid .stat-item .stat-info .metric-value,
.admin-organizations-content .metrics-grid .stat-item .stat-info .stat-value,
.admin-organizations-content .voting-stats-grid .metric-item .metric-info .metric-value,
.admin-organizations-content .voting-stats-grid .metric-item .metric-info .stat-value,
.admin-organizations-content .voting-stats-grid .metric-item .stat-info .metric-value,
.admin-organizations-content .voting-stats-grid .metric-item .stat-info .stat-value,
.admin-organizations-content .voting-stats-grid .stat-item .metric-info .metric-value,
.admin-organizations-content .voting-stats-grid .stat-item .metric-info .stat-value,
.admin-organizations-content .voting-stats-grid .stat-item .stat-info .metric-value,
.admin-organizations-content .voting-stats-grid .stat-item .stat-info .stat-value,
.admin-platforms-content .metrics-grid .metric-item .metric-info .metric-value,
.admin-platforms-content .metrics-grid .metric-item .metric-info .stat-value,
.admin-platforms-content .metrics-grid .metric-item .stat-info .metric-value,
.admin-platforms-content .metrics-grid .metric-item .stat-info .stat-value,
.admin-platforms-content .metrics-grid .stat-item .metric-info .metric-value,
.admin-platforms-content .metrics-grid .stat-item .metric-info .stat-value,
.admin-platforms-content .metrics-grid .stat-item .stat-info .metric-value,
.admin-platforms-content .metrics-grid .stat-item .stat-info .stat-value,
.admin-platforms-content .voting-stats-grid .metric-item .metric-info .metric-value,
.admin-platforms-content .voting-stats-grid .metric-item .metric-info .stat-value,
.admin-platforms-content .voting-stats-grid .metric-item .stat-info .metric-value,
.admin-platforms-content .voting-stats-grid .metric-item .stat-info .stat-value,
.admin-platforms-content .voting-stats-grid .stat-item .metric-info .metric-value,
.admin-platforms-content .voting-stats-grid .stat-item .metric-info .stat-value,
.admin-platforms-content .voting-stats-grid .stat-item .stat-info .metric-value,
.admin-platforms-content .voting-stats-grid .stat-item .stat-info .stat-value,
.admin-contact-requests-content .metrics-grid .metric-item .metric-info .metric-value,
.admin-contact-requests-content .metrics-grid .metric-item .metric-info .stat-value,
.admin-contact-requests-content .metrics-grid .metric-item .stat-info .metric-value,
.admin-contact-requests-content .metrics-grid .metric-item .stat-info .stat-value,
.admin-contact-requests-content .metrics-grid .stat-item .metric-info .metric-value,
.admin-contact-requests-content .metrics-grid .stat-item .metric-info .stat-value,
.admin-contact-requests-content .metrics-grid .stat-item .stat-info .metric-value,
.admin-contact-requests-content .metrics-grid .stat-item .stat-info .stat-value,
.admin-contact-requests-content .voting-stats-grid .metric-item .metric-info .metric-value,
.admin-contact-requests-content .voting-stats-grid .metric-item .metric-info .stat-value,
.admin-contact-requests-content .voting-stats-grid .metric-item .stat-info .metric-value,
.admin-contact-requests-content .voting-stats-grid .metric-item .stat-info .stat-value,
.admin-contact-requests-content .voting-stats-grid .stat-item .metric-info .metric-value,
.admin-contact-requests-content .voting-stats-grid .stat-item .metric-info .stat-value,
.admin-contact-requests-content .voting-stats-grid .stat-item .stat-info .metric-value,
.admin-contact-requests-content .voting-stats-grid .stat-item .stat-info .stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}

/* line 655, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .metrics-grid .metric-item .metric-info .metric-label,
.admin-page-container .metrics-grid .metric-item .metric-info .stat-label,
.admin-page-container .metrics-grid .metric-item .stat-info .metric-label,
.admin-page-container .metrics-grid .metric-item .stat-info .stat-label,
.admin-page-container .metrics-grid .stat-item .metric-info .metric-label,
.admin-page-container .metrics-grid .stat-item .metric-info .stat-label,
.admin-page-container .metrics-grid .stat-item .stat-info .metric-label,
.admin-page-container .metrics-grid .stat-item .stat-info .stat-label,
.admin-page-container .voting-stats-grid .metric-item .metric-info .metric-label,
.admin-page-container .voting-stats-grid .metric-item .metric-info .stat-label,
.admin-page-container .voting-stats-grid .metric-item .stat-info .metric-label,
.admin-page-container .voting-stats-grid .metric-item .stat-info .stat-label,
.admin-page-container .voting-stats-grid .stat-item .metric-info .metric-label,
.admin-page-container .voting-stats-grid .stat-item .metric-info .stat-label,
.admin-page-container .voting-stats-grid .stat-item .stat-info .metric-label,
.admin-page-container .voting-stats-grid .stat-item .stat-info .stat-label,
.admin-users-content .metrics-grid .metric-item .metric-info .metric-label,
.admin-users-content .metrics-grid .metric-item .metric-info .stat-label,
.admin-users-content .metrics-grid .metric-item .stat-info .metric-label,
.admin-users-content .metrics-grid .metric-item .stat-info .stat-label,
.admin-users-content .metrics-grid .stat-item .metric-info .metric-label,
.admin-users-content .metrics-grid .stat-item .metric-info .stat-label,
.admin-users-content .metrics-grid .stat-item .stat-info .metric-label,
.admin-users-content .metrics-grid .stat-item .stat-info .stat-label,
.admin-users-content .voting-stats-grid .metric-item .metric-info .metric-label,
.admin-users-content .voting-stats-grid .metric-item .metric-info .stat-label,
.admin-users-content .voting-stats-grid .metric-item .stat-info .metric-label,
.admin-users-content .voting-stats-grid .metric-item .stat-info .stat-label,
.admin-users-content .voting-stats-grid .stat-item .metric-info .metric-label,
.admin-users-content .voting-stats-grid .stat-item .metric-info .stat-label,
.admin-users-content .voting-stats-grid .stat-item .stat-info .metric-label,
.admin-users-content .voting-stats-grid .stat-item .stat-info .stat-label,
.admin-organizations-content .metrics-grid .metric-item .metric-info .metric-label,
.admin-organizations-content .metrics-grid .metric-item .metric-info .stat-label,
.admin-organizations-content .metrics-grid .metric-item .stat-info .metric-label,
.admin-organizations-content .metrics-grid .metric-item .stat-info .stat-label,
.admin-organizations-content .metrics-grid .stat-item .metric-info .metric-label,
.admin-organizations-content .metrics-grid .stat-item .metric-info .stat-label,
.admin-organizations-content .metrics-grid .stat-item .stat-info .metric-label,
.admin-organizations-content .metrics-grid .stat-item .stat-info .stat-label,
.admin-organizations-content .voting-stats-grid .metric-item .metric-info .metric-label,
.admin-organizations-content .voting-stats-grid .metric-item .metric-info .stat-label,
.admin-organizations-content .voting-stats-grid .metric-item .stat-info .metric-label,
.admin-organizations-content .voting-stats-grid .metric-item .stat-info .stat-label,
.admin-organizations-content .voting-stats-grid .stat-item .metric-info .metric-label,
.admin-organizations-content .voting-stats-grid .stat-item .metric-info .stat-label,
.admin-organizations-content .voting-stats-grid .stat-item .stat-info .metric-label,
.admin-organizations-content .voting-stats-grid .stat-item .stat-info .stat-label,
.admin-platforms-content .metrics-grid .metric-item .metric-info .metric-label,
.admin-platforms-content .metrics-grid .metric-item .metric-info .stat-label,
.admin-platforms-content .metrics-grid .metric-item .stat-info .metric-label,
.admin-platforms-content .metrics-grid .metric-item .stat-info .stat-label,
.admin-platforms-content .metrics-grid .stat-item .metric-info .metric-label,
.admin-platforms-content .metrics-grid .stat-item .metric-info .stat-label,
.admin-platforms-content .metrics-grid .stat-item .stat-info .metric-label,
.admin-platforms-content .metrics-grid .stat-item .stat-info .stat-label,
.admin-platforms-content .voting-stats-grid .metric-item .metric-info .metric-label,
.admin-platforms-content .voting-stats-grid .metric-item .metric-info .stat-label,
.admin-platforms-content .voting-stats-grid .metric-item .stat-info .metric-label,
.admin-platforms-content .voting-stats-grid .metric-item .stat-info .stat-label,
.admin-platforms-content .voting-stats-grid .stat-item .metric-info .metric-label,
.admin-platforms-content .voting-stats-grid .stat-item .metric-info .stat-label,
.admin-platforms-content .voting-stats-grid .stat-item .stat-info .metric-label,
.admin-platforms-content .voting-stats-grid .stat-item .stat-info .stat-label,
.admin-contact-requests-content .metrics-grid .metric-item .metric-info .metric-label,
.admin-contact-requests-content .metrics-grid .metric-item .metric-info .stat-label,
.admin-contact-requests-content .metrics-grid .metric-item .stat-info .metric-label,
.admin-contact-requests-content .metrics-grid .metric-item .stat-info .stat-label,
.admin-contact-requests-content .metrics-grid .stat-item .metric-info .metric-label,
.admin-contact-requests-content .metrics-grid .stat-item .metric-info .stat-label,
.admin-contact-requests-content .metrics-grid .stat-item .stat-info .metric-label,
.admin-contact-requests-content .metrics-grid .stat-item .stat-info .stat-label,
.admin-contact-requests-content .voting-stats-grid .metric-item .metric-info .metric-label,
.admin-contact-requests-content .voting-stats-grid .metric-item .metric-info .stat-label,
.admin-contact-requests-content .voting-stats-grid .metric-item .stat-info .metric-label,
.admin-contact-requests-content .voting-stats-grid .metric-item .stat-info .stat-label,
.admin-contact-requests-content .voting-stats-grid .stat-item .metric-info .metric-label,
.admin-contact-requests-content .voting-stats-grid .stat-item .metric-info .stat-label,
.admin-contact-requests-content .voting-stats-grid .stat-item .stat-info .metric-label,
.admin-contact-requests-content .voting-stats-grid .stat-item .stat-info .stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 669, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .traffic-stats .stat-row,
.admin-users-content .traffic-stats .stat-row,
.admin-organizations-content .traffic-stats .stat-row,
.admin-platforms-content .traffic-stats .stat-row,
.admin-contact-requests-content .traffic-stats .stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* line 676, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .traffic-stats .stat-row:last-child,
.admin-users-content .traffic-stats .stat-row:last-child,
.admin-organizations-content .traffic-stats .stat-row:last-child,
.admin-platforms-content .traffic-stats .stat-row:last-child,
.admin-contact-requests-content .traffic-stats .stat-row:last-child {
  border-bottom: none;
}

/* line 680, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .traffic-stats .stat-row .stat-label,
.admin-users-content .traffic-stats .stat-row .stat-label,
.admin-organizations-content .traffic-stats .stat-row .stat-label,
.admin-platforms-content .traffic-stats .stat-row .stat-label,
.admin-contact-requests-content .traffic-stats .stat-row .stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* line 685, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .traffic-stats .stat-row .stat-value,
.admin-users-content .traffic-stats .stat-row .stat-value,
.admin-organizations-content .traffic-stats .stat-row .stat-value,
.admin-platforms-content .traffic-stats .stat-row .stat-value,
.admin-contact-requests-content .traffic-stats .stat-row .stat-value {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.9rem;
}

/* line 694, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .offers-grid,
.admin-users-content .offers-grid,
.admin-organizations-content .offers-grid,
.admin-platforms-content .offers-grid,
.admin-contact-requests-content .offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* line 699, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .offers-grid .offer-card,
.admin-users-content .offers-grid .offer-card,
.admin-organizations-content .offers-grid .offer-card,
.admin-platforms-content .offers-grid .offer-card,
.admin-contact-requests-content .offers-grid .offer-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
}

/* line 705, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .offers-grid .offer-card .offer-header,
.admin-users-content .offers-grid .offer-card .offer-header,
.admin-organizations-content .offers-grid .offer-card .offer-header,
.admin-platforms-content .offers-grid .offer-card .offer-header,
.admin-contact-requests-content .offers-grid .offer-card .offer-header {
  margin-bottom: 1rem;
}

/* line 708, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .offers-grid .offer-card .offer-header h4, .admin-page-container .offers-grid .offer-card .offer-header .h4,
.admin-users-content .offers-grid .offer-card .offer-header h4,
.admin-users-content .offers-grid .offer-card .offer-header .h4,
.admin-organizations-content .offers-grid .offer-card .offer-header h4,
.admin-organizations-content .offers-grid .offer-card .offer-header .h4,
.admin-platforms-content .offers-grid .offer-card .offer-header h4,
.admin-platforms-content .offers-grid .offer-card .offer-header .h4,
.admin-contact-requests-content .offers-grid .offer-card .offer-header h4,
.admin-contact-requests-content .offers-grid .offer-card .offer-header .h4 {
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

/* line 715, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .offers-grid .offer-card .offer-header .offer-price,
.admin-users-content .offers-grid .offer-card .offer-header .offer-price,
.admin-organizations-content .offers-grid .offer-card .offer-header .offer-price,
.admin-platforms-content .offers-grid .offer-card .offer-header .offer-price,
.admin-contact-requests-content .offers-grid .offer-card .offer-header .offer-price {
  color: #ff6b35;
  font-size: 1.1rem;
  font-weight: 600;
}

/* line 722, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .offers-grid .offer-card .offer-features,
.admin-users-content .offers-grid .offer-card .offer-features,
.admin-organizations-content .offers-grid .offer-card .offer-features,
.admin-platforms-content .offers-grid .offer-card .offer-features,
.admin-contact-requests-content .offers-grid .offer-card .offer-features {
  margin-bottom: 1.5rem;
}

/* line 725, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .offers-grid .offer-card .offer-features ul,
.admin-users-content .offers-grid .offer-card .offer-features ul,
.admin-organizations-content .offers-grid .offer-card .offer-features ul,
.admin-platforms-content .offers-grid .offer-card .offer-features ul,
.admin-contact-requests-content .offers-grid .offer-card .offer-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 730, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .offers-grid .offer-card .offer-features ul li,
.admin-users-content .offers-grid .offer-card .offer-features ul li,
.admin-organizations-content .offers-grid .offer-card .offer-features ul li,
.admin-platforms-content .offers-grid .offer-card .offer-features ul li,
.admin-contact-requests-content .offers-grid .offer-card .offer-features ul li {
  color: rgba(255, 255, 255, 0.8);
  padding: 0.25rem 0;
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9rem;
}

/* line 737, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .offers-grid .offer-card .offer-features ul li:before,
.admin-users-content .offers-grid .offer-card .offer-features ul li:before,
.admin-organizations-content .offers-grid .offer-card .offer-features ul li:before,
.admin-platforms-content .offers-grid .offer-card .offer-features ul li:before,
.admin-contact-requests-content .offers-grid .offer-card .offer-features ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: bold;
}

/* line 748, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .offers-grid .offer-card .offer-actions,
.admin-users-content .offers-grid .offer-card .offer-actions,
.admin-organizations-content .offers-grid .offer-card .offer-actions,
.admin-platforms-content .offers-grid .offer-card .offer-actions,
.admin-contact-requests-content .offers-grid .offer-card .offer-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* line 757, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .development-grid,
.admin-users-content .development-grid,
.admin-organizations-content .development-grid,
.admin-platforms-content .development-grid,
.admin-contact-requests-content .development-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* line 762, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .development-grid .dev-card,
.admin-users-content .development-grid .dev-card,
.admin-organizations-content .development-grid .dev-card,
.admin-platforms-content .development-grid .dev-card,
.admin-contact-requests-content .development-grid .dev-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
}

/* line 768, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .development-grid .dev-card .dev-header,
.admin-users-content .development-grid .dev-card .dev-header,
.admin-organizations-content .development-grid .dev-card .dev-header,
.admin-platforms-content .development-grid .dev-card .dev-header,
.admin-contact-requests-content .development-grid .dev-card .dev-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

/* line 774, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .development-grid .dev-card .dev-header h4, .admin-page-container .development-grid .dev-card .dev-header .h4,
.admin-users-content .development-grid .dev-card .dev-header h4,
.admin-users-content .development-grid .dev-card .dev-header .h4,
.admin-organizations-content .development-grid .dev-card .dev-header h4,
.admin-organizations-content .development-grid .dev-card .dev-header .h4,
.admin-platforms-content .development-grid .dev-card .dev-header h4,
.admin-platforms-content .development-grid .dev-card .dev-header .h4,
.admin-contact-requests-content .development-grid .dev-card .dev-header h4,
.admin-contact-requests-content .development-grid .dev-card .dev-header .h4 {
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

/* line 781, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .development-grid .dev-card .dev-header .dev-status,
.admin-users-content .development-grid .dev-card .dev-header .dev-status,
.admin-organizations-content .development-grid .dev-card .dev-header .dev-status,
.admin-platforms-content .development-grid .dev-card .dev-header .dev-status,
.admin-contact-requests-content .development-grid .dev-card .dev-header .dev-status {
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* line 788, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .development-grid .dev-card .dev-header .dev-status.in-progress,
.admin-users-content .development-grid .dev-card .dev-header .dev-status.in-progress,
.admin-organizations-content .development-grid .dev-card .dev-header .dev-status.in-progress,
.admin-platforms-content .development-grid .dev-card .dev-header .dev-status.in-progress,
.admin-contact-requests-content .development-grid .dev-card .dev-header .dev-status.in-progress {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
}

/* line 793, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .development-grid .dev-card .dev-header .dev-status.planning,
.admin-users-content .development-grid .dev-card .dev-header .dev-status.planning,
.admin-organizations-content .development-grid .dev-card .dev-header .dev-status.planning,
.admin-platforms-content .development-grid .dev-card .dev-header .dev-status.planning,
.admin-contact-requests-content .development-grid .dev-card .dev-header .dev-status.planning {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

/* line 800, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .development-grid .dev-card .dev-progress,
.admin-users-content .development-grid .dev-card .dev-progress,
.admin-organizations-content .development-grid .dev-card .dev-progress,
.admin-platforms-content .development-grid .dev-card .dev-progress,
.admin-contact-requests-content .development-grid .dev-card .dev-progress {
  margin-bottom: 1rem;
}

/* line 803, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .development-grid .dev-card .dev-progress .progress-bar,
.admin-users-content .development-grid .dev-card .dev-progress .progress-bar,
.admin-organizations-content .development-grid .dev-card .dev-progress .progress-bar,
.admin-platforms-content .development-grid .dev-card .dev-progress .progress-bar,
.admin-contact-requests-content .development-grid .dev-card .dev-progress .progress-bar {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  height: 8px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

/* line 810, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .development-grid .dev-card .dev-progress .progress-bar .progress-fill,
.admin-users-content .development-grid .dev-card .dev-progress .progress-bar .progress-fill,
.admin-organizations-content .development-grid .dev-card .dev-progress .progress-bar .progress-fill,
.admin-platforms-content .development-grid .dev-card .dev-progress .progress-bar .progress-fill,
.admin-contact-requests-content .development-grid .dev-card .dev-progress .progress-bar .progress-fill {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  height: 100%;
  transition: width 0.3s ease;
}

/* line 817, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .development-grid .dev-card .dev-progress .progress-text,
.admin-users-content .development-grid .dev-card .dev-progress .progress-text,
.admin-organizations-content .development-grid .dev-card .dev-progress .progress-text,
.admin-platforms-content .development-grid .dev-card .dev-progress .progress-text,
.admin-contact-requests-content .development-grid .dev-card .dev-progress .progress-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

/* line 823, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .development-grid .dev-card .dev-actions,
.admin-users-content .development-grid .dev-card .dev-actions,
.admin-organizations-content .development-grid .dev-card .dev-actions,
.admin-platforms-content .development-grid .dev-card .dev-actions,
.admin-contact-requests-content .development-grid .dev-card .dev-actions {
  display: flex;
  gap: 0.5rem;
}

/* line 831, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .position-badge,
.admin-users-content .position-badge,
.admin-organizations-content .position-badge,
.admin-platforms-content .position-badge,
.admin-contact-requests-content .position-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.8rem;
}

/* line 841, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .position-badge.gold,
.admin-users-content .position-badge.gold,
.admin-organizations-content .position-badge.gold,
.admin-platforms-content .position-badge.gold,
.admin-contact-requests-content .position-badge.gold {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000;
}

/* line 846, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .position-badge.silver,
.admin-users-content .position-badge.silver,
.admin-organizations-content .position-badge.silver,
.admin-platforms-content .position-badge.silver,
.admin-contact-requests-content .position-badge.silver {
  background: linear-gradient(135deg, #c0c0c0 0%, #e5e5e5 100%);
  color: #000;
}

/* line 851, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .position-badge.bronze,
.admin-users-content .position-badge.bronze,
.admin-organizations-content .position-badge.bronze,
.admin-platforms-content .position-badge.bronze,
.admin-contact-requests-content .position-badge.bronze {
  background: linear-gradient(135deg, #cd7f32 0%, #daa520 100%);
  color: #fff;
}

/* line 856, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .position-badge:not(.gold):not(.silver):not(.bronze),
.admin-users-content .position-badge:not(.gold):not(.silver):not(.bronze),
.admin-organizations-content .position-badge:not(.gold):not(.silver):not(.bronze),
.admin-platforms-content .position-badge:not(.gold):not(.silver):not(.bronze),
.admin-contact-requests-content .position-badge:not(.gold):not(.silver):not(.bronze) {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

/* line 863, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .status-badge,
.admin-users-content .status-badge,
.admin-organizations-content .status-badge,
.admin-platforms-content .status-badge,
.admin-contact-requests-content .status-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 872, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .status-badge.active,
.admin-users-content .status-badge.active,
.admin-organizations-content .status-badge.active,
.admin-platforms-content .status-badge.active,
.admin-contact-requests-content .status-badge.active {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

/* line 878, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .status-badge.inactive,
.admin-users-content .status-badge.inactive,
.admin-organizations-content .status-badge.inactive,
.admin-platforms-content .status-badge.inactive,
.admin-contact-requests-content .status-badge.inactive {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* line 886, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .admin-actions,
.admin-users-content .admin-actions,
.admin-organizations-content .admin-actions,
.admin-platforms-content .admin-actions,
.admin-contact-requests-content .admin-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* line 891, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .admin-actions .btn,
.admin-users-content .admin-actions .btn,
.admin-organizations-content .admin-actions .btn,
.admin-platforms-content .admin-actions .btn,
.admin-contact-requests-content .admin-actions .btn {
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 902, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .admin-actions .btn:hover,
.admin-users-content .admin-actions .btn:hover,
.admin-organizations-content .admin-actions .btn:hover,
.admin-platforms-content .admin-actions .btn:hover,
.admin-contact-requests-content .admin-actions .btn:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

/* line 907, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .admin-actions .btn.btn-primary, .admin-page-container .admin-actions .btn.crm-action-button.crm-action-button-primary,
.admin-users-content .admin-actions .btn.btn-primary,
.admin-users-content .admin-actions .btn.crm-action-button.crm-action-button-primary,
.admin-organizations-content .admin-actions .btn.btn-primary,
.admin-organizations-content .admin-actions .btn.crm-action-button.crm-action-button-primary,
.admin-platforms-content .admin-actions .btn.btn-primary,
.admin-platforms-content .admin-actions .btn.crm-action-button.crm-action-button-primary,
.admin-contact-requests-content .admin-actions .btn.btn-primary,
.admin-contact-requests-content .admin-actions .btn.crm-action-button.crm-action-button-primary {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #fff;
}

/* line 912, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .admin-actions .btn.btn-secondary, .admin-page-container .admin-actions .btn.crm-action-button.crm-action-button-secondary,
.admin-users-content .admin-actions .btn.btn-secondary,
.admin-users-content .admin-actions .btn.crm-action-button.crm-action-button-secondary,
.admin-organizations-content .admin-actions .btn.btn-secondary,
.admin-organizations-content .admin-actions .btn.crm-action-button.crm-action-button-secondary,
.admin-platforms-content .admin-actions .btn.btn-secondary,
.admin-platforms-content .admin-actions .btn.crm-action-button.crm-action-button-secondary,
.admin-contact-requests-content .admin-actions .btn.btn-secondary,
.admin-contact-requests-content .admin-actions .btn.crm-action-button.crm-action-button-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 918, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-page-container .admin-actions .btn.btn-warning,
.admin-users-content .admin-actions .btn.btn-warning,
.admin-organizations-content .admin-actions .btn.btn-warning,
.admin-platforms-content .admin-actions .btn.btn-warning,
.admin-contact-requests-content .admin-actions .btn.btn-warning {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: #fff;
}

/* line 927, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.user-role,
.user-status {
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* line 938, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.user-role.admin,
.user-status.admin {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #fff;
  border: none;
}

/* line 944, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.user-role.user,
.user-status.user {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: #fff;
  border: none;
}

/* line 950, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.user-role.active,
.user-status.active {
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  color: #fff;
  border: none;
}

/* line 956, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.user-role.inactive,
.user-status.inactive {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: #fff;
  border: none;
}

/* line 964, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.organization-type {
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* line 974, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.organization-type.forge-the-web {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #fff;
}

/* line 979, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.organization-type.client {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: #fff;
}

/* line 986, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.user-parent-type {
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* line 998, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.user-parent-type.forgetheweb {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #fff;
}

/* line 1003, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.user-parent-type.platform {
  background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
  color: #fff;
}

/* line 1008, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.user-parent-type.customer {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: #fff;
}

/* line 1013, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.user-parent-type i {
  font-size: 0.7rem;
}

/* line 1019, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-actions {
  display: flex;
  gap: 0.75rem;
}

/* line 1023, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-actions .btn {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* line 1035, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* line 1040, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-actions .btn.btn-primary, .admin-actions .btn.crm-action-button.crm-action-button-primary {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #fff;
}

/* line 1044, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-actions .btn.btn-primary:hover, .admin-actions .btn.crm-action-button.crm-action-button-primary:hover {
  background: linear-gradient(135deg, #e55a2b 0%, #e8851a 100%);
}

/* line 1049, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-actions .btn.btn-secondary, .admin-actions .btn.crm-action-button.crm-action-button-secondary {
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
  color: #fff;
}

/* line 1053, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-actions .btn.btn-secondary:hover, .admin-actions .btn.crm-action-button.crm-action-button-secondary:hover {
  background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
}

/* line 1058, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-actions .btn.btn-warning {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: #fff;
}

/* line 1062, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-actions .btn.btn-warning:hover {
  background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
}

/* line 1069, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-actions .offers-management,
.admin-actions .voting-management {
  padding: 2rem;
}

/* line 1073, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-actions .offers-management .metric-cards,
.admin-actions .offers-management .offers-grid,
.admin-actions .offers-management .voting-stats,
.admin-actions .voting-management .metric-cards,
.admin-actions .voting-management .offers-grid,
.admin-actions .voting-management .voting-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

/* line 1082, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-actions .offers-management .metric-card,
.admin-actions .offers-management .offer-card,
.admin-actions .offers-management .stat-card,
.admin-actions .voting-management .metric-card,
.admin-actions .voting-management .offer-card,
.admin-actions .voting-management .stat-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* line 1093, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-actions .offers-management .metric-icon,
.admin-actions .offers-management .stat-icon,
.admin-actions .voting-management .metric-icon,
.admin-actions .voting-management .stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

/* line 1104, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-actions .offers-management .metric-icon i,
.admin-actions .offers-management .stat-icon i,
.admin-actions .voting-management .metric-icon i,
.admin-actions .voting-management .stat-icon i {
  font-size: 1.5rem;
  color: #fff;
}

/* line 1110, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-actions .offers-management .metric-value,
.admin-actions .offers-management .stat-value,
.admin-actions .voting-management .metric-value,
.admin-actions .voting-management .stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

/* line 1119, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-actions .offers-management .metric-label,
.admin-actions .offers-management .stat-label,
.admin-actions .voting-management .metric-label,
.admin-actions .voting-management .stat-label {
  display: block;
  font-size: 0.9rem;
  color: #7f8c8d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* line 1129, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-actions .offers-management .offer-header,
.admin-actions .voting-management .offer-header {
  margin-bottom: 1rem;
}

/* line 1132, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-actions .offers-management .offer-header h3, .admin-actions .offers-management .offer-header .h3,
.admin-actions .voting-management .offer-header h3,
.admin-actions .voting-management .offer-header .h3 {
  color: #2c3e50;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
}

/* line 1139, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-actions .offers-management .offer-header .offer-price,
.admin-actions .voting-management .offer-header .offer-price {
  color: #ff6b35;
  font-size: 1.2rem;
  font-weight: 600;
}

/* line 1146, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-actions .offers-management .offer-features,
.admin-actions .voting-management .offer-features {
  margin-bottom: 1.5rem;
}

/* line 1149, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-actions .offers-management .offer-features ul,
.admin-actions .voting-management .offer-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 1154, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-actions .offers-management .offer-features ul li,
.admin-actions .voting-management .offer-features ul li {
  color: #7f8c8d;
  padding: 0.25rem 0;
  position: relative;
  padding-left: 1.5rem;
}

/* line 1160, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-actions .offers-management .offer-features ul li:before,
.admin-actions .voting-management .offer-features ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2ecc71;
  font-weight: bold;
}

/* line 1171, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-actions .offers-management .offer-actions,
.admin-actions .offers-management .voting-actions,
.admin-actions .voting-management .offer-actions,
.admin-actions .voting-management .voting-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* line 1181, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

/* line 1187, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-section-header .admin-dropdown-icon {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

/* line 1193, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.voting-active {
  position: relative;
}

/* line 1196, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.voting-active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff4444, #ff6666);
  border-radius: 1px;
}

/* line 1210, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.forge-the-web-admin {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  overflow-y: auto;
}

/* line 1216, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-container {
  padding: 0;
  margin: 0;
}

/* line 1222, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-navbar {
  position: fixed;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 70px;
  padding: 0 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* line 1237, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-navbar-shield {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #C38761, #140D23);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* line 1250, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-navbar-shield:hover {
  transform: scale(1.1);
}

/* line 1254, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-navbar-shield.selected-bold {
  background: linear-gradient(135deg, #E5A82E, #C38761);
}

/* line 1259, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-navbar-menu {
  display: flex;
  gap: 1rem;
  flex: 1;
  justify-content: center;
}

/* line 1266, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.btn-admin-navbar {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.8);
  color: #140D23;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  border: 2px solid transparent;
}

/* line 1276, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.btn-admin-navbar:hover {
  background: rgba(195, 135, 97, 0.2);
  border-color: #C38761;
  transform: translateY(-2px);
}

/* line 1282, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.btn-admin-navbar.selected {
  background: linear-gradient(135deg, #C38761, #140D23);
  color: white;
  border-color: transparent;
}

/* line 1289, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-navbar-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* line 1295, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-navbar-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.8);
  color: #140D23;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* line 1307, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-navbar-link:hover {
  background: rgba(195, 135, 97, 0.2);
  color: #140D23;
  transform: scale(1.1);
}

/* line 1314, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-navbar-account,
.admin-navbar-logout,
.admin-navbar-exit {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 1325, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-content {
  padding-top: 90px;
  min-height: 100vh;
}

/* line 1331, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.content-section {
  display: none;
}

/* line 1334, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.content-section.active {
  display: block;
}

/* line 1339, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-header {
  padding: 2rem;
  text-align: center;
}

/* line 1343, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-header h1, .admin-header .h1 {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* line 1351, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin: 0;
}

/* line 1359, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-dashboard-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* line 1366, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 1375, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

/* line 1381, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-card-header h3, .admin-card-header .h3 {
  color: #140D23;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

/* line 1388, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-card-header i {
  color: #C38761;
  font-size: 1.5rem;
}

/* line 1394, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-card-content {
  margin-bottom: 1.5rem;
}

/* line 1397, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-card-content .admin-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #140D23;
  margin: 0;
  line-height: 1;
}

/* line 1405, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-card-content .admin-stat-label {
  color: #666;
  font-size: 0.9rem;
  margin: 0.5rem 0 0 0;
}

/* line 1412, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-card-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #140D23;
  text-decoration: none;
  font-weight: 500;
  padding: 0.75rem 1rem;
  background: rgba(195, 135, 97, 0.1);
  border-radius: 8px;
  transition: background 0.3s ease;
}

/* line 1424, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-card-link:hover {
  background: rgba(195, 135, 97, 0.2);
  color: #140D23;
}

/* line 1429, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-card-link i {
  transition: transform 0.3s ease;
}

/* line 1433, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-card-link:hover i {
  transform: translateX(3px);
}

/* line 1439, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-table {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* line 1447, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-table thead {
  background: rgba(255, 255, 255, 0.1);
}

/* line 1450, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-table thead th {
  color: #FFFFFF;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
}

/* line 1460, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease;
}

/* line 1464, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-table tbody tr:hover {
  background: rgba(195, 135, 97, 0.15);
}

/* line 1468, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-table tbody tr:last-child {
  border-bottom: none;
}

/* line 1472, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-table tbody tr td {
  padding: 1rem;
  color: #FFFFFF;
}

/* line 1481, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.organization-type {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* line 1487, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.organization-type.forge-the-web {
  background: linear-gradient(135deg, #E5A82E, #C38761);
  color: white;
}

/* line 1492, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.organization-type.client {
  background: linear-gradient(135deg, #C38761, #140D23);
  color: white;
}

/* line 1498, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.user-role {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* line 1504, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.user-role.admin {
  background: linear-gradient(135deg, #E5A82E, #C38761);
  color: white;
}

/* line 1509, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.user-role.user {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  color: #140D23;
}

/* line 1515, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.user-status {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* line 1521, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.user-status.active {
  background: linear-gradient(135deg, #4caf50, #66bb6a);
  color: white;
}

/* line 1526, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.user-status.inactive {
  background: linear-gradient(135deg, #f44336, #ef5350);
  color: white;
}

/* line 1532, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.platform-mode {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* line 1538, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.platform-mode.business {
  background: linear-gradient(135deg, #E5A82E, #C38761);
  color: white;
}

/* line 1543, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.platform-mode.standard {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  color: #140D23;
}

/* line 1549, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.platform-status {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* line 1555, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.platform-status.active {
  background: linear-gradient(135deg, #4caf50, #66bb6a);
  color: white;
}

/* line 1562, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-actions {
  display: flex;
  gap: 0.5rem;
}

/* line 1566, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-actions .btn {
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 1575, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-actions .btn.btn-sm, .admin-actions .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
}

/* line 1580, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-actions .btn.btn-primary, .admin-actions .btn.crm-action-button.crm-action-button-primary {
  background: #140D23;
  color: white;
}

/* line 1584, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-actions .btn.btn-primary:hover, .admin-actions .btn.crm-action-button.crm-action-button-primary:hover {
  background: black;
  transform: translateY(-1px);
}

/* line 1590, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-actions .btn.btn-secondary, .admin-actions .btn.crm-action-button.crm-action-button-secondary {
  background: #6c757d;
  color: white;
}

/* line 1594, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-actions .btn.btn-secondary:hover, .admin-actions .btn.crm-action-button.crm-action-button-secondary:hover {
  background: #545b62;
  transform: translateY(-1px);
}

/* line 1600, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-actions .btn.btn-warning {
  background: #ffc107;
  color: #212529;
}

/* line 1604, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-actions .btn.btn-warning:hover {
  background: #d39e00;
  transform: translateY(-1px);
}

/* line 1610, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-actions .btn.btn-info {
  background: #17a2b8;
  color: white;
}

/* line 1614, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-actions .btn.btn-info:hover {
  background: #117a8b;
  transform: translateY(-1px);
}

/* line 1623, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.analytics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

/* line 1630, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.analytics-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

/* line 1640, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.analytics-card:hover {
  transform: translateY(-3px);
}

/* line 1644, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.analytics-card h3, .analytics-card .h3 {
  color: #140D23;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

/* line 1651, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.analytics-card .analytics-number {
  font-size: 2rem;
  font-weight: 700;
  color: #C38761;
  margin: 0;
  line-height: 1;
}

/* line 1659, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.analytics-card .analytics-label {
  color: #666;
  font-size: 0.9rem;
  margin: 0.5rem 0 0 0;
}

/* line 1666, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.analytics-charts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* line 1673, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.chart-container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 1681, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.chart-container h3, .chart-container .h3 {
  color: #140D23;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 1.5rem 0;
}

/* line 1688, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.chart-container .chart-placeholder {
  height: 200px;
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.1), rgba(20, 13, 35, 0.1));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #140D23;
  font-style: italic;
}

/* line 1703, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.observability-dashboard {
  padding: 2rem;
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  box-sizing: border-box;
  overflow: visible;
}

/* line 1712, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.observability-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 1721, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.observability-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

/* line 1727, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.observability-header h3, .observability-header .h3 {
  color: #140D23;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

/* line 1734, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.observability-header i {
  color: #C38761;
  font-size: 1.5rem;
}

/* line 1741, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.observability-content p {
  color: #666;
  margin-bottom: 1rem;
}

/* line 1747, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.observability-actions {
  margin-top: 1rem;
}

/* line 1751, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

/* line 1758, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.metric-item {
  text-align: center;
  padding: 1rem;
  background: rgba(195, 135, 97, 0.1);
  border-radius: 10px;
}

/* line 1764, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.metric-item .metric-label {
  display: block;
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0.5rem;
}

/* line 1771, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.metric-item .metric-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #140D23;
}

/* line 1779, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.logs-summary {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* line 1786, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.log-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 5px;
}

/* line 1794, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.log-item .log-level {
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* line 1800, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.log-item .log-level.error {
  background: #ffebee;
  color: #c62828;
}

/* line 1805, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.log-item .log-level.warning {
  background: #fff3e0;
  color: #ef6c00;
}

/* line 1810, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.log-item .log-level.info {
  background: #e3f2fd;
  color: #1565c0;
}

/* line 1816, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.log-item .log-count {
  font-weight: 600;
  color: #140D23;
}

/* line 1823, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.offers-dashboard {
  padding: 0 2rem;
  margin-top: 2rem;
}

/* line 1828, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.offers-section {
  margin-bottom: 3rem;
}

/* line 1831, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.offers-section h3, .offers-section .h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* line 1840, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.applications-grid,
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* line 1847, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.application-card,
.offer-card {
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 1855, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.application-card h4, .application-card .h4,
.offer-card h4,
.offer-card .h4 {
  color: #140D23;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

/* line 1862, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.application-card p,
.offer-card p {
  color: #666;
  margin: 0 0 1rem 0;
}

/* line 1868, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.app-status {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* line 1874, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.app-status.active {
  background: linear-gradient(135deg, #4caf50, #66bb6a);
  color: white;
}

/* line 1880, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.offer-apps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

/* line 1887, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.app-tag {
  padding: 0.25rem 0.5rem;
  background: rgba(195, 135, 97, 0.2);
  color: #140D23;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* line 1896, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.offer-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #140D23;
}

/* line 1903, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.access-dashboard {
  padding: 0 2rem;
  margin-top: 2rem;
}

/* line 1908, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.access-section {
  margin-bottom: 3rem;
}

/* line 1911, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.access-section h3, .access-section .h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* line 1920, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.bricks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

/* line 1926, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.brick-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 1934, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.brick-card h4, .brick-card .h4 {
  color: #140D23;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

/* line 1942, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.brick-status {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

/* line 1949, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.brick-status.online {
  background: linear-gradient(135deg, #4caf50, #66bb6a);
  color: white;
}

/* line 1954, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.brick-status.offline {
  background: linear-gradient(135deg, #f44336, #ef5350);
  color: white;
}

/* line 1960, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.brick-actions {
  margin-top: 1rem;
}

/* line 1964, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.maintenance-schedule {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 1973, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.maintenance-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* line 1980, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.maintenance-item:last-child {
  border-bottom: none;
}

/* line 1985, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.maintenance-date {
  font-weight: 600;
  color: #140D23;
}

/* line 1990, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.maintenance-desc {
  flex: 1;
  margin: 0 1rem;
  color: #666;
}

/* line 1996, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.maintenance-status {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* line 2002, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.maintenance-status.scheduled {
  background: linear-gradient(135deg, #ff9800, #ffb74d);
  color: white;
}

/* line 2009, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.voting-dashboard {
  padding: 0 2rem;
  margin-top: 2rem;
}

/* line 2014, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.voting-section {
  margin-bottom: 3rem;
}

/* line 2017, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.voting-section h3, .voting-section .h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* line 2026, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.votes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
}

/* line 2032, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.vote-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 2040, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.vote-card h4, .vote-card .h4 {
  color: #140D23;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

/* line 2048, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.vote-progress {
  margin: 1rem 0;
}

/* line 2052, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.vote-bar {
  width: 100%;
  height: 8px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

/* line 2060, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.vote-fill {
  height: 100%;
  background: linear-gradient(135deg, #C38761, #140D23);
  border-radius: 4px;
  transition: width 0.3s ease;
}

/* line 2067, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.vote-percentage {
  display: block;
  text-align: center;
  margin-top: 0.5rem;
  font-weight: 600;
  color: #140D23;
}

/* line 2075, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.vote-actions {
  margin-top: 1rem;
}

/* line 2079, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.new-vote-form {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 2088, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.form-group {
  margin-bottom: 1.5rem;
}

/* line 2091, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.form-group label {
  display: block;
  color: #140D23;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* line 2098, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.form-group .form-control {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid rgba(195, 135, 97, 0.3);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

/* line 2106, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.form-group .form-control:focus {
  outline: none;
  border-color: #C38761;
}

@media (max-width: 768px) {
  /* line 2115, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .admin-navbar {
    padding: 0 1rem;
  }
  /* line 2119, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .admin-navbar-menu {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  /* line 2124, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .btn-admin-navbar {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
  /* line 2129, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .admin-content {
    padding-top: 120px;
  }
  /* line 2133, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .admin-dashboard-cards {
    grid-template-columns: 1fr;
  }
  /* line 2137, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .observability-dashboard,
.applications-grid,
.offers-grid,
.bricks-grid,
.votes-grid {
    grid-template-columns: 1fr;
  }
  /* line 2145, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* line 2149, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .analytics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* line 2153, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .analytics-charts {
    grid-template-columns: 1fr;
  }
  /* line 2158, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .analytics-dashboard {
    padding: 0 0.5rem;
  }
  /* line 2162, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .kpi-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  /* line 2167, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .charts-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  /* line 2173, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .observability-dashboard {
    padding: 0 0.5rem;
  }
  /* line 2177, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .portals-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  /* line 2182, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .health-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
  }
  /* line 2187, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .performance-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
  }
  /* line 2192, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .api-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
  }
  /* line 2197, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .traffic-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
  }
  /* line 2202, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .logs-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
  /* line 2207, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .maintenance-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }
  /* line 2212, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .portal-card,
.health-card,
.traffic-card {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  /* line 2221, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .performance-card,
.api-card,
.maintenance-card {
    padding: 1rem;
  }
  /* line 2227, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .chart-container {
    padding: 1.5rem;
  }
  /* line 2230, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .chart-container .chart-placeholder {
    height: 200px;
  }
  /* line 2235, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .kpi-card {
    padding: 1.25rem;
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  /* line 2241, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .kpi-card .kpi-icon {
    width: 40px;
    height: 40px;
  }
  /* line 2245, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .kpi-card .kpi-icon i {
    font-size: 1rem;
  }
  /* line 2251, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .kpi-card .kpi-content .kpi-value {
    font-size: 1.5rem;
  }
  /* line 2257, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .section-title {
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
  }
  /* line 2262, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .admin-table {
    font-size: 0.8rem;
  }
  /* line 2265, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .admin-table th, .admin-table td {
    padding: 0.5rem;
  }
  /* line 2270, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .maintenance-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  /* line 2279, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* line 2283, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .charts-grid {
    grid-template-columns: 1fr;
  }
  /* line 2286, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .charts-grid .large {
    grid-column: span 1;
  }
}

/* line 2294, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.large-card {
  grid-column: span 2;
}

@media (max-width: 768px) {
  /* line 2294, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .large-card {
    grid-column: span 1;
  }
}

/* line 2302, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.apis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

/* line 2309, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-item {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 1rem;
}

/* line 2314, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-item .api-name {
  font-weight: 600;
  color: #140D23;
  margin-bottom: 0.5rem;
}

/* line 2320, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-item .api-status {
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* line 2327, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-item .api-status.online {
  background: #e8f5e8;
  color: #2e7d32;
}

/* line 2332, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-item .api-status.warning {
  background: #fff3e0;
  color: #ef6c00;
}

/* line 2337, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-item .api-status.offline {
  background: #ffebee;
  color: #c62828;
}

/* line 2343, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-item .api-metrics {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* line 2348, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-item .api-metrics .metric {
  font-size: 0.8rem;
  color: #666;
}

/* line 2355, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.traffic-stats {
  margin-top: 1rem;
}

/* line 2358, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.traffic-stats .traffic-item {
  margin-bottom: 1.5rem;
}

/* line 2361, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.traffic-stats .traffic-item .traffic-label {
  font-weight: 600;
  color: #140D23;
  margin-bottom: 0.5rem;
}

/* line 2367, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.traffic-stats .traffic-item .traffic-value {
  font-size: 1.2rem;
  color: #666;
}

/* line 2372, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.traffic-stats .traffic-item .apps-ranking {
  margin-top: 0.5rem;
}

/* line 2375, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.traffic-stats .traffic-item .apps-ranking .app-rank {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  margin-bottom: 0.25rem;
}

/* line 2384, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.traffic-stats .traffic-item .apps-ranking .app-rank .rank {
  font-weight: 600;
  color: #140D23;
}

/* line 2389, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.traffic-stats .traffic-item .apps-ranking .app-rank .app-name {
  flex: 1;
  margin-left: 0.5rem;
}

/* line 2394, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.traffic-stats .traffic-item .apps-ranking .app-rank .usage {
  font-weight: 600;
  color: #C38761;
}

/* line 2404, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

/* line 2410, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.section-header h3, .section-header .h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* line 2420, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.applications-table,
.offers-table {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow-x: auto;
}

/* line 2432, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

/* line 2437, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-table th, .admin-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 2443, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-table th {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.9rem;
}

/* line 2450, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-table td {
  color: #FFFFFF;
  font-size: 0.9rem;
}

/* line 2455, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-table tr:hover {
  background: rgba(195, 135, 97, 0.15);
}

/* line 2460, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* line 2467, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.analytics-dashboard {
  padding: 0;
  margin: 0;
  max-width: none;
}

/* line 2476, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.forge-the-web-admin-page {
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box;
}

/* line 2481, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.forge-the-web-admin-page * {
  box-sizing: border-box;
}

@media (min-width: 1600px) {
  /* line 2491, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .portals-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2.5rem;
    width: 100% !important;
    max-width: none !important;
  }
  /* line 2498, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .admin-observability-content {
    padding: 1rem 1rem !important;
    max-width: none !important;
  }
  /* line 2503, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .observability-dashboard {
    padding: 2rem 1rem !important;
    max-width: none !important;
  }
}

@media (min-width: 1400px) and (max-width: 1599px) {
  /* line 2511, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .portals-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  /* line 2516, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .health-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  /* line 2520, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .performance-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  /* line 2524, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .api-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* line 2528, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .traffic-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  /* line 2532, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .logs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* line 2536, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .maintenance-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1399px) and (min-width: 1024px) {
  /* line 2542, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .portals-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 1.75rem;
    width: 100% !important;
  }
  /* line 2548, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .admin-observability-content {
    padding: 1rem 1rem !important;
  }
  /* line 2552, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .observability-dashboard {
    padding: 2rem 1rem !important;
  }
  /* line 2555, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .health-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
  /* line 2559, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .performance-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  /* line 2563, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .api-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
  /* line 2567, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .traffic-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  /* line 2571, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .logs-grid {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  }
  /* line 2575, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .maintenance-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 1023px) and (min-width: 768px) {
  /* line 2581, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .portals-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
  }
  /* line 2586, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .health-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
  /* line 2590, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .performance-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
  /* line 2594, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .api-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  /* line 2598, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .traffic-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
  /* line 2602, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .logs-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  }
  /* line 2606, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .maintenance-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

/* line 2612, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.kpi-section,
.charts-section,
.observability-section {
  margin-bottom: 2rem;
}

/* line 2617, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.kpi-section .section-title,
.charts-section .section-title,
.observability-section .section-title {
  color: #FFFFFF;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* line 2627, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.kpi-section .section-title i,
.charts-section .section-title i,
.observability-section .section-title i {
  color: #E5A82E;
  font-size: 1.2rem;
}

/* line 2635, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
  max-width: 100%;
  width: 100%;
}

/* line 2645, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.kpi-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* line 2657, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.kpi-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* line 2664, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.kpi-card .kpi-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #E5A82E, #140D23);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* line 2674, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.kpi-card .kpi-icon i {
  color: #FFFFFF;
  font-size: 1.2rem;
}

/* line 2680, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.kpi-card .kpi-content {
  flex: 1;
  min-width: 0;
}

/* line 2684, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.kpi-card .kpi-content .kpi-title {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

/* line 2693, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.kpi-card .kpi-content .kpi-value {
  display: block;
  color: #FFFFFF;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* line 2702, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.kpi-card .kpi-content .kpi-evolution {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
}

/* line 2709, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.kpi-card .kpi-content .kpi-evolution i {
  font-size: 0.7rem;
}

/* line 2713, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.kpi-card .kpi-content .kpi-evolution.positive {
  color: #2ecc71;
}

/* line 2717, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.kpi-card .kpi-content .kpi-evolution.negative {
  color: #e74c3c;
}

/* line 2721, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.kpi-card .kpi-content .kpi-evolution.neutral {
  color: rgba(255, 255, 255, 0.6);
}

/* line 2728, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.kpi-card.primary .kpi-icon {
  background: linear-gradient(135deg, #ff6b35, #e55a2b);
}

/* line 2732, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.kpi-card.secondary .kpi-icon {
  background: linear-gradient(135deg, #3498db, #2980b9);
}

/* line 2736, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.kpi-card.accent .kpi-icon {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

/* line 2740, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.kpi-card.success .kpi-icon {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
}

/* line 2744, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.kpi-card.info .kpi-icon {
  background: linear-gradient(135deg, #17a2b8, #138496);
}

/* line 2748, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.kpi-card.warning .kpi-icon {
  background: linear-gradient(135deg, #f39c12, #e67e22);
}

/* line 2752, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.kpi-card.danger .kpi-icon {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}

/* line 2757, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.analytics-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

/* line 2766, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.analytics-card:hover {
  transform: translateY(-5px);
}

/* line 2770, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.analytics-card .analytics-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

/* line 2776, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.analytics-card .analytics-card-header h4, .analytics-card .analytics-card-header .h4 {
  color: #140D23;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

/* line 2783, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.analytics-card .analytics-card-header i {
  color: #C38761;
  font-size: 1.2rem;
}

/* line 2790, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.analytics-card .analytics-card-content .analytics-number {
  font-size: 2rem;
  font-weight: 700;
  color: #140D23;
  margin: 0 0 0.5rem 0;
}

/* line 2797, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.analytics-card .analytics-card-content .analytics-label {
  color: #666;
  font-size: 0.9rem;
  margin: 0 0 0.5rem 0;
}

/* line 2803, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.analytics-card .analytics-card-content .analytics-change {
  font-size: 0.8rem;
  font-weight: 500;
}

/* line 2807, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.analytics-card .analytics-card-content .analytics-change.positive {
  color: #2e7d32;
}

/* line 2811, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.analytics-card .analytics-card-content .analytics-change.negative {
  color: #c62828;
}

/* line 2815, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.analytics-card .analytics-card-content .analytics-change.neutral {
  color: #666;
}

/* line 2823, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.charts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
  max-width: 100%;
  width: 100%;
}

/* line 2831, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.charts-grid .large {
  grid-column: span 2;
}

@media (max-width: 768px) {
  /* line 2831, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .charts-grid .large {
    grid-column: span 1;
  }
}

/* line 2840, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.chart-container {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

/* line 2847, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.chart-container:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

/* line 2852, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.chart-container h3, .chart-container .h3 {
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 2861, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.chart-container h3 i, .chart-container .h3 i {
  color: #E5A82E;
  font-size: 1rem;
}

/* line 2867, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.chart-container .chart-placeholder {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  position: relative;
}

/* line 2877, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.chart-container .chart-placeholder .chart-info {
  text-align: center;
  padding: 1rem;
}

/* line 2881, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.chart-container .chart-placeholder .chart-info i {
  font-size: 2rem;
  color: rgba(229, 168, 46, 0.6);
  margin-bottom: 0.75rem;
}

/* line 2887, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.chart-container .chart-placeholder .chart-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0 0 0.25rem 0;
}

/* line 2894, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.chart-container .chart-placeholder .chart-info small, .chart-container .chart-placeholder .chart-info .small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  font-style: italic;
}

/* line 2902, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.chart-container.large .chart-placeholder {
  height: 250px;
}

/* line 2908, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.organizations-dashboard,
.users-dashboard,
.platforms-dashboard {
  padding: 0 2rem;
  margin-top: 2rem;
}

/* line 2915, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.organizations-table,
.users-table,
.platforms-table {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow-x: auto;
}

/* line 2930, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.org-name strong,
.user-name strong,
.platform-name strong {
  color: #140D23;
  font-weight: 600;
}

/* line 2935, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.org-name small, .org-name .small,
.user-name small,
.user-name .small,
.platform-name small,
.platform-name .small {
  display: block;
  color: #666;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

/* line 2943, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.org-type,
.role-badge,
.mode-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* line 2951, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.org-type.forge-the-web,
.role-badge.forge-the-web,
.mode-badge.forge-the-web {
  background: linear-gradient(135deg, #C38761, #140D23);
  color: white;
}

/* line 2956, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.org-type.client,
.role-badge.client,
.mode-badge.client {
  background: rgba(229, 168, 46, 0.2);
  color: #140D23;
}

/* line 2961, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.org-type.admin,
.role-badge.admin,
.mode-badge.admin {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
}

/* line 2966, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.org-type.user,
.role-badge.user,
.mode-badge.user {
  background: rgba(195, 135, 97, 0.2);
  color: #140D23;
}

/* line 2971, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.org-type.business,
.role-badge.business,
.mode-badge.business {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: white;
}

/* line 2976, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.org-type.standard,
.role-badge.standard,
.mode-badge.standard {
  background: rgba(229, 168, 46, 0.2);
  color: #140D23;
}

/* line 2982, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.status-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* line 2988, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.status-badge.active {
  background: linear-gradient(135deg, #4caf50, #66bb6a);
  color: white;
}

/* line 2993, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.status-badge.inactive {
  background: linear-gradient(135deg, #f44336, #ef5350);
  color: white;
}

/* line 3000, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.applications-access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

/* line 3007, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.access-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

/* line 3016, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.access-card:hover {
  transform: translateY(-5px);
}

/* line 3020, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.access-card .access-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

/* line 3026, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.access-card .access-card-header h4, .access-card .access-card-header .h4 {
  color: #140D23;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

/* line 3035, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.access-card .access-card-content p {
  color: #666;
  margin-bottom: 1rem;
}

/* line 3040, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.access-card .access-card-content .access-stats {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

/* line 3045, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.access-card .access-card-content .access-stats .stat {
  font-size: 0.8rem;
  color: #140D23;
  font-weight: 500;
}

/* line 3052, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.access-card .access-card-content .access-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* line 3061, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

/* line 3067, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* line 3072, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.toggle-switch input:checked + .toggle-slider {
  background-color: #C38761;
}

/* line 3075, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(26px);
}

/* line 3081, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.toggle-switch .toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}

/* line 3092, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.toggle-switch .toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

/* line 3107, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-app-access-section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 3112, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-app-access-section h4, .admin-app-access-section .h4 {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 3123, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-app-access-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

/* line 3132, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-app-access-grid::-webkit-scrollbar {
  width: 6px;
}

/* line 3136, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-app-access-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

/* line 3141, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-app-access-grid::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

/* line 3145, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-app-access-grid::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* line 3151, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-app-category {
  margin-bottom: 1.5rem;
}

/* line 3154, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-app-category h5, .admin-app-category .h5 {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 3164, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-app-item {
  margin-bottom: 0.5rem;
}

/* line 3167, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-app-item .admin-app-toggle-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  padding: 0.75rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 3179, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-app-item .admin-app-toggle-label:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

/* line 3184, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-app-item .admin-app-toggle-label > div {
  flex: 1;
  min-width: 0;
}

/* line 3188, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-app-item .admin-app-toggle-label > div span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  display: block;
}

/* line 3194, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-app-item .admin-app-toggle-label > div p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin: 0.25rem 0 0 0;
  line-height: 1.4;
}

/* line 3205, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

/* line 3212, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.wish-item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

/* line 3221, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.wish-item:hover {
  transform: translateY(-5px);
}

/* line 3225, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.wish-item .wish-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

/* line 3231, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.wish-item .wish-header h4, .wish-item .wish-header .h4 {
  color: #140D23;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

/* line 3238, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.wish-item .wish-header .wish-count {
  background: linear-gradient(135deg, #C38761, #140D23);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* line 3248, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.wish-item .wish-progress {
  margin: 1rem 0;
}

/* line 3251, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.wish-item .wish-progress .wish-bar {
  width: 100%;
  height: 8px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

/* line 3259, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.wish-item .wish-progress .wish-fill {
  height: 100%;
  background: linear-gradient(135deg, #C38761, #140D23);
  border-radius: 4px;
  transition: width 0.3s ease;
}

/* line 3266, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.wish-item .wish-progress .wish-percentage {
  display: block;
  text-align: center;
  margin-top: 0.5rem;
  font-weight: 600;
  color: #140D23;
  font-size: 0.9rem;
}

/* line 3276, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.wish-item .wish-description {
  margin-bottom: 1rem;
}

/* line 3279, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.wish-item .wish-description p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* line 3286, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.wish-item .wish-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* line 3293, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.new-app-form {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 3302, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.voting-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

/* line 3308, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.voting-stats .stat-item {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 3317, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.voting-stats .stat-item .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #140D23;
  margin-bottom: 0.5rem;
}

/* line 3325, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.voting-stats .stat-item .stat-label {
  color: #666;
  font-size: 0.9rem;
}

/* line 3335, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.explanations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

/* line 3342, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.explanation-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

/* line 3349, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.explanation-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

/* line 3354, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.explanation-card.error {
  border-left: 4px solid #e74c3c;
  background: rgba(231, 76, 60, 0.05);
}

/* line 3359, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.explanation-card.warning {
  border-left: 4px solid #f39c12;
  background: rgba(243, 156, 18, 0.05);
}

/* line 3364, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.explanation-card .explanation-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

/* line 3370, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.explanation-card .explanation-header i {
  font-size: 1.2rem;
  color: #E5A82E;
}

/* line 3375, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.explanation-card .explanation-header h3, .explanation-card .explanation-header .h3 {
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

/* line 3384, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.explanation-card .explanation-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

/* line 3390, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.explanation-card .explanation-content p strong {
  color: #FFFFFF;
  font-weight: 600;
}

/* line 3396, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.explanation-card .explanation-content .explanation-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}

/* line 3405, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.explanation-card .explanation-content .explanation-details span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-family: monospace;
  padding: 0.25rem 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

/* line 3418, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.portals-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
  gap: 1.5rem;
  margin-bottom: 2rem;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
  overflow: visible;
  grid-auto-columns: 1fr;
}

/* line 3432, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.health-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
  width: 100%;
  overflow: visible;
}

/* line 3441, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.performance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
  width: 100%;
  overflow: visible;
}

/* line 3450, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

/* line 3458, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1rem;
}

/* line 3465, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

/* line 3473, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

/* line 3481, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-compact-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

/* line 3488, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-compact-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 3498, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-compact-icon i {
  color: var(--accent-color);
  font-size: 1rem;
}

/* line 3504, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-compact-name {
  flex: 1;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: capitalize;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* line 3513, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-compact-status {
  padding: 0.15rem 0.4rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* line 3520, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-compact-status.ok {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

/* line 3525, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-compact-status.warning {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

/* line 3530, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-compact-status.error {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

/* line 3535, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-compact-status.na {
  background: rgba(107, 114, 128, 0.2);
  color: #6b7280;
}

/* line 3541, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-compact-metrics {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

/* line 3547, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-metric {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: help;
}

/* line 3556, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-metric:hover {
  transform: translateX(2px);
  background: rgba(255, 255, 255, 0.05);
}

/* line 3561, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-metric .metric-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* line 3572, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-metric .metric-content {
  flex: 1;
  min-width: 0;
}

/* line 3576, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-metric .metric-content .metric-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.25rem;
}

/* line 3583, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-metric .metric-content .metric-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.25rem;
}

/* line 3589, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-metric .metric-content .metric-source {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  display: inline-block;
}

/* line 3601, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-metric.data-real {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.15);
}

/* line 3605, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-metric.data-real .metric-icon {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

/* line 3610, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-metric.data-real .metric-source {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

/* line 3616, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-metric.data-estimated {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
}

/* line 3620, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-metric.data-estimated .metric-icon {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
}

/* line 3625, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-metric.data-estimated .metric-source {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
}

/* line 3631, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-metric.data-simulated {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.15);
}

/* line 3635, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-metric.data-simulated .metric-icon {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

/* line 3640, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-metric.data-simulated .metric-source {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

/* line 3646, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-metric.data-na {
  background: rgba(107, 114, 128, 0.08);
  border: 1px solid rgba(107, 114, 128, 0.15);
}

/* line 3650, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-metric.data-na .metric-icon {
  background: rgba(107, 114, 128, 0.2);
  color: #6b7280;
}

/* line 3655, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-metric.data-na .metric-source {
  background: rgba(107, 114, 128, 0.2);
  color: #6b7280;
}

/* line 3661, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-metric.data-unknown {
  background: rgba(156, 163, 175, 0.08);
  border: 1px solid rgba(156, 163, 175, 0.15);
}

/* line 3665, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-metric.data-unknown .metric-icon {
  background: rgba(156, 163, 175, 0.2);
  color: #9ca3af;
}

/* line 3670, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-metric.data-unknown .metric-source {
  background: rgba(156, 163, 175, 0.2);
  color: #9ca3af;
}

/* line 3677, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-note {
  margin-top: 1rem;
  padding: 0.75rem;
  background: rgba(229, 168, 46, 0.1);
  border-radius: 8px;
  border-left: 3px solid #E5A82E;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

/* line 3689, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-note i {
  color: #E5A82E;
  flex-shrink: 0;
}

/* line 3695, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

/* line 3702, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* line 3708, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

/* line 3716, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-icon i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

/* line 3722, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-status {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* line 3729, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-status.ok {
  background: var(--success-bg);
  color: var(--success-color);
}

/* line 3734, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-status.warning {
  background: var(--warning-bg);
  color: var(--warning-color);
}

/* line 3739, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-status.error {
  background: var(--error-bg);
  color: var(--error-color);
}

/* line 3744, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-status.na {
  background: var(--info-bg);
  color: var(--info-color);
}

/* line 3751, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-content h3, .api-content .h3 {
  margin: 0 0 1rem 0;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
}

/* line 3759, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-metrics {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

/* line 3766, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
}

/* line 3773, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-metric:last-child {
  border-bottom: none;
}

/* line 3778, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.metric-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* line 3783, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.metric-value {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
}

/* line 3789, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* line 3796, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-details i {
  margin-right: 0.5rem;
  width: 12px;
}

/* line 3802, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-url {
  display: flex;
  align-items: center;
}

/* line 3807, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-frequency {
  display: flex;
  align-items: center;
}

/* line 3812, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-note {
  display: flex;
  align-items: center;
  color: var(--warning-color);
  font-style: italic;
}

/* line 3820, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.data-status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 3832, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.data-status-indicator.simulated {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

/* line 3838, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.data-status-indicator.real {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

/* line 3844, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.data-status-indicator.mixed {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

/* line 3850, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.data-status-indicator.warning {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* line 3856, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.data-status-indicator i {
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  /* line 3863, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .data-status-indicator {
    display: block;
    margin-left: 0;
    margin-top: 0.5rem;
    width: fit-content;
  }
}

/* line 3871, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.traffic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

/* line 3878, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.logs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

/* line 3885, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.maintenance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

/* line 3893, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.portal-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

/* line 3903, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.portal-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* line 3909, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.portal-card .portal-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #E5A82E, #140D23);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* line 3919, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.portal-card .portal-icon i {
  color: #FFFFFF;
  font-size: 1.2rem;
}

/* line 3925, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.portal-card .portal-content {
  flex: 1;
  min-width: 0;
}

/* line 3929, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.portal-card .portal-content .portal-title {
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* line 3936, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.portal-card .portal-content .portal-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* line 3942, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.portal-card .portal-content .portal-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(229, 168, 46, 0.2);
  color: #E5A82E;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* line 3955, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.portal-card .portal-content .portal-btn:hover {
  background: rgba(229, 168, 46, 0.3);
  color: #FFFFFF;
  text-decoration: none;
}

/* line 3961, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.portal-card .portal-content .portal-btn.primary {
  background: rgba(229, 168, 46, 0.3);
  color: #FFFFFF;
}

/* line 3966, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.portal-card .portal-content .portal-btn.secondary {
  background: rgba(52, 152, 219, 0.3);
  color: #3498db;
}

/* line 3970, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.portal-card .portal-content .portal-btn.secondary:hover {
  background: rgba(52, 152, 219, 0.4);
  color: #FFFFFF;
}

/* line 3977, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.portal-card .portal-content .portal-link {
  color: #E5A82E;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* line 3984, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.portal-card .portal-content .portal-link:hover {
  color: #FFFFFF;
  text-decoration: none;
}

/* line 3992, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.portal-card.primary .portal-icon {
  background: linear-gradient(135deg, #ff6b35, #e55a2b);
}

/* line 3996, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.portal-card.secondary .portal-icon {
  background: linear-gradient(135deg, #3498db, #2980b9);
}

/* line 4000, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.portal-card.accent .portal-icon {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

/* line 4006, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.health-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

/* line 4016, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.health-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* line 4022, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.health-card .health-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* line 4031, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.health-card .health-icon.success {
  background: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
}

/* line 4036, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.health-card .health-icon.warning {
  background: rgba(243, 156, 18, 0.2);
  color: #f39c12;
}

/* line 4041, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.health-card .health-icon.error {
  background: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
}

/* line 4046, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.health-card .health-icon i {
  font-size: 1.2rem;
}

/* line 4051, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.health-card .health-content {
  flex: 1;
  min-width: 0;
}

/* line 4055, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.health-card .health-content .health-title {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

/* line 4063, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.health-card .health-content .health-value {
  color: #FFFFFF;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* line 4071, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.health-card .health-content .health-status {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}

/* line 4079, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.performance-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

/* line 4086, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.performance-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

/* line 4091, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.performance-card .performance-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

/* line 4097, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.performance-card .performance-header h3, .performance-card .performance-header .h3 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
}

/* line 4104, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.performance-card .performance-header .performance-value {
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 700;
}

/* line 4111, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.performance-card .performance-bar {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  height: 8px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

/* line 4118, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.performance-card .performance-bar .performance-fill {
  height: 100%;
  background: linear-gradient(135deg, #E5A82E, #e55a2b);
  border-radius: 6px;
  transition: width 0.3s ease;
}

/* line 4126, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.performance-card .performance-status {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}

/* line 4133, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

/* line 4140, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

/* line 4145, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-card .api-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

/* line 4151, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-card .api-header h3, .api-card .api-header .h3 {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

/* line 4158, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-card .api-header i {
  color: #E5A82E;
  font-size: 1.1rem;
}

/* line 4164, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-card .api-metrics {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* line 4169, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-card .api-metrics .api-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* line 4174, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-card .api-metrics .api-metric .api-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

/* line 4179, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-card .api-metrics .api-metric .api-value {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
}

/* line 4187, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-card .api-error-rate {
  text-align: center;
}

/* line 4190, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-card .api-error-rate .error-rate-value {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* line 4195, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-card .api-error-rate .error-rate-value.low {
  color: #2ecc71;
}

/* line 4199, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-card .api-error-rate .error-rate-value.medium {
  color: #f39c12;
}

/* line 4203, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-card .api-error-rate .error-rate-value.high {
  color: #e74c3c;
}

/* line 4208, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.api-card .api-error-rate .error-rate-status {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

/* line 4216, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.traffic-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

/* line 4226, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.traffic-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* line 4232, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.traffic-card .traffic-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #E5A82E, #140D23);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* line 4242, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.traffic-card .traffic-icon i {
  color: #FFFFFF;
  font-size: 1.2rem;
}

/* line 4248, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.traffic-card .traffic-content {
  flex: 1;
  min-width: 0;
}

/* line 4252, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.traffic-card .traffic-content .traffic-title {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

/* line 4260, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.traffic-card .traffic-content .traffic-value {
  color: #FFFFFF;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* line 4268, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.traffic-card .traffic-content .traffic-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}

/* line 4276, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.logs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.5rem;
}

/* line 4282, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.logs-card,
.alerts-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

/* line 4290, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.logs-card:hover,
.alerts-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

/* line 4295, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.logs-card .logs-header,
.logs-card .alerts-header,
.alerts-card .logs-header,
.alerts-card .alerts-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

/* line 4302, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.logs-card .logs-header h3, .logs-card .logs-header .h3,
.logs-card .alerts-header h3,
.logs-card .alerts-header .h3,
.alerts-card .logs-header h3,
.alerts-card .logs-header .h3,
.alerts-card .alerts-header h3,
.alerts-card .alerts-header .h3 {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

/* line 4309, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.logs-card .logs-header .logs-count,
.logs-card .logs-header .alerts-count,
.logs-card .alerts-header .logs-count,
.logs-card .alerts-header .alerts-count,
.alerts-card .logs-header .logs-count,
.alerts-card .logs-header .alerts-count,
.alerts-card .alerts-header .logs-count,
.alerts-card .alerts-header .alerts-count {
  background: rgba(229, 168, 46, 0.2);
  color: #E5A82E;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* line 4321, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.log-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  border-left: 3px solid;
}

/* line 4330, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.log-item.error {
  background: rgba(231, 76, 60, 0.1);
  border-left-color: #e74c3c;
}

/* line 4335, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.log-item.warn {
  background: rgba(243, 156, 18, 0.1);
  border-left-color: #f39c12;
}

/* line 4340, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.log-item .log-time {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}

/* line 4345, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.log-item .log-message {
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 500;
}

/* line 4351, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.log-item .log-service {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
}

/* line 4357, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.alert-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem;
  background: rgba(231, 76, 60, 0.1);
  border-radius: 8px;
  margin-bottom: 0.5rem;
  border-left: 3px solid #e74c3c;
}

/* line 4367, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.alert-item .alert-time {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}

/* line 4372, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.alert-item .alert-type {
  color: #e74c3c;
  font-size: 0.85rem;
  font-weight: 600;
}

/* line 4378, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.alert-item .alert-details {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
}

/* line 4385, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.maintenance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

/* line 4391, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.maintenance-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

/* line 4398, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.maintenance-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

/* line 4403, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.maintenance-card .maintenance-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

/* line 4409, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.maintenance-card .maintenance-header h3, .maintenance-card .maintenance-header .h3 {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

/* line 4416, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.maintenance-card .maintenance-header .maintenance-status {
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* line 4422, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.maintenance-card .maintenance-header .maintenance-status.completed {
  background: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
}

/* line 4427, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.maintenance-card .maintenance-header .maintenance-status.pending {
  background: rgba(243, 156, 18, 0.2);
  color: #f39c12;
}

/* line 4432, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.maintenance-card .maintenance-header .maintenance-status.in_progress {
  background: rgba(52, 152, 219, 0.2);
  color: #3498db;
}

/* line 4439, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.maintenance-card .maintenance-next {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

/* line 4446, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.maintenance-card .maintenance-next i {
  color: #E5A82E;
}

/* line 4451, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.maintenance-card .maintenance-details {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  margin-top: 0.5rem;
  padding: 0.5rem;
  background: rgba(229, 168, 46, 0.1);
  border-radius: 6px;
  border-left: 3px solid #E5A82E;
}

/* line 4463, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.maintenance-card .maintenance-details i {
  color: #E5A82E;
  flex-shrink: 0;
}

/* line 4472, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.logs-explanation {
  margin-bottom: 2rem;
}

/* line 4475, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.logs-explanation .explanation-card {
  background: rgba(229, 168, 46, 0.05);
  border: 1px solid rgba(229, 168, 46, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

/* line 4482, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.logs-explanation .explanation-card h4, .logs-explanation .explanation-card .h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #E5A82E;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* line 4491, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.logs-explanation .explanation-card h4 i, .logs-explanation .explanation-card .h4 i {
  font-size: 1rem;
}

/* line 4496, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.logs-explanation .explanation-card .explanation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  /* line 4496, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .logs-explanation .explanation-card .explanation-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* line 4507, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.logs-explanation .explanation-card .explanation-grid .explanation-item strong {
  color: #E5A82E;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

/* line 4514, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.logs-explanation .explanation-card .explanation-grid .explanation-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* line 4520, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.logs-explanation .explanation-card .explanation-grid .explanation-item p code {
  background: rgba(229, 168, 46, 0.1);
  color: #E5A82E;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-family: 'Monaco', 'Menlo', monospace;
  font-size: 0.85rem;
}

/* line 4536, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.logs-empty,
.alerts-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* line 4546, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.logs-empty i,
.alerts-empty i {
  font-size: 2rem;
  color: #22c55e;
  margin-bottom: 1rem;
}

/* line 4552, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.logs-empty p,
.alerts-empty p {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

/* line 4559, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.logs-empty small, .logs-empty .small,
.alerts-empty small,
.alerts-empty .small {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

/* line 4566, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.alerts-empty i {
  color: #22c55e;
}

/* line 4572, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-create-actions {
  margin-bottom: 1rem !important;
  padding: 0.75rem 1rem !important;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

/* line 4579, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-create-actions h2, .admin-create-actions .h2 {
  color: #FFFFFF;
  font-size: 1.2rem !important;
  font-weight: 600;
  margin-bottom: 0.5rem !important;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* line 4588, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-create-actions h2::before, .admin-create-actions .h2::before {
  content: '\f067';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #E5A82E;
  font-size: 0.9rem;
}

/* line 4597, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-create-actions .create-buttons-container {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* line 4602, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-create-actions .create-buttons-container .btn-create {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem !important;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

/* line 4614, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-create-actions .create-buttons-container .btn-create i {
  font-size: 1rem;
}

/* line 4618, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-create-actions .create-buttons-container .btn-create:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* line 4623, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-create-actions .create-buttons-container .btn-create.btn-primary, .admin-create-actions .create-buttons-container .btn-create.crm-action-button.crm-action-button-primary {
  background: linear-gradient(135deg, #E5A82E, #c78d19);
  color: #FFFFFF;
}

/* line 4627, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-create-actions .create-buttons-container .btn-create.btn-primary:hover, .admin-create-actions .create-buttons-container .btn-create.crm-action-button.crm-action-button-primary:hover {
  background: linear-gradient(135deg, #e8b145, #E5A82E);
}

/* line 4632, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-create-actions .create-buttons-container .btn-create.btn-secondary, .admin-create-actions .create-buttons-container .btn-create.crm-action-button.crm-action-button-secondary {
  background: linear-gradient(135deg, #140D23, black);
  color: #FFFFFF;
}

/* line 4636, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-create-actions .create-buttons-container .btn-create.btn-secondary:hover, .admin-create-actions .create-buttons-container .btn-create.crm-action-button.crm-action-button-secondary:hover {
  background: linear-gradient(135deg, #1f1436, #140D23);
}

/* line 4641, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-create-actions .create-buttons-container .btn-create.btn-info {
  background: linear-gradient(135deg, #17a2b8, #117a8b);
  color: #FFFFFF;
}

/* line 4645, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-create-actions .create-buttons-container .btn-create.btn-info:hover {
  background: linear-gradient(135deg, #1ab6cf, #17a2b8);
}

/* line 4653, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-create-actions .stats-grid {
  display: flex !important;
  flex-direction: row !important;
  gap: 0.75rem;
  margin-top: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

/* line 4662, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-create-actions .stats-grid::-webkit-scrollbar {
  height: 4px;
}

/* line 4666, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-create-actions .stats-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

/* line 4671, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-create-actions .stats-grid::-webkit-scrollbar-thumb {
  background: #E5A82E;
  border-radius: 2px;
}

/* line 4676, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-create-actions .stats-grid::-webkit-scrollbar-thumb:hover {
  background: #ebbb5b;
}

/* line 4682, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-create-actions .offer-link {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s ease;
}

/* line 4690, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-create-actions .offer-link:hover {
  color: #E5A82E;
  text-decoration: none;
}

/* line 4695, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-create-actions .offer-link i {
  color: #E5A82E;
}

/* line 4700, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-create-actions .stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 0.6rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
  min-width: 140px;
  flex-shrink: 0;
}

/* line 4712, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-create-actions .stat-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

/* line 4718, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-create-actions .stat-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: linear-gradient(135deg, #E5A82E 0%, #f7931e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}

/* line 4731, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-create-actions .stat-content {
  flex: 1;
}

/* line 4735, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-create-actions .stat-number {
  font-size: 1.3rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 0.05rem;
}

/* line 4743, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-create-actions .stat-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  /* line 4753, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .admin-create-actions .create-buttons-container {
    flex-direction: column;
  }
  /* line 4756, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .admin-create-actions .create-buttons-container .btn-create {
    width: 100%;
    justify-content: center;
  }
}

/* line 4766, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-search-bar {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  margin-bottom: 0.5rem;
  padding: 0.4rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
  flex-wrap: nowrap;
}

/* line 4778, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-search-bar .search-input-container {
  position: relative;
  flex: 1;
  min-width: 200px;
  max-width: 300px;
}

/* line 4784, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-search-bar .search-input-container i {
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

/* line 4793, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-search-bar .search-input-container .search-input {
  width: 100%;
  padding: 0.3rem 0.4rem 0.3rem 1.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  color: #FFFFFF;
  font-size: 0.75rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

/* line 4804, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-search-bar .search-input-container .search-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
}

/* line 4809, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-search-bar .search-input-container .search-input:focus {
  outline: none;
  border-color: #E5A82E;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 2px rgba(229, 168, 46, 0.2);
}

/* line 4818, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-search-bar .search-filters {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* line 4823, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-search-bar .search-filters .filter-select {
  padding: 0.3rem 0.4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  color: #FFFFFF;
  font-size: 0.75rem;
  min-width: 90px;
  max-width: 110px;
  transition: all 0.3s ease;
}

/* line 4834, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-search-bar .search-filters .filter-select:focus {
  outline: none;
  border-color: #E5A82E;
  background: rgba(255, 255, 255, 0.08);
}

/* line 4840, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-search-bar .search-filters .filter-select option {
  background: #140D23;
  color: #FFFFFF;
}

@media (max-width: 768px) {
  /* line 4766, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .admin-search-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
  /* line 4853, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .admin-search-bar .search-input-container {
    min-width: auto;
    max-width: none;
  }
  /* line 4858, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .admin-search-bar .search-filters {
    justify-content: stretch;
    flex-wrap: wrap;
  }
  /* line 4862, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .admin-search-bar .search-filters .filter-select {
    flex: 1;
    min-width: auto;
    max-width: none;
  }
}

/* line 4873, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-table {
  font-size: 0.75rem;
}

/* line 4876, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-table th {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

/* line 4883, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-table th.sortable {
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
  position: relative;
}

/* line 4889, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-table th.sortable:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #E5A82E;
}

/* line 4894, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-table th.sortable .sort-icon {
  margin-left: 0.3rem;
  opacity: 0.5;
  transition: all 0.3s ease;
  font-size: 0.7rem;
}

/* line 4901, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-table th.sortable:hover .sort-icon {
  opacity: 1;
  color: #E5A82E;
}

/* line 4908, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-table td {
  padding: 0.25rem 0.3rem;
  font-size: 0.75rem;
  vertical-align: middle;
}

/* line 4914, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-table .admin-actions {
  display: flex;
  gap: 0.2rem;
  flex-wrap: wrap;
}

/* line 4919, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-table .admin-actions .btn {
  padding: 0.15rem 0.3rem;
  font-size: 0.65rem;
  border-radius: 2px;
  min-width: auto;
}

/* line 4928, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-table .user-role,
.admin-table .user-status,
.admin-table .organization-type,
.admin-table .platform-mode,
.admin-table .platform-status {
  padding: 0.1rem 0.3rem;
  border-radius: 2px;
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1px;
}

/* line 4941, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-table .user-role.admin,
.admin-table .user-status.active,
.admin-table .platform-status.active {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

/* line 4949, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-table .user-role.user,
.admin-table .user-status.inactive {
  background: rgba(156, 163, 175, 0.2);
  color: #9ca3af;
  border: 1px solid rgba(156, 163, 175, 0.3);
}

/* line 4956, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-table .organization-type.forge-the-web {
  background: rgba(229, 168, 46, 0.2);
  color: #E5A82E;
  border: 1px solid rgba(229, 168, 46, 0.3);
}

/* line 4962, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-table .organization-type.client {
  background: rgba(20, 13, 35, 0.2);
  color: #3f296d;
  border: 1px solid rgba(20, 13, 35, 0.3);
}

/* line 4968, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-table .platform-mode.business {
  background: rgba(168, 85, 247, 0.2);
  color: #a855f7;
  border: 1px solid rgba(168, 85, 247, 0.3);
}

/* line 4974, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-table .platform-mode.standard {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

/* line 4983, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-card {
  margin-bottom: 0.5rem;
}

/* line 4986, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-card .card-header {
  padding: 0.4rem 0.6rem;
}

/* line 4989, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-card .card-header h3, .admin-card .card-header .h3 {
  font-size: 0.8rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}

/* line 4997, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-card .card-content {
  padding: 0.5rem;
}

/* line 5003, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-users-content,
.admin-organizations-content,
.admin-platforms-content,
.admin-analytics-content,
.admin-observability-content {
  font-size: 0.8rem;
  padding: 0.5rem 0.3rem;
}

/* line 5011, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-users-content h2, .admin-users-content .h2,
.admin-organizations-content h2,
.admin-organizations-content .h2,
.admin-platforms-content h2,
.admin-platforms-content .h2,
.admin-analytics-content h2,
.admin-analytics-content .h2,
.admin-observability-content h2,
.admin-observability-content .h2 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

/* line 5016, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-users-content h3, .admin-users-content .h3,
.admin-organizations-content h3,
.admin-organizations-content .h3,
.admin-platforms-content h3,
.admin-platforms-content .h3,
.admin-analytics-content h3,
.admin-analytics-content .h3,
.admin-observability-content h3,
.admin-observability-content .h3 {
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
}

/* line 5025, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-container {
  width: 90%;
  margin: 20px auto;
  padding: 2rem;
}

/* line 5031, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-header {
  text-align: center;
  margin-bottom: 2rem;
}

/* line 5035, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-header h1, .admin-form-header .h1 {
  color: #FFFFFF;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

/* line 5045, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-header h1 i, .admin-form-header .h1 i {
  color: #E5A82E;
}

/* line 5050, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin: 0;
}

/* line 5057, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
}

/* line 5064, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-errors {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

/* line 5071, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-errors h3, .admin-form-errors .h3 {
  color: #ef4444;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* line 5078, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-errors ul {
  margin: 0;
  padding-left: 1.5rem;
  color: #ef4444;
  font-size: 0.9rem;
}

/* line 5086, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-section {
  margin-bottom: 2rem;
}

/* line 5089, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-section h3, .admin-form-section .h3 {
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 5098, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-section h3 i, .admin-form-section .h3 i {
  color: #E5A82E;
}

/* line 5104, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 768px) {
  /* line 5104, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .admin-form-row {
    grid-template-columns: 1fr;
  }
}

/* line 5114, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-field {
  margin-bottom: 1rem;
}

/* line 5117, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-field .admin-form-label {
  display: block;
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* line 5125, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-field .admin-form-input,
.admin-form-field .admin-form-select,
.admin-form-field .admin-form-textarea {
  width: 100%;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: #FFFFFF;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

/* line 5137, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-field .admin-form-input::placeholder,
.admin-form-field .admin-form-select::placeholder,
.admin-form-field .admin-form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* line 5141, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-field .admin-form-input:focus,
.admin-form-field .admin-form-select:focus,
.admin-form-field .admin-form-textarea:focus {
  outline: none;
  border-color: #E5A82E;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 2px rgba(229, 168, 46, 0.2);
}

/* line 5148, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-field .admin-form-input:required,
.admin-form-field .admin-form-select:required,
.admin-form-field .admin-form-textarea:required {
  border-left: 3px solid #E5A82E;
}

/* line 5153, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-field .admin-form-textarea {
  resize: vertical;
  min-height: 80px;
}

/* line 5158, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-field .admin-form-help {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  margin-top: 0.25rem;
  margin-bottom: 0;
}

/* line 5166, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

/* line 5171, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-checkbox .admin-form-checkbox-input {
  margin: 0;
  width: 18px;
  height: 18px;
  accent-color: #E5A82E;
}

/* line 5178, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-checkbox .admin-form-checkbox-label {
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
  cursor: pointer;
}

/* line 5186, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-checkbox .admin-form-help {
  margin-top: 0.5rem;
}

/* line 5191, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-info {
  background: rgba(229, 168, 46, 0.1);
  border: 1px solid rgba(229, 168, 46, 0.2);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}

/* line 5198, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-info h4, .admin-form-info .h4 {
  color: #E5A82E;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 5208, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* line 5213, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-info p:last-child {
  margin-bottom: 0;
}

/* line 5217, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-info p i {
  color: #E5A82E;
  margin-right: 0.5rem;
}

/* line 5223, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-info .admin-form-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  /* line 5223, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .admin-form-info .admin-form-info-grid {
    grid-template-columns: 1fr;
  }
}

/* line 5234, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-info .admin-form-info-item {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  padding: 1rem;
}

/* line 5239, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-info .admin-form-info-item h5, .admin-form-info .admin-form-info-item .h5 {
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 5248, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-info .admin-form-info-item h5 i, .admin-form-info .admin-form-info-item .h5 i {
  color: #E5A82E;
}

/* line 5253, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-info .admin-form-info-item ul {
  margin: 0;
  padding-left: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

/* line 5259, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-info .admin-form-info-item ul li {
  margin-bottom: 0.25rem;
}

/* line 5266, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  /* line 5266, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .admin-form-actions {
    flex-direction: column;
  }
}

/* line 5278, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions .btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
}

/* line 5291, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* line 5296, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions .btn.btn-primary, .admin-form-actions .btn.crm-action-button.crm-action-button-primary {
  background: linear-gradient(135deg, #E5A82E, #c78d19);
  color: #FFFFFF;
}

/* line 5300, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions .btn.btn-primary:hover, .admin-form-actions .btn.crm-action-button.crm-action-button-primary:hover {
  background: linear-gradient(135deg, #e8b145, #E5A82E);
}

/* line 5305, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions .btn.btn-secondary, .admin-form-actions .btn.crm-action-button.crm-action-button-secondary {
  background: linear-gradient(135deg, #140D23, black);
  color: #FFFFFF;
}

/* line 5309, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions .btn.btn-secondary:hover, .admin-form-actions .btn.crm-action-button.crm-action-button-secondary:hover {
  background: linear-gradient(135deg, #1f1436, #140D23);
}

/* line 5316, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions .stats-grid {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  margin-top: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

/* line 5325, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions .stats-grid::-webkit-scrollbar {
  height: 4px;
}

/* line 5329, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions .stats-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

/* line 5334, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions .stats-grid::-webkit-scrollbar-thumb {
  background: #E5A82E;
  border-radius: 2px;
}

/* line 5339, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions .stats-grid::-webkit-scrollbar-thumb:hover {
  background: #ebbb5b;
}

/* line 5344, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions .stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 0.6rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
  min-width: 140px;
  flex-shrink: 0;
}

/* line 5356, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions .stat-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

/* line 5362, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions .stat-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: linear-gradient(135deg, #E5A82E 0%, #f7931e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}

/* line 5375, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions .stat-content {
  flex: 1;
}

/* line 5379, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions .stat-number {
  font-size: 1.3rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 0.05rem;
}

/* line 5387, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions .stat-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* line 5396, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions .offer-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* line 5403, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions .offer-name i {
  color: #E5A82E;
}

/* line 5408, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions .offer-type {
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 5416, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions .offer-type.spark {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #fff;
}

/* line 5421, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions .offer-type.flow {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: #fff;
}

/* line 5426, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions .offer-type.starter.pack {
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  color: #fff;
}

/* line 5432, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions .application-count {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

/* line 5441, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions .application-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* line 5448, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions .application-name i {
  color: #E5A82E;
}

/* line 5453, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions .category-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 5461, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions .category-badge.commercial {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #fff;
}

/* line 5466, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions .category-badge.administrative {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: #fff;
}

/* line 5471, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions .category-badge.governance {
  background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
  color: #fff;
}

/* line 5476, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions .category-badge.operational {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: #fff;
}

/* line 5482, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions .module-count {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

/* line 5491, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions .module-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* line 5498, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions .module-name i {
  color: #E5A82E;
}

/* line 5503, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions .application-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* line 5508, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions .access-level {
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 5516, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions .access-level.open {
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  color: #fff;
}

/* line 5521, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions .access-level.restricted {
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  color: #fff;
}

/* line 5526, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions .access-level.admin_only {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: #fff;
}

/* line 5532, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions .module-features {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* line 5538, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions .feature-badge {
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* line 5547, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions .feature-badge.voting {
  background: rgba(52, 152, 219, 0.2);
  color: #3498db;
  border: 1px solid rgba(52, 152, 219, 0.3);
}

/* line 5553, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions .feature-badge.kpi {
  background: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.3);
}

/* line 5559, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-actions .feature-badge.maintenance {
  background: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.3);
}

/* line 5570, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-section {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

/* line 5578, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-section:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

/* line 5583, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

/* line 5589, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-section .section-header h2, .admin-section .section-header .h2 {
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 5598, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-section .section-header h2 i, .admin-section .section-header .h2 i {
  color: #E5A82E;
  font-size: 1rem;
}

/* line 5604, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-section .section-header .section-badge {
  background: rgba(229, 168, 46, 0.2);
  color: #E5A82E;
  padding: 0.25rem 0.6rem;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  border: 1px solid rgba(229, 168, 46, 0.3);
}

/* line 5619, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-stats-grid .stat-card.alert-card {
  background: rgba(231, 76, 60, 0.08);
  border-color: rgba(231, 76, 60, 0.2);
}

/* line 5623, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-stats-grid .stat-card.alert-card:hover {
  background: rgba(231, 76, 60, 0.12);
  border-color: rgba(231, 76, 60, 0.3);
}

/* line 5628, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-stats-grid .stat-card.alert-card .stat-icon {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}

/* line 5634, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-stats-grid .stat-sublabel {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  margin-top: 0.25rem;
}

/* line 5644, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.team-table .admin-row {
  background: rgba(229, 168, 46, 0.05);
  border-left: 2px solid #E5A82E;
}

/* line 5648, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.team-table .admin-row:hover {
  background: rgba(229, 168, 46, 0.1);
}

/* line 5653, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.team-table .user-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 5658, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.team-table .user-info .user-avatar,
.team-table .user-info .user-avatar-placeholder {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}

/* line 5667, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.team-table .user-info .user-avatar-placeholder {
  background: linear-gradient(135deg, #E5A82E, #140D23);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.7rem;
}

/* line 5677, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.team-table .user-info .user-name {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 0.85rem;
}

/* line 5684, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.team-table .role-badge {
  padding: 0.25rem 0.5rem;
  border-radius: 10px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* line 5695, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.team-table .role-badge.role-admin {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: #FFFFFF;
  border: 1px solid rgba(231, 76, 60, 0.3);
}

/* line 5700, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.team-table .role-badge.role-admin i {
  font-size: 0.7rem;
}

/* line 5705, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.team-table .role-badge.role-user {
  background: rgba(52, 152, 219, 0.2);
  color: #3498db;
  border: 1px solid rgba(52, 152, 219, 0.3);
}

/* line 5710, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.team-table .role-badge.role-user i {
  font-size: 0.7rem;
}

/* line 5716, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.team-table .twofa-badge {
  padding: 0.2rem 0.45rem;
  border-radius: 8px;
  font-size: 0.65rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* line 5725, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.team-table .twofa-badge.twofa-enabled {
  background: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.3);
}

/* line 5731, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.team-table .twofa-badge.twofa-disabled {
  background: rgba(149, 165, 166, 0.2);
  color: #95a5a6;
  border: 1px solid rgba(149, 165, 166, 0.3);
}

/* line 5737, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.team-table .twofa-badge i {
  font-size: 0.65rem;
}

/* line 5742, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.team-table .connection-time {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
}

/* line 5747, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.team-table .action-buttons {
  display: flex;
  gap: 0.4rem;
}

/* line 5751, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.team-table .action-buttons .btn-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.75rem;
}

/* line 5763, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.team-table .action-buttons .btn-icon.btn-primary, .team-table .action-buttons .btn-icon.crm-action-button.crm-action-button-primary {
  background: rgba(52, 152, 219, 0.2);
  color: #3498db;
}

/* line 5767, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.team-table .action-buttons .btn-icon.btn-primary:hover, .team-table .action-buttons .btn-icon.crm-action-button.crm-action-button-primary:hover {
  background: rgba(52, 152, 219, 0.35);
  transform: translateY(-2px);
}

/* line 5773, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.team-table .action-buttons .btn-icon.btn-warning {
  background: rgba(243, 156, 18, 0.2);
  color: #f39c12;
}

/* line 5777, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.team-table .action-buttons .btn-icon.btn-warning:hover {
  background: rgba(243, 156, 18, 0.35);
  transform: translateY(-2px);
}

/* line 5787, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.activity-log {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-height: 450px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

/* line 5795, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.activity-log::-webkit-scrollbar {
  width: 5px;
}

/* line 5799, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.activity-log::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

/* line 5804, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.activity-log::-webkit-scrollbar-thumb {
  background: rgba(229, 168, 46, 0.4);
  border-radius: 3px;
}

/* line 5808, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.activity-log::-webkit-scrollbar-thumb:hover {
  background: rgba(229, 168, 46, 0.6);
}

/* line 5813, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.activity-log .activity-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.6rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  border-left: 2px solid;
  transition: all 0.3s ease;
}

/* line 5823, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.activity-log .activity-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(2px);
}

/* line 5828, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.activity-log .activity-item .activity-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
}

/* line 5838, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.activity-log .activity-item .activity-icon i {
  color: #FFFFFF;
}

/* line 5842, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.activity-log .activity-item .activity-icon.success {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  border-color: #2ecc71;
}

/* line 5847, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.activity-log .activity-item .activity-icon.primary {
  background: linear-gradient(135deg, #3498db, #2980b9);
  border-color: #3498db;
}

/* line 5852, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.activity-log .activity-item .activity-icon.warning {
  background: linear-gradient(135deg, #f39c12, #e67e22);
  border-color: #f39c12;
}

/* line 5857, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.activity-log .activity-item .activity-icon.info {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
  border-color: #9b59b6;
}

/* line 5862, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.activity-log .activity-item .activity-icon.secondary {
  background: linear-gradient(135deg, #95a5a6, #7f8c8d);
  border-color: #95a5a6;
}

/* line 5868, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.activity-log .activity-item .activity-content {
  flex: 1;
  min-width: 0;
}

/* line 5872, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.activity-log .activity-item .activity-content .activity-main {
  margin-bottom: 0.3rem;
}

/* line 5875, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.activity-log .activity-item .activity-content .activity-main strong {
  color: #E5A82E;
  font-weight: 600;
  margin-right: 0.3rem;
  font-size: 0.8rem;
}

/* line 5882, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.activity-log .activity-item .activity-content .activity-main .activity-action {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
}

/* line 5888, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.activity-log .activity-item .activity-content .activity-time {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
}

/* line 5895, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.activity-log .activity-item .activity-content .activity-time i {
  font-size: 0.65rem;
}

/* line 5902, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.activity-log .empty-state {
  text-align: center;
  padding: 2rem 1rem;
  color: rgba(255, 255, 255, 0.5);
}

/* line 5907, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.activity-log .empty-state i {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  opacity: 0.5;
}

/* line 5913, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.activity-log .empty-state p {
  font-size: 0.9rem;
  margin: 0;
}

/* line 5923, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.alerts-section .section-header .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #E5A82E, #c78d19);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
}

/* line 5937, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.alerts-section .section-header .btn:hover {
  background: linear-gradient(135deg, #e8b145, #E5A82E);
  transform: translateY(-2px);
  text-decoration: none;
}

/* line 5946, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.alerts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
}

/* line 5952, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.alert-card-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.85rem;
  transition: all 0.3s ease;
}

/* line 5959, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.alert-card-section:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

/* line 5964, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.alert-card-section .alert-card-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 5972, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.alert-card-section .alert-card-header .alert-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

/* line 5982, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.alert-card-section .alert-card-header .alert-icon.contact-icon {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: #FFFFFF;
}

/* line 5987, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.alert-card-section .alert-card-header .alert-icon.preregistration-icon {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
  color: #FFFFFF;
}

/* line 5993, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.alert-card-section .alert-card-header h3, .alert-card-section .alert-card-header .h3 {
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 0.3rem 0;
}

/* line 6000, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.alert-card-section .alert-card-header .alert-count {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-weight: 500;
}

/* line 6007, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.alert-card-section .alert-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 0.4rem;
}

/* line 6015, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.alert-card-section .alert-list::-webkit-scrollbar {
  width: 4px;
}

/* line 6019, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.alert-card-section .alert-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
}

/* line 6024, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.alert-card-section .alert-list::-webkit-scrollbar-thumb {
  background: rgba(229, 168, 46, 0.4);
  border-radius: 2px;
}

/* line 6028, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.alert-card-section .alert-list::-webkit-scrollbar-thumb:hover {
  background: rgba(229, 168, 46, 0.6);
}

/* line 6034, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.alert-card-section .alert-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  border-left: 2px solid #E5A82E;
  transition: all 0.3s ease;
}

/* line 6045, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.alert-card-section .alert-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(2px);
}

/* line 6050, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.alert-card-section .alert-item .alert-item-content {
  flex: 1;
  min-width: 0;
}

/* line 6054, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.alert-card-section .alert-item .alert-item-content strong {
  display: block;
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

/* line 6062, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.alert-card-section .alert-item .alert-item-content .alert-item-email {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 6072, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.alert-card-section .alert-item .alert-item-time {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  font-weight: 500;
  flex-shrink: 0;
}

/* line 6080, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.alert-card-section .alert-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 0.75rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

/* line 6088, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.alert-card-section .alert-empty i {
  font-size: 2rem;
  color: #2ecc71;
  margin-bottom: 0.75rem;
  opacity: 0.7;
}

/* line 6099, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.alert-card-section .alert-footer {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 6104, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.alert-card-section .alert-footer .alert-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: #E5A82E;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* line 6114, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.alert-card-section .alert-footer .alert-link:hover {
  color: #ebbb5b;
  text-decoration: underline;
}

@media (max-width: 1200px) {
  /* line 6124, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .alerts-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* line 6130, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .admin-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  /* line 6135, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .admin-section {
    padding: 0.75rem;
    margin-bottom: 1rem;
  }
  /* line 6139, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .admin-section .section-header {
    margin-bottom: 0.75rem;
  }
  /* line 6142, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .admin-section .section-header h2, .admin-section .section-header .h2 {
    font-size: 1rem;
  }
  /* line 6149, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .team-table .user-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
  /* line 6155, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .team-table .action-buttons {
    flex-direction: column;
  }
  /* line 6160, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .activity-log {
    max-height: 350px;
  }
  /* line 6163, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .activity-log .activity-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem;
  }
  /* line 6168, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .activity-log .activity-item .activity-icon {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }
  /* line 6176, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .alert-card-section {
    padding: 0.7rem;
  }
  /* line 6179, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .alert-card-section .alert-card-header {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0.5rem;
    margin-bottom: 0.7rem;
    padding-bottom: 0.7rem;
  }
  /* line 6187, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .alert-card-section .alert-card-header .alert-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  /* line 6194, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .alert-card-section .alert-list {
    max-height: 250px;
    gap: 0.4rem;
  }
  /* line 6199, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .alert-card-section .alert-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    padding: 0.5rem;
  }
  /* line 6205, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .alert-card-section .alert-item .alert-item-time {
    align-self: flex-end;
  }
}

/* line 6214, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.promotions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

/* line 6221, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.promotion-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* line 6228, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.promotion-section:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}

/* line 6233, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.promotion-section .promotion-section-header {
  background: linear-gradient(135deg, rgba(229, 168, 46, 0.15) 0%, rgba(20, 13, 35, 0.15) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* line 6241, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.promotion-section .promotion-section-header i {
  color: #E5A82E;
  font-size: 1.1rem;
}

/* line 6246, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.promotion-section .promotion-section-header h4, .promotion-section .promotion-section-header .h4 {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.3px;
}

/* line 6255, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.promotion-section .promotion-section-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* line 6263, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.promotion-compact-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transition: all 0.2s ease;
}

/* line 6273, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.promotion-compact-row:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateX(4px);
}

/* line 6279, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.promotion-compact-row .promotion-compact-label {
  flex: 0 0 130px;
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
  opacity: 1 !important;
}

/* line 6288, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.promotion-compact-row .promotion-compact-inputs {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* line 6294, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.promotion-compact-row .promotion-compact-inputs .compact-separator {
  color: #E5A82E;
  font-size: 1.1rem;
  font-weight: 600;
  flex: 0 0 auto;
}

/* line 6303, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.compact-input-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(20, 13, 35, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  transition: all 0.2s ease;
}

/* line 6315, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.compact-input-wrapper:hover {
  border-color: rgba(229, 168, 46, 0.4);
}

/* line 6319, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.compact-input-wrapper:focus-within {
  border-color: #E5A82E;
  background: rgba(20, 13, 35, 0.6);
  box-shadow: 0 0 0 3px rgba(229, 168, 46, 0.1);
}

/* line 6325, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.compact-input-wrapper .form-control-compact {
  flex: 1;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0;
  outline: none;
  width: 100%;
  min-width: 0;
}

/* line 6337, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.compact-input-wrapper .form-control-compact::-webkit-inner-spin-button, .compact-input-wrapper .form-control-compact::-webkit-outer-spin-button {
  opacity: 1;
  height: 24px;
}

/* line 6343, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.compact-input-wrapper .form-control-compact::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* line 6348, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.compact-input-wrapper .compact-suffix {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-weight: 500;
  flex-shrink: 0;
  white-space: nowrap;
}

/* line 6357, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.promotions-save-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 0 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1rem;
}

/* line 6365, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.promotions-save-section .btn {
  min-width: 200px;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

/* line 6376, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.promotions-save-section .btn i {
  font-size: 1.1rem;
}

/* line 6380, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.promotions-save-section .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(229, 168, 46, 0.3);
}

/* line 6385, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.promotions-save-section .btn:active {
  transform: translateY(0);
}

@media (max-width: 1024px) {
  /* line 6393, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .promotions-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  /* line 6398, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .promotion-compact-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  /* line 6403, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .promotion-compact-row .promotion-compact-label {
    flex: 1;
    text-align: left;
  }
  /* line 6408, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .promotion-compact-row .promotion-compact-inputs {
    width: 100%;
  }
}

@media (max-width: 768px) {
  /* line 6416, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .promotion-section .promotion-section-header {
    padding: 0.875rem 1rem;
  }
  /* line 6419, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .promotion-section .promotion-section-header h4, .promotion-section .promotion-section-header .h4 {
    font-size: 0.95rem;
  }
  /* line 6424, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .promotion-section .promotion-section-content {
    padding: 1rem;
    gap: 0.875rem;
  }
  /* line 6430, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .promotion-compact-row {
    padding: 0.625rem;
  }
  /* line 6433, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .promotion-compact-row .promotion-compact-label {
    font-size: 0.85rem;
  }
  /* line 6438, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .compact-input-wrapper {
    padding: 0.5rem 0.625rem;
  }
  /* line 6441, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .compact-input-wrapper .form-control-compact {
    font-size: 0.9rem;
  }
  /* line 6445, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .compact-input-wrapper .compact-suffix {
    font-size: 0.8rem;
  }
  /* line 6451, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
  .promotions-save-section .btn {
    min-width: 100%;
    font-size: 0.95rem;
  }
}

/* line 6461, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.agent-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: #E5A82E;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: all 0.25s ease;
  font-weight: 500;
  font-size: 0.9rem;
}

/* line 6475, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.agent-back-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  text-decoration: none;
}

/* line 6482, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.agent-back-btn i {
  font-size: 0.85rem;
}

/* line 6488, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.agent-primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #FFFFFF;
  text-decoration: none;
  border: 1px solid rgba(255, 107, 53, 0.5);
  transition: all 0.25s ease;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* line 6503, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.agent-primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  color: #FFFFFF;
  text-decoration: none;
}

/* line 6510, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.agent-primary-btn i {
  font-size: 0.85rem;
}

/* line 6517, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-dependencies-info {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* line 6521, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-dependencies-info p {
  margin-bottom: 1rem;
}

/* line 6526, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-dependency-section {
  margin-top: 1rem;
}

/* line 6529, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-dependency-section strong {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

/* line 6537, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-dependency-list {
  margin-top: 0.5rem;
  padding-left: 1.5rem;
  list-style-type: disc;
}

/* line 6542, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-dependency-list li {
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.85);
}

/* line 6548, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.dependency-meta {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9em;
}

/* line 6556, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.logs-card-transparent {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* line 6560, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.logs-card-transparent:hover {
  background: rgba(255, 255, 255, 0.03) !important;
}

/* line 6566, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.agent-compact-table {
  --bs-table-bg: transparent !important;
  --bs-table-striped-bg: rgba($white, 0.02) !important;
  --bs-table-hover-bg: rgba($white, 0.05) !important;
  background: transparent !important;
  color: #FFFFFF;
  margin-bottom: 0;
  font-size: 0.85rem;
}

/* line 6576, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.agent-compact-table thead th {
  background: rgba(255, 255, 255, 0.05) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding: 0.75rem 0.5rem;
  white-space: nowrap;
}

/* line 6590, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.agent-compact-table tbody tr {
  background: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  transition: all 0.2s ease;
}

/* line 6595, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.agent-compact-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03) !important;
}

/* line 6599, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.agent-compact-table tbody tr td {
  color: rgba(255, 255, 255, 0.9);
  padding: 0.75rem 0.5rem;
  vertical-align: middle;
  border: none !important;
}

/* line 6605, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.agent-compact-table tbody tr td strong {
  color: #FFFFFF;
  font-weight: 600;
}

/* line 6610, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.agent-compact-table tbody tr td code {
  background: rgba(255, 255, 255, 0.1);
  color: #E5A82E;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 0.75rem;
}

/* line 6618, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.agent-compact-table tbody tr td .badge {
  font-size: 0.7rem;
  padding: 0.3rem 0.5rem;
}

/* line 6623, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.agent-compact-table tbody tr td .btn-group-sm .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
}

/* line 6632, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.flex-column-admin {
  display: flex;
  flex-direction: column;
}

/* line 6639, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-field-sm {
  max-width: 300px;
}

/* line 6643, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-form-field-half {
  max-width: 48%;
}

/* line 6647, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-info-box {
  background: rgba(33, 150, 243, 0.1);
  border-left: 4px solid #2196f3;
  padding: 1rem;
  color: inherit;
}

/* line 6654, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-info-list {
  margin: 0.5rem 0 0 1.5rem;
  font-size: 0.9rem;
}

/* line 6659, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-col-position {
  width: 80px;
}

/* line 6663, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

/* line 6669, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-empty-state {
  text-align: center;
  padding: 2rem;
  opacity: 0.6;
}

/* line 6675, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-hint-text {
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* line 6680, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-section-title {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

/* line 6687, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.admin-grid-full {
  grid-column: 1 / -1;
}

/* line 6691, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.opacity-40 {
  opacity: 0.4;
}

/* line 6695, app/assets/stylesheets/pages/forge_the_web/_admin.scss */
.opacity-60 {
  opacity: 0.6;
}

/* line 6, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-admin-forms .form-preview-gradient-orange {
  background: linear-gradient(135deg, #ff6b35, #e55a2b);
}

/* line 10, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-admin-forms .form-preview-gradient-blue {
  background: linear-gradient(135deg, #3498db, #2980b9);
}

/* line 15, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-admin-forms .form-info-box-blue {
  background: rgba(33, 150, 243, 0.1);
  border-left: 4px solid #2196f3;
  padding: 1rem;
  color: inherit;
}

/* line 21, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-admin-forms .form-info-box-blue ul {
  margin: 0.5rem 0 0 1.5rem;
  font-size: 0.9rem;
}

/* line 27, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-admin-forms .form-info-box-orange {
  background: rgba(255, 165, 0, 0.1);
  border-left: 4px solid #ffa500;
  padding: 1rem;
  color: inherit;
}

/* line 33, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-admin-forms .form-info-box-orange ul {
  margin: 0.5rem 0 0 1.5rem;
  font-size: 0.9rem;
}

/* line 38, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-admin-forms .form-info-box-orange pre {
  margin: 0.5rem 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
}

/* line 45, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-admin-forms .form-info-box-purple {
  background: rgba(155, 89, 182, 0.1);
  border-left: 4px solid #9b59b6;
  padding: 1rem;
  color: inherit;
}

/* line 51, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-admin-forms .form-info-box-purple ul {
  margin: 0.5rem 0 0 1.5rem;
  font-size: 0.9rem;
}

/* line 57, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-admin-forms .form-info-box-red {
  background: rgba(231, 76, 60, 0.2);
  padding: 1rem;
  border-radius: 6px;
  color: #e74c3c;
  border-left: 4px solid #e74c3c;
}

/* line 64, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-admin-forms .form-info-box-red pre {
  margin: 0.5rem 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  white-space: pre-wrap;
}

/* line 75, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-filters label.form-label {
  color: rgba(255, 255, 255, 0.9);
}

/* line 79, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-filters .form-check-label {
  color: rgba(255, 255, 255, 0.8);
}

/* line 83, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-filters small, .agent-filters .small {
  color: rgba(255, 255, 255, 0.6);
}

/* line 90, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-traffic-values .traffic-label {
  color: rgba(255, 255, 255, 0.7);
}

/* line 94, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-traffic-values .traffic-value {
  font-size: 2rem;
  color: #F6E5B3;
}

/* line 102, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-modal .modal-content {
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  color: white;
}

/* line 112, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-modal .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 115, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-modal .modal-header .btn-close {
  color: rgba(255, 255, 255, 0.8);
  filter: invert(1);
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

/* line 121, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-modal .modal-header .btn-close:hover {
  opacity: 1;
}

/* line 128, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-modal .modal-body pre {
  background: rgba(255, 255, 255, 0.08);
  padding: 1rem;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
}

/* line 135, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-modal .modal-body code {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

/* line 142, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-modal .modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 148, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-progress-bar {
  height: 18px;
  background: rgba(255, 255, 255, 0.1);
}

/* line 152, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-progress-bar .progress-bar {
  transition: width 0.3s ease;
}

/* line 159, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.logs-card-full-width {
  grid-column: 1 / -1;
}

/* line 164, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.form-preview-gradient-purple {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

/* line 169, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.mt-3 {
  margin-top: 1rem;
}

/* line 173, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.mt-4 {
  margin-top: 1.5rem;
}

/* line 179, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-table-widths .w-40 {
  width: 40px;
}

/* line 180, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-table-widths .w-50 {
  width: 50px;
}

/* line 181, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-table-widths .w-60 {
  width: 60px;
}

/* line 182, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-table-widths .w-70 {
  width: 70px;
}

/* line 183, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-table-widths .w-80 {
  width: 80px;
}

/* line 184, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-table-widths .w-90 {
  width: 90px;
}

/* line 185, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-table-widths .w-100 {
  width: 100px;
}

/* line 186, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-table-widths .w-110 {
  width: 110px;
}

/* line 187, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-table-widths .w-120 {
  width: 120px;
}

/* line 188, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-table-widths .w-130 {
  width: 130px;
}

/* line 189, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-table-widths .w-140 {
  width: 140px;
}

/* line 190, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-table-widths .w-180 {
  width: 180px;
}

/* line 191, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-table-widths .w-200 {
  width: 200px;
}

/* line 192, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-table-widths .w-220 {
  width: 220px;
}

/* line 195, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-table-widths .mw-140 {
  max-width: 140px;
}

/* line 196, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-table-widths .mw-180 {
  max-width: 180px;
}

/* line 197, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-table-widths .mw-200 {
  max-width: 200px;
}

/* line 198, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-table-widths .mw-220 {
  max-width: 220px;
}

/* line 203, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

/* line 210, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-stat-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 216, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

/* line 223, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-label-muted {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 228, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-label-value {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

/* line 234, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-progress-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

/* line 242, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-detail-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
}

/* line 249, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

/* line 256, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-icon-success {
  color: #10b981;
}

/* line 260, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-icon-warning {
  color: #f59e0b;
}

/* line 264, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-card-warning {
  border: 2px solid rgba(245, 158, 11, 0.3);
}

/* line 268, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-icon-bg-warning {
  background: rgba(245, 158, 11, 0.1);
}

/* line 272, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* line 278, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-tag {
  padding: 0.375rem 0.75rem;
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* line 287, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* line 293, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-code-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* line 299, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-code-command {
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.3);
  color: #10b981;
  border-radius: 8px;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 310, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-api-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
}

/* line 316, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-empty-icon {
  font-size: 3rem;
  opacity: 0.3;
  margin-bottom: 1rem;
}

/* line 322, app/assets/stylesheets/pages/forge_the_web/_agent_admin.scss */
.agent-muted-hint {
  font-size: 0.8rem;
  opacity: 0.5;
}

/* line 4, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
body:has(.support-ticket-show-page) {
  min-height: 100vh;
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
  color: #FFFFFF;
  overflow-x: hidden;
}

/* line 15, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.support-ticket-show-page .reply-form-container {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
  backdrop-filter: blur(12px);
}

/* line 23, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.support-ticket-show-page .reply-form-container h3, .support-ticket-show-page .reply-form-container .h3 {
  color: #C38761;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
}

/* line 32, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.support-ticket-show-page .reply-form-container h3 i, .support-ticket-show-page .reply-form-container .h3 i {
  color: #C38761;
  font-size: 1.1rem;
}

/* line 38, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.support-ticket-show-page .reply-form-container .nav-tabs {
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

/* line 43, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.support-ticket-show-page .reply-form-container .nav-tabs .nav-item .nav-link {
  padding: 12px 20px;
  color: rgba(255, 255, 255, 0.7);
  border: none;
  border-bottom: 3px solid transparent;
  background: transparent;
  border-radius: 0;
}

/* line 51, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.support-ticket-show-page .reply-form-container .nav-tabs .nav-item .nav-link i {
  margin-right: 8px;
}

/* line 55, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.support-ticket-show-page .reply-form-container .nav-tabs .nav-item .nav-link:hover {
  color: #C38761;
  border-bottom-color: rgba(195, 135, 97, 0.5);
}

/* line 60, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.support-ticket-show-page .reply-form-container .nav-tabs .nav-item .nav-link.active {
  color: #C38761;
  border-bottom-color: #C38761;
  background: transparent;
}

/* line 71, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.support-ticket-show-page .reply-form-container .tab-content .admin-reply-form .form-group {
  margin-bottom: 16px;
}

/* line 74, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.support-ticket-show-page .reply-form-container .tab-content .admin-reply-form .form-group .form-label {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* line 83, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.support-ticket-show-page .reply-form-container .tab-content .admin-reply-form .form-actions {
  display: flex;
  justify-content: flex-end;
}

/* line 87, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.support-ticket-show-page .reply-form-container .tab-content .admin-reply-form .form-actions .support-submit {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%) !important;
  color: #fff !important;
  padding: 12px 20px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  min-width: 160px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  transition: all .3s ease;
}

/* line 99, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.support-ticket-show-page .reply-form-container .tab-content .admin-reply-form .form-actions .support-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  color: #fff !important;
}

/* line 111, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.support-ticket-show-page .reply-item.reply-internal {
  border-left: 4px solid #ffc107;
  background: rgba(255, 193, 7, 0.05);
}

/* line 119, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.support-ticket-show-page .ticket-sidebar .sidebar-card .action-group {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 124, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.support-ticket-show-page .ticket-sidebar .sidebar-card .action-group:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* line 130, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.support-ticket-show-page .ticket-sidebar .sidebar-card .action-group h4, .support-ticket-show-page .ticket-sidebar .sidebar-card .action-group .h4 {
  color: #C38761;
  font-size: 1rem;
  margin-bottom: 12px;
}

/* line 137, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.support-ticket-show-page .ticket-sidebar .sidebar-card .action-group .quick-action-form .form-group {
  margin-bottom: 12px;
}

/* line 140, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.support-ticket-show-page .ticket-sidebar .sidebar-card .action-group .quick-action-form .form-group .support-input {
  width: 100%;
  max-width: 100%;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 0.9rem;
  box-sizing: border-box;
}

/* line 151, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.support-ticket-show-page .ticket-sidebar .sidebar-card .action-group .quick-action-form .form-group .support-input:focus {
  outline: none;
  border-color: #C38761;
  background: rgba(255, 255, 255, 0.1);
}

/* line 157, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.support-ticket-show-page .ticket-sidebar .sidebar-card .action-group .quick-action-form .form-group .support-input option {
  background: #140D23;
  color: #fff;
}

/* line 165, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.support-ticket-show-page .ticket-sidebar .sidebar-card .action-group .quick-action-form .form-actions .btn {
  width: 100%;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* line 173, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.support-ticket-show-page .ticket-sidebar .sidebar-card .action-group .quick-action-form .form-actions .btn.btn-primary, .support-ticket-show-page .ticket-sidebar .sidebar-card .action-group .quick-action-form .form-actions .btn.crm-action-button.crm-action-button-primary, .support-ticket-show-page .ticket-sidebar .sidebar-card .action-group .quick-action-form .form-actions .btn.btn-success {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

/* line 180, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.support-ticket-show-page .ticket-sidebar .sidebar-card .action-group .quick-action-form .form-actions .btn.btn-primary:hover, .support-ticket-show-page .ticket-sidebar .sidebar-card .action-group .quick-action-form .form-actions .btn.crm-action-button.crm-action-button-primary:hover, .support-ticket-show-page .ticket-sidebar .sidebar-card .action-group .quick-action-form .form-actions .btn.btn-success:hover {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

/* line 195, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content {
  padding: 2rem;
}

/* line 199, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .tickets-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

/* line 205, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .tickets-stats-grid .stat-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.75rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(12px);
}

/* line 216, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .tickets-stats-grid .stat-card.total .stat-icon {
  color: #6c757d;
}

/* line 222, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .tickets-stats-grid .stat-card.open .stat-icon {
  color: #dc3545;
}

/* line 228, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .tickets-stats-grid .stat-card.in-progress .stat-icon {
  color: #ffc107;
}

/* line 234, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .tickets-stats-grid .stat-card.waiting .stat-icon {
  color: #17a2b8;
}

/* line 240, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .tickets-stats-grid .stat-card.resolved .stat-icon {
  color: #28a745;
}

/* line 246, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .tickets-stats-grid .stat-card.unassigned .stat-icon {
  color: #fd7e14;
}

/* line 251, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .tickets-stats-grid .stat-card .stat-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-right: 0.5rem;
}

/* line 257, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .tickets-stats-grid .stat-card .stat-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: #C38761;
  line-height: 1;
  margin-right: 0.5rem;
}

/* line 265, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .tickets-stats-grid .stat-card .stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1;
  flex: 1;
}

/* line 275, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .admin-filters {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  overflow: hidden;
  padding: 15px;
  margin-bottom: 2rem;
  backdrop-filter: blur(12px);
}

/* line 284, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .admin-filters .filters-form {
  display: flex;
  gap: 1rem;
  align-items: end;
  flex-wrap: wrap;
}

/* line 290, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .admin-filters .filters-form .filter-group {
  display: flex;
  flex-direction: column;
  min-width: 180px;
}

/* line 295, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .admin-filters .filters-form .filter-group .filter-label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #C38761;
}

/* line 302, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .admin-filters .filters-form .filter-group .filter-select,
.admin-support-tickets-content .admin-filters .filters-form .filter-group .filter-input {
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 0.9rem;
}

/* line 311, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .admin-filters .filters-form .filter-group .filter-select:focus,
.admin-support-tickets-content .admin-filters .filters-form .filter-group .filter-input:focus {
  outline: none;
  border-color: #C38761;
  background: rgba(255, 255, 255, 0.1);
}

/* line 317, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .admin-filters .filters-form .filter-group .filter-select::placeholder,
.admin-support-tickets-content .admin-filters .filters-form .filter-group .filter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 321, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .admin-filters .filters-form .filter-group .filter-select option,
.admin-support-tickets-content .admin-filters .filters-form .filter-group .filter-input option {
  background: #140D23;
  color: #fff;
}

/* line 328, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .admin-filters .filters-form .btn {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  min-height: 38px;
}

/* line 336, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .admin-filters .filters-form .btn.btn-secondary, .admin-support-tickets-content .admin-filters .filters-form .btn.crm-action-button.crm-action-button-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* line 341, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .admin-filters .filters-form .btn.btn-secondary:hover, .admin-support-tickets-content .admin-filters .filters-form .btn.crm-action-button.crm-action-button-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

/* line 348, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .admin-filters .filters-form .btn.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
}

/* line 353, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .admin-filters .filters-form .btn.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #C38761;
  color: #C38761;
  transform: translateY(-1px);
}

/* line 365, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .admin-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

/* line 372, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .admin-card .card-header {
  background: rgba(255, 255, 255, 0.15);
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* line 380, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .admin-card .card-header h3, .admin-support-tickets-content .admin-card .card-header .h3 {
  color: #C38761;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

/* line 386, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .admin-card .card-header h3 i, .admin-support-tickets-content .admin-card .card-header .h3 i {
  margin-right: 8px;
  color: #C38761;
}

/* line 392, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .admin-card .card-header .badge {
  background: rgba(195, 135, 97, 0.2);
  color: #C38761;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* line 402, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .admin-card .card-content {
  padding: 0;
}

/* line 405, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .admin-card .card-content .admin-table-container {
  overflow-x: auto;
}

/* line 411, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .admin-table {
  width: 100%;
  border-collapse: collapse;
}

/* line 415, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .admin-table thead {
  background: rgba(255, 255, 255, 0.15);
  color: #C38761;
}

/* line 419, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .admin-table thead th {
  padding: 12px 15px;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 429, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .admin-table tbody .ticket-row {
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

/* line 434, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .admin-table tbody .ticket-row.highlight-urgent {
  background: rgba(220, 53, 69, 0.1) !important;
  border-left: 4px solid #dc3545;
}

/* line 439, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .admin-table tbody .ticket-row:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

/* line 444, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .admin-table tbody .ticket-row td {
  padding: 12px 15px;
  color: #fff;
  font-size: 0.9rem;
  vertical-align: middle;
}

/* line 451, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .admin-table tbody .ticket-row .ticket-number {
  font-weight: 600;
  color: #C38761;
}

/* line 456, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .admin-table tbody .ticket-row .ticket-subject {
  max-width: 300px;
  color: #fff;
  line-height: 1.4;
}

/* line 462, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .admin-table tbody .ticket-row .ticket-date {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 467, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .admin-table tbody .ticket-row .badge {
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 477, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .admin-table tbody .ticket-row .admin-actions .btn {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* line 484, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .admin-table tbody .ticket-row .admin-actions .btn.btn-primary, .admin-support-tickets-content .admin-table tbody .ticket-row .admin-actions .btn.crm-action-button.crm-action-button-primary {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  border: none;
  color: #fff;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

/* line 490, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .admin-table tbody .ticket-row .admin-actions .btn.btn-primary:hover, .admin-support-tickets-content .admin-table tbody .ticket-row .admin-actions .btn.crm-action-button.crm-action-button-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

/* line 498, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .admin-table tbody .ticket-row .text-muted {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.8rem;
}

/* line 503, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content .admin-table tbody .ticket-row .text-center {
  text-align: center;
}

/* line 514, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-content {
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  color: white;
}

/* line 524, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 527, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-header .btn-close {
  filter: invert(1);
  opacity: 0.8;
}

/* line 531, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-header .btn-close:hover {
  opacity: 1;
}

/* line 537, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 541, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-xl {
  max-width: 1200px;
}

/* line 545, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-title {
  font-size: 1.3rem;
  color: #C38761;
}

/* line 549, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-title i {
  color: #C38761;
}

/* line 555, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-body .ticket-info-section {
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #eee;
  margin-bottom: 1.5rem;
}

/* line 560, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-body .ticket-info-section .row {
  margin-bottom: 1rem;
}

/* line 563, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-body .ticket-info-section .row:last-child {
  margin-bottom: 0;
}

/* line 568, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-body .ticket-info-section strong {
  color: #C38761;
}

/* line 572, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-body .ticket-info-section .badge {
  padding: 0.4rem 0.8rem;
  font-size: 0.9rem;
}

/* line 577, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-body .ticket-info-section #modal-description {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid #C38761;
  line-height: 1.6;
  color: #fff;
}

/* line 587, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-body .ticket-actions-section {
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #eee;
  margin-bottom: 1.5rem;
}

/* line 592, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-body .ticket-actions-section h6, .admin-support-tickets-content #ticketModal .modal-body .ticket-actions-section .h6 {
  color: #C38761;
  margin-bottom: 1rem;
}

/* line 597, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-body .ticket-actions-section .form-group {
  margin-bottom: 0;
}

/* line 600, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-body .ticket-actions-section .form-group .form-label {
  font-weight: 600;
  color: #C38761;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

/* line 607, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-body .ticket-actions-section .form-group .input-group {
  display: flex;
  gap: 0.5rem;
}

/* line 611, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-body .ticket-actions-section .form-group .input-group .form-select {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

/* line 619, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-body .ticket-actions-section .form-group .input-group .form-select:focus {
  outline: none;
  border-color: #C38761;
  background: rgba(255, 255, 255, 0.1);
}

/* line 625, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-body .ticket-actions-section .form-group .input-group .form-select option {
  background: #140D23;
  color: #fff;
}

/* line 631, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-body .ticket-actions-section .form-group .input-group .btn-sm, .admin-support-tickets-content #ticketModal .modal-body .ticket-actions-section .form-group .input-group .btn-group-sm > .btn {
  white-space: nowrap;
}

/* line 638, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-body .ticket-conversation-section {
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #eee;
  margin-bottom: 1.5rem;
}

/* line 643, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-body .ticket-conversation-section h6, .admin-support-tickets-content #ticketModal .modal-body .ticket-conversation-section .h6 {
  color: #C38761;
  margin-bottom: 1rem;
}

/* line 648, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-body .ticket-conversation-section #replies-list {
  max-height: 400px;
  overflow-y: auto;
  padding-right: 1rem;
}

/* line 653, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-body .ticket-conversation-section #replies-list .reply-item {
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  border: 1px solid #eee;
}

/* line 659, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-body .ticket-conversation-section #replies-list .reply-item.reply-admin {
  background: #e7f3ff;
  border-left: 4px solid #007bff;
}

/* line 664, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-body .ticket-conversation-section #replies-list .reply-item.reply-client {
  background: #f8f9fa;
  border-left: 4px solid #6c757d;
}

/* line 669, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-body .ticket-conversation-section #replies-list .reply-item.reply-internal-note {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
}

/* line 674, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-body .ticket-conversation-section #replies-list .reply-item .reply-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

/* line 679, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-body .ticket-conversation-section #replies-list .reply-item .reply-header .reply-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 684, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-body .ticket-conversation-section #replies-list .reply-item .reply-header .reply-author i {
  font-size: 1.2rem;
  color: var(--orizon-primary);
}

/* line 689, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-body .ticket-conversation-section #replies-list .reply-item .reply-header .reply-author strong {
  color: #C38761;
}

/* line 693, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-body .ticket-conversation-section #replies-list .reply-item .reply-header .reply-author .text-muted {
  font-size: 0.85rem;
}

/* line 697, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-body .ticket-conversation-section #replies-list .reply-item .reply-header .reply-author .badge-warning {
  background: #ffc107;
  color: #856404;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
}

/* line 705, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-body .ticket-conversation-section #replies-list .reply-item .reply-header .reply-date {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* line 711, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-body .ticket-conversation-section #replies-list .reply-item .reply-content {
  line-height: 1.6;
  color: #fff;
}

/* line 720, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-body .ticket-reply-section .nav-tabs {
  border-bottom: 2px solid #dee2e6;
}

/* line 724, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-body .ticket-reply-section .nav-tabs .nav-item .nav-link {
  padding: 0.75rem 1.5rem;
  color: var(--text-muted);
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
}

/* line 731, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-body .ticket-reply-section .nav-tabs .nav-item .nav-link i {
  margin-right: 0.5rem;
}

/* line 735, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-body .ticket-reply-section .nav-tabs .nav-item .nav-link:hover {
  color: var(--deepblue);
  border-bottom-color: #dee2e6;
}

/* line 740, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-body .ticket-reply-section .nav-tabs .nav-item .nav-link.active {
  color: var(--orizon-primary);
  border-bottom-color: var(--orizon-primary);
  background: transparent;
}

/* line 749, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-body .ticket-reply-section .tab-content {
  padding-top: 1rem;
}

/* line 752, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-body .ticket-reply-section .tab-content .form-group {
  margin-bottom: 1rem;
}

/* line 755, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-body .ticket-reply-section .tab-content .form-group .form-label {
  font-weight: 600;
  color: #C38761;
  margin-bottom: 0.5rem;
}

/* line 761, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-body .ticket-reply-section .tab-content .form-group .form-control {
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  resize: vertical;
}

/* line 769, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-body .ticket-reply-section .tab-content .form-group .form-control:focus {
  outline: none;
  border-color: #C38761;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.2);
}

/* line 779, app/assets/stylesheets/pages/forge_the_web/_support_tickets.scss */
.admin-support-tickets-content #ticketModal .modal-body .ticket-reply-section .tab-content .text-end .btn {
  padding: 0.75rem 2rem;
  font-weight: 600;
}

/* line 2, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-coefficients {
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 2rem;
  color: #FFFFFF;
}

/* line 9, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .admin-scoring-coefficients {
  color: #140D23;
}

/* line 15, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-edit-scoring-coefficients {
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 2rem;
  color: #FFFFFF;
}

/* line 22, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .admin-edit-scoring-coefficients {
  color: #140D23;
}

/* line 27, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-header {
  margin-bottom: 2rem;
}

/* line 31, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-header h1, .admin-header .h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #C38761;
}

/* line 37, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-header h1 i, .admin-header .h1 i {
  margin-right: 0.75rem;
}

/* line 41, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .admin-header h1, .lightmode .admin-header .h1 {
  color: #C38761;
}

/* line 46, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-subtitle {
  font-size: 1rem;
  opacity: 0.8;
  margin: 0;
}

/* line 53, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 2rem;
}

/* line 61, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .admin-card {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(20, 13, 35, 0.1);
  box-shadow: 0 12px 32px rgba(20, 13, 35, 0.08);
}

/* line 68, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-card-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* line 75, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .admin-card-header {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 79, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-card-header h2, .admin-card-header .h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* line 88, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .admin-card-header h2, .lightmode .admin-card-header .h2 {
  color: #140D23;
}

/* line 92, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-card-header h2 i, .admin-card-header .h2 i {
  color: #C38761;
}

/* line 98, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-card-body {
  padding: 2rem;
}

/* line 102, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-entity-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 110, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .admin-scoring-entity-header {
  border-bottom-color: rgba(20, 13, 35, 0.1);
}

/* line 115, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-entity-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* line 121, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-entity-type-badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
}

/* line 131, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-entity-type-badge--platform {
  background: rgba(59, 130, 246, 0.2);
  color: #60A5FA;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

/* line 136, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .admin-scoring-entity-type-badge--platform {
  background: rgba(59, 130, 246, 0.15);
  color: #2563EB;
}

/* line 142, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-entity-type-badge--forgetheweb {
  background: rgba(255, 215, 0, 0.2);
  color: #C38761;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

/* line 147, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .admin-scoring-entity-type-badge--forgetheweb {
  background: rgba(255, 215, 0, 0.15);
  color: #B8960A;
}

/* line 154, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-entity-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  color: #FFFFFF;
}

/* line 160, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .admin-scoring-entity-name {
  color: #140D23;
}

/* line 165, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-entity-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.8rem;
  opacity: 0.7;
  text-align: right;
}

/* line 174, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-meta-label {
  font-weight: 600;
}

/* line 178, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-meta-value {
  color: #C38761;
}

/* line 181, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .admin-scoring-meta-value {
  color: #C38761;
}

/* line 186, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-coefficient-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* line 192, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-coefficients-inputs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  /* line 192, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
  .admin-scoring-coefficients-inputs {
    grid-template-columns: 1fr;
  }
}

/* line 202, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-coefficient-field {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* line 208, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-field-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

/* line 219, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-icon {
  font-size: 1.1rem;
}

/* line 222, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-icon--financial {
  color: #60A5FA;
}

/* line 226, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-icon--collection {
  color: #34D399;
}

/* line 230, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-icon--support {
  color: #F59E0B;
}

/* line 235, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* line 241, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: #FFFFFF;
  transition: all 0.2s ease;
}

/* line 252, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-input:focus {
  outline: none;
  border-color: #C38761;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

/* line 259, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .admin-scoring-input {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
  color: #140D23;
}

/* line 264, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .admin-scoring-input:focus {
  border-color: #C38761;
  background: rgba(20, 13, 35, 0.08);
}

/* line 271, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-input-suffix {
  font-size: 1.5rem;
  font-weight: 700;
  color: #C38761;
  text-align: center;
}

/* line 277, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .admin-scoring-input-suffix {
  color: #C38761;
}

/* line 282, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-coefficient-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 289, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .admin-scoring-coefficient-footer {
  border-top-color: rgba(20, 13, 35, 0.1);
}

/* line 294, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-sum-display {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

/* line 302, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-sum-label {
  opacity: 0.8;
}

/* line 306, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-sum-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #C38761;
  transition: all 0.3s ease;
}

/* line 312, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-sum-value.admin-scoring-sum--valid {
  color: #34D399;
}

/* line 316, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-sum-value.admin-scoring-sum--invalid {
  color: #F87171;
}

/* line 320, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .admin-scoring-sum-value {
  color: #C38761;
}

/* line 323, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .admin-scoring-sum-value.admin-scoring-sum--valid {
  color: #059669;
}

/* line 327, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .admin-scoring-sum-value.admin-scoring-sum--invalid {
  color: #DC2626;
}

/* line 333, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-sum-status {
  font-size: 0.9rem;
  font-weight: 600;
  margin-left: 0.5rem;
}

/* line 338, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-sum-status.admin-scoring-status--success {
  color: #34D399;
}

/* line 342, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-sum-status.admin-scoring-status--error {
  color: #F87171;
}

/* line 347, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .admin-scoring-sum-status.admin-scoring-status--success {
  color: #059669;
}

/* line 351, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .admin-scoring-sum-status.admin-scoring-status--error {
  color: #DC2626;
}

/* line 357, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-submit-button {
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(135deg, #C38761, #FFA500);
  border: none;
  border-radius: 12px;
  color: #140D23;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

/* line 369, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-submit-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* line 374, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-submit-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* line 379, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .admin-scoring-submit-button {
  color: #FFFFFF;
}

/* line 385, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.scoring-section {
  margin-bottom: 2.5rem;
}

/* line 388, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.scoring-section:last-of-type {
  margin-bottom: 0;
}

/* line 392, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.scoring-section h3, .scoring-section .h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* line 401, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .scoring-section h3, .lightmode .scoring-section .h3 {
  color: #140D23;
}

/* line 405, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.scoring-section h3 i, .scoring-section .h3 i {
  color: #C38761;
}

/* line 411, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.section-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* line 416, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .section-description {
  color: rgba(20, 13, 35, 0.6);
}

/* line 422, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.coefficient-grid {
  display: grid;
  gap: 1.5rem;
}

/* line 427, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.coefficient-item {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  gap: 1rem;
}

/* line 434, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.coefficient-label {
  font-weight: 500;
  color: #FFFFFF;
}

/* line 438, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .coefficient-label {
  color: #140D23;
}

/* line 443, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.coefficient-bar {
  height: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

/* line 450, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .coefficient-bar {
  background-color: rgba(20, 13, 35, 0.1);
}

/* line 455, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.coefficient-fill {
  height: 100%;
  border-radius: 15px;
  transition: width 0.3s ease;
}

/* line 461, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.coefficient-value {
  font-weight: 600;
  color: #C38761;
  min-width: 70px;
  text-align: right;
}

/* line 467, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .coefficient-value {
  color: #C38761;
}

/* line 472, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.scoring-meta {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* line 479, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .scoring-meta {
  border-top-color: rgba(20, 13, 35, 0.1);
  color: rgba(20, 13, 35, 0.6);
}

/* line 484, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.scoring-meta i {
  color: #C38761;
}

/* line 490, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

/* line 497, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* line 503, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.form-label {
  font-weight: 600;
  color: #FFFFFF;
  font-size: 0.95rem;
}

/* line 508, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .form-label {
  color: #140D23;
}

/* line 513, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.input-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 519, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.form-control {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  transition: all 0.2s ease;
}

/* line 530, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.form-control:focus {
  outline: none;
  border-color: #C38761;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

/* line 537, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .form-control {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.15);
  color: #140D23;
}

/* line 542, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .form-control:focus {
  border-color: #C38761;
  background: rgba(20, 13, 35, 0.08);
}

/* line 549, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.input-addon {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  min-width: 30px;
}

/* line 554, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .input-addon {
  color: rgba(20, 13, 35, 0.6);
}

/* line 559, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.form-help {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

/* line 563, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .form-help {
  color: rgba(20, 13, 35, 0.5);
}

/* line 569, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-group-sum {
  padding: 1rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

/* line 580, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .admin-scoring-group-sum {
  background-color: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.1);
}

/* line 585, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-group-sum.valid {
  background-color: rgba(52, 211, 153, 0.15);
  border-color: rgba(52, 211, 153, 0.4);
}

/* line 589, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .admin-scoring-group-sum.valid {
  background-color: rgba(5, 150, 105, 0.1);
  border-color: rgba(5, 150, 105, 0.3);
}

/* line 595, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-group-sum.invalid {
  background-color: rgba(248, 113, 113, 0.15);
  border-color: rgba(248, 113, 113, 0.4);
}

/* line 599, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .admin-scoring-group-sum.invalid {
  background-color: rgba(220, 38, 38, 0.1);
  border-color: rgba(220, 38, 38, 0.3);
}

/* line 605, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-group-sum .sum-label {
  color: rgba(255, 255, 255, 0.8);
}

/* line 608, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .admin-scoring-group-sum .sum-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 613, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-group-sum .sum-value {
  font-size: 1.2rem;
  color: #C38761;
}

/* line 617, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .admin-scoring-group-sum .sum-value {
  color: #C38761;
}

/* line 622, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-group-sum.valid .sum-value {
  color: #34D399;
}

/* line 625, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .admin-scoring-group-sum.valid .sum-value {
  color: #059669;
}

/* line 630, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-group-sum.invalid .sum-value {
  color: #F87171;
}

/* line 633, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .admin-scoring-group-sum.invalid .sum-value {
  color: #DC2626;
}

/* line 640, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.badge {
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* line 647, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.badge-info {
  background-color: rgba(59, 130, 246, 0.2);
  color: #60A5FA;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

/* line 652, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .badge-info {
  background-color: rgba(59, 130, 246, 0.15);
  color: #2563EB;
}

/* line 658, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.badge-success {
  background-color: rgba(52, 211, 153, 0.2);
  color: #34D399;
  border: 1px solid rgba(52, 211, 153, 0.3);
}

/* line 663, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .badge-success {
  background-color: rgba(5, 150, 105, 0.15);
  color: #059669;
}

/* line 669, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.badge-danger {
  background-color: rgba(248, 113, 113, 0.2);
  color: #F87171;
  border: 1px solid rgba(248, 113, 113, 0.3);
}

/* line 674, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .badge-danger {
  background-color: rgba(220, 38, 38, 0.15);
  color: #DC2626;
}

/* line 683, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-coefficients .btn,
.admin-edit-scoring-coefficients .btn {
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

/* line 696, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-coefficients .btn-primary, .admin-scoring-coefficients .crm-action-button.crm-action-button-primary,
.admin-edit-scoring-coefficients .btn-primary,
.admin-edit-scoring-coefficients .crm-action-button.crm-action-button-primary {
  background: linear-gradient(135deg, #C38761, #FFA500);
  color: #140D23;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

/* line 701, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-coefficients .btn-primary:hover, .admin-scoring-coefficients .crm-action-button.crm-action-button-primary:hover,
.admin-edit-scoring-coefficients .btn-primary:hover,
.admin-edit-scoring-coefficients .crm-action-button.crm-action-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* line 706, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .admin-scoring-coefficients .btn-primary, .lightmode .admin-scoring-coefficients .crm-action-button.crm-action-button-primary, .lightmode .admin-edit-scoring-coefficients .btn-primary, .lightmode .admin-edit-scoring-coefficients .crm-action-button.crm-action-button-primary {
  color: #FFFFFF;
}

/* line 711, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-coefficients .btn-secondary, .admin-scoring-coefficients .crm-action-button.crm-action-button-secondary,
.admin-edit-scoring-coefficients .btn-secondary,
.admin-edit-scoring-coefficients .crm-action-button.crm-action-button-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 716, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-scoring-coefficients .btn-secondary:hover, .admin-scoring-coefficients .crm-action-button.crm-action-button-secondary:hover,
.admin-edit-scoring-coefficients .btn-secondary:hover,
.admin-edit-scoring-coefficients .crm-action-button.crm-action-button-secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

/* line 720, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .admin-scoring-coefficients .btn-secondary, .lightmode .admin-scoring-coefficients .crm-action-button.crm-action-button-secondary, .lightmode .admin-edit-scoring-coefficients .btn-secondary, .lightmode .admin-edit-scoring-coefficients .crm-action-button.crm-action-button-secondary {
  background-color: rgba(20, 13, 35, 0.1);
  color: #140D23;
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 725, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .admin-scoring-coefficients .btn-secondary:hover, .lightmode .admin-scoring-coefficients .crm-action-button.crm-action-button-secondary:hover, .lightmode .admin-edit-scoring-coefficients .btn-secondary:hover, .lightmode .admin-edit-scoring-coefficients .crm-action-button.crm-action-button-secondary:hover {
  background-color: rgba(20, 13, 35, 0.15);
}

/* line 733, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.form-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  padding-top: 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 741, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .form-actions {
  border-top-color: rgba(20, 13, 35, 0.1);
}

/* line 747, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.alert {
  padding: 1rem 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* line 755, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.alert i {
  font-size: 1.2rem;
  margin-top: 0.1rem;
}

/* line 760, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.alert h4, .alert .h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
}

/* line 765, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.alert ul {
  margin: 0;
  padding-left: 1.5rem;
}

/* line 771, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.alert-warning {
  background-color: rgba(255, 193, 7, 0.15);
  color: #FFC107;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

/* line 776, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .alert-warning {
  background-color: rgba(255, 193, 7, 0.1);
  color: #F57C00;
}

/* line 782, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.alert-danger {
  background-color: rgba(248, 113, 113, 0.15);
  color: #F87171;
  border: 1px solid rgba(248, 113, 113, 0.3);
}

/* line 787, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.lightmode .alert-danger {
  background-color: rgba(220, 38, 38, 0.1);
  color: #DC2626;
}

/* line 793, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-empty-state {
  text-align: center;
  padding: 4rem 2rem;
  opacity: 0.6;
}

/* line 798, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-empty-state i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

/* line 804, app/assets/stylesheets/pages/admin_portal/_scoring_coefficients.scss */
.admin-empty-state p {
  font-size: 1.1rem;
}

/* line 4, app/assets/stylesheets/pages/admin_portal/_promo_codes.scss */
.promo-form {
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  max-width: 800px;
}

/* line 11, app/assets/stylesheets/pages/admin_portal/_promo_codes.scss */
.form-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}

/* line 15, app/assets/stylesheets/pages/admin_portal/_promo_codes.scss */
.form-section:last-of-type {
  border-bottom: none;
}

/* line 19, app/assets/stylesheets/pages/admin_portal/_promo_codes.scss */
.form-section h3, .form-section .h3 {
  margin-bottom: 1rem;
  color: #495057;
}

/* line 25, app/assets/stylesheets/pages/admin_portal/_promo_codes.scss */
.form-group {
  margin-bottom: 1.5rem;
}

/* line 28, app/assets/stylesheets/pages/admin_portal/_promo_codes.scss */
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #495057;
}

/* line 36, app/assets/stylesheets/pages/admin_portal/_promo_codes.scss */
.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 1rem;
}

/* line 43, app/assets/stylesheets/pages/admin_portal/_promo_codes.scss */
.form-control:focus {
  outline: none;
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* line 50, app/assets/stylesheets/pages/admin_portal/_promo_codes.scss */
.form-text {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #6c757d;
}

/* line 57, app/assets/stylesheets/pages/admin_portal/_promo_codes.scss */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* line 63, app/assets/stylesheets/pages/admin_portal/_promo_codes.scss */
.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

/* line 68, app/assets/stylesheets/pages/admin_portal/_promo_codes.scss */
.checkbox-label input[type="checkbox"] {
  margin-right: 0.5rem;
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
}

/* line 76, app/assets/stylesheets/pages/admin_portal/_promo_codes.scss */
.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* line 82, app/assets/stylesheets/pages/admin_portal/_promo_codes.scss */
.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

/* line 91, app/assets/stylesheets/pages/admin_portal/_promo_codes.scss */
.btn.btn-primary, .btn.crm-action-button.crm-action-button-primary {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: white;
}

/* line 97, app/assets/stylesheets/pages/admin_portal/_promo_codes.scss */
.btn.btn-secondary, .btn.crm-action-button.crm-action-button-secondary {
  background: #6c757d;
  color: white;
}

/* line 101, app/assets/stylesheets/pages/admin_portal/_promo_codes.scss */
.btn.btn-secondary:hover, .btn.crm-action-button.crm-action-button-secondary:hover {
  background: #545b62;
}

/* line 107, app/assets/stylesheets/pages/admin_portal/_promo_codes.scss */
.alert {
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 4px;
}

/* line 112, app/assets/stylesheets/pages/admin_portal/_promo_codes.scss */
.alert.alert-danger {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* line 118, app/assets/stylesheets/pages/admin_portal/_promo_codes.scss */
.alert ul {
  margin: 0.5rem 0 0 1.5rem;
}

/* line 124, app/assets/stylesheets/pages/admin_portal/_promo_codes.scss */
.admin-container {
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* line 130, app/assets/stylesheets/pages/admin_portal/_promo_codes.scss */
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

/* line 137, app/assets/stylesheets/pages/admin_portal/_promo_codes.scss */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* line 142, app/assets/stylesheets/pages/admin_portal/_promo_codes.scss */
.admin-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid #dee2e6;
}

/* line 149, app/assets/stylesheets/pages/admin_portal/_promo_codes.scss */
.admin-table td {
  padding: 1rem;
  border-bottom: 1px solid #dee2e6;
}

/* line 154, app/assets/stylesheets/pages/admin_portal/_promo_codes.scss */
.admin-table tr.inactive {
  opacity: 0.6;
}

/* line 159, app/assets/stylesheets/pages/admin_portal/_promo_codes.scss */
.badge {
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 500;
}

/* line 165, app/assets/stylesheets/pages/admin_portal/_promo_codes.scss */
.badge.badge-success {
  background: #d4edda;
  color: #155724;
}

/* line 170, app/assets/stylesheets/pages/admin_portal/_promo_codes.scss */
.badge.badge-danger {
  background: #f8d7da;
  color: #721c24;
}

/* line 175, app/assets/stylesheets/pages/admin_portal/_promo_codes.scss */
.badge.badge-warning {
  background: #fff3cd;
  color: #856404;
}

/* line 180, app/assets/stylesheets/pages/admin_portal/_promo_codes.scss */
.badge.badge-secondary {
  background: #e2e3e5;
  color: #383d41;
}

/* line 186, app/assets/stylesheets/pages/admin_portal/_promo_codes.scss */
.actions {
  white-space: nowrap;
}

/* line 190, app/assets/stylesheets/pages/admin_portal/_promo_codes.scss */
.btn-icon {
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  margin: 0 0.25rem;
}

/* line 198, app/assets/stylesheets/pages/admin_portal/_promo_codes.scss */
.btn-icon:hover {
  transform: scale(1.2);
}

/* line 203, app/assets/stylesheets/pages/admin_portal/_promo_codes.scss */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: #6c757d;
}

/* line 208, app/assets/stylesheets/pages/admin_portal/_promo_codes.scss */
.empty-state i {
  font-size: 4rem;
  opacity: 0.3;
  margin-bottom: 1rem;
}

/* line 3, app/assets/stylesheets/pages/admin_portal/_contact_requests.scss */
.admin-contact-requests-content .tab-content {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* line 9, app/assets/stylesheets/pages/admin_portal/_contact_requests.scss */
.admin-contact-requests-content .card-content {
  display: block !important;
  max-height: none !important;
  overflow: visible !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* line 17, app/assets/stylesheets/pages/admin_portal/_contact_requests.scss */
.admin-contact-requests-content .admin-table-container {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* line 23, app/assets/stylesheets/pages/admin_portal/_contact_requests.scss */
.admin-contact-requests-content .admin-table {
  display: table !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: white !important;
}

/* line 29, app/assets/stylesheets/pages/admin_portal/_contact_requests.scss */
.admin-contact-requests-content .admin-table thead {
  display: table-header-group !important;
  visibility: visible !important;
}

/* line 34, app/assets/stylesheets/pages/admin_portal/_contact_requests.scss */
.admin-contact-requests-content .admin-table tbody {
  display: table-row-group !important;
  visibility: visible !important;
}

/* line 39, app/assets/stylesheets/pages/admin_portal/_contact_requests.scss */
.admin-contact-requests-content .admin-table tr {
  display: table-row !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* line 45, app/assets/stylesheets/pages/admin_portal/_contact_requests.scss */
.admin-contact-requests-content .admin-table th,
.admin-contact-requests-content .admin-table td {
  display: table-cell !important;
  visibility: visible !important;
  color: white !important;
  padding: 1rem !important;
}

/* line 54, app/assets/stylesheets/pages/admin_portal/_contact_requests.scss */
.admin-contact-requests-content .status-badge {
  display: inline-block !important;
  visibility: visible !important;
}

/* line 59, app/assets/stylesheets/pages/admin_portal/_contact_requests.scss */
.admin-contact-requests-content .admin-actions {
  display: flex !important;
  gap: 0.5rem !important;
  visibility: visible !important;
}

/* line 64, app/assets/stylesheets/pages/admin_portal/_contact_requests.scss */
.admin-contact-requests-content .admin-actions .btn {
  display: inline-block !important;
  visibility: visible !important;
}

/* line 70, app/assets/stylesheets/pages/admin_portal/_contact_requests.scss */
.admin-contact-requests-content .text-center {
  display: table-cell !important;
  visibility: visible !important;
  color: white !important;
  padding: 2rem !important;
  font-size: 1.1rem !important;
}

/* line 83, app/assets/stylesheets/pages/admin_portal/_contact_requests.scss */
.admin-contact-requests-content .modal .modal-content {
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  color: white;
}

/* line 93, app/assets/stylesheets/pages/admin_portal/_contact_requests.scss */
.admin-contact-requests-content .modal .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 24px;
}

/* line 97, app/assets/stylesheets/pages/admin_portal/_contact_requests.scss */
.admin-contact-requests-content .modal .modal-header .modal-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

/* line 102, app/assets/stylesheets/pages/admin_portal/_contact_requests.scss */
.admin-contact-requests-content .modal .modal-header .modal-title i {
  color: #C38761;
}

/* line 107, app/assets/stylesheets/pages/admin_portal/_contact_requests.scss */
.admin-contact-requests-content .modal .modal-header .btn-close {
  filter: invert(1);
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

/* line 112, app/assets/stylesheets/pages/admin_portal/_contact_requests.scss */
.admin-contact-requests-content .modal .modal-header .btn-close:hover {
  opacity: 1;
}

/* line 118, app/assets/stylesheets/pages/admin_portal/_contact_requests.scss */
.admin-contact-requests-content .modal .modal-body {
  padding: 20px 24px;
  color: rgba(255, 255, 255, 0.9);
}

/* line 122, app/assets/stylesheets/pages/admin_portal/_contact_requests.scss */
.admin-contact-requests-content .modal .modal-body strong {
  color: #C38761;
}

/* line 126, app/assets/stylesheets/pages/admin_portal/_contact_requests.scss */
.admin-contact-requests-content .modal .modal-body span {
  color: rgba(255, 255, 255, 0.85);
}

/* line 130, app/assets/stylesheets/pages/admin_portal/_contact_requests.scss */
.admin-contact-requests-content .modal .modal-body .border {
  border-color: rgba(255, 255, 255, 0.1) !important;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
}

/* line 137, app/assets/stylesheets/pages/admin_portal/_contact_requests.scss */
.admin-contact-requests-content .modal .modal-body h6, .admin-contact-requests-content .modal .modal-body .h6 {
  color: rgba(255, 255, 255, 0.95);
}

/* line 142, app/assets/stylesheets/pages/admin_portal/_contact_requests.scss */
.admin-contact-requests-content .modal .modal-body .form-label {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

/* line 147, app/assets/stylesheets/pages/admin_portal/_contact_requests.scss */
.admin-contact-requests-content .modal .modal-body .form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(195, 135, 97, 0.4);
  border-radius: 8px;
  color: white;
  transition: all 0.2s ease;
}

/* line 154, app/assets/stylesheets/pages/admin_portal/_contact_requests.scss */
.admin-contact-requests-content .modal .modal-body .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 158, app/assets/stylesheets/pages/admin_portal/_contact_requests.scss */
.admin-contact-requests-content .modal .modal-body .form-control:focus {
  border-color: rgba(195, 135, 97, 0.7);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 2px rgba(195, 135, 97, 0.15);
  color: white;
}

/* line 167, app/assets/stylesheets/pages/admin_portal/_contact_requests.scss */
.admin-contact-requests-content .modal .modal-body .badge {
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.8rem;
}

/* line 175, app/assets/stylesheets/pages/admin_portal/_contact_requests.scss */
.admin-contact-requests-content .modal .modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 24px;
}

/* line 179, app/assets/stylesheets/pages/admin_portal/_contact_requests.scss */
.admin-contact-requests-content .modal .modal-footer .btn-secondary, .admin-contact-requests-content .modal .modal-footer .crm-action-button.crm-action-button-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
}

/* line 185, app/assets/stylesheets/pages/admin_portal/_contact_requests.scss */
.admin-contact-requests-content .modal .modal-footer .btn-secondary:hover, .admin-contact-requests-content .modal .modal-footer .crm-action-button.crm-action-button-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

/* line 192, app/assets/stylesheets/pages/admin_portal/_contact_requests.scss */
.admin-contact-requests-content .modal .modal-footer .btn-success {
  background: #C38761;
  border-color: #C38761;
  color: #140D23;
  border-radius: 8px;
  font-weight: 500;
}

/* line 199, app/assets/stylesheets/pages/admin_portal/_contact_requests.scss */
.admin-contact-requests-content .modal .modal-footer .btn-success:hover {
  background: #bc794f;
  border-color: #bc794f;
  transform: translateY(-1px);
}

/* line 206, app/assets/stylesheets/pages/admin_portal/_contact_requests.scss */
.admin-contact-requests-content .modal .modal-footer .btn-info {
  background: #C38761;
  border-color: #C38761;
  color: #140D23;
  border-radius: 8px;
  font-weight: 500;
}

/* line 213, app/assets/stylesheets/pages/admin_portal/_contact_requests.scss */
.admin-contact-requests-content .modal .modal-footer .btn-info:hover {
  background: #bc794f;
  border-color: #bc794f;
  transform: translateY(-1px);
}

/* line 3, app/assets/stylesheets/pages/admin_portal/_tutorial_videos.scss */
.admin-tutorial-videos-page {
  padding: 24px;
  margin: 0 auto;
  gap: 18px;
}

/* line 9, app/assets/stylesheets/pages/admin_portal/_tutorial_videos.scss */
.admin-tutorial-videos-page .admin-page-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

/* line 17, app/assets/stylesheets/pages/admin_portal/_tutorial_videos.scss */
.admin-tutorial-videos-page .admin-page-header .header-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(232, 185, 114, 0.2), rgba(255, 215, 0, 0.2));
  border: 2px solid rgba(232, 185, 114, 0.4);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #E8B972;
  flex-shrink: 0;
}

/* line 31, app/assets/stylesheets/pages/admin_portal/_tutorial_videos.scss */
.admin-tutorial-videos-page .admin-page-header .header-content {
  flex: 1;
}

/* line 34, app/assets/stylesheets/pages/admin_portal/_tutorial_videos.scss */
.admin-tutorial-videos-page .admin-page-header .header-content h1, .admin-tutorial-videos-page .admin-page-header .header-content .h1 {
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  margin: 0 0 4px 0;
}

/* line 41, app/assets/stylesheets/pages/admin_portal/_tutorial_videos.scss */
.admin-tutorial-videos-page .admin-page-header .header-content .text-muted {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* line 50, app/assets/stylesheets/pages/admin_portal/_tutorial_videos.scss */
.admin-tutorial-videos-page .tutorial-videos-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px;
}

/* line 57, app/assets/stylesheets/pages/admin_portal/_tutorial_videos.scss */
.admin-tutorial-videos-page .tutorial-video-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 24px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  transition: all 0.3s ease;
}

/* line 66, app/assets/stylesheets/pages/admin_portal/_tutorial_videos.scss */
.admin-tutorial-videos-page .tutorial-video-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
  transform: translateY(-2px);
}

/* line 71, app/assets/stylesheets/pages/admin_portal/_tutorial_videos.scss */
.admin-tutorial-videos-page .tutorial-video-card .tutorial-video-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 79, app/assets/stylesheets/pages/admin_portal/_tutorial_videos.scss */
.admin-tutorial-videos-page .tutorial-video-card .tutorial-video-header .tutorial-video-icon {
  width: 48px;
  height: 48px;
  background: rgba(232, 185, 114, 0.1);
  border: 1px solid rgba(232, 185, 114, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #E8B972;
  flex-shrink: 0;
}

/* line 93, app/assets/stylesheets/pages/admin_portal/_tutorial_videos.scss */
.admin-tutorial-videos-page .tutorial-video-card .tutorial-video-header .tutorial-video-info {
  flex: 1;
}

/* line 96, app/assets/stylesheets/pages/admin_portal/_tutorial_videos.scss */
.admin-tutorial-videos-page .tutorial-video-card .tutorial-video-header .tutorial-video-info h3, .admin-tutorial-videos-page .tutorial-video-card .tutorial-video-header .tutorial-video-info .h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  margin: 0 0 4px 0;
}

/* line 103, app/assets/stylesheets/pages/admin_portal/_tutorial_videos.scss */
.admin-tutorial-videos-page .tutorial-video-card .tutorial-video-header .tutorial-video-info .text-muted {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* line 111, app/assets/stylesheets/pages/admin_portal/_tutorial_videos.scss */
.admin-tutorial-videos-page .tutorial-video-card .tutorial-video-controls {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 117, app/assets/stylesheets/pages/admin_portal/_tutorial_videos.scss */
.admin-tutorial-videos-page .tutorial-video-card .tutorial-video-controls .tutorial-toggle-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  gap: 16px;
}

/* line 126, app/assets/stylesheets/pages/admin_portal/_tutorial_videos.scss */
.admin-tutorial-videos-page .tutorial-video-card .tutorial-video-controls .tutorial-toggle-group .tutorial-toggle-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

/* line 133, app/assets/stylesheets/pages/admin_portal/_tutorial_videos.scss */
.admin-tutorial-videos-page .tutorial-video-card .tutorial-video-controls .tutorial-toggle-group .mode-toggler-container {
  margin-left: auto;
}

/* line 136, app/assets/stylesheets/pages/admin_portal/_tutorial_videos.scss */
.admin-tutorial-videos-page .tutorial-video-card .tutorial-video-controls .tutorial-toggle-group .mode-toggler-container .mode-toggler {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

/* line 142, app/assets/stylesheets/pages/admin_portal/_tutorial_videos.scss */
.admin-tutorial-videos-page .tutorial-video-card .tutorial-video-controls .tutorial-toggle-group .mode-toggler-container .mode-toggler .tutorial-toggle-checkbox {
  opacity: 0;
  width: 0;
  height: 0;
}

/* line 147, app/assets/stylesheets/pages/admin_portal/_tutorial_videos.scss */
.admin-tutorial-videos-page .tutorial-video-card .tutorial-video-controls .tutorial-toggle-group .mode-toggler-container .mode-toggler .tutorial-toggle-checkbox:checked + .mode-slider {
  background-color: #E8B972;
}

/* line 150, app/assets/stylesheets/pages/admin_portal/_tutorial_videos.scss */
.admin-tutorial-videos-page .tutorial-video-card .tutorial-video-controls .tutorial-toggle-group .mode-toggler-container .mode-toggler .tutorial-toggle-checkbox:checked + .mode-slider:before {
  transform: translateX(26px);
}

/* line 156, app/assets/stylesheets/pages/admin_portal/_tutorial_videos.scss */
.admin-tutorial-videos-page .tutorial-video-card .tutorial-video-controls .tutorial-toggle-group .mode-toggler-container .mode-toggler .mode-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}

/* line 167, app/assets/stylesheets/pages/admin_portal/_tutorial_videos.scss */
.admin-tutorial-videos-page .tutorial-video-card .tutorial-video-controls .tutorial-toggle-group .mode-toggler-container .mode-toggler .mode-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

/* line 185, app/assets/stylesheets/pages/admin_portal/_tutorial_videos.scss */
.admin-tutorial-videos-page .tutorial-video-card .tutorial-video-controls .form-group .form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 8px;
}

/* line 193, app/assets/stylesheets/pages/admin_portal/_tutorial_videos.scss */
.admin-tutorial-videos-page .tutorial-video-card .tutorial-video-controls .form-group .form-control-file {
  width: 100%;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: white;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 204, app/assets/stylesheets/pages/admin_portal/_tutorial_videos.scss */
.admin-tutorial-videos-page .tutorial-video-card .tutorial-video-controls .form-group .form-control-file:hover {
  background: rgba(0, 0, 0, 0.3);
  border-color: rgba(232, 185, 114, 0.4);
}

/* line 209, app/assets/stylesheets/pages/admin_portal/_tutorial_videos.scss */
.admin-tutorial-videos-page .tutorial-video-card .tutorial-video-controls .form-group .form-control-file:focus {
  outline: none;
  border-color: #E8B972;
  box-shadow: 0 0 0 3px rgba(232, 185, 114, 0.2);
}

/* line 216, app/assets/stylesheets/pages/admin_portal/_tutorial_videos.scss */
.admin-tutorial-videos-page .tutorial-video-card .tutorial-video-controls .form-group .video-preview {
  margin-top: 10px;
  padding: 12px;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 8px;
}

/* line 223, app/assets/stylesheets/pages/admin_portal/_tutorial_videos.scss */
.admin-tutorial-videos-page .tutorial-video-card .tutorial-video-controls .form-group .video-preview .video-info {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
}

/* line 228, app/assets/stylesheets/pages/admin_portal/_tutorial_videos.scss */
.admin-tutorial-videos-page .tutorial-video-card .tutorial-video-controls .form-group .video-preview .video-info i {
  color: #4caf50;
  margin-right: 6px;
}

/* line 233, app/assets/stylesheets/pages/admin_portal/_tutorial_videos.scss */
.admin-tutorial-videos-page .tutorial-video-card .tutorial-video-controls .form-group .video-preview .video-info strong {
  font-weight: 600;
}

/* line 239, app/assets/stylesheets/pages/admin_portal/_tutorial_videos.scss */
.admin-tutorial-videos-page .tutorial-video-card .tutorial-video-controls .form-group .form-text {
  display: block;
  margin-top: 6px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* line 248, app/assets/stylesheets/pages/admin_portal/_tutorial_videos.scss */
.admin-tutorial-videos-page .tutorial-video-card .tutorial-video-controls .tutorial-video-actions {
  display: flex;
  justify-content: flex-end;
  padding-top: 8px;
}

/* line 253, app/assets/stylesheets/pages/admin_portal/_tutorial_videos.scss */
.admin-tutorial-videos-page .tutorial-video-card .tutorial-video-controls .tutorial-video-actions .btn-primary, .admin-tutorial-videos-page .tutorial-video-card .tutorial-video-controls .tutorial-video-actions .crm-action-button.crm-action-button-primary {
  padding: 10px 24px;
  background: linear-gradient(135deg, #E8B972, #FFC107);
  border: none;
  border-radius: 8px;
  color: #27293d;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 264, app/assets/stylesheets/pages/admin_portal/_tutorial_videos.scss */
.admin-tutorial-videos-page .tutorial-video-card .tutorial-video-controls .tutorial-video-actions .btn-primary:hover, .admin-tutorial-videos-page .tutorial-video-card .tutorial-video-controls .tutorial-video-actions .crm-action-button.crm-action-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 185, 114, 0.4);
}

/* line 269, app/assets/stylesheets/pages/admin_portal/_tutorial_videos.scss */
.admin-tutorial-videos-page .tutorial-video-card .tutorial-video-controls .tutorial-video-actions .btn-primary:active, .admin-tutorial-videos-page .tutorial-video-card .tutorial-video-controls .tutorial-video-actions .crm-action-button.crm-action-button-primary:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  /* line 280, app/assets/stylesheets/pages/admin_portal/_tutorial_videos.scss */
  .admin-tutorial-videos-page {
    padding: 16px;
  }
  /* line 283, app/assets/stylesheets/pages/admin_portal/_tutorial_videos.scss */
  .admin-tutorial-videos-page .tutorial-videos-list {
    grid-template-columns: 1fr;
  }
  /* line 289, app/assets/stylesheets/pages/admin_portal/_tutorial_videos.scss */
  .admin-tutorial-videos-page .tutorial-video-card .tutorial-video-controls .tutorial-toggle-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  /* line 294, app/assets/stylesheets/pages/admin_portal/_tutorial_videos.scss */
  .admin-tutorial-videos-page .tutorial-video-card .tutorial-video-controls .tutorial-toggle-group .mode-toggler-container {
    margin-left: 0;
  }
}

/* line 4, app/assets/stylesheets/pages/admin_portal/_offers.scss */
.mode-toggler-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 0;
  z-index: 10000;
}

/* line 11, app/assets/stylesheets/pages/admin_portal/_offers.scss */
.mode-toggler-container label {
  opacity: 1;
}

/* line 16, app/assets/stylesheets/pages/admin_portal/_offers.scss */
.mode-toggler {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
  margin: 0 5px;
}

/* line 24, app/assets/stylesheets/pages/admin_portal/_offers.scss */
.mode-toggler input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* line 30, app/assets/stylesheets/pages/admin_portal/_offers.scss */
.mode-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}

/* line 42, app/assets/stylesheets/pages/admin_portal/_offers.scss */
.mode-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

/* line 54, app/assets/stylesheets/pages/admin_portal/_offers.scss */
input:checked + .mode-slider {
  background-color: #e8b972;
}

/* line 58, app/assets/stylesheets/pages/admin_portal/_offers.scss */
input:focus + .mode-slider {
  box-shadow: 0 0 1px #e8b972;
}

/* line 62, app/assets/stylesheets/pages/admin_portal/_offers.scss */
input:checked + .mode-slider:before {
  transform: translateX(26px);
}

/* line 66, app/assets/stylesheets/pages/admin_portal/_offers.scss */
.mode-badge {
  font-size: 0.8rem;
  padding: 3px 8px;
  border-radius: 12px;
  font-weight: 600;
  min-width: 80px;
  text-align: center;
}

/* line 75, app/assets/stylesheets/pages/admin_portal/_offers.scss */
.business-badge {
  background-color: #e8b972;
  color: #27293d;
}

/* line 80, app/assets/stylesheets/pages/admin_portal/_offers.scss */
.personal-badge {
  background-color: #e8b972;
  color: white;
}

/* line 10, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .admin-create-actions.full-width {
  width: 100%;
  text-align: center;
  padding: 24px 0;
  margin-bottom: 8px;
}

/* line 16, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .admin-create-actions.full-width h2, .new-document-template .admin-create-actions.full-width .h2 {
  margin: 0 0 12px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
}

/* line 26, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .admin-create-actions.full-width h2 i, .new-document-template .admin-create-actions.full-width .h2 i {
  color: var(--primary);
  font-size: 26px;
}

/* line 32, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .admin-create-actions.full-width .page-description {
  color: var(--text-muted);
  margin: 0;
  font-size: 15px;
}

/* line 42, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .admin-create-actions.edit-mode {
  width: 100%;
  padding: 16px 0 24px 0;
  margin-bottom: 8px;
}

/* line 47, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .admin-create-actions.edit-mode .page-header-with-actions {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

/* line 54, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .admin-create-actions.edit-mode .page-header-info {
  flex: 1;
}

/* line 58, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .admin-create-actions.edit-mode .back-link {
  margin-bottom: 12px;
}

/* line 61, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .admin-create-actions.edit-mode .back-link a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

/* line 70, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .admin-create-actions.edit-mode .back-link a:hover {
  color: var(--primary);
}

/* line 76, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .admin-create-actions.edit-mode h2, .new-document-template .admin-create-actions.edit-mode .h2 {
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
}

/* line 85, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .admin-create-actions.edit-mode h2 i, .new-document-template .admin-create-actions.edit-mode .h2 i {
  color: var(--primary);
  font-size: 22px;
}

/* line 91, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .admin-create-actions.edit-mode .page-description {
  color: var(--text-muted);
  margin: 0;
  font-size: 14px;
}

/* line 97, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .admin-create-actions.edit-mode .page-header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* line 107, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .template-builder-form {
  margin-top: 24px;
}

/* line 114, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .general-info-section {
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--bg-primary) 0%, rgba(var(--primary-rgb), 0.02) 100%);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* line 122, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .general-info-section h4, .new-document-template .general-info-section .h4 {
  margin: 0 0 20px 0;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-color);
}

/* line 133, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .general-info-section h4 i, .new-document-template .general-info-section .h4 i {
  color: var(--primary);
  font-size: 18px;
}

/* line 140, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .general-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 28px;
}

/* line 145, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .general-info-grid .form-group {
  margin-bottom: 0;
}

/* line 148, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .general-info-grid .form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
  letter-spacing: 0.3px;
}

/* line 157, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .general-info-grid .form-group .form-control {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid rgba(195, 135, 97, 0.3);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

/* line 165, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .general-info-grid .form-group .form-control:hover {
  border-color: rgba(var(--primary-rgb), 0.3);
}

/* line 169, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .general-info-grid .form-group .form-control:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
  background: var(--bg-primary);
}

/* line 175, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .general-info-grid .form-group .form-control::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

/* line 181, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .general-info-grid .form-group textarea.form-control {
  resize: vertical;
  min-height: 60px;
}

/* line 187, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .general-info-grid .form-group-description,
.new-document-template .general-info-grid .form-group-options {
  grid-column: 1 / -1;
}

@media (max-width: 768px) {
  /* line 140, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
  .new-document-template .general-info-grid {
    grid-template-columns: 1fr;
  }
}

/* line 197, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .options-row {
  display: flex;
  gap: 32px;
  align-items: center;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

/* line 206, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .options-row .checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

/* line 212, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .options-row .checkbox-group .form-check-input {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--primary);
}

/* line 219, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .options-row .checkbox-group .form-check-label {
  cursor: pointer;
  font-weight: 500;
  color: var(--text-primary);
}

@media (max-width: 768px) {
  /* line 197, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
  .new-document-template .options-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* line 233, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .form-hint-inline {
  font-size: 12px;
  color: var(--text-muted);
  margin-left: 8px;
  font-style: italic;
}

/* line 243, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .builder-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 24px;
  min-height: 520px;
}

@media (max-width: 992px) {
  /* line 243, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
  .new-document-template .builder-layout {
    grid-template-columns: 1fr;
  }
}

/* line 254, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .builder-sidebar {
  display: flex;
  flex-direction: column;
}

/* line 258, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .builder-sidebar .builder-section {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* line 264, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .builder-sidebar .blocks-palette {
  flex: 1;
}

/* line 269, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .builder-main {
  display: flex;
  flex-direction: column;
}

/* line 273, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .builder-main .builder-section {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* line 279, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .builder-main .blocks-canvas {
  flex: 1;
}

/* line 287, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .builder-section {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
}

/* line 293, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .builder-section.collapsible {
  padding: 0;
}

/* line 296, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .builder-section.collapsible .section-header.clickable {
  padding: 16px 20px;
  margin: 0;
  border-radius: 12px;
  transition: background 0.2s;
}

/* line 302, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .builder-section.collapsible .section-header.clickable:hover {
  background: rgba(var(--primary-rgb), 0.03);
}

/* line 306, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .builder-section.collapsible .section-header.clickable h4, .new-document-template .builder-section.collapsible .section-header.clickable .h4 {
  margin: 0;
  width: 100%;
}

/* line 312, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .builder-section.collapsible .section-content {
  margin: 0;
  padding: 0 20px 20px 20px;
  border-top: none;
}

/* line 319, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .builder-section h4, .new-document-template .builder-section .h4 {
  margin: 0 0 16px 0;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 329, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .section-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* line 335, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

/* line 341, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .section-header h4, .new-document-template .section-header .h4 {
  margin: 0;
  transition: color 0.2s;
}

/* line 346, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .section-header.clickable {
  cursor: pointer;
  user-select: none;
}

/* line 350, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .section-header.clickable:hover h4, .new-document-template .section-header.clickable:hover .h4 {
  color: var(--primary);
}

/* line 356, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .section-content {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

/* line 365, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .advanced-config-sections {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

/* line 371, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .advanced-config-sections .builder-section.collapsible {
  border: 2px solid var(--border-color);
  border-radius: 12px;
  flex-direction: column;
  align-items: flex-start;
  transition: border-color 0.2s, box-shadow 0.2s;
}

/* line 378, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .advanced-config-sections .builder-section.collapsible:hover {
  border-color: rgba(var(--primary-rgb), 0.3);
}

/* line 382, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .advanced-config-sections .builder-section.collapsible .section-header.clickable {
  flex-direction: column;
  align-items: flex-start;
}

/* line 387, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .advanced-config-sections .builder-section.collapsible .section-header.clickable h4, .new-document-template .advanced-config-sections .builder-section.collapsible .section-header.clickable .h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

/* line 395, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .advanced-config-sections .builder-section.collapsible .section-content {
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
  margin-top: 0;
}

/* line 400, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .advanced-config-sections .builder-section.collapsible .section-content .form-group {
  margin: 0;
}

/* line 403, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .advanced-config-sections .builder-section.collapsible .section-content .form-group .code-editor {
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 14px;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', monospace;
  font-size: 12px;
  line-height: 1.6;
  tab-size: 2;
  resize: vertical;
  min-height: 120px;
  scrollbar-width: thin;
  scrollbar-color: #C38761 rgba(255, 255, 255, 0.1);
}

/* line 415, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .advanced-config-sections .builder-section.collapsible .section-content .form-group .code-editor:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

/* line 422, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .advanced-config-sections .builder-section.collapsible .section-content .form-group .code-editor::-webkit-scrollbar {
  width: 8px;
}

/* line 426, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .advanced-config-sections .builder-section.collapsible .section-content .form-group .code-editor::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 431, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .advanced-config-sections .builder-section.collapsible .section-content .form-group .code-editor::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 436, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .advanced-config-sections .builder-section.collapsible .section-content .form-group .code-editor::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 445, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .advanced-config-sections .builder-section.collapsible .section-content .form-group .form-hint {
  margin-top: 10px;
  padding: 8px 12px;
  background: rgba(var(--primary-rgb), 0.05);
  border-radius: 6px;
  border-left: 3px solid var(--primary);
}

/* line 460, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .accordion-icon {
  font-size: 12px;
  transition: transform 0.3s ease;
  color: var(--text-muted);
}

/* line 465, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .accordion-icon.rotated {
  transform: rotate(180deg);
  color: var(--primary);
}

/* line 474, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .btn-clear-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  color: #dc3545;
  background: transparent;
  border: 1px solid #dc3545;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

/* line 488, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .btn-clear-all:hover {
  background: #dc3545;
  color: white;
}

/* line 493, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .btn-clear-all i {
  font-size: 11px;
}

/* line 502, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .template-builder-form .form-group {
  margin-bottom: 16px;
}

/* line 505, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .template-builder-form .form-group:last-child {
  margin-bottom: 0;
}

/* line 509, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .template-builder-form .form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text-primary);
}

/* line 518, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .template-builder-form .form-control {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid rgba(195, 135, 97, 0.3);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

/* line 526, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .template-builder-form .form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

/* line 533, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .template-builder-form .form-row {
  display: flex;
  gap: 16px;
}

/* line 538, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .template-builder-form .form-group-half {
  flex: 1;
}

/* line 542, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .template-builder-form .checkbox-group {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

/* line 549, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .template-builder-form .form-check-input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* line 555, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .template-builder-form .form-check-label {
  cursor: pointer;
}

/* line 560, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .template-builder-form .form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%236c757d' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  padding-right: 36px;
  cursor: pointer;
}

/* line 569, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .template-builder-form .form-select:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23CC0066' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

/* line 574, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .template-builder-form .form-hint {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

/* line 585, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .blocks-palette {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 450px;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: #C38761 rgba(255, 255, 255, 0.1);
}

/* line 594, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .blocks-palette::-webkit-scrollbar {
  width: 8px;
}

/* line 598, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .blocks-palette::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 603, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .blocks-palette::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 608, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .blocks-palette::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 617, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .block-category {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 14px;
}

/* line 621, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .block-category:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* line 627, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .category-header {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--primary);
  margin-bottom: 10px;
  padding-left: 2px;
}

/* line 637, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .category-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* line 644, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .palette-block {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.25s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* line 657, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .palette-block:hover {
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.08) 0%, rgba(var(--primary-rgb), 0.03) 100%);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.15);
}

/* line 663, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .palette-block:hover .block-emoji {
  transform: scale(1.15);
}

/* line 667, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .palette-block:hover .block-label {
  color: var(--primary);
}

/* line 672, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .palette-block:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(var(--primary-rgb), 0.1);
}

/* line 677, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .palette-block.dragging {
  opacity: 0.5;
  border-style: dashed;
}

/* line 682, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .palette-block .block-emoji {
  font-size: 16px;
  transition: transform 0.2s ease;
}

/* line 688, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .block-label {
  color: var(--text-primary);
  font-weight: 500;
  transition: color 0.2s;
}

/* line 697, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .blocks-canvas {
  min-height: 400px;
  border: 2px dashed var(--border-color);
  border-radius: 12px;
  padding: 16px;
  background: var(--bg-secondary);
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}

/* line 706, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .blocks-canvas.drag-over {
  border-color: var(--primary);
  border-style: solid;
  background: rgba(var(--primary-rgb), 0.05);
}

/* line 713, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .canvas-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--text-muted);
  pointer-events: none;
}

/* line 722, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .canvas-placeholder i {
  font-size: 48px;
  margin-bottom: 12px;
  opacity: 0.3;
}

/* line 728, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .canvas-placeholder p {
  margin: 0;
}

/* line 736, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .canvas-block {
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 12px;
  transition: all 0.25s ease;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

/* line 745, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .canvas-block:last-child {
  margin-bottom: 0;
}

/* line 749, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .canvas-block:hover {
  border-color: rgba(var(--primary-rgb), 0.5);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

/* line 755, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .canvas-block.selected {
  border-color: var(--primary);
  border-width: 2px;
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.12), 0 8px 24px rgba(0, 0, 0, 0.1);
  background: linear-gradient(to bottom, rgba(var(--primary-rgb), 0.03), var(--bg-primary));
}

/* line 761, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .canvas-block.selected .block-header {
  background: linear-gradient(to right, rgba(var(--primary-rgb), 0.06), transparent);
}

/* line 765, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .canvas-block.selected .block-emoji {
  background: var(--primary);
  color: white;
}

/* line 771, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .canvas-block.dragging {
  opacity: 0.6;
  transform: scale(0.98) rotate(1deg);
  border-style: dashed;
}

/* line 777, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .canvas-block.drag-target-above {
  border-top: 4px solid var(--primary);
  margin-top: 8px;
}

/* line 782, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .canvas-block.drag-target-below {
  border-bottom: 4px solid var(--primary);
  margin-bottom: 8px;
}

/* line 787, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .canvas-block .block-content {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
}

/* line 794, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .canvas-block .block-emoji {
  font-size: 18px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary, var(--bg-secondary)) 100%);
  border-radius: 10px;
  border: 1px solid var(--border-color);
  transition: all 0.25s ease;
}

/* line 807, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .canvas-block .block-info {
  flex: 1;
}

/* line 811, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .canvas-block .block-type {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 2px;
}

/* line 818, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .canvas-block .block-summary {
  font-size: 12px;
  color: var(--text-muted);
}

/* line 824, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .block-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  background: linear-gradient(to right, rgba(var(--primary-rgb), 0.02), transparent);
  transition: background 0.2s;
}

/* line 834, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .block-drag-handle {
  cursor: grab;
  color: var(--text-muted);
  padding: 8px;
  border-radius: 6px;
  transition: all 0.2s;
}

/* line 841, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .block-drag-handle:hover {
  background: var(--bg-secondary);
  color: var(--primary);
}

/* line 846, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .block-drag-handle:active {
  cursor: grabbing;
}

/* line 851, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .block-actions {
  display: flex;
  gap: 6px;
  align-items: center;
}

/* line 856, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .block-actions .delete-btn {
  margin-left: 8px;
}

/* line 861, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .block-action-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border-color);
  background: var(--bg-secondary);
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s;
  font-size: 12px;
}

/* line 875, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .block-action-btn:hover:not(:disabled) {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
}

/* line 883, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .block-action-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* line 888, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .block-action-btn.delete-btn:hover:not(:disabled) {
  background: #dc3545;
  border-color: #dc3545;
  color: white;
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* line 899, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .block-config {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(var(--primary-rgb), 0.03) 100%);
}

/* line 905, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .block-config.open {
  max-height: 700px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #C38761 rgba(255, 255, 255, 0.1);
}

/* line 910, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .block-config.open::-webkit-scrollbar {
  width: 8px;
}

/* line 914, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .block-config.open::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 919, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .block-config.open::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 924, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .block-config.open::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* line 933, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .block-config-inner {
  padding: 24px;
  border-top: 2px solid rgba(var(--primary-rgb), 0.15);
}

/* line 937, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .block-config-inner .config-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 946, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .block-config-inner .config-title i {
  font-size: 12px;
}

/* line 952, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .block-config .config-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

/* line 958, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .block-config .config-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 963, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .block-config .config-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* line 973, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .block-config .config-field label .field-hint {
  font-size: 10px;
  font-weight: 400;
  text-transform: none;
  color: var(--text-muted);
  font-style: italic;
}

/* line 982, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .block-config .config-field input,
.new-document-template .block-config .config-field select,
.new-document-template .block-config .config-field textarea {
  padding: 12px 14px;
  border: 2px solid rgba(195, 135, 97, 0.3);
  border-radius: 10px;
  font-size: 14px;
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: all 0.25s ease;
}

/* line 993, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .block-config .config-field input:hover,
.new-document-template .block-config .config-field select:hover,
.new-document-template .block-config .config-field textarea:hover {
  border-color: rgba(195, 135, 97, 0.5);
}

/* line 997, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .block-config .config-field input:focus,
.new-document-template .block-config .config-field select:focus,
.new-document-template .block-config .config-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.12);
  background: var(--bg-primary);
}

/* line 1004, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .block-config .config-field input::placeholder,
.new-document-template .block-config .config-field select::placeholder,
.new-document-template .block-config .config-field textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

/* line 1010, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .block-config .config-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23C38761' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  padding-right: 40px;
  cursor: pointer;
}

/* line 1020, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .block-config .config-field textarea {
  min-height: 80px;
  resize: vertical;
  line-height: 1.5;
  scrollbar-width: thin;
  scrollbar-color: #C38761 rgba(255, 255, 255, 0.1);
}

/* line 1026, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .block-config .config-field textarea::-webkit-scrollbar {
  width: 6px;
}

/* line 1030, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .block-config .config-field textarea::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 1035, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .block-config .config-field textarea::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 1044, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .block-config .config-field input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
  cursor: pointer;
}

/* line 1051, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .block-config .config-field input[type="color"] {
  width: 50px;
  height: 40px;
  padding: 4px;
  cursor: pointer;
  border-radius: 8px;
}

/* line 1059, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .block-config .config-field input[type="number"] {
  width: 100%;
}

/* line 1063, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .block-config .config-field.checkbox-field {
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: linear-gradient(135deg, var(--bg-primary) 0%, rgba(var(--primary-rgb), 0.02) 100%);
  border-radius: 10px;
  border: 2px solid var(--border-color);
  transition: all 0.2s;
}

/* line 1073, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .block-config .config-field.checkbox-field:hover {
  border-color: rgba(195, 135, 97, 0.4);
}

/* line 1077, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .block-config .config-field.checkbox-field label {
  text-transform: none;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: normal;
  cursor: pointer;
}

/* line 1087, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .block-config .config-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

/* line 1099, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .code-editor {
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', monospace;
  font-size: 12px;
  line-height: 1.5;
  tab-size: 2;
}

/* line 1109, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .template-builder-form .form-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

/* line 1122, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .preview-section {
  margin-top: 24px;
}

/* line 1125, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .preview-section .builder-section {
  border: 2px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
}

/* line 1131, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .preview-section .section-header {
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05) 0%, transparent 100%);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 20px;
  margin: 0;
}

/* line 1137, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .preview-section .section-header h4, .new-document-template .preview-section .section-header .h4 {
  color: var(--primary);
}

/* line 1142, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .preview-section .section-hint {
  padding: 0 20px;
  margin: 12px 0;
}

/* line 1148, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .btn-preview,
.new-document-template .btn-preview-open {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

/* line 1160, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .btn-preview i,
.new-document-template .btn-preview-open i {
  font-size: 12px;
}

/* line 1165, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .btn-preview {
  color: var(--primary);
  background: transparent;
  border: 2px solid var(--primary);
}

/* line 1170, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .btn-preview:hover {
  background: var(--primary);
  color: white;
}

/* line 1176, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .btn-preview-open {
  color: var(--text-muted);
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
}

/* line 1181, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .btn-preview-open:hover {
  color: var(--primary);
  border-color: var(--primary);
}

/* line 1186, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .btn-preview-open:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* line 1192, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .preview-container {
  min-height: 500px;
  background: #f5f5f5;
  margin: 0 20px 20px 20px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  position: relative;
}

/* line 1202, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .preview-placeholder,
.new-document-template .preview-loading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-muted);
  background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
}

/* line 1217, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .preview-placeholder i,
.new-document-template .preview-loading i {
  font-size: 48px;
  opacity: 0.4;
}

/* line 1222, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .preview-placeholder p,
.new-document-template .preview-loading p {
  margin: 0;
  font-size: 14px;
  text-align: center;
  max-width: 300px;
}

/* line 1230, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .preview-loading {
  background: rgba(255, 255, 255, 0.95);
  z-index: 10;
}

/* line 1234, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .preview-loading i {
  color: var(--primary);
  opacity: 1;
}

/* line 1239, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .preview-loading p {
  color: var(--primary);
  font-weight: 500;
}

/* line 1245, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .preview-iframe {
  width: 100%;
  height: 600px;
  border: none;
  background: white;
}

/* line 1255, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .no-options {
  color: var(--text-muted);
  font-size: 13px;
  font-style: italic;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border-radius: 8px;
  text-align: center;
}

/* line 1268, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .style-config-visual,
.new-document-template .footer-config-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* line 1275, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .config-subsection {
  background: linear-gradient(135deg, var(--bg-primary) 0%, rgba(var(--primary-rgb), 0.02) 100%);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
}

/* line 1281, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .config-subsection h5, .new-document-template .config-subsection .h5 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 16px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

/* line 1292, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .config-subsection h5 i, .new-document-template .config-subsection .h5 i {
  font-size: 14px;
}

/* line 1299, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .color-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

/* line 1305, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .color-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 1310, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .color-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
}

/* line 1316, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .color-field small, .new-document-template .color-field .small {
  font-size: 11px;
  color: var(--text-muted);
  font-style: italic;
}

/* line 1323, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .color-input-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  border-radius: 10px;
  transition: border-color 0.2s;
}

/* line 1333, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .color-input-wrapper:hover {
  border-color: rgba(195, 135, 97, 0.4);
}

/* line 1337, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .color-input-wrapper input[type="color"] {
  width: 40px;
  height: 32px;
  padding: 2px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* line 1345, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .color-input-wrapper input[type="color"]::-webkit-color-swatch-wrapper {
  padding: 2px;
}

/* line 1349, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .color-input-wrapper input[type="color"]::-webkit-color-swatch {
  border-radius: 4px;
  border: 1px solid var(--border-color);
}

/* line 1355, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .color-input-wrapper .color-hex {
  font-family: 'Monaco', 'Menlo', monospace;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* line 1364, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .font-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

/* line 1370, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .font-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 1375, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .font-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
}

/* line 1381, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .font-field select {
  padding: 10px 14px;
  border: 2px solid rgba(195, 135, 97, 0.3);
  border-radius: 10px;
  font-size: 14px;
  background: var(--bg-primary);
  color: var(--text-primary);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23C38761' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  padding-right: 40px;
  transition: all 0.2s;
}

/* line 1397, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .font-field select:hover {
  border-color: rgba(195, 135, 97, 0.5);
}

/* line 1401, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .font-field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
}

/* line 1409, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .size-input-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--bg-secondary);
  border: 2px solid rgba(195, 135, 97, 0.3);
  border-radius: 10px;
  transition: all 0.2s;
}

/* line 1419, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .size-input-wrapper:hover {
  border-color: rgba(195, 135, 97, 0.5);
}

/* line 1423, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .size-input-wrapper:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
}

/* line 1428, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .size-input-wrapper input[type="number"] {
  width: 60px;
  padding: 4px 8px;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  text-align: center;
}

/* line 1438, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .size-input-wrapper input[type="number"]:focus {
  outline: none;
}

/* line 1442, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .size-input-wrapper input[type="number"]::-webkit-inner-spin-button, .new-document-template .size-input-wrapper input[type="number"]::-webkit-outer-spin-button {
  opacity: 1;
}

/* line 1448, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .size-input-wrapper .size-unit {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* line 1456, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .margins-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  /* line 1456, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
  .new-document-template .margins-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* line 1466, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .margin-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

/* line 1472, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .margin-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
}

/* line 1480, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .logo-position-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  /* line 1480, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
  .new-document-template .logo-position-grid {
    grid-template-columns: 1fr;
  }
}

/* line 1490, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .logo-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 1495, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .logo-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
}

/* line 1501, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .logo-field select {
  padding: 10px 14px;
  border: 2px solid rgba(195, 135, 97, 0.3);
  border-radius: 10px;
  font-size: 14px;
  background: var(--bg-primary);
  color: var(--text-primary);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23C38761' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  padding-right: 40px;
  transition: all 0.2s;
}

/* line 1517, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .logo-field select:hover {
  border-color: rgba(195, 135, 97, 0.5);
}

/* line 1521, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .logo-field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
}

/* line 1530, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .footer-options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* line 1537, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .footer-field.checkbox-field {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

/* line 1548, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .footer-field.checkbox-field:hover {
  border-color: rgba(195, 135, 97, 0.4);
  background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(var(--primary-rgb), 0.03) 100%);
}

/* line 1553, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .footer-field.checkbox-field input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
  cursor: pointer;
}

/* line 1560, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .footer-field.checkbox-field label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
}

/* line 1569, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .footer-text-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 1574, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .footer-text-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
}

/* line 1580, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .footer-text-field input[type="text"] {
  padding: 12px 16px;
  border: 2px solid rgba(195, 135, 97, 0.3);
  border-radius: 10px;
  font-size: 14px;
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: all 0.2s;
}

/* line 1589, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .footer-text-field input[type="text"]:hover {
  border-color: rgba(195, 135, 97, 0.5);
}

/* line 1593, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .footer-text-field input[type="text"]:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
}

/* line 1599, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .footer-text-field input[type="text"]::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

/* line 1605, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .footer-text-field small, .new-document-template .footer-text-field .small {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
}

/* line 1613, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .advanced-toggle {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

/* line 1619, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .btn-toggle-advanced {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  border: 1px dashed var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

/* line 1633, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .btn-toggle-advanced:hover {
  color: var(--primary);
  border-color: var(--primary);
  border-style: solid;
  background: rgba(var(--primary-rgb), 0.05);
}

/* line 1640, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .btn-toggle-advanced i {
  font-size: 12px;
}

/* line 1645, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .advanced-json-editor {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--border-color);
}

/* line 1650, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .advanced-json-editor textarea {
  width: 100%;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', monospace;
  font-size: 12px;
  line-height: 1.6;
  padding: 14px;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  background: var(--bg-secondary);
  color: var(--text-primary);
  resize: vertical;
  scrollbar-width: thin;
  scrollbar-color: #C38761 rgba(255, 255, 255, 0.1);
}

/* line 1662, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .advanced-json-editor textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

/* line 1669, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .advanced-json-editor textarea::-webkit-scrollbar {
  width: 8px;
}

/* line 1673, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .advanced-json-editor textarea::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 1678, app/assets/stylesheets/pages/admin_portal/_document_templates.scss */
.new-document-template .advanced-json-editor textarea::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
}

/* line 10, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.template-wizard-fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: linear-gradient(151deg, #140d23 25%, #640127 100%);
  overflow: hidden;
}

/* line 21, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.template-wizard-form {
  display: flex;
  flex-direction: column;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  background: linear-gradient(151deg, #140d23 25%, #640127 100%);
}

/* line 34, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.wizard-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 60px;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  min-height: 80px;
}

/* line 45, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.wizard-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 24px;
  transition: all 0.2s ease;
}

/* line 54, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.wizard-step.active .step-number {
  background: #c18859;
  color: white;
  font-weight: 700;
}

/* line 59, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.wizard-step.active .step-label {
  color: #c18859;
  font-weight: 600;
}

/* line 66, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.wizard-step.completed .step-number {
  background: #a67548;
  color: white;
}

/* line 70, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.wizard-step.completed .step-number span {
  display: none;
}

/* line 74, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.wizard-step.completed .step-number::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 12px;
}

/* line 82, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.wizard-step.completed .step-label {
  color: #a67548;
}

/* line 88, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  transition: all 0.2s ease;
}

/* line 103, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.step-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

/* line 110, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.wizard-step-connector {
  width: 80px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 4px;
  margin-bottom: 28px;
}

/* line 118, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.wizard-close-btn {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.2s ease;
}

/* line 136, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.wizard-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

/* line 146, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.wizard-content {
  display: flex;
  flex: 1;
  overflow: hidden;
}

/* line 156, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.wizard-config-panel {
  width: 40%;
  min-width: 420px;
  max-width: 560px;
  background: transparent;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: hidden;
}

/* line 168, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.wizard-step-content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 32px;
}

/* line 174, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.wizard-step-content::-webkit-scrollbar {
  width: 6px;
}

/* line 178, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.wizard-step-content::-webkit-scrollbar-track {
  background: transparent;
}

/* line 182, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.wizard-step-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

/* line 186, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.wizard-step-content::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* line 192, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.config-section-title {
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin: 0 0 24px 0;
}

/* line 203, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.config-tabs {
  display: flex;
  gap: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 28px;
}

/* line 212, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.config-tab {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background: transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 224, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.config-tab:hover:not(.active) {
  color: white;
}

/* line 228, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.config-tab.active {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

/* line 236, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.config-tab-content {
  display: none;
}

/* line 239, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.config-tab-content.active {
  display: block;
}

/* line 248, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.config-group {
  margin-bottom: 28px;
}

/* line 252, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.config-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

/* line 262, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.config-sublabel {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

/* line 269, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.config-hint {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
  margin-bottom: 10px;
  font-weight: 400;
}

/* line 279, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.config-label-with-master-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

/* line 285, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.config-label-with-master-toggle .config-label {
  margin-bottom: 0;
}

/* line 289, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.config-label-with-master-toggle .toggle-option--master {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  gap: 10px;
}

/* line 295, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.config-label-with-master-toggle .toggle-option--master .toggle-slider {
  width: 36px;
  height: 20px;
  border-radius: 10px;
}

/* line 300, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.config-label-with-master-toggle .toggle-option--master .toggle-slider::after {
  width: 16px;
  height: 16px;
}

/* line 306, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.config-label-with-master-toggle .toggle-option--master input[type="checkbox"]:checked + .toggle-slider::after {
  transform: translateX(16px);
}

/* line 310, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.config-label-with-master-toggle .toggle-option--master .toggle-label {
  font-size: 12px;
  font-weight: 500;
}

/* line 318, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.contract-clauses-section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* line 323, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.contract-clauses-section .config-hint {
  margin-bottom: 16px;
}

/* line 332, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.clause-sortable-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 338, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.clause-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  cursor: grab;
}

/* line 348, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.clause-item:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

/* line 354, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.clause-item.dragging {
  opacity: 0.5;
  background: rgba(193, 136, 89, 0.2);
  border-color: #c18859;
  cursor: grabbing;
}

/* line 362, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.clause-item.drag-over-top {
  position: relative;
}

/* line 365, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.clause-item.drag-over-top::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: #c18859;
  border-radius: 2px;
}

/* line 378, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.clause-item.drag-over-bottom {
  position: relative;
}

/* line 381, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.clause-item.drag-over-bottom::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: #c18859;
  border-radius: 2px;
}

/* line 394, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.clause-item .toggle-option {
  flex: 1;
  margin: 0;
  padding: 12px 14px 12px 0;
  background: transparent;
  border-radius: 0;
}

/* line 401, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.clause-item .toggle-option:hover {
  background: transparent;
}

/* line 408, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.clause-drag-handle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 100%;
  min-height: 52px;
  color: rgba(255, 255, 255, 0.4);
  cursor: grab;
  transition: color 0.2s ease;
  flex-shrink: 0;
  padding-left: 8px;
}

/* line 421, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.clause-drag-handle:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* line 425, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.clause-item.dragging .clause-drag-handle {
  cursor: grabbing;
  color: #c18859;
}

/* line 430, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.clause-drag-handle i {
  font-size: 14px;
}

/* line 435, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.config-input,
.config-select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.2s ease;
}

/* line 446, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.config-input:focus,
.config-select:focus {
  outline: none;
  border-color: #c18859;
  box-shadow: 0 0 0 3px rgba(193, 136, 89, 0.25);
  background: rgba(255, 255, 255, 0.15);
}

/* line 453, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.config-input::placeholder,
.config-select::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 457, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.config-input option,
.config-select option {
  background: #140d23;
  color: white;
}

/* line 463, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.config-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

/* line 475, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.config-textarea:focus {
  outline: none;
  border-color: #c18859;
  box-shadow: 0 0 0 3px rgba(193, 136, 89, 0.25);
  background: rgba(255, 255, 255, 0.15);
}

/* line 482, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.config-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 487, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.hidden-input {
  display: none;
}

/* line 495, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.logo-upload-area {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* line 501, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.logo-preview-container {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px dashed rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

/* line 514, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.logo-preview {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* line 520, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.logo-placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 28px;
}

/* line 525, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.logo-upload-info {
  flex: 1;
}

/* line 528, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.logo-upload-info p {
  margin: 0 0 4px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* line 534, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.logo-upload-info .logo-upload-btn {
  margin-top: 12px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: white;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

/* line 549, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.logo-upload-info .logo-upload-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

/* line 560, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.preset-cards,
.table-style-cards,
.signature-mode-cards {
  display: flex;
  gap: 12px;
}

/* line 567, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.preset-card,
.table-style-card,
.signature-mode-card {
  flex: 1;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

/* line 579, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.preset-card:hover:not(.selected),
.table-style-card:hover:not(.selected),
.signature-mode-card:hover:not(.selected) {
  border-color: #c18859;
  background: rgba(255, 255, 255, 0.15);
}

/* line 584, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.preset-card.selected,
.table-style-card.selected,
.signature-mode-card.selected {
  border-color: #c18859;
  background: rgba(193, 136, 89, 0.2);
}

/* line 590, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.preset-preview,
.table-style-preview {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 28px;
}

/* line 600, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.selected .preset-preview, .selected .table-style-preview {
  color: #c18859;
}

/* line 605, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.preset-radio,
.table-style-radio,
.signature-mode-radio {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* line 613, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.preset-radio input[type="radio"],
.table-style-radio input[type="radio"],
.signature-mode-radio input[type="radio"] {
  margin: 0;
  width: 18px;
  height: 18px;
  accent-color: #c18859;
}

/* line 620, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.preset-radio span,
.table-style-radio span,
.signature-mode-radio span {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

/* line 628, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.signature-mode-preview {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

/* line 636, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.signature-mode-preview .sig-block {
  width: 40px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

/* line 644, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.selected .signature-mode-preview .sig-block {
  background: rgba(193, 136, 89, 0.3);
  border-color: #c18859;
}

/* line 654, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.color-selector {
  margin-top: 8px;
}

/* line 658, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.color-presets {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* line 664, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.color-option {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.2s ease;
  position: relative;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* line 674, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.color-option:hover {
  transform: scale(1.1);
}

/* line 678, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.color-option.selected {
  border-color: white;
}

/* line 681, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.color-option.selected::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 14px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* line 696, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.color-custom {
  background: rgba(255, 255, 255, 0.1);
  border: 2px dashed rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  box-shadow: none;
}

/* line 705, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.color-custom:hover {
  border-color: #c18859;
  color: #c18859;
}

/* line 710, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.color-custom input[type="color"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* line 719, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.color-apply-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

/* line 725, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.color-apply-options.compact {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px;
}

/* line 732, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.color-apply-section {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* line 739, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.toggle-option-compact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

/* line 750, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.toggle-option-compact:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

/* line 755, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.toggle-option-compact:has(input:checked) {
  background: rgba(193, 136, 89, 0.25);
  border-color: #c18859;
}

/* line 760, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.toggle-option-compact input[type="checkbox"] {
  display: none;
}

/* line 765, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.toggle-checkbox {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  position: relative;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

/* line 774, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
input:checked + .toggle-checkbox {
  background: #c18859;
  border-color: #c18859;
}

/* line 778, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
input:checked + .toggle-checkbox::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 9px;
}

/* line 792, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.toggle-label-sm {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

/* line 802, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.column-toggles {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 808, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.toggle-option {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  cursor: pointer;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: background 0.2s ease;
  border: 1px solid transparent;
}

/* line 820, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.toggle-option:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* line 824, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.toggle-option input[type="checkbox"] {
  display: none;
}

/* line 827, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.toggle-option input[type="checkbox"]:checked + .toggle-slider {
  background: #c18859;
}

/* line 830, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.toggle-option input[type="checkbox"]:checked + .toggle-slider::after {
  transform: translateX(20px);
}

/* line 835, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.toggle-option input[type="checkbox"]:disabled + .toggle-slider {
  opacity: 0.5;
}

/* line 841, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.toggle-option--locked {
  cursor: not-allowed;
  position: relative;
}

/* line 845, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.toggle-option--locked:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* line 849, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.toggle-option--locked:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* line 857, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.toggle-option--locked::before {
  content: attr(title);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(30, 30, 30, 0.95);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  max-width: 280px;
  white-space: normal;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 100;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* line 880, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.toggle-option--locked .toggle-slider {
  background: #c18859;
  opacity: 0.7;
}

/* line 884, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.toggle-option--locked .toggle-slider::after {
  transform: translateX(20px);
}

/* line 889, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.toggle-option--locked .toggle-label {
  opacity: 0.8;
}

/* line 895, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.toggle-slider {
  width: 48px;
  height: 28px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  position: relative;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

/* line 904, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.toggle-slider::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: white;
  top: 2px;
  left: 2px;
  transition: transform 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

/* line 918, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.toggle-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}

/* line 927, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.position-selector {
  display: flex;
  gap: 8px;
}

/* line 932, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.position-option {
  flex: 1;
  padding: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}

/* line 942, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.position-option:has(input:checked) {
  border-color: #c18859;
  background: rgba(193, 136, 89, 0.2);
}

/* line 947, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.position-option input[type="radio"] {
  display: none;
}

/* line 951, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.position-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

/* line 961, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.position-option i {
  color: rgba(255, 255, 255, 0.7);
}

/* line 970, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.angle-slider-container {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* line 979, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.angle-value {
  min-width: 45px;
  padding: 4px 8px;
  background: rgba(193, 136, 89, 0.3);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: white;
  text-align: center;
}

/* line 990, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.angle-icon {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* line 995, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.angle-slider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  outline: none;
}

/* line 1004, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.angle-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #c18859;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

/* line 1015, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.angle-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #c18859;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

/* line 1030, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.form-row {
  display: flex;
  gap: 16px;
}

/* line 1035, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.form-col {
  flex: 1;
}

/* line 1043, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.wizard-navigation {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 24px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
}

/* line 1051, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.wizard-navigation .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  font-size: 0.7rem;
  font-weight: 500;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

/* line 1066, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.wizard-navigation .btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 1071, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.wizard-navigation .btn-secondary, .wizard-navigation .crm-action-button.crm-action-button-secondary {
  background-color: rgba(155, 155, 155, 0.2);
}

/* line 1074, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.wizard-navigation .btn-secondary:hover, .wizard-navigation .crm-action-button.crm-action-button-secondary:hover {
  background-color: rgba(155, 155, 155, 0.3);
  color: white;
}

/* line 1080, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.wizard-navigation .btn-primary, .wizard-navigation .crm-action-button.crm-action-button-primary {
  background-color: #c18859;
  border: 1px solid #c18859;
  color: white;
}

/* line 1085, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.wizard-navigation .btn-primary:hover, .wizard-navigation .crm-action-button.crm-action-button-primary:hover {
  background-color: #a67548;
  border-color: #a67548;
}

/* line 1096, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.wizard-preview-panel {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
}

/* line 1107, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.preview-container {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  position: relative;
}

/* line 1118, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.preview-iframe-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

/* line 1125, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.preview-iframe-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 44px;
  background: white;
  z-index: 5;
  pointer-events: none;
  border-radius: 16px 16px 0 0;
}

/* line 1138, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.preview-iframe-wrapper .preview-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* line 1145, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.preview-loading {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.95);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-muted, #6B7280);
  font-size: 14px;
  z-index: 10;
}

/* line 1158, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.preview-loading .loading-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--border-color, #E5E7EB);
  border-top-color: #c18859;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* line 1172, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.preview-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 1200px) {
  /* line 1183, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
  .wizard-config-panel {
    width: 45%;
    min-width: 380px;
  }
}

@media (max-width: 992px) {
  /* line 1190, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
  .wizard-content {
    flex-direction: column;
  }
  /* line 1194, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
  .wizard-config-panel {
    width: 100%;
    max-width: none;
    min-width: auto;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 50vh;
  }
  /* line 1203, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
  .wizard-preview-panel {
    flex: 1;
    min-height: 50vh;
    padding: 24px;
  }
  /* line 1209, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
  .wizard-progress {
    padding: 16px 24px;
    overflow-x: auto;
  }
  /* line 1214, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
  .wizard-step-connector {
    width: 40px;
  }
  /* line 1218, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
  .step-label {
    font-size: 12px;
  }
  /* line 1222, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
  .wizard-step-content {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  /* line 1228, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
  .preset-cards,
.table-style-cards {
    flex-direction: column;
  }
  /* line 1233, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
  .wizard-step {
    padding: 4px 12px;
  }
  /* line 1237, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
  .step-label {
    display: none;
  }
}

/* line 1244, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.wizard-color-swatch-white {
  background-color: #fff;
  border: 2px solid #e2e8f0;
}

/* line 1249, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.wizard-color-warning {
  background-color: #fff3cd;
}

/* line 1253, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.wizard-color-success {
  background-color: #d4edda;
}

/* line 1257, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.wizard-color-info {
  background-color: #d1ecf1;
}

/* line 1262, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.wizard-options-disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* line 1268, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.preview-loading-active {
  display: flex !important;
}

/* line 1272, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.wizard-color-danger {
  background-color: #f8d7da;
}

/* line 1276, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.wizard-color-secondary {
  background-color: #e2e3e5;
}

/* line 1280, app/assets/stylesheets/pages/admin_portal/_template_wizard.scss */
.wizard-color-light {
  background-color: #f8f9fa;
}

/* line 1, app/assets/stylesheets/pages/signature/_authentication.scss */
body:has(.new-auth-container),
body:has(.show-auth-container),
body:has(.confirmation-auth-container),
body.new-auth-page,
body.show-auth-page,
body.confirmation-auth-page {
  min-height: 100vh;
  background: linear-gradient(151deg, #140D23 25%, #640127 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

/* line 14, app/assets/stylesheets/pages/signature/_authentication.scss */
body.lightmode:has(.new-auth-container),
body.lightmode:has(.show-auth-container),
body.lightmode:has(.confirmation-auth-container),
body.new-auth-page.lightmode,
body.show-auth-page.lightmode,
body.confirmation-auth-page.lightmode {
  background-color: #FFFFFF;
}

/* line 19, app/assets/stylesheets/pages/signature/_authentication.scss */
.new-auth-container {
  width: 100%;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  margin: 0 auto;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(232, 232, 232, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  color: #FFFFFF;
}

/* line 33, app/assets/stylesheets/pages/signature/_authentication.scss */
.lightmode .new-auth-container {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
  box-shadow: 0 10px 25px rgba(20, 13, 35, 0.1);
}

/* line 41, app/assets/stylesheets/pages/signature/_authentication.scss */
.new-auth-heading {
  margin: 0;
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* line 48, app/assets/stylesheets/pages/signature/_authentication.scss */
.new-auth-intro {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

/* line 54, app/assets/stylesheets/pages/signature/_authentication.scss */
.lightmode .new-auth-intro {
  color: rgba(20, 13, 35, 0.82);
}

/* line 58, app/assets/stylesheets/pages/signature/_authentication.scss */
.new-auth-intro strong {
  color: #C38761;
}

/* line 61, app/assets/stylesheets/pages/signature/_authentication.scss */
.lightmode .new-auth-intro strong {
  color: #140D23;
}

/* line 67, app/assets/stylesheets/pages/signature/_authentication.scss */
.new-auth-flash {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* line 76, app/assets/stylesheets/pages/signature/_authentication.scss */
.lightmode .new-auth-flash {
  border-color: rgba(20, 13, 35, 0.2);
  background: rgba(20, 13, 35, 0.05);
  color: rgba(20, 13, 35, 0.9);
}

/* line 83, app/assets/stylesheets/pages/signature/_authentication.scss */
.new-auth-flash-notice {
  background: rgba(195, 135, 97, 0.2);
  border-color: rgba(195, 135, 97, 0.4);
  color: #C38761;
}

/* line 88, app/assets/stylesheets/pages/signature/_authentication.scss */
.lightmode .new-auth-flash-notice {
  background: rgba(195, 135, 97, 0.15);
}

/* line 93, app/assets/stylesheets/pages/signature/_authentication.scss */
.new-auth-flash-alert {
  background: rgba(166, 2, 64, 0.2);
  border-color: rgba(166, 2, 64, 0.35);
  color: rgba(166, 2, 64, 0.85);
}

/* line 98, app/assets/stylesheets/pages/signature/_authentication.scss */
.lightmode .new-auth-flash-alert {
  background: rgba(166, 2, 64, 0.15);
}

/* line 103, app/assets/stylesheets/pages/signature/_authentication.scss */
.new-auth-flash-text {
  margin: 0;
  line-height: 1.4;
}

/* line 108, app/assets/stylesheets/pages/signature/_authentication.scss */
.new-auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(232, 232, 232, 0.3);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* line 118, app/assets/stylesheets/pages/signature/_authentication.scss */
.lightmode .new-auth-form {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
  box-shadow: 0 8px 15px rgba(20, 13, 35, 0.1);
}

/* line 125, app/assets/stylesheets/pages/signature/_authentication.scss */
.new-auth-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* line 131, app/assets/stylesheets/pages/signature/_authentication.scss */
.new-auth-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

/* line 136, app/assets/stylesheets/pages/signature/_authentication.scss */
.lightmode .new-auth-label {
  color: rgba(20, 13, 35, 0.9);
}

/* line 141, app/assets/stylesheets/pages/signature/_authentication.scss */
.new-auth-input {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border-radius: 12px;
  border: 1px solid rgba(232, 232, 232, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  font-size: 1rem;
  letter-spacing: 0.1rem;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

/* line 154, app/assets/stylesheets/pages/signature/_authentication.scss */
.lightmode .new-auth-input {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 160, app/assets/stylesheets/pages/signature/_authentication.scss */
.new-auth-input:focus {
  outline: none;
  border-color: #C38761;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 166, app/assets/stylesheets/pages/signature/_authentication.scss */
.lightmode .new-auth-input:focus {
  background: rgba(255, 255, 255, 0.98);
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.15);
}

/* line 173, app/assets/stylesheets/pages/signature/_authentication.scss */
.new-auth-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 176, app/assets/stylesheets/pages/signature/_authentication.scss */
.lightmode .new-auth-input::placeholder {
  color: rgba(20, 13, 35, 0.5);
}

/* line 182, app/assets/stylesheets/pages/signature/_authentication.scss */
.new-auth-form-actions {
  display: flex;
  justify-content: flex-end;
}

/* line 187, app/assets/stylesheets/pages/signature/_authentication.scss */
.new-auth-submit {
  border: none;
  border-radius: 12px;
  padding: 0.9rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.95), rgba(134, 75, 40, 0.9));
  border: 1px solid rgba(195, 135, 97, 0.8);
  color: #FFFFFF;
  transition: all 0.25s ease;
}

/* line 198, app/assets/stylesheets/pages/signature/_authentication.scss */
.new-auth-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(195, 135, 97, 0.35);
}

/* line 203, app/assets/stylesheets/pages/signature/_authentication.scss */
.new-auth-submit:active {
  transform: translateY(0);
}

/* line 207, app/assets/stylesheets/pages/signature/_authentication.scss */
.lightmode .new-auth-submit {
  color: #140D23;
}

/* line 212, app/assets/stylesheets/pages/signature/_authentication.scss */
.new-auth-resend {
  margin: 0;
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

/* line 218, app/assets/stylesheets/pages/signature/_authentication.scss */
.lightmode .new-auth-resend {
  color: rgba(20, 13, 35, 0.75);
}

/* line 223, app/assets/stylesheets/pages/signature/_authentication.scss */
.new-auth-resend-button {
  margin-left: 0.35rem;
  padding: 0.25rem 0.75rem;
  color: #C38761;
  text-decoration: underline;
  border: none;
  background: transparent;
  font-weight: 600;
  transition: color 0.2s ease;
}

/* line 232, app/assets/stylesheets/pages/signature/_authentication.scss */
.new-auth-resend-button:hover {
  color: #bc794f;
  text-decoration: none;
}

/* line 237, app/assets/stylesheets/pages/signature/_authentication.scss */
.new-auth-resend-button:focus {
  outline: none;
  text-decoration: none;
}

/* line 243, app/assets/stylesheets/pages/signature/_authentication.scss */
.show-auth-container {
  width: 100%;
  max-width: 1024px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2.5rem;
  margin: 0 auto;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(232, 232, 232, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  color: #FFFFFF;
}

/* line 257, app/assets/stylesheets/pages/signature/_authentication.scss */
.lightmode .show-auth-container {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
  box-shadow: 0 15px 25px rgba(20, 13, 35, 0.12);
}

/* line 265, app/assets/stylesheets/pages/signature/_authentication.scss */
.show-auth-heading {
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* line 272, app/assets/stylesheets/pages/signature/_authentication.scss */
.show-auth-intro {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

/* line 278, app/assets/stylesheets/pages/signature/_authentication.scss */
.lightmode .show-auth-intro {
  color: rgba(20, 13, 35, 0.8);
}

/* line 282, app/assets/stylesheets/pages/signature/_authentication.scss */
.show-auth-intro strong {
  color: #C38761;
}

/* line 285, app/assets/stylesheets/pages/signature/_authentication.scss */
.lightmode .show-auth-intro strong {
  color: #140D23;
}

/* line 291, app/assets/stylesheets/pages/signature/_authentication.scss */
.show-auth-preview {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(232, 232, 232, 0.3);
}

/* line 300, app/assets/stylesheets/pages/signature/_authentication.scss */
.lightmode .show-auth-preview {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
}

/* line 306, app/assets/stylesheets/pages/signature/_authentication.scss */
.show-auth-preview-frame {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* line 313, app/assets/stylesheets/pages/signature/_authentication.scss */
.lightmode .show-auth-preview-frame {
  border-color: rgba(20, 13, 35, 0.15);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 24px rgba(20, 13, 35, 0.1);
}

/* line 320, app/assets/stylesheets/pages/signature/_authentication.scss */
.show-auth-preview-iframe {
  min-height: 400px;
  border: none;
  display: block;
  background: #FFFFFF;
  transition: height 0.15s ease-out;
}

/* line 330, app/assets/stylesheets/pages/signature/_authentication.scss */
.show-auth-preview-hint {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

/* line 335, app/assets/stylesheets/pages/signature/_authentication.scss */
.lightmode .show-auth-preview-hint {
  color: rgba(20, 13, 35, 0.75);
}

/* line 340, app/assets/stylesheets/pages/signature/_authentication.scss */
.show-auth-form {
  padding: 2.25rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(232, 232, 232, 0.3);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

/* line 347, app/assets/stylesheets/pages/signature/_authentication.scss */
.lightmode .show-auth-form {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
  box-shadow: 0 18px 30px rgba(20, 13, 35, 0.12);
}

/* line 354, app/assets/stylesheets/pages/signature/_authentication.scss */
.show-auth-capture {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

/* line 360, app/assets/stylesheets/pages/signature/_authentication.scss */
.show-auth-identity {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* line 366, app/assets/stylesheets/pages/signature/_authentication.scss */
.show-auth-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  opacity: 1;
}

/* line 372, app/assets/stylesheets/pages/signature/_authentication.scss */
.lightmode .show-auth-label {
  color: rgba(20, 13, 35, 0.9);
}

/* line 377, app/assets/stylesheets/pages/signature/_authentication.scss */
.show-auth-input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(232, 232, 232, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  font-size: 1rem;
  letter-spacing: 0.01em;
  text-align: left;
  text-transform: none;
  transition: all 0.3s ease;
}

/* line 390, app/assets/stylesheets/pages/signature/_authentication.scss */
.lightmode .show-auth-input {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 396, app/assets/stylesheets/pages/signature/_authentication.scss */
.show-auth-input:focus {
  outline: none;
  border-color: #C38761;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.1);
}

/* line 402, app/assets/stylesheets/pages/signature/_authentication.scss */
.lightmode .show-auth-input:focus {
  background: rgba(255, 255, 255, 0.98);
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.15);
}

/* line 409, app/assets/stylesheets/pages/signature/_authentication.scss */
.show-auth-input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

/* line 412, app/assets/stylesheets/pages/signature/_authentication.scss */
.lightmode .show-auth-input::placeholder {
  color: rgba(20, 13, 35, 0.5);
}

/* line 418, app/assets/stylesheets/pages/signature/_authentication.scss */
.show-auth-mode {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

/* line 424, app/assets/stylesheets/pages/signature/_authentication.scss */
.show-auth-mode-option {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  opacity: 1;
}

/* line 437, app/assets/stylesheets/pages/signature/_authentication.scss */
.lightmode .show-auth-mode-option {
  border-color: rgba(20, 13, 35, 0.2);
  background: rgba(20, 13, 35, 0.05);
  color: rgba(20, 13, 35, 0.9);
}

/* line 443, app/assets/stylesheets/pages/signature/_authentication.scss */
.show-auth-mode-option input {
  accent-color: #C38761;
}

/* line 447, app/assets/stylesheets/pages/signature/_authentication.scss */
.show-auth-mode-option span {
  font-weight: 500;
}

/* line 451, app/assets/stylesheets/pages/signature/_authentication.scss */
.show-auth-mode-option:hover {
  border-color: rgba(195, 135, 97, 0.5);
}

/* line 456, app/assets/stylesheets/pages/signature/_authentication.scss */
.show-auth-canvas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
}

/* line 465, app/assets/stylesheets/pages/signature/_authentication.scss */
.lightmode .show-auth-canvas {
  border-color: rgba(20, 13, 35, 0.25);
  background: rgba(20, 13, 35, 0.04);
}

/* line 470, app/assets/stylesheets/pages/signature/_authentication.scss */
.show-auth-canvas canvas {
  width: 100%;
  min-height: 220px;
  border-radius: 12px;
  background: #FFFFFF;
  box-shadow: inset 0 0 0 1px rgba(232, 232, 232, 0.2);
}

/* line 479, app/assets/stylesheets/pages/signature/_authentication.scss */
.show-auth-clear {
  align-self: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
  border-radius: 999px;
  padding: 0.45rem 1.35rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

/* line 491, app/assets/stylesheets/pages/signature/_authentication.scss */
.lightmode .show-auth-clear {
  border-color: rgba(20, 13, 35, 0.3);
  color: rgba(20, 13, 35, 0.85);
}

/* line 496, app/assets/stylesheets/pages/signature/_authentication.scss */
.show-auth-clear:hover {
  background: rgba(195, 135, 97, 0.15);
  border-color: rgba(195, 135, 97, 0.4);
  color: #C38761;
}

/* line 503, app/assets/stylesheets/pages/signature/_authentication.scss */
.show-auth-fallback {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

/* line 512, app/assets/stylesheets/pages/signature/_authentication.scss */
.lightmode .show-auth-fallback {
  border-color: rgba(20, 13, 35, 0.2);
  background: rgba(20, 13, 35, 0.03);
}

/* line 518, app/assets/stylesheets/pages/signature/_authentication.scss */
.show-auth-textarea {
  width: 100%;
  border: 1px solid rgba(232, 232, 232, 0.3);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  font-size: 1.25rem;
  font-family: 'Playwrite GB S', 'Permanent Marker', cursive;
  font-style: italic;
}

/* line 529, app/assets/stylesheets/pages/signature/_authentication.scss */
.lightmode .show-auth-textarea {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
}

/* line 535, app/assets/stylesheets/pages/signature/_authentication.scss */
.show-auth-textarea::placeholder {
  font-family: 'Playwrite GB S', 'Permanent Marker', cursive;
  font-size: 1rem;
  opacity: 0.6;
}

/* line 541, app/assets/stylesheets/pages/signature/_authentication.scss */
.show-auth-textarea:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.15);
}

/* line 548, app/assets/stylesheets/pages/signature/_authentication.scss */
.show-auth-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 552, app/assets/stylesheets/pages/signature/_authentication.scss */
.lightmode .show-auth-note {
  color: rgba(20, 13, 35, 0.7);
}

/* line 557, app/assets/stylesheets/pages/signature/_authentication.scss */
.show-auth-actions {
  display: flex;
  justify-content: flex-end;
}

/* line 562, app/assets/stylesheets/pages/signature/_authentication.scss */
.show-auth-submit {
  border: none;
  border-radius: 12px;
  padding: 1rem 2.75rem;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(135deg, rgba(195, 135, 97, 0.95), rgba(134, 75, 40, 0.9));
  border: 1px solid rgba(195, 135, 97, 0.85);
  color: #FFFFFF;
  transition: all 0.25s ease;
}

/* line 573, app/assets/stylesheets/pages/signature/_authentication.scss */
.show-auth-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 15px 30px rgba(195, 135, 97, 0.35);
}

/* line 578, app/assets/stylesheets/pages/signature/_authentication.scss */
.show-auth-submit:active {
  transform: translateY(0);
}

/* line 582, app/assets/stylesheets/pages/signature/_authentication.scss */
.lightmode .show-auth-submit {
  color: #140D23;
}

/* line 587, app/assets/stylesheets/pages/signature/_authentication.scss */
.show-auth-empty {
  margin: 0;
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

/* line 596, app/assets/stylesheets/pages/signature/_authentication.scss */
.lightmode .show-auth-empty {
  border-color: rgba(20, 13, 35, 0.25);
  background: rgba(20, 13, 35, 0.04);
  color: rgba(20, 13, 35, 0.75);
}

/* line 603, app/assets/stylesheets/pages/signature/_authentication.scss */
.confirmation-auth-container {
  width: 100%;
  max-width: 1024px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2.5rem;
  margin: 0 auto;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(232, 232, 232, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  color: #FFFFFF;
}

/* line 617, app/assets/stylesheets/pages/signature/_authentication.scss */
.lightmode .confirmation-auth-container {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
  color: #140D23;
  box-shadow: 0 15px 25px rgba(20, 13, 35, 0.12);
}

/* line 625, app/assets/stylesheets/pages/signature/_authentication.scss */
.confirmation-auth-hero {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
}

/* line 631, app/assets/stylesheets/pages/signature/_authentication.scss */
.confirmation-auth-hero h1, .confirmation-auth-hero .h1 {
  margin: 0.25rem 0 0;
  font-size: 2rem;
  font-weight: 600;
}

/* line 638, app/assets/stylesheets/pages/signature/_authentication.scss */
.confirmation-auth-kicker {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

/* line 645, app/assets/stylesheets/pages/signature/_authentication.scss */
.lightmode .confirmation-auth-kicker {
  color: rgba(20, 13, 35, 0.65);
}

/* line 650, app/assets/stylesheets/pages/signature/_authentication.scss */
.confirmation-auth-lead {
  margin: 0.45rem 0 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* line 656, app/assets/stylesheets/pages/signature/_authentication.scss */
.lightmode .confirmation-auth-lead {
  color: rgba(20, 13, 35, 0.8);
}

/* line 661, app/assets/stylesheets/pages/signature/_authentication.scss */
.confirmation-auth-status {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.25rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* line 669, app/assets/stylesheets/pages/signature/_authentication.scss */
.lightmode .confirmation-auth-status {
  background: rgba(20, 13, 35, 0.08);
  border-color: rgba(20, 13, 35, 0.15);
}

/* line 675, app/assets/stylesheets/pages/signature/_authentication.scss */
.confirmation-auth-card {
  padding: 1.75rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(232, 232, 232, 0.25);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* line 682, app/assets/stylesheets/pages/signature/_authentication.scss */
.lightmode .confirmation-auth-card {
  background: rgba(20, 13, 35, 0.05);
  border-color: rgba(20, 13, 35, 0.2);
  box-shadow: 0 12px 20px rgba(20, 13, 35, 0.12);
}

/* line 688, app/assets/stylesheets/pages/signature/_authentication.scss */
.confirmation-auth-card h2, .confirmation-auth-card .h2 {
  margin-top: 0;
  font-size: 1.25rem;
}

/* line 694, app/assets/stylesheets/pages/signature/_authentication.scss */
.confirmation-auth-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

/* line 700, app/assets/stylesheets/pages/signature/_authentication.scss */
.confirmation-auth-actions-primary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* line 706, app/assets/stylesheets/pages/signature/_authentication.scss */
.confirmation-auth-download {
  min-width: 220px;
  text-align: center;
}

/* line 710, app/assets/stylesheets/pages/signature/_authentication.scss */
.confirmation-auth-download--disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.5rem;
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.7);
}

/* line 720, app/assets/stylesheets/pages/signature/_authentication.scss */
.lightmode .confirmation-auth-download--disabled {
  border-color: rgba(20, 13, 35, 0.3);
  color: rgba(20, 13, 35, 0.7);
}

/* line 727, app/assets/stylesheets/pages/signature/_authentication.scss */
.confirmation-auth-back {
  border-radius: 12px;
  padding: 0.9rem 1.8rem;
  font-weight: 600;
}

/* line 733, app/assets/stylesheets/pages/signature/_authentication.scss */
.confirmation-auth-hint {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 738, app/assets/stylesheets/pages/signature/_authentication.scss */
.lightmode .confirmation-auth-hint {
  color: rgba(20, 13, 35, 0.7);
}

/* line 743, app/assets/stylesheets/pages/signature/_authentication.scss */
.confirmation-auth-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* line 749, app/assets/stylesheets/pages/signature/_authentication.scss */
.confirmation-auth-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* line 757, app/assets/stylesheets/pages/signature/_authentication.scss */
.confirmation-auth-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.75rem;
}

/* line 764, app/assets/stylesheets/pages/signature/_authentication.scss */
.lightmode .confirmation-auth-list li {
  border-color: rgba(20, 13, 35, 0.08);
}

/* line 770, app/assets/stylesheets/pages/signature/_authentication.scss */
.confirmation-auth-label {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

/* line 774, app/assets/stylesheets/pages/signature/_authentication.scss */
.lightmode .confirmation-auth-label {
  color: rgba(20, 13, 35, 0.7);
}

/* line 779, app/assets/stylesheets/pages/signature/_authentication.scss */
.confirmation-auth-value {
  font-weight: 600;
}

/* line 783, app/assets/stylesheets/pages/signature/_authentication.scss */
.confirmation-auth-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

/* line 792, app/assets/stylesheets/pages/signature/_authentication.scss */
.confirmation-auth-timeline-date {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* line 797, app/assets/stylesheets/pages/signature/_authentication.scss */
.lightmode .confirmation-auth-timeline-date {
  color: rgba(20, 13, 35, 0.6);
}

/* line 802, app/assets/stylesheets/pages/signature/_authentication.scss */
.confirmation-auth-timeline-event {
  font-weight: 600;
}

/* line 806, app/assets/stylesheets/pages/signature/_authentication.scss */
.confirmation-auth-empty {
  margin: 0;
  padding: 1rem;
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
}

/* line 814, app/assets/stylesheets/pages/signature/_authentication.scss */
.lightmode .confirmation-auth-empty {
  border-color: rgba(20, 13, 35, 0.25);
  color: rgba(20, 13, 35, 0.7);
}

@media (max-width: 768px) {
  /* line 821, app/assets/stylesheets/pages/signature/_authentication.scss */
  .confirmation-auth-hero {
    flex-direction: column;
    align-items: flex-start;
  }
  /* line 826, app/assets/stylesheets/pages/signature/_authentication.scss */
  .confirmation-auth-actions-primary {
    flex-direction: column;
  }
}

/* line 1, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  vertical-align: middle;
  gap: 8px;
  width: 100%;
  height: 16vh;
  padding-right: 5%;
  padding-left: 2%;
  transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
  background: transparent;
}

/* line 21, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-home {
  all: unset;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  padding: 6px;
  height: 30px;
  width: 30px;
  aspect-ratio: 1;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border 0.3s ease;
}

/* line 41, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-home a {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  cursor: pointer;
}

/* line 47, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-home:hover {
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

/* line 53, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-home:hover .specialnavbar-home a:hover {
  color: #FFFFFF;
}

/* line 58, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-home.nightmode:hover {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

/* line 64, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-home.lightmode:hover {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

/* line 70, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-home i {
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 77, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-toggle {
  width: auto !important;
  min-width: 400px;
  height: 35px;
  font-size: 0.8rem;
  line-height: 1;
  background-color: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  border: 0.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: space-evenly;
  gap: 4px;
  margin-top: auto;
  margin-bottom: auto;
  padding: 0 12px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

/* line 98, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-toggle:hover {
  transform: scale(1.04);
  background-color: rgba(255, 255, 255, 0.25);
}

/* line 103, app/assets/stylesheets/components/_customerspace_navbar.scss */
.selected.nightmode {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

/* line 110, app/assets/stylesheets/components/_customerspace_navbar.scss */
.selected.lightmode {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

/* line 117, app/assets/stylesheets/components/_customerspace_navbar.scss */
.on.nightmode {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

/* line 124, app/assets/stylesheets/components/_customerspace_navbar.scss */
.on.lightmode {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

/* line 132, app/assets/stylesheets/components/_customerspace_navbar.scss */
.selected-bold {
  position: relative;
  background: rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(10px) !important;
  color: #140D23 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* line 141, app/assets/stylesheets/components/_customerspace_navbar.scss */
.selected-bold::before {
  content: '';
  position: absolute;
  top: 3px;
  right: 3px;
  bottom: 3px;
  left: 3px;
  background-color: #E5A82E;
  border-radius: inherit;
  z-index: -1;
}

/* line 154, app/assets/stylesheets/components/_customerspace_navbar.scss */
.selected-bold i, .selected-bold span {
  color: #140D23 !important;
}

/* line 159, app/assets/stylesheets/components/_customerspace_navbar.scss */
.selected-bold.nightmode {
  position: relative;
  background: rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(10px) !important;
  color: #140D23 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* line 167, app/assets/stylesheets/components/_customerspace_navbar.scss */
.selected-bold.nightmode::before {
  content: '';
  position: absolute;
  top: 3px;
  right: 3px;
  bottom: 3px;
  left: 3px;
  background-color: #E5A82E;
  border-radius: inherit;
  z-index: -1;
}

/* line 180, app/assets/stylesheets/components/_customerspace_navbar.scss */
.selected-bold.nightmode i, .selected-bold.nightmode span {
  color: #140D23 !important;
}

/* line 185, app/assets/stylesheets/components/_customerspace_navbar.scss */
.selected-bold.lightmode {
  position: relative;
  background: rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(10px) !important;
  color: #140D23 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* line 193, app/assets/stylesheets/components/_customerspace_navbar.scss */
.selected-bold.lightmode::before {
  content: '';
  position: absolute;
  top: 3px;
  right: 3px;
  bottom: 3px;
  left: 3px;
  background-color: #E5A82E;
  border-radius: inherit;
  z-index: -1;
}

/* line 206, app/assets/stylesheets/components/_customerspace_navbar.scss */
.selected-bold.lightmode i, .selected-bold.lightmode span {
  color: #140D23 !important;
}

/* line 212, app/assets/stylesheets/components/_customerspace_navbar.scss */
.navbar-assistant-btn.selected-bold {
  position: relative;
  background: rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(10px) !important;
  color: #140D23 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* line 220, app/assets/stylesheets/components/_customerspace_navbar.scss */
.navbar-assistant-btn.selected-bold::before {
  content: '';
  position: absolute;
  top: 3px;
  right: 3px;
  bottom: 3px;
  left: 3px;
  background-color: #E5A82E;
  border-radius: inherit;
  z-index: -1;
}

/* line 232, app/assets/stylesheets/components/_customerspace_navbar.scss */
.navbar-assistant-btn.selected-bold .assistant-icon,
.navbar-assistant-btn.selected-bold .assistant-label {
  color: #140D23 !important;
  position: relative;
  z-index: 1;
}

/* line 240, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-admin.selected-bold,
.specialnavbar-account.selected-bold,
.specialnavbar-home.selected-bold,
.specialnavbar-logout.selected-bold {
  position: relative;
  background: rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(10px) !important;
  color: #140D23 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* line 251, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-admin.selected-bold::before,
.specialnavbar-account.selected-bold::before,
.specialnavbar-home.selected-bold::before,
.specialnavbar-logout.selected-bold::before {
  content: '';
  position: absolute;
  top: 2px;
  right: 2px;
  bottom: 2px;
  left: 2px;
  background-color: #E5A82E;
  border-radius: inherit;
  z-index: -1;
}

/* line 263, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-admin.selected-bold i,
.specialnavbar-account.selected-bold i,
.specialnavbar-home.selected-bold i,
.specialnavbar-logout.selected-bold i {
  color: #140D23 !important;
  position: relative;
  z-index: 1;
}

/* line 270, app/assets/stylesheets/components/_customerspace_navbar.scss */
.btn-special-navbar {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  height: 35px;
  width: auto;
  min-width: fit-content;
  padding: 0 12px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border 0.3s ease;
}

/* line 290, app/assets/stylesheets/components/_customerspace_navbar.scss */
.btn-special-navbar:hover {
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* line 298, app/assets/stylesheets/components/_customerspace_navbar.scss */
.btn-special-navbar span {
  position: relative;
  z-index: 1;
}

/* line 304, app/assets/stylesheets/components/_customerspace_navbar.scss */
.btn-special-navbar span {
  margin-top: auto;
  margin-bottom: auto;
}

/* line 313, app/assets/stylesheets/components/_customerspace_navbar.scss */
.hidden {
  display: none !important;
}

/* line 317, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-lightmode {
  all: unset;
  width: auto;
  min-width: 60px;
  height: 35px;
  font-size: 1.2rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: space-evenly;
  margin-top: auto;
  margin-bottom: auto;
  transition: transform 0.3s ease, background 0.3s ease, border 0.3s ease;
}

/* line 338, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-lightmode:hover {
  transform: scale(1.15);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* line 343, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-lightmode:hover .specialnavbar-lightmode a:hover {
  color: #FFFFFF;
}

/* line 348, app/assets/stylesheets/components/_customerspace_navbar.scss */
.btn-lightmode-navbar {
  color: #FFFFFF;
  border-radius: 30px;
  height: 100%;
  width: 100%;
  display: flex;
  text-align: center;
  justify-content: center;
}

/* line 358, app/assets/stylesheets/components/_customerspace_navbar.scss */
.btn-lightmode-navbar i {
  display: flex;
}

/* line 362, app/assets/stylesheets/components/_customerspace_navbar.scss */
.btn-lightmode-navbar i::before {
  margin-top: auto;
  margin-bottom: auto;
  text-align: center;
}

/* line 368, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-account {
  all: unset;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  padding: 6px;
  height: 30px;
  width: 30px;
  aspect-ratio: 1;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border 0.3s ease;
}

/* line 388, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-account a {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

/* line 398, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-account:hover {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transform: scale(1.08);
  color: #FFFFFF;
}

/* line 404, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-account:hover .specialnavbar-account a:hover {
  color: #FFFFFF;
}

/* line 409, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-account.nightmode:hover {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

/* line 415, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-account.lightmode:hover {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

/* line 421, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-logout {
  all: unset;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  padding: 6px;
  height: 30px;
  width: 30px;
  aspect-ratio: 1;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border 0.3s ease;
}

/* line 441, app/assets/stylesheets/components/_customerspace_navbar.scss */
.a-specialnavbar {
  display: flex;
}

/* line 445, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-logout a {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

/* line 455, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-logout:hover {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transform: scale(1.08);
  color: #FFFFFF;
}

/* line 461, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-logout:hover .specialnavbar-logout a:hover {
  color: #FFFFFF;
}

/* line 466, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-logout.nightmode:hover {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

/* line 472, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-logout.lightmode:hover {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

/* line 479, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-exit {
  display: none !important;
}

/* line 484, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-link {
  color: #FFFFFF;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* line 490, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-link:hover {
  color: #FFFFFF;
}

/* line 495, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-capsule {
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* line 502, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-capsule:hover {
  color: #FFFFFF;
}

/* line 508, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-admin {
  all: unset;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  padding: 6px;
  height: 30px;
  width: 30px;
  aspect-ratio: 1;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border 0.3s ease;
}

/* line 528, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-admin a {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

/* line 538, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-admin:hover {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transform: scale(1.08);
  color: #FFFFFF;
}

/* line 544, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-admin:hover .specialnavbar-admin a:hover {
  color: #FFFFFF;
}

/* line 549, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-admin.nightmode:hover {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

/* line 555, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-admin.lightmode:hover {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

/* line 562, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-orizen-recall {
  all: unset;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  padding: 6px;
  height: 30px;
  width: 30px;
  aspect-ratio: 1;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, color 0.3s ease, border 0.3s ease;
  position: relative;
}

/* line 583, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-orizen-recall.hidden {
  display: none !important;
}

/* line 588, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-orizen-recall.active {
  position: relative;
  background: rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* line 595, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-orizen-recall.active::before {
  content: '';
  position: absolute;
  top: 2px;
  right: 2px;
  bottom: 2px;
  left: 2px;
  background-color: #E5A82E;
  border-radius: inherit;
  z-index: 0;
}

/* line 607, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-orizen-recall.active .btn-orizen-recall {
  position: relative;
  z-index: 1;
}

/* line 611, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-orizen-recall.active .btn-orizen-recall .orizen-recall-img {
  filter: brightness(0) invert(1);
}

/* line 617, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-orizen-recall .btn-orizen-recall {
  color: #FFFFFF;
  border-radius: 50%;
  height: 100%;
  width: 100%;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  padding: 2px;
}

/* line 631, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-orizen-recall .btn-orizen-recall .orizen-recall-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* line 638, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-orizen-recall .btn-orizen-recall i {
  display: none;
}

/* line 643, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-orizen-recall:hover {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transform: scale(1.08);
  color: #FFFFFF;
}

/* line 649, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-orizen-recall:hover .btn-orizen-recall {
  color: #FFFFFF;
}

/* line 654, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-orizen-recall.nightmode:hover {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

/* line 660, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-orizen-recall.lightmode:hover {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

@keyframes pulse-recall {
  0%, 100% {
    opacity: 0.4;
    transform: translate(-50%, -60%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -60%) scale(1.3);
  }
}

/* line 679, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-briefing {
  all: unset;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  padding: 6px;
  height: 30px;
  width: 30px;
  aspect-ratio: 1;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  text-align: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border 0.3s ease;
  position: relative;
}

/* line 699, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-briefing.active {
  position: relative;
  background: rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* line 706, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-briefing.active::before {
  content: '';
  position: absolute;
  top: 2px;
  right: 2px;
  bottom: 2px;
  left: 2px;
  background-color: #E5A82E;
  border-radius: inherit;
  z-index: 0;
}

/* line 718, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-briefing.active .btn-briefing {
  position: relative;
  z-index: 1;
  color: #FFFFFF;
}

/* line 725, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-briefing .btn-briefing {
  color: #FFFFFF;
  border-radius: 50%;
  height: 100%;
  width: 100%;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
}

/* line 737, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-briefing .btn-briefing i {
  margin-top: auto;
  margin-bottom: auto;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 746, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-briefing .btn-briefing .briefing-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ef4444;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0a0a14;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

/* line 766, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-briefing:hover {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transform: scale(1.08);
  color: #FFFFFF;
}

/* line 772, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-briefing:hover .btn-briefing {
  color: #FFFFFF;
}

/* line 777, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-briefing.nightmode:hover, .specialnavbar-briefing.lightmode:hover {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

/* line 786, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-assistant {
  display: flex;
  align-items: center;
  margin-top: auto;
  margin-bottom: auto;
}

/* line 792, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-assistant .navbar-assistant-btn {
  position: relative;
  padding: 0 18px;
  height: 35px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

/* line 811, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-assistant .navbar-assistant-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transform: scale(1.08);
  text-decoration: none;
  color: #FFFFFF;
}

/* line 818, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-assistant .navbar-assistant-btn:hover .assistant-icon {
  color: #FFFFFF;
}

/* line 822, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-assistant .navbar-assistant-btn:hover .assistant-label {
  color: #FFFFFF;
}

/* line 827, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-assistant .navbar-assistant-btn .assistant-icon {
  font-size: 1rem;
  color: #FFFFFF;
}

/* line 832, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-assistant .navbar-assistant-btn .assistant-label {
  color: #FFFFFF;
}

/* line 837, app/assets/stylesheets/components/_customerspace_navbar.scss */
.specialnavbar-assistant .navbar-assistant-btn .notification-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  background: #FF4444;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  animation: pulse-assistant 2s ease-in-out infinite;
}

@keyframes pulse-assistant {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* ========================================================================
   COMPOSANT COMMUN - Styles pour les checkboxes de dépendances
   Utilisé dans les modals et les pages de templates de projet
   ======================================================================== */
/* line 7, app/assets/stylesheets/components/_dependencies.scss */
.dependencies-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
  max-height: 300px;
  overflow-y: auto;
  padding: 8px;
  border-radius: 8px;
}

/* line 18, app/assets/stylesheets/components/_dependencies.scss */
.dependencies-list {
  margin-bottom: 20px;
}

/* line 22, app/assets/stylesheets/components/_dependencies.scss */
.dependency-checkbox-label {
  opacity: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 34, app/assets/stylesheets/components/_dependencies.scss */
.dependency-checkbox-label:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

/* line 39, app/assets/stylesheets/components/_dependencies.scss */
.dependency-checkbox-label .dependency-checkbox {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  margin: 0;
  cursor: pointer;
  accent-color: var(--primary-color);
  border-radius: 4px;
  transition: all 0.2s ease;
}

/* line 51, app/assets/stylesheets/components/_dependencies.scss */
.dependency-checkbox-label .dependency-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 400;
  flex: 1;
  opacity: 1;
}

/* line 59, app/assets/stylesheets/components/_dependencies.scss */
.dependency-checkbox-label:has(.dependency-checkbox:checked) {
  background: rgba(var(--primary-color-rgb), 0.1);
  border-color: rgba(var(--primary-color-rgb), 0.3);
}

/* line 63, app/assets/stylesheets/components/_dependencies.scss */
.dependency-checkbox-label:has(.dependency-checkbox:checked) .dependency-label {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

/* line 71, app/assets/stylesheets/components/_dependencies.scss */
.dependency-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 77, app/assets/stylesheets/components/_dependencies.scss */
.dependency-delay-field {
  margin-left: 28px;
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* line 88, app/assets/stylesheets/components/_dependencies.scss */
.dependency-delay-field.hidden {
  display: none;
}

/* line 92, app/assets/stylesheets/components/_dependencies.scss */
.dependency-delay-field .delay-label {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  opacity: 1 !important;
  visibility: visible !important;
}

/* line 103, app/assets/stylesheets/components/_dependencies.scss */
.dependency-delay-field .delay-label i {
  color: var(--primary-color);
  font-size: 11px;
}

/* line 109, app/assets/stylesheets/components/_dependencies.scss */
.dependency-delay-field .delay-input {
  width: 100%;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  transition: all 0.2s ease;
}

/* line 119, app/assets/stylesheets/components/_dependencies.scss */
.dependency-delay-field .delay-input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.12);
}

/* line 125, app/assets/stylesheets/components/_dependencies.scss */
.dependency-delay-field .delay-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* Light mode */
/* line 133, app/assets/stylesheets/components/_dependencies.scss */
.lightmode .dependencies-checkboxes {
  background: rgba(20, 13, 35, 0.03) !important;
  border: 1px solid rgba(20, 13, 35, 0.1) !important;
}

/* line 138, app/assets/stylesheets/components/_dependencies.scss */
.lightmode .dependency-checkbox-label {
  background: rgba(20, 13, 35, 0.02) !important;
  border: 1px solid rgba(20, 13, 35, 0.1) !important;
}

/* line 142, app/assets/stylesheets/components/_dependencies.scss */
.lightmode .dependency-checkbox-label:hover {
  background: rgba(20, 13, 35, 0.05) !important;
  border-color: rgba(20, 13, 35, 0.2) !important;
}

/* line 147, app/assets/stylesheets/components/_dependencies.scss */
.lightmode .dependency-checkbox-label .dependency-label {
  color: #140D23 !important;
}

/* line 151, app/assets/stylesheets/components/_dependencies.scss */
.lightmode .dependency-checkbox-label:has(.dependency-checkbox:checked) {
  background: rgba(var(--primary-color-rgb), 0.08) !important;
  border-color: rgba(var(--primary-color-rgb), 0.25) !important;
}

/* line 155, app/assets/stylesheets/components/_dependencies.scss */
.lightmode .dependency-checkbox-label:has(.dependency-checkbox:checked) .dependency-label {
  color: #140D23 !important;
}

/* line 161, app/assets/stylesheets/components/_dependencies.scss */
.lightmode .dependency-delay-field {
  background: rgba(20, 13, 35, 0.02) !important;
  border: 1px solid rgba(20, 13, 35, 0.1) !important;
}

/* line 165, app/assets/stylesheets/components/_dependencies.scss */
.lightmode .dependency-delay-field .delay-label {
  color: #140D23 !important;
}

/* line 168, app/assets/stylesheets/components/_dependencies.scss */
.lightmode .dependency-delay-field .delay-label i {
  color: var(--primary-color);
}

/* line 173, app/assets/stylesheets/components/_dependencies.scss */
.lightmode .dependency-delay-field .delay-input {
  background: rgba(20, 13, 35, 0.05) !important;
  border: 1px solid rgba(20, 13, 35, 0.15) !important;
  color: #140D23 !important;
}

/* line 178, app/assets/stylesheets/components/_dependencies.scss */
.lightmode .dependency-delay-field .delay-input:focus {
  border-color: var(--primary-color);
  background: rgba(20, 13, 35, 0.08) !important;
}

/* line 183, app/assets/stylesheets/components/_dependencies.scss */
.lightmode .dependency-delay-field .delay-input::placeholder {
  color: rgba(20, 13, 35, 0.4) !important;
}

/* Styles pour les messages flash interactifs */
/* line 191, app/assets/stylesheets/components/_dependencies.scss */
.flash-notice-interactive {
  padding: 12px 20px;
  gap: 8px;
  pointer-events: auto;
}

/* line 196, app/assets/stylesheets/components/_dependencies.scss */
.flash-notice-interactive .btn-close {
  pointer-events: auto;
  margin-left: 12px;
}

/* Styles pour les erreurs de formulaire */
/* line 203, app/assets/stylesheets/components/_dependencies.scss */
.form-errors {
  margin-top: 12px;
  padding: 12px;
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 8px;
  color: #dc3545;
}

/* line 211, app/assets/stylesheets/components/_dependencies.scss */
.form-errors ul {
  margin: 0;
  padding-left: 20px;
}

/* line 218, app/assets/stylesheets/components/_dependencies.scss */
.lightmode .form-errors {
  background: rgba(220, 53, 69, 0.08);
  border-color: rgba(220, 53, 69, 0.25);
  color: #dc2626;
}

/* line 1, app/assets/stylesheets/components/_devise.scss */
.devise-container {
  margin-top: 200px;
}

/* line 3, app/assets/stylesheets/components/_devise.scss */
.devise-container h2, .devise-container .h2 {
  margin-bottom: 20px;
}

/* line 6, app/assets/stylesheets/components/_devise.scss */
.devise-container input {
  max-width: 550px;
}

/* line 11, app/assets/stylesheets/components/_devise.scss */
.devise-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* line 18, app/assets/stylesheets/components/_devise.scss */
.devise-flex .connexion-center {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

/* line 26, app/assets/stylesheets/components/_devise.scss */
.link-flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  gap: 10px;
  width: 100%;
}

/* line 1, app/assets/stylesheets/components/_document.scss */
.documents-index {
  margin-top: 12vh;
  display: flex;
  height: 80vh;
  width: 80vw;
  margin-left: auto;
  margin-right: auto;
  flex-direction: column;
  padding: 10px;
  gap: 10px;
}

/* line 13, app/assets/stylesheets/components/_document.scss */
.documents-index-title h2, .documents-index-title .h2 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

/* line 18, app/assets/stylesheets/components/_document.scss */
.vignette-documents-index-search {
  border-radius: 10px;
  background-image: linear-gradient(to right, rgba(166, 2, 64, 0.6), rgba(166, 2, 64, 0.5));
  padding: 1px;
  box-shadow: -1rem 0 3rem #000;
  height: 10%;
  transition: 0.4s ease-out;
}

/* line 27, app/assets/stylesheets/components/_document.scss */
.documents-index-search {
  background-color: #17141d;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  padding: 10px;
}

/* line 35, app/assets/stylesheets/components/_document.scss */
.vignette-documents-index-list {
  border-radius: 10px;
  background-image: linear-gradient(to right, rgba(166, 2, 64, 0.6), rgba(166, 2, 64, 0.5));
  padding: 1px;
  box-shadow: -1rem 0 3rem #000;
  height: 90%;
  transition: 0.4s ease-out;
}

/* line 44, app/assets/stylesheets/components/_document.scss */
.documents-index-list {
  background-color: #17141d;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 55, app/assets/stylesheets/components/_document.scss */
.list-documents-item-title {
  height: 10%;
  width: 70%;
  display: flex;
  flex-direction: row;
  gap: 5px;
  text-align: center;
  align-items: center;
  font-size: 0.8rem;
}

/* line 67, app/assets/stylesheets/components/_document.scss */
.list-documents-item {
  height: 90%;
}

/* line 71, app/assets/stylesheets/components/_document.scss */
.list-documents-item-infos {
  display: flex;
  flex-direction: row;
  gap: 5px;
  text-align: center;
  width: 70%;
}

/* line 79, app/assets/stylesheets/components/_document.scss */
.list-documents-item-commands {
  display: flex;
  flex-direction: row;
  gap: 5px;
  text-align: center;
  width: 30%;
}

/* line 87, app/assets/stylesheets/components/_document.scss */
.list-documents-item-infos p {
  margin: 0;
}

/* line 91, app/assets/stylesheets/components/_document.scss */
.list-documents-item-infos-id {
  width: 25%;
}

/* line 96, app/assets/stylesheets/components/_document.scss */
.list-documents-item-infos-title {
  width: 25%;
}

/* line 101, app/assets/stylesheets/components/_document.scss */
.list-documents-item-infos-type {
  width: 25%;
}

/* line 106, app/assets/stylesheets/components/_document.scss */
.list-documents-item-infos-description {
  width: 25%;
}

/* line 10, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10002;
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* line 22, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal.visible {
  display: flex;
  opacity: 1;
  visibility: visible;
}

/* line 28, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal .capabilities-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(1px);
  cursor: pointer;
}

/* line 39, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal .capabilities-modal-content {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 1000px;
  height: 700px;
  max-height: calc(100vh - 48px);
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.98) 0%, rgba(100, 1, 39, 0.98) 100%);
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  z-index: 10003;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  cursor: default;
  user-select: none;
  scrollbar-width: thin;
  scrollbar-color: #C38761 rgba(255, 255, 255, 0.05);
}

/* line 59, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal.visible .capabilities-modal .capabilities-modal-content {
  animation: slideInCapabilities 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 64, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal .capabilities-modal-content::-webkit-scrollbar {
  width: 10px;
}

/* line 68, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal .capabilities-modal-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

/* line 73, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal .capabilities-modal-content::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

/* line 79, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal .capabilities-modal-content::-webkit-scrollbar-thumb:hover {
  background: #D4A259;
  background-clip: padding-box;
}

/* line 89, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal .capabilities-modal-content .capabilities-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* line 97, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal .capabilities-modal-content .capabilities-modal-header h3, .capabilities-modal .capabilities-modal-content .capabilities-modal-header .h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* line 106, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal .capabilities-modal-content .capabilities-modal-header h3 i, .capabilities-modal .capabilities-modal-content .capabilities-modal-header .h3 i {
  color: rgba(125, 211, 252, 0.8);
}

/* line 111, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal .capabilities-modal-content .capabilities-modal-header .capabilities-modal-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 126, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal .capabilities-modal-content .capabilities-modal-header .capabilities-modal-close:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

/* line 133, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal .capabilities-modal-content .capabilities-modal-body {
  padding: 20px;
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: #C38761 rgba(255, 255, 255, 0.05);
}

/* line 140, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal .capabilities-modal-content .capabilities-modal-body::-webkit-scrollbar {
  width: 10px;
}

/* line 144, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal .capabilities-modal-content .capabilities-modal-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

/* line 149, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal .capabilities-modal-content .capabilities-modal-body::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

/* line 155, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal .capabilities-modal-content .capabilities-modal-body::-webkit-scrollbar-thumb:hover {
  background: #D4A259;
  background-clip: padding-box;
}

/* line 165, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal .capabilities-modal-content .capabilities-section {
  margin-bottom: 2rem;
}

/* line 168, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal .capabilities-modal-content .capabilities-section:last-child {
  margin-bottom: 0;
}

/* line 172, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal .capabilities-modal-content .capabilities-section h4, .capabilities-modal .capabilities-modal-content .capabilities-section .h4 {
  margin: 0 0 1rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 181, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal .capabilities-modal-content .capabilities-section h4 i, .capabilities-modal .capabilities-modal-content .capabilities-section .h4 i {
  color: rgba(125, 211, 252, 0.8);
}

/* line 187, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal .capabilities-modal-content .capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

/* line 193, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal .capabilities-modal-content .capability-card {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 202, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal .capabilities-modal-content .capability-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* line 208, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal .capabilities-modal-content .capability-card .capability-icon {
  width: 48px;
  height: 48px;
  background: rgba(125, 211, 252, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

/* line 218, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal .capabilities-modal-content .capability-card .capability-icon i {
  font-size: 1.5rem;
  color: rgba(125, 211, 252, 0.9);
}

/* line 225, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal .capabilities-modal-content .capability-card .capability-content h5, .capabilities-modal .capabilities-modal-content .capability-card .capability-content .h5 {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

/* line 232, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal .capabilities-modal-content .capability-card .capability-content p {
  margin: 0 0 0.5rem 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* line 239, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal .capabilities-modal-content .capability-card .capability-content .capability-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* line 251, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal .capabilities-modal-content .capabilities-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* line 257, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal .capabilities-modal-content .capability-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 265, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal .capabilities-modal-content .capability-item .capability-item-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(125, 211, 252, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 275, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal .capabilities-modal-content .capability-item .capability-item-icon i {
  color: rgba(125, 211, 252, 0.9);
}

/* line 280, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal .capabilities-modal-content .capability-item .capability-item-content {
  flex: 1;
}

/* line 283, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal .capabilities-modal-content .capability-item .capability-item-content h5, .capabilities-modal .capabilities-modal-content .capability-item .capability-item-content .h5 {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

/* line 290, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal .capabilities-modal-content .capability-item .capability-item-content p {
  margin: 0 0 0.75rem 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* line 297, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal .capabilities-modal-content .capability-item .capability-item-content .capability-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* line 302, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal .capabilities-modal-content .capability-item .capability-item-content .capability-examples .example-chip {
  padding: 0.4rem 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 312, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal .capabilities-modal-content .capability-item .capability-item-content .capability-examples .example-chip:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

/* line 322, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal .capabilities-modal-content .examples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

/* line 329, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal .capabilities-modal-content .example-category h5, .capabilities-modal .capabilities-modal-content .example-category .h5 {
  margin: 0 0 0.75rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 338, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal .capabilities-modal-content .example-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* line 347, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal .capabilities-modal-content .example-category ul li .example-query {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 359, app/assets/stylesheets/components/_capabilities_modal.scss */
.capabilities-modal .capabilities-modal-content .example-category ul li .example-query:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(4px);
}

@keyframes slideInCapabilities {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* line 1, app/assets/stylesheets/components/_fonts.scss */
.permanent-marker-regular {
  font-family: "Permanent Marker", serif;
}

/* line 6, app/assets/stylesheets/components/_fonts.scss */
.permanent-marker-regular:hover {
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-5px, 0);
  }
  50% {
    transform: translate(5px, 0);
  }
  75% {
    transform: translate(-5px, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* Texte centré */
/* line 3, app/assets/stylesheets/components/_footer.scss */
.footer {
  position: relative;
  color: #fff;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 16px 16px;
  overflow: visible;
  /* Changed from hidden to allow fixed button to show */
}

/* Footer sur la landing page - gradient aligné avec les sections */
/* line 13, app/assets/stylesheets/components/_footer.scss */
body.website-landing .footer {
  background: linear-gradient(151deg, #140D23 0%, #820133 70%, #a1023f 100%);
}

/* line 22, app/assets/stylesheets/components/_footer.scss */
.footer-panel {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 10px 40px rgba(0, 0, 0, 0.25);
}

/* line 34, app/assets/stylesheets/components/_footer.scss */
.footer-inner {
  display: grid;
  gap: 24px;
}

/* line 35, app/assets/stylesheets/components/_footer.scss */
.grid-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

@media (max-width: 992px) {
  /* line 35, app/assets/stylesheets/components/_footer.scss */
  .grid-12 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  /* line 35, app/assets/stylesheets/components/_footer.scss */
  .grid-12 {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* line 47, app/assets/stylesheets/components/_footer.scss */
.col-span-6 {
  grid-column: span 6;
}

/* line 48, app/assets/stylesheets/components/_footer.scss */
.col-span-4 {
  grid-column: span 4;
}

/* line 49, app/assets/stylesheets/components/_footer.scss */
.col-span-2 {
  grid-column: span 2;
}

@media (max-width: 992px) {
  /* line 51, app/assets/stylesheets/components/_footer.scss */
  .col-span-6 {
    grid-column: span 8;
  }
  /* line 52, app/assets/stylesheets/components/_footer.scss */
  .col-span-4 {
    grid-column: span 8;
  }
  /* line 53, app/assets/stylesheets/components/_footer.scss */
  .col-span-2 {
    grid-column: span 8;
  }
}

/* line 56, app/assets/stylesheets/components/_footer.scss */
.footer-brand .brand {
  font-size: 1.75rem;
  font-weight: 700;
}

/* line 61, app/assets/stylesheets/components/_footer.scss */
.footer-brand .baseline {
  margin: 6px 0 0;
  color: #F6E5B3;
  opacity: 0.9;
  font-size: 0.95rem;
}

/* line 68, app/assets/stylesheets/components/_footer.scss */
.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 768px) {
  /* line 76, app/assets/stylesheets/components/_footer.scss */
  .footer-nav ul {
    grid-template-columns: 1fr;
  }
}

/* line 78, app/assets/stylesheets/components/_footer.scss */
.footer-nav .nav-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 992px) {
  /* line 81, app/assets/stylesheets/components/_footer.scss */
  .footer-nav .nav-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  /* line 82, app/assets/stylesheets/components/_footer.scss */
  .footer-nav .nav-3 {
    grid-template-columns: 1fr;
  }
}

/* line 84, app/assets/stylesheets/components/_footer.scss */
.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 0;
}

/* line 85, app/assets/stylesheets/components/_footer.scss */
.footer-nav .nav-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  /* centré au milieu du footer */
  width: auto;
  gap: 8px 24px;
  flex-wrap: nowrap;
}

@media (max-width: 992px) {
  /* line 94, app/assets/stylesheets/components/_footer.scss */
  .footer-nav {
    padding-right: 0;
  }
  /* line 95, app/assets/stylesheets/components/_footer.scss */
  .footer-nav .nav-inline {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  /* line 98, app/assets/stylesheets/components/_footer.scss */
  .footer-nav .nav-inline {
    justify-content: center;
    gap: 8px 16px;
  }
}

/* line 101, app/assets/stylesheets/components/_footer.scss */
.footer-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  white-space: nowrap;
  transition: color .25s ease, text-shadow .25s ease;
}

/* line 107, app/assets/stylesheets/components/_footer.scss */
.footer-link:hover {
  color: #F6E5B3;
  text-shadow: 0 1px 6px rgba(246, 229, 179, 0.35);
}

/* line 112, app/assets/stylesheets/components/_footer.scss */
.first-footer-line {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 25px;
  height: 50%;
}

@media (max-width: 500px) {
  /* line 112, app/assets/stylesheets/components/_footer.scss */
  .first-footer-line {
    font-size: 0.5rem;
  }
  /* line 122, app/assets/stylesheets/components/_footer.scss */
  .first-footer-line a {
    font-size: 0.5rem;
  }
  /* line 124, app/assets/stylesheets/components/_footer.scss */
  .first-footer-line a i {
    scale: 0.8;
  }
}

/* line 132, app/assets/stylesheets/components/_footer.scss */
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  justify-content: space-between;
}

@media (max-width: 768px) {
  /* line 133, app/assets/stylesheets/components/_footer.scss */
  .footer-social {
    align-items: center;
  }
}

/* line 135, app/assets/stylesheets/components/_footer.scss */
.footer-note {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

/* ancien badge KPI supprimé (baseline remplace) */
/* line 139, app/assets/stylesheets/components/_footer.scss */
.footer-company {
  margin-top: auto;
  margin-bottom: auto;
}

/* Icônes des réseaux sociaux */
/* line 146, app/assets/stylesheets/components/_footer.scss */
.social-icons {
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 25px;
}

/* line 157, app/assets/stylesheets/components/_footer.scss */
.social-icons i {
  margin-top: auto;
  margin-bottom: auto;
  font-size: 1.5rem;
  transition: color 0.3s ease, transform 0.3s ease, filter .3s ease;
}

/* line 164, app/assets/stylesheets/components/_footer.scss */
.social-icons i:hover {
  color: #F6E5B3;
  transform: scale(1.08);
  filter: drop-shadow(0 2px 6px rgba(246, 229, 179, 0.35));
}

/* line 170, app/assets/stylesheets/components/_footer.scss */
.footer-bottom {
  max-width: 1200px;
  margin: 16px auto 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
}

/* line 179, app/assets/stylesheets/components/_footer.scss */
.dot-sep {
  opacity: .35;
  margin: 0 8px;
}

/* Bouton sticky "Hop, en haut" - visible dès la 2ème section */
/* line 182, app/assets/stylesheets/components/_footer.scss */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: opacity .4s ease, visibility .4s ease, transform .4s ease, background .3s ease, box-shadow .3s ease;
  /* Masqué par défaut sur hero */
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

/* line 204, app/assets/stylesheets/components/_footer.scss */
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* line 209, app/assets/stylesheets/components/_footer.scss */
.back-to-top:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 255, 255, 0.2);
}

/* line 1, app/assets/stylesheets/components/_devise.scss */
.devise-container {
  margin-top: 200px;
}

/* line 3, app/assets/stylesheets/components/_devise.scss */
.devise-container h2, .devise-container .h2 {
  margin-bottom: 20px;
}

/* line 6, app/assets/stylesheets/components/_devise.scss */
.devise-container input {
  max-width: 550px;
}

/* line 11, app/assets/stylesheets/components/_devise.scss */
.devise-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* line 18, app/assets/stylesheets/components/_devise.scss */
.devise-flex .connexion-center {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

/* line 26, app/assets/stylesheets/components/_devise.scss */
.link-flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  gap: 10px;
  width: 100%;
}

/* line 5, app/assets/stylesheets/components/_servicespace_navbar.scss */
.close-container {
  position: relative;
  margin: auto;
  width: 50px;
  height: 50px;
  margin-top: 100px;
  cursor: pointer;
}

/* line 14, app/assets/stylesheets/components/_servicespace_navbar.scss */
.leftright {
  height: 4px;
  width: 50px;
  position: absolute;
  margin-top: 24px;
  background-color: #FFFFFF;
  border-radius: 2px;
  transform: rotate(45deg);
  transition: all .3s ease-in;
}

/* line 25, app/assets/stylesheets/components/_servicespace_navbar.scss */
.rightleft {
  height: 4px;
  width: 50px;
  position: absolute;
  margin-top: 24px;
  background-color: #FFFFFF;
  border-radius: 2px;
  transform: rotate(-45deg);
  transition: all .3s ease-in;
}

/* line 36, app/assets/stylesheets/components/_servicespace_navbar.scss */
label {
  color: white;
  font-family: Helvetica, Arial, sans-serif;
  font-size: .6em;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all .3s ease-in;
}

/* line 44, app/assets/stylesheets/components/_servicespace_navbar.scss */
.close {
  margin: 60px 0 0 5px;
  position: absolute;
}

/* line 49, app/assets/stylesheets/components/_servicespace_navbar.scss */
.close-container:hover .leftright {
  transform: rotate(-45deg);
  background-color: #E5A82E;
}

/* line 53, app/assets/stylesheets/components/_servicespace_navbar.scss */
.close-container:hover .rightleft {
  transform: rotate(45deg);
  background-color: #E5A82E;
}

/* line 57, app/assets/stylesheets/components/_servicespace_navbar.scss */
.close-container:hover label {
  opacity: 1;
}

/* line 62, app/assets/stylesheets/components/_servicespace_navbar.scss */
.menu-coming-soon {
  padding: 1rem;
  text-align: center;
  opacity: 0.6;
  font-size: 0.75rem;
}

/* line 68, app/assets/stylesheets/components/_servicespace_navbar.scss */
.menu-coming-soon i {
  margin-bottom: 0.5rem;
}

/* line 72, app/assets/stylesheets/components/_servicespace_navbar.scss */
.menu-coming-soon p {
  margin: 0;
}

/* line 80, app/assets/stylesheets/components/_servicespace_navbar.scss */
.text-xs {
  font-size: 0.8rem;
}

/* line 84, app/assets/stylesheets/components/_servicespace_navbar.scss */
.text-xxs {
  font-size: 0.6rem;
}

/* line 89, app/assets/stylesheets/components/_servicespace_navbar.scss */
.opacity-30 {
  opacity: 0.3;
}

/* line 93, app/assets/stylesheets/components/_servicespace_navbar.scss */
.opacity-60 {
  opacity: 0.6;
}

/* line 98, app/assets/stylesheets/components/_servicespace_navbar.scss */
.container-xl-centered {
  margin: 1rem auto;
  max-width: 1200px;
}

/* line 104, app/assets/stylesheets/components/_servicespace_navbar.scss */
.spinner-lg {
  width: 3rem;
  height: 3rem;
}

/* line 110, app/assets/stylesheets/components/_servicespace_navbar.scss */
.progress-h-20 {
  height: 20px;
}

/* line 115, app/assets/stylesheets/components/_servicespace_navbar.scss */
.admin-toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  pointer-events: none;
}

/* line 124, app/assets/stylesheets/components/_servicespace_navbar.scss */
.empty-state-icon {
  font-size: 3rem;
  opacity: 0.3;
  margin-bottom: 1rem;
}

/* line 130, app/assets/stylesheets/components/_servicespace_navbar.scss */
.empty-state-subtext {
  font-size: 0.8rem;
  opacity: 0.5;
}

/* line 136, app/assets/stylesheets/components/_servicespace_navbar.scss */
.section-description-muted {
  font-size: 0.85rem;
  color: #666;
}

/* line 142, app/assets/stylesheets/components/_servicespace_navbar.scss */
.external-link-icon-spacing {
  margin-left: 6px;
}

/* line 147, app/assets/stylesheets/components/_servicespace_navbar.scss */
.skeleton-w-200 {
  width: 200px;
}

/* line 152, app/assets/stylesheets/components/_servicespace_navbar.scss */
.text-inherit {
  color: inherit;
}

/* line 157, app/assets/stylesheets/components/_servicespace_navbar.scss */
.flex-1 {
  flex: 1;
}

/* line 162, app/assets/stylesheets/components/_servicespace_navbar.scss */
.btn-unstyled {
  background: none;
  border: none;
  cursor: pointer;
}

/* line 169, app/assets/stylesheets/components/_servicespace_navbar.scss */
.scrollable-list {
  max-height: 300px;
  overflow-y: auto;
}

/* line 175, app/assets/stylesheets/components/_servicespace_navbar.scss */
.page-break-before {
  page-break-before: always;
}

/* line 180, app/assets/stylesheets/components/_servicespace_navbar.scss */
.icon-sm {
  width: 16px;
}

/* line 185, app/assets/stylesheets/components/_servicespace_navbar.scss */
.flex-gap-sm {
  display: flex;
  gap: 10px;
  margin-top: 5px;
}

/* line 192, app/assets/stylesheets/components/_servicespace_navbar.scss */
.info-icon-helper {
  margin-left: 5px;
  cursor: help;
  color: #6c757d;
}

/* line 200, app/assets/stylesheets/components/_servicespace_navbar.scss */
.js-toast-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  z-index: 10000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: opacity 0.3s ease;
  animation: slideInRight 0.3s ease-out;
}

/* line 214, app/assets/stylesheets/components/_servicespace_navbar.scss */
.js-toast-notification.toast-success {
  background-color: #10b981;
}

/* line 215, app/assets/stylesheets/components/_servicespace_navbar.scss */
.js-toast-notification.toast-error {
  background-color: #ef4444;
}

/* line 216, app/assets/stylesheets/components/_servicespace_navbar.scss */
.js-toast-notification.toast-info {
  background-color: #17a2b8;
}

/* line 220, app/assets/stylesheets/components/_servicespace_navbar.scss */
.admin-toast {
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  margin-bottom: 0.75rem;
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 300px;
  max-width: 500px;
  animation: slideInRight 0.3s ease-out;
  font-size: 0.95rem;
  line-height: 1.4;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* line 237, app/assets/stylesheets/components/_servicespace_navbar.scss */
.admin-toast.admin-toast--success {
  background: rgba(76, 175, 80, 0.95);
}

/* line 238, app/assets/stylesheets/components/_servicespace_navbar.scss */
.admin-toast.admin-toast--error {
  background: rgba(244, 67, 54, 0.95);
}

/* line 239, app/assets/stylesheets/components/_servicespace_navbar.scss */
.admin-toast.admin-toast--info {
  background: rgba(33, 150, 243, 0.95);
}

/* line 243, app/assets/stylesheets/components/_servicespace_navbar.scss */
.todo-error-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #ef4444;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  animation: slideInRight 0.3s ease;
}

/* line 257, app/assets/stylesheets/components/_servicespace_navbar.scss */
.confetti-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

/* line 268, app/assets/stylesheets/components/_servicespace_navbar.scss */
.overflow-hidden {
  overflow: hidden;
}

/* ==========================================================================
   FORM VALIDATION STYLES
   Styles pour les validations de formulaires en temps réel
   ========================================================================== */
/* Styles pour les champs de formulaire avec validation */
/* line 7, app/assets/stylesheets/components/_form_validation.scss */
.form-group {
  position: relative;
  margin-bottom: 1rem;
  /* Hints pour les formats attendus */
  /* Champs en état d'erreur */
  /* Champs en état de succès */
  /* Messages d'erreur */
}

/* line 12, app/assets/stylesheets/components/_form_validation.scss */
.form-group .form-hint {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: rgba(20, 13, 35, 0.6);
  font-style: italic;
}

/* line 19, app/assets/stylesheets/components/_form_validation.scss */
.nightmode .form-group .form-hint {
  color: rgba(255, 255, 255, 0.6);
}

/* line 25, app/assets/stylesheets/components/_form_validation.scss */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border: 2px solid #e74c3c !important;
  background-color: rgba(231, 76, 60, 0.1);
}

/* line 31, app/assets/stylesheets/components/_form_validation.scss */
.form-group input.error:focus,
.form-group select.error:focus,
.form-group textarea.error:focus {
  border-color: #e74c3c !important;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
}

/* line 38, app/assets/stylesheets/components/_form_validation.scss */
.form-group input.success {
  border: 2px solid #27ae60 !important;
  background-color: rgba(39, 174, 96, 0.1);
}

/* line 42, app/assets/stylesheets/components/_form_validation.scss */
.form-group input.success:focus {
  border-color: #27ae60 !important;
  box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.2);
}

/* line 49, app/assets/stylesheets/components/_form_validation.scss */
.form-group .validation-error {
  display: block;
  margin-top: 0.5rem;
  padding: 0.5rem;
  background-color: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.3);
  border-radius: 4px;
  color: #c0392b;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.3;
}

/* line 61, app/assets/stylesheets/components/_form_validation.scss */
.form-group .validation-error::before {
  content: "⚠️ ";
  margin-right: 0.25rem;
}

/* line 66, app/assets/stylesheets/components/_form_validation.scss */
.nightmode .form-group .validation-error {
  background-color: rgba(231, 76, 60, 0.2);
  border-color: rgba(231, 76, 60, 0.4);
  color: #e74c3c;
}

/* Styles spécifiques pour les modals */
/* line 76, app/assets/stylesheets/components/_form_validation.scss */
.modal .form-group {
  margin-bottom: 1.2rem;
}

/* line 79, app/assets/stylesheets/components/_form_validation.scss */
.modal .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #140D23;
}

/* line 85, app/assets/stylesheets/components/_form_validation.scss */
.nightmode .modal .form-group label {
  color: #FFFFFF;
}

/* line 90, app/assets/stylesheets/components/_form_validation.scss */
.modal .form-group input[type="text"],
.modal .form-group input[type="email"] {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(20, 13, 35, 0.3);
  border-radius: 6px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

/* line 99, app/assets/stylesheets/components/_form_validation.scss */
.nightmode .modal .form-group input[type="text"], .nightmode .modal .form-group input[type="email"] {
  border-color: rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
}

/* line 105, app/assets/stylesheets/components/_form_validation.scss */
.modal .form-group input[type="text"]:focus,
.modal .form-group input[type="email"]:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.2);
}

/* line 111, app/assets/stylesheets/components/_form_validation.scss */
.modal .form-group input[type="text"]::placeholder,
.modal .form-group input[type="email"]::placeholder {
  color: rgba(20, 13, 35, 0.5);
  font-style: italic;
}

/* line 115, app/assets/stylesheets/components/_form_validation.scss */
.nightmode .modal .form-group input[type="text"]::placeholder, .nightmode .modal .form-group input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* Animation pour les transitions d'état */
/* line 124, app/assets/stylesheets/components/_form_validation.scss */
.form-group input {
  transition: border-color 0.3s ease,  background-color 0.3s ease,  box-shadow 0.3s ease;
}

/* Styles pour les messages d'aide */
/* line 131, app/assets/stylesheets/components/_form_validation.scss */
.validation-success-message {
  display: block;
  margin-top: 0.5rem;
  padding: 0.5rem;
  background-color: rgba(39, 174, 96, 0.1);
  border: 1px solid rgba(39, 174, 96, 0.3);
  border-radius: 4px;
  color: #27ae60;
  font-size: 0.8rem;
  font-weight: 500;
}

/* line 142, app/assets/stylesheets/components/_form_validation.scss */
.validation-success-message::before {
  content: "✓ ";
  margin-right: 0.25rem;
}

/* line 147, app/assets/stylesheets/components/_form_validation.scss */
.nightmode .validation-success-message {
  background-color: rgba(39, 174, 96, 0.2);
  border-color: rgba(39, 174, 96, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  /* line 156, app/assets/stylesheets/components/_form_validation.scss */
  .form-group .validation-error {
    font-size: 0.75rem;
    padding: 0.4rem;
  }
  /* line 161, app/assets/stylesheets/components/_form_validation.scss */
  .form-group .form-hint {
    font-size: 0.7rem;
  }
}

/* ==========================================================================
   SEGMENTED INPUT GROUP
   Styles pour les champs segmentés RCS/RM (ville du greffe + numéro)
   ========================================================================== */
/* line 172, app/assets/stylesheets/components/_form_validation.scss */
.segmented-input-group {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

/* line 177, app/assets/stylesheets/components/_form_validation.scss */
.segmented-input-group .segment-city {
  flex: 1;
  min-width: 100px;
  padding: 0.75rem;
  border: 1px solid rgba(20, 13, 35, 0.3);
  border-radius: 6px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* line 187, app/assets/stylesheets/components/_form_validation.scss */
.nightmode .segmented-input-group .segment-city {
  border-color: rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
}

/* line 193, app/assets/stylesheets/components/_form_validation.scss */
.segmented-input-group .segment-city:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.2);
}

/* line 199, app/assets/stylesheets/components/_form_validation.scss */
.segmented-input-group .segment-city:disabled {
  background-color: #e9ecef;
  cursor: not-allowed;
  opacity: 0.6;
}

/* line 204, app/assets/stylesheets/components/_form_validation.scss */
.nightmode .segmented-input-group .segment-city:disabled {
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 210, app/assets/stylesheets/components/_form_validation.scss */
.segmented-input-group .segment-siren {
  flex: 1;
  min-width: 110px;
  padding: 0.75rem 0.5rem;
  border: 1px solid rgba(20, 13, 35, 0.3);
  border-radius: 6px;
  font-size: 0.9rem;
  color: #140D23;
  transition: all 0.3s ease;
}

/* line 220, app/assets/stylesheets/components/_form_validation.scss */
.nightmode .segmented-input-group .segment-siren {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
}

/* line 226, app/assets/stylesheets/components/_form_validation.scss */
.segmented-input-group .segment-siren:focus {
  outline: none;
  border-color: #C38761;
  box-shadow: 0 0 0 3px rgba(195, 135, 97, 0.2);
}

/* line 232, app/assets/stylesheets/components/_form_validation.scss */
.segmented-input-group .segment-siren::placeholder {
  color: rgba(20, 13, 35, 0.5);
  font-style: italic;
  font-size: 0.8rem;
}

/* line 237, app/assets/stylesheets/components/_form_validation.scss */
.nightmode .segmented-input-group .segment-siren::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 242, app/assets/stylesheets/components/_form_validation.scss */
.segmented-input-group .segment-siren[readonly] {
  background-color: #e9ecef;
  cursor: not-allowed;
}

/* line 246, app/assets/stylesheets/components/_form_validation.scss */
.nightmode .segmented-input-group .segment-siren[readonly] {
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 251, app/assets/stylesheets/components/_form_validation.scss */
.segmented-input-group .segment-siren:disabled {
  background-color: #e9ecef;
  cursor: not-allowed;
  opacity: 0.6;
}

/* line 256, app/assets/stylesheets/components/_form_validation.scss */
.nightmode .segmented-input-group .segment-siren:disabled {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive pour les champs segmentés */
@media (max-width: 768px) {
  /* line 265, app/assets/stylesheets/components/_form_validation.scss */
  .segmented-input-group {
    flex-wrap: wrap;
  }
  /* line 268, app/assets/stylesheets/components/_form_validation.scss */
  .segmented-input-group .segment-city {
    flex: 1;
    min-width: 80px;
    padding: 0.6rem;
    font-size: 0.85rem;
  }
  /* line 275, app/assets/stylesheets/components/_form_validation.scss */
  .segmented-input-group .segment-siren {
    flex: 1;
    min-width: 80px;
    padding: 0.6rem 0.4rem;
    font-size: 0.8rem;
  }
}

/* line 5, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container table th {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 8px !important;
  color: rgba(255, 255, 255, 0.9) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 12px 8px !important;
  text-align: center !important;
}

/* line 16, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-scrollgrid {
  border-collapse: collapse !important;
}

/* line 20, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-scrollgrid table {
  border-collapse: collapse !important;
}

/* line 25, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc table {
  border-collapse: collapse !important;
}

/* line 29, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container table td {
  border-bottom: none !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  padding: 0px !important;
}

/* line 37, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container table th.fc-col-header-cell {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 8px !important;
  color: rgba(255, 255, 255, 0.9) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 12px 8px !important;
  text-align: center !important;
}

/* line 47, app/assets/stylesheets/components/_fullcalendar.scss */
.fc-col-header-cell {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 8px !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

/* line 55, app/assets/stylesheets/components/_fullcalendar.scss */
.fc-col-header th.fc-col-header-cell {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 8px !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

/* line 63, app/assets/stylesheets/components/_fullcalendar.scss */
th.fc-col-header-cell.fc-day {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 8px !important;
}

/* line 70, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-col-header th {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 8px !important;
  color: rgba(255, 255, 255, 0.9) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 12px 8px !important;
  text-align: center !important;
}

/* line 80, app/assets/stylesheets/components/_fullcalendar.scss */
.fc .fc-col-header th {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 8px !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

/* line 87, app/assets/stylesheets/components/_fullcalendar.scss */
.fc-col-header-cell.fc-day,
.fc-col-header-cell.fc-day-mon,
.fc-col-header-cell.fc-day-tue,
.fc-col-header-cell.fc-day-wed,
.fc-col-header-cell.fc-day-thu,
.fc-col-header-cell.fc-day-fri,
.fc-col-header-cell.fc-day-sat,
.fc-col-header-cell.fc-day-sun {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 8px !important;
  padding: 12px 8px !important;
  margin: 4px !important;
  transition: all 0.2s ease !important;
}

/* line 102, app/assets/stylesheets/components/_fullcalendar.scss */
.fc-col-header-cell.fc-day:hover,
.fc-col-header-cell.fc-day-mon:hover,
.fc-col-header-cell.fc-day-tue:hover,
.fc-col-header-cell.fc-day-wed:hover,
.fc-col-header-cell.fc-day-thu:hover,
.fc-col-header-cell.fc-day-fri:hover,
.fc-col-header-cell.fc-day-sat:hover,
.fc-col-header-cell.fc-day-sun:hover {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  transform: translateY(-1px);
}

/* line 108, app/assets/stylesheets/components/_fullcalendar.scss */
.fc-col-header-cell.fc-day .fc-col-header-cell-cushion,
.fc-col-header-cell.fc-day-mon .fc-col-header-cell-cushion,
.fc-col-header-cell.fc-day-tue .fc-col-header-cell-cushion,
.fc-col-header-cell.fc-day-wed .fc-col-header-cell-cushion,
.fc-col-header-cell.fc-day-thu .fc-col-header-cell-cushion,
.fc-col-header-cell.fc-day-fri .fc-col-header-cell-cushion,
.fc-col-header-cell.fc-day-sat .fc-col-header-cell-cushion,
.fc-col-header-cell.fc-day-sun .fc-col-header-cell-cushion {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 600 !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  text-align: center !important;
}

/* line 118, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
}

/* line 128, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc {
  height: 100% !important;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* line 135, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-view-harness {
  flex: 1;
  overflow-y: auto;
  padding-right: 5px;
  /* Personnalisation de la barre de défilement - identique à la section des étapes */
  /* Support Firefox */
  scrollbar-width: thin;
  scrollbar-color: #C38761 rgba(255, 255, 255, 0.1);
}

/* line 141, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-view-harness::-webkit-scrollbar {
  width: 3px;
  /* Largeur de la barre de défilement */
}

/* line 145, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-view-harness::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  /* Couleur de l'arrière-plan de la barre */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 155, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-view-harness::-webkit-scrollbar-thumb {
  background: #C38761;
  /* Couleur de la barre de défilement */
  border-radius: 10px;
  /* Coins arrondis */
}

/* line 160, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-view-harness::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
  /* Couleur de la barre au survol */
}

/* line 170, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-toolbar-chunk {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 176, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-toolbar {
  margin-bottom: 0px !important;
  padding: 5px 10px !important;
  background: rgba(255, 255, 255, 0.02) !important;
  border-radius: 8px;
  flex-shrink: 0;
}

/* line 183, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-toolbar .fc-toolbar-title {
  font-size: 14px !important;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

/* line 193, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-toolbar .fc-button-group .fc-button,
.project-calendar-container .fc .fc-toolbar .fc-button {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 6px !important;
  padding: 8px 16px !important;
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  height: auto !important;
  margin: 0 3px !important;
  transition: all 0.2s ease !important;
}

/* line 206, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-toolbar .fc-button-group .fc-button:hover,
.project-calendar-container .fc .fc-toolbar .fc-button:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: rgba(255, 255, 255, 0.95) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  transform: translateY(-1px);
}

/* line 213, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-toolbar .fc-button-group .fc-button.fc-button-active,
.project-calendar-container .fc .fc-toolbar .fc-button.fc-button-active {
  background: rgba(96, 96, 96, 0.358) !important;
  border-color: rgba(74, 144, 226, 0.4) !important;
  color: white !important;
}

/* line 219, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-toolbar .fc-button-group .fc-button:focus,
.project-calendar-container .fc .fc-toolbar .fc-button:focus {
  box-shadow: none !important;
}

/* line 223, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-toolbar .fc-button-group .fc-button:disabled,
.project-calendar-container .fc .fc-toolbar .fc-button:disabled {
  opacity: 0.4 !important;
}

/* line 232, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-daygrid .fc-col-header {
  background: rgba(255, 255, 255, 0.04) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 8px 8px 0 0 !important;
}

/* line 237, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-daygrid .fc-col-header .fc-col-header-cell {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 8px !important;
  margin: 4px !important;
  padding: 12px 8px !important;
  transition: all 0.2s ease !important;
}

/* line 245, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-daygrid .fc-col-header .fc-col-header-cell:hover {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  transform: translateY(-1px);
}

/* line 251, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-daygrid .fc-col-header .fc-col-header-cell .fc-col-header-cell-cushion {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 600 !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  text-align: center !important;
}

/* line 263, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-daygrid .fc-col-header-cell.fc-day {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* line 268, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-daygrid .fc-col-header-cell.fc-day-mon,
.project-calendar-container .fc .fc-daygrid .fc-col-header-cell.fc-day-tue,
.project-calendar-container .fc .fc-daygrid .fc-col-header-cell.fc-day-wed,
.project-calendar-container .fc .fc-daygrid .fc-col-header-cell.fc-day-thu,
.project-calendar-container .fc .fc-daygrid .fc-col-header-cell.fc-day-fri,
.project-calendar-container .fc .fc-daygrid .fc-col-header-cell.fc-day-sat,
.project-calendar-container .fc .fc-daygrid .fc-col-header-cell.fc-day-sun {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 8px !important;
}

/* line 281, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-daygrid .fc-daygrid-day {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 4px;
  margin: 1px;
  aspect-ratio: 2;
}

/* line 287, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-daygrid .fc-daygrid-day.fc-day-today {
  background: rgba(74, 144, 226, 0.1) !important;
  border-color: rgba(74, 144, 226, 0.3) !important;
}

/* line 292, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-daygrid .fc-daygrid-day.fc-day-other {
  opacity: 0.3;
}

/* line 301, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-daygrid .fc-daygrid-day-number {
  font-size: 13px !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.8) !important;
  padding: 6px !important;
  text-align: left !important;
}

/* line 310, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-daygrid .fc-daygrid-day-frame {
  min-height: 80px;
  padding: 6px;
  display: flex;
  flex-direction: column;
}

/* line 319, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-daygrid .fc-daygrid-body .fc-daygrid-day-events {
  margin: 0;
  min-height: 20px;
}

/* line 326, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-daygrid .fc-daygrid-day-events {
  margin-top: 4px;
  flex: 1;
}

/* line 334, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-dayGridWeek-view .fc-col-header {
  background: rgba(255, 255, 255, 0.02) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* line 338, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-dayGridWeek-view .fc-col-header .fc-col-header-cell {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 8px;
  margin: 4px;
  padding: 12px !important;
  text-align: center;
}

/* line 346, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-dayGridWeek-view .fc-col-header .fc-col-header-cell .fc-col-header-cell-cushion {
  font-size: 11px !important;
  color: rgba(255, 255, 255, 0.6) !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px;
}

/* line 356, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-dayGridWeek-view .fc-daygrid-day {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 8px;
  margin: 4px;
  min-height: 180px;
}

/* line 363, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-dayGridWeek-view .fc-daygrid-day.fc-day-today {
  background: rgba(74, 144, 226, 0.1) !important;
  border-color: rgba(74, 144, 226, 0.3) !important;
}

/* line 369, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-dayGridWeek-view .fc-daygrid-day-number {
  font-size: 16px !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 600 !important;
  padding: 12px !important;
}

/* line 376, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-dayGridWeek-view .fc-daygrid-day-frame {
  min-height: 160px;
  padding: 12px;
}

/* line 383, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-event {
  border-radius: 4px !important;
  padding: 2px 6px !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  margin: 2px 0 !important;
  transition: all 0.2s ease !important;
}

/* line 392, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-event:hover {
  opacity: 0.95 !important;
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25) !important;
  z-index: 100 !important;
}

/* line 399, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-event .fc-event-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.3;
}

/* line 407, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-event.project-step {
  border-left: 3px solid currentColor !important;
  padding-left: 8px !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

/* line 413, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-event.project-period-visible {
  background: rgba(195, 135, 97, 0.35) !important;
  border-color: #c38761 !important;
  color: #ffffff !important;
}

/* line 421, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-list {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 8px;
  padding: 8px;
}

/* line 428, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-list .fc-list-table .fc-list-day-cushion {
  background: rgba(255, 255, 255, 0.04) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 600 !important;
  font-size: 12px !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 12px !important;
  border-radius: 4px;
}

/* line 440, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-list .fc-list-event {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 4px;
  margin: 2px 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 448, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-list .fc-list-event:hover {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  transform: translateY(-1px);
}

/* line 454, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-list .fc-list-event:hover td {
  background: rgba(255, 255, 255, 0.04) !important;
}

/* line 459, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-list .fc-list-event .fc-list-event-title {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 11px !important;
  font-weight: 500;
}

/* line 465, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-list .fc-list-event .fc-list-event-time {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 9px !important;
  text-transform: uppercase;
  font-weight: 600;
}

/* line 476, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc .fc-list-event:hover td {
  background: rgba(255, 255, 255, 0.04) !important;
}

/* line 481, app/assets/stylesheets/components/_fullcalendar.scss */
.project-calendar-container .fc {
  --fc-list-event-hover-bg-color: rgba(255, 255, 255, 0.04);
}

/* line 487, app/assets/stylesheets/components/_fullcalendar.scss */
.calendar-tooltip {
  position: fixed;
  z-index: 10000;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.95);
  padding: 10px 14px;
  border-radius: 8px;
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  max-width: 280px;
  min-width: 200px;
  font-size: 11px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.2s ease;
}

/* line 506, app/assets/stylesheets/components/_fullcalendar.scss */
.calendar-tooltip.visible {
  opacity: 1;
  transform: translateY(0);
}

/* line 517, app/assets/stylesheets/components/_fullcalendar.scss */
.calendar-tooltip .tooltip-header {
  font-weight: 600;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.95);
  font-size: 12px;
}

/* line 526, app/assets/stylesheets/components/_fullcalendar.scss */
.calendar-tooltip .tooltip-row {
  margin: 4px 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

/* line 531, app/assets/stylesheets/components/_fullcalendar.scss */
.calendar-tooltip .tooltip-row strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

/* line 537, app/assets/stylesheets/components/_fullcalendar.scss */
.calendar-tooltip .tooltip-row i {
  margin-right: 4px;
  color: rgba(255, 255, 255, 0.6);
  width: 12px;
  display: inline-block;
}

/* line 546, app/assets/stylesheets/components/_fullcalendar.scss */
.calendar-tooltip::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(255, 255, 255, 0.15);
}

/* line 558, app/assets/stylesheets/components/_fullcalendar.scss */
.calendar-tooltip::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 21px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid rgba(255, 255, 255, 0.08);
}

/* line 572, app/assets/stylesheets/components/_fullcalendar.scss */
.calendar-tooltip.position-left::before {
  left: auto;
  right: 20px;
}

/* line 577, app/assets/stylesheets/components/_fullcalendar.scss */
.calendar-tooltip.position-left::after {
  left: auto;
  right: 21px;
}

/* line 584, app/assets/stylesheets/components/_fullcalendar.scss */
.calendar-tooltip.position-bottom::before {
  top: auto;
  bottom: -6px;
  border-bottom: none;
  border-top: 6px solid rgba(255, 255, 255, 0.15);
}

/* line 591, app/assets/stylesheets/components/_fullcalendar.scss */
.calendar-tooltip.position-bottom::after {
  top: auto;
  bottom: -5px;
  border-bottom: none;
  border-top: 5px solid rgba(255, 255, 255, 0.08);
}

/* line 601, app/assets/stylesheets/components/_fullcalendar.scss */
.calendar-tooltip.no-arrow::before, .calendar-tooltip.no-arrow::after {
  display: none;
}

/* line 611, app/assets/stylesheets/components/_fullcalendar.scss */
.fc-event.project-late {
  background: #dc3545 !important;
  border-color: #b02a37 !important;
  animation: pulse-warning 2s infinite;
}

/* line 618, app/assets/stylesheets/components/_fullcalendar.scss */
.fc-event.status-todo {
  background: #6c757d !important;
  border-color: #5a6268 !important;
}

/* line 623, app/assets/stylesheets/components/_fullcalendar.scss */
.fc-event.status-on_going {
  background: #007bff !important;
  border-color: #0056b3 !important;
}

/* line 628, app/assets/stylesheets/components/_fullcalendar.scss */
.fc-event.status-done {
  background: #28a745 !important;
  border-color: #1e7e34 !important;
}

/* line 634, app/assets/stylesheets/components/_fullcalendar.scss */
.fc-event.priority-high {
  box-shadow: 0 0 0 2px #dc3545;
}

/* line 638, app/assets/stylesheets/components/_fullcalendar.scss */
.fc-event.priority-medium {
  box-shadow: 0 0 0 1px #ffc107;
}

@keyframes pulse-warning {
  0%,
100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  /* line 658, app/assets/stylesheets/components/_fullcalendar.scss */
  .project-calendar-container .fc .fc-toolbar {
    flex-direction: column;
    gap: 8px;
    padding: 8px !important;
  }
  /* line 663, app/assets/stylesheets/components/_fullcalendar.scss */
  .project-calendar-container .fc .fc-toolbar .fc-toolbar-title {
    font-size: 12px !important;
  }
  /* line 667, app/assets/stylesheets/components/_fullcalendar.scss */
  .project-calendar-container .fc .fc-toolbar .fc-button {
    padding: 6px 12px !important;
    font-size: 9px !important;
  }
  /* line 674, app/assets/stylesheets/components/_fullcalendar.scss */
  .project-calendar-container .fc .fc-view-harness {
    /* Scrollbar responsive pour mobile */
  }
  /* line 676, app/assets/stylesheets/components/_fullcalendar.scss */
  .project-calendar-container .fc .fc-view-harness::-webkit-scrollbar {
    width: 2px;
    /* Plus fine sur mobile */
  }
  /* line 682, app/assets/stylesheets/components/_fullcalendar.scss */
  .project-calendar-container .fc .fc-col-header-cell .fc-col-header-cell-cushion {
    font-size: 9px !important;
  }
  /* line 687, app/assets/stylesheets/components/_fullcalendar.scss */
  .project-calendar-container .fc .fc-daygrid-day-number {
    font-size: 11px !important;
    padding: 4px !important;
  }
  /* line 692, app/assets/stylesheets/components/_fullcalendar.scss */
  .project-calendar-container .fc .fc-event {
    font-size: 9px !important;
    padding: 1px 4px !important;
  }
  /* line 698, app/assets/stylesheets/components/_fullcalendar.scss */
  .project-calendar-container .fc .fc-dayGridWeek-view .fc-daygrid-day {
    min-height: 120px;
  }
  /* line 702, app/assets/stylesheets/components/_fullcalendar.scss */
  .project-calendar-container .fc .fc-dayGridWeek-view .fc-daygrid-day-frame {
    min-height: 100px;
    padding: 8px;
  }
  /* line 710, app/assets/stylesheets/components/_fullcalendar.scss */
  .calendar-tooltip {
    max-width: 250px;
    min-width: 200px;
    font-size: 11px;
    padding: 8px 12px;
    position: absolute !important;
    z-index: 1000 !important;
    pointer-events: none;
    max-height: 150px;
    overflow: hidden;
  }
  /* line 723, app/assets/stylesheets/components/_fullcalendar.scss */
  .calendar-tooltip .tooltip-header {
    font-weight: 600;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.95);
  }
  /* line 729, app/assets/stylesheets/components/_fullcalendar.scss */
  .calendar-tooltip .tooltip-row {
    margin-bottom: 3px;
    font-size: 10px;
  }
  /* line 733, app/assets/stylesheets/components/_fullcalendar.scss */
  .calendar-tooltip .tooltip-row strong {
    color: rgba(255, 255, 255, 0.8);
  }
}

/* line 3, app/assets/stylesheets/components/_generators_dropdown.scss */
.generators-dropdown-wrapper {
  position: relative;
  display: inline-block;
}

/* line 8, app/assets/stylesheets/components/_generators_dropdown.scss */
.generators-trigger {
  border-radius: 8px 0 0 8px !important;
  border-right: none !important;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: all 0.2s ease;
}

/* line 17, app/assets/stylesheets/components/_generators_dropdown.scss */
.generators-trigger:hover {
  background-color: #f8f9fa;
  border-color: #dee2e6;
}

/* line 22, app/assets/stylesheets/components/_generators_dropdown.scss */
.generators-trigger:focus {
  box-shadow: none;
  border-color: #dee2e6;
}

/* line 27, app/assets/stylesheets/components/_generators_dropdown.scss */
.generators-trigger i.fa-wand-magic-sparkles {
  color: #667eea;
}

/* line 31, app/assets/stylesheets/components/_generators_dropdown.scss */
.generators-trigger i.fa-chevron-down {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

/* line 38, app/assets/stylesheets/components/_generators_dropdown.scss */
.generators-menu {
  position: absolute;
  bottom: 100%;
  left: 0;
  margin-bottom: 0.5rem;
  width: 350px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  overflow: hidden;
}

/* line 56, app/assets/stylesheets/components/_generators_dropdown.scss */
.generators-menu.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

/* line 63, app/assets/stylesheets/components/_generators_dropdown.scss */
.generators-menu::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 20px;
  width: 16px;
  height: 16px;
  background: white;
  transform: rotate(45deg);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

/* line 76, app/assets/stylesheets/components/_generators_dropdown.scss */
.generators-menu-header {
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
}

/* line 86, app/assets/stylesheets/components/_generators_dropdown.scss */
.generators-menu-header i {
  font-size: 1.25rem;
}

/* line 91, app/assets/stylesheets/components/_generators_dropdown.scss */
.generators-menu-items {
  padding: 0.75rem;
  max-height: 400px;
  overflow-y: auto;
}

/* line 97, app/assets/stylesheets/components/_generators_dropdown.scss */
.generators-menu-items::-webkit-scrollbar {
  width: 6px;
}

/* line 101, app/assets/stylesheets/components/_generators_dropdown.scss */
.generators-menu-items::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

/* line 106, app/assets/stylesheets/components/_generators_dropdown.scss */
.generators-menu-items::-webkit-scrollbar-thumb {
  background: #cbd5e0;
  border-radius: 3px;
}

/* line 110, app/assets/stylesheets/components/_generators_dropdown.scss */
.generators-menu-items::-webkit-scrollbar-thumb:hover {
  background: #a0aec0;
}

/* line 116, app/assets/stylesheets/components/_generators_dropdown.scss */
.generator-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  margin-bottom: 0.5rem;
}

/* line 127, app/assets/stylesheets/components/_generators_dropdown.scss */
.generator-item:last-child {
  margin-bottom: 0;
}

/* line 131, app/assets/stylesheets/components/_generators_dropdown.scss */
.generator-item:hover {
  background: #f7fafc;
  transform: translateX(4px);
}

/* line 135, app/assets/stylesheets/components/_generators_dropdown.scss */
.generator-item:hover .generator-icon {
  transform: scale(1.05);
}

/* line 141, app/assets/stylesheets/components/_generators_dropdown.scss */
.generator-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

/* line 151, app/assets/stylesheets/components/_generators_dropdown.scss */
.generator-icon i {
  font-size: 1.25rem;
  color: white;
}

/* line 156, app/assets/stylesheets/components/_generators_dropdown.scss */
.generator-icon.pitch {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* line 160, app/assets/stylesheets/components/_generators_dropdown.scss */
.generator-icon.visual {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* line 164, app/assets/stylesheets/components/_generators_dropdown.scss */
.generator-icon.report {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* line 168, app/assets/stylesheets/components/_generators_dropdown.scss */
.generator-icon.proposal {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

/* line 172, app/assets/stylesheets/components/_generators_dropdown.scss */
.generator-icon.marketing {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

/* line 177, app/assets/stylesheets/components/_generators_dropdown.scss */
.generator-info {
  flex: 1;
  min-width: 0;
}

/* line 182, app/assets/stylesheets/components/_generators_dropdown.scss */
.generator-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #2d3748;
  margin-bottom: 0.125rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 192, app/assets/stylesheets/components/_generators_dropdown.scss */
.generator-desc {
  font-size: 0.8rem;
  color: #718096;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 201, app/assets/stylesheets/components/_generators_dropdown.scss */
.generator-toast {
  position: fixed;
  top: 80px;
  right: 20px;
  background: white;
  color: #2d3748;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.3s ease;
  z-index: 10000;
  font-weight: 500;
  border-left: 4px solid #667eea;
}

/* line 217, app/assets/stylesheets/components/_generators_dropdown.scss */
.generator-toast.show {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  /* line 225, app/assets/stylesheets/components/_generators_dropdown.scss */
  .generators-menu {
    width: 300px;
    left: auto;
    right: 0;
  }
  /* line 230, app/assets/stylesheets/components/_generators_dropdown.scss */
  .generators-menu::after {
    left: auto;
    right: 20px;
  }
  /* line 236, app/assets/stylesheets/components/_generators_dropdown.scss */
  .generator-name {
    font-size: 0.875rem;
  }
  /* line 240, app/assets/stylesheets/components/_generators_dropdown.scss */
  .generator-desc {
    font-size: 0.75rem;
  }
}

@media (prefers-color-scheme: dark) {
  /* line 247, app/assets/stylesheets/components/_generators_dropdown.scss */
  .generators-menu {
    background: #1a202c;
  }
  /* line 250, app/assets/stylesheets/components/_generators_dropdown.scss */
  .generators-menu::after {
    background: #1a202c;
  }
  /* line 256, app/assets/stylesheets/components/_generators_dropdown.scss */
  .generator-item:hover {
    background: #2d3748;
  }
  /* line 261, app/assets/stylesheets/components/_generators_dropdown.scss */
  .generator-name {
    color: #e2e8f0;
  }
  /* line 265, app/assets/stylesheets/components/_generators_dropdown.scss */
  .generator-desc {
    color: #a0aec0;
  }
  /* line 269, app/assets/stylesheets/components/_generators_dropdown.scss */
  .generator-toast {
    background: #2d3748;
    color: #e2e8f0;
  }
}

/* ==========================================================================
   NOTIFICATION STYLES
   Styles pour les notifications d'autocomplétion des contrats
   ========================================================================== */
/* Base pour toutes les notifications */
/* line 7, app/assets/stylesheets/components/_notification.scss */
.autocomplete-notification-base, .autocomplete-custom-recipient-notification, .autocomplete-recipient-notification, .autocomplete-custom-notification, .autocomplete-notification {
  position: fixed;
  z-index: 1000;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: white;
  font-weight: 500;
  animation: slideInNotification 0.3s ease-out;
  transition: opacity 0.3s ease, transform 0.3s ease;
  /* Icône de succès */
}

/* line 20, app/assets/stylesheets/components/_notification.scss */
.autocomplete-notification-base::before, .autocomplete-custom-recipient-notification::before, .autocomplete-recipient-notification::before, .autocomplete-custom-notification::before, .autocomplete-notification::before {
  content: "✓ ";
  margin-right: 0.25rem;
}

/* Animation d'entrée */
@keyframes slideInNotification {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation de sortie */
@keyframes fadeOutNotification {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

/* Classe pour l'animation de sortie */
/* line 51, app/assets/stylesheets/components/_notification.scss */
.notification-exit {
  animation: fadeOutNotification 0.3s ease-out forwards;
}

/* Notification pour l'autocomplétion du prestataire (owner) */
/* line 56, app/assets/stylesheets/components/_notification.scss */
.autocomplete-notification {
  top: 20px;
  right: 20px;
  background: #28a745;
}

/* line 62, app/assets/stylesheets/components/_notification.scss */
.autocomplete-notification:hover {
  background: #23923d;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Notification pour l'autocomplétion personnalisée du prestataire */
/* line 70, app/assets/stylesheets/components/_notification.scss */
.autocomplete-custom-notification {
  top: 60px;
  right: 20px;
  background: #17a2b8;
}

/* line 76, app/assets/stylesheets/components/_notification.scss */
.autocomplete-custom-notification:hover {
  background: #148ea1;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Notification pour l'autocomplétion du client (recipient) */
/* line 84, app/assets/stylesheets/components/_notification.scss */
.autocomplete-recipient-notification {
  top: 20px;
  left: 20px;
  background: #ffc107;
  color: #333;
}

/* line 91, app/assets/stylesheets/components/_notification.scss */
.autocomplete-recipient-notification:hover {
  background: #edb100;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Notification pour l'autocomplétion personnalisée du client */
/* line 99, app/assets/stylesheets/components/_notification.scss */
.autocomplete-custom-recipient-notification {
  top: 60px;
  left: 20px;
  background: #ff9800;
}

/* line 105, app/assets/stylesheets/components/_notification.scss */
.autocomplete-custom-recipient-notification:hover {
  background: #e68900;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Variantes de couleur pour différents types de notifications */
/* line 113, app/assets/stylesheets/components/_notification.scss */
.notification-success {
  background: #28a745;
}

/* line 117, app/assets/stylesheets/components/_notification.scss */
.notification-info {
  background: #17a2b8;
}

/* line 121, app/assets/stylesheets/components/_notification.scss */
.notification-warning {
  background: #ffc107;
  color: #333;
}

/* line 126, app/assets/stylesheets/components/_notification.scss */
.notification-danger {
  background: #dc3545;
}

/* Responsive - Adaptations pour mobile */
@media (max-width: 768px) {
  /* line 132, app/assets/stylesheets/components/_notification.scss */
  .autocomplete-notification-base,
.autocomplete-notification,
.autocomplete-custom-notification,
.autocomplete-recipient-notification,
.autocomplete-custom-recipient-notification {
    font-size: 12px;
    padding: 8px 12px;
    max-width: calc(100vw - 40px);
    /* Repositionner pour mobile */
  }
  /* line 142, app/assets/stylesheets/components/_notification.scss */
  .autocomplete-notification-base[class*="-notification"],
.autocomplete-notification[class*="-notification"],
.autocomplete-custom-notification[class*="-notification"],
.autocomplete-recipient-notification[class*="-notification"],
.autocomplete-custom-recipient-notification[class*="-notification"] {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);
  }
  /* Empiler verticalement sur mobile */
  /* line 150, app/assets/stylesheets/components/_notification.scss */
  .autocomplete-notification {
    top: 10px;
  }
  /* line 154, app/assets/stylesheets/components/_notification.scss */
  .autocomplete-custom-notification {
    top: 50px;
  }
  /* line 158, app/assets/stylesheets/components/_notification.scss */
  .autocomplete-recipient-notification {
    top: 90px;
  }
  /* line 162, app/assets/stylesheets/components/_notification.scss */
  .autocomplete-custom-recipient-notification {
    top: 130px;
  }
}

/* Mode sombre */
/* line 169, app/assets/stylesheets/components/_notification.scss */
.nightmode .autocomplete-recipient-notification {
  color: #fff;
}

/* Styles pour les notifications empilées */
/* line 175, app/assets/stylesheets/components/_notification.scss */
.notification-stack {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

/* line 185, app/assets/stylesheets/components/_notification.scss */
.notification-stack > * {
  pointer-events: auto;
}

/* Animation de pulse pour attirer l'attention */
@keyframes notificationPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* line 200, app/assets/stylesheets/components/_notification.scss */
.notification-pulse {
  animation: notificationPulse 0.5s ease-in-out;
}

/* ==========================================================================
   PROACTIVE SUGGESTIONS & BRIEFINGS STYLES
   Phase 8C - Styles pour suggestions proactives et briefings quotidiens
   ========================================================================== */
/* ===== SUGGESTION CARDS ===== */
/* line 8, app/assets/stylesheets/components/_proactive_suggestions.scss */
.suggestion-card {
  background: #fff;
  border-radius: 8px;
  border-left: 4px solid #667eea;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 16px;
  margin-bottom: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}

/* line 17, app/assets/stylesheets/components/_proactive_suggestions.scss */
.suggestion-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* line 23, app/assets/stylesheets/components/_proactive_suggestions.scss */
.suggestion-card.suggestion-critical {
  border-left-color: #dc3545;
  background: linear-gradient(to right, #ffebee 0%, #fff 20px);
}

/* line 28, app/assets/stylesheets/components/_proactive_suggestions.scss */
.suggestion-card.suggestion-high {
  border-left-color: #ffc107;
  background: linear-gradient(to right, #fff8e1 0%, #fff 20px);
}

/* line 33, app/assets/stylesheets/components/_proactive_suggestions.scss */
.suggestion-card.suggestion-medium {
  border-left-color: #17a2b8;
}

/* line 37, app/assets/stylesheets/components/_proactive_suggestions.scss */
.suggestion-card.suggestion-low {
  border-left-color: #6c757d;
  opacity: 0.9;
}

/* line 43, app/assets/stylesheets/components/_proactive_suggestions.scss */
.suggestion-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e9ecef;
}

/* line 52, app/assets/stylesheets/components/_proactive_suggestions.scss */
.suggestion-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
}

/* line 65, app/assets/stylesheets/components/_proactive_suggestions.scss */
.suggestion-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  flex: 1;
}

/* line 73, app/assets/stylesheets/components/_proactive_suggestions.scss */
.suggestion-type {
  font-weight: 600;
  color: #495057;
  font-size: 14px;
}

/* line 79, app/assets/stylesheets/components/_proactive_suggestions.scss */
.suggestion-subtype {
  font-size: 13px;
  color: #6c757d;
}

/* line 84, app/assets/stylesheets/components/_proactive_suggestions.scss */
.suggestion-priority {
  margin-left: auto;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* line 92, app/assets/stylesheets/components/_proactive_suggestions.scss */
.suggestion-priority.priority-critical {
  background: #dc3545;
  color: white;
}

/* line 97, app/assets/stylesheets/components/_proactive_suggestions.scss */
.suggestion-priority.priority-high {
  background: #ffc107;
  color: #212529;
}

/* line 102, app/assets/stylesheets/components/_proactive_suggestions.scss */
.suggestion-priority.priority-medium {
  background: #17a2b8;
  color: white;
}

/* line 107, app/assets/stylesheets/components/_proactive_suggestions.scss */
.suggestion-priority.priority-low {
  background: #6c757d;
  color: white;
}

/* line 113, app/assets/stylesheets/components/_proactive_suggestions.scss */
.suggestion-body {
  margin-bottom: 16px;
}

/* line 117, app/assets/stylesheets/components/_proactive_suggestions.scss */
.suggestion-title {
  font-size: 16px;
  font-weight: 600;
  color: #212529;
  margin-bottom: 8px;
}

/* line 124, app/assets/stylesheets/components/_proactive_suggestions.scss */
.suggestion-description {
  font-size: 14px;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* line 131, app/assets/stylesheets/components/_proactive_suggestions.scss */
.suggestion-actions-list {
  background: #f8f9fa;
  border-radius: 6px;
  padding: 12px;
  margin-top: 12px;
}

/* line 137, app/assets/stylesheets/components/_proactive_suggestions.scss */
.suggestion-actions-list strong {
  display: block;
  margin-bottom: 8px;
  color: #495057;
  font-size: 13px;
}

/* line 144, app/assets/stylesheets/components/_proactive_suggestions.scss */
.suggestion-actions-list ul {
  margin: 0;
  padding-left: 20px;
}

/* line 149, app/assets/stylesheets/components/_proactive_suggestions.scss */
.suggestion-actions-list li {
  font-size: 13px;
  color: #6c757d;
  margin-bottom: 4px;
}

/* line 156, app/assets/stylesheets/components/_proactive_suggestions.scss */
.suggestion-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid #e9ecef;
}

/* line 166, app/assets/stylesheets/components/_proactive_suggestions.scss */
.suggestion-timing {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #6c757d;
}

/* line 173, app/assets/stylesheets/components/_proactive_suggestions.scss */
.suggestion-timing i {
  font-size: 14px;
}

/* line 178, app/assets/stylesheets/components/_proactive_suggestions.scss */
.suggestion-action-buttons {
  display: flex;
  gap: 8px;
}

/* line 182, app/assets/stylesheets/components/_proactive_suggestions.scss */
.suggestion-action-buttons .btn {
  font-size: 13px;
  padding: 6px 12px;
}

/* ===== BRIEFING CARDS ===== */
/* line 190, app/assets/stylesheets/components/_proactive_suggestions.scss */
.briefing-summary-card {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  padding: 16px;
  margin-bottom: 16px;
  transition: all 0.2s;
}

/* line 198, app/assets/stylesheets/components/_proactive_suggestions.scss */
.briefing-summary-card:hover {
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
  border-color: #667eea;
}

/* line 203, app/assets/stylesheets/components/_proactive_suggestions.scss */
.briefing-summary-card.briefing-sent {
  border-left: 4px solid #764ba2;
}

/* line 208, app/assets/stylesheets/components/_proactive_suggestions.scss */
.briefing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e9ecef;
}

/* line 217, app/assets/stylesheets/components/_proactive_suggestions.scss */
.briefing-date {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #495057;
}

/* line 223, app/assets/stylesheets/components/_proactive_suggestions.scss */
.briefing-date i {
  color: #764ba2;
  font-size: 18px;
}

/* line 228, app/assets/stylesheets/components/_proactive_suggestions.scss */
.briefing-date strong {
  font-size: 15px;
}

/* line 233, app/assets/stylesheets/components/_proactive_suggestions.scss */
.briefing-sections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

/* line 240, app/assets/stylesheets/components/_proactive_suggestions.scss */
.briefing-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 6px;
  border-left: 3px solid #667eea;
}

/* line 249, app/assets/stylesheets/components/_proactive_suggestions.scss */
.briefing-stat i {
  font-size: 20px;
  color: #667eea;
}

/* line 254, app/assets/stylesheets/components/_proactive_suggestions.scss */
.briefing-stat div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* line 260, app/assets/stylesheets/components/_proactive_suggestions.scss */
.briefing-stat strong {
  font-size: 18px;
  color: #212529;
  font-weight: 700;
}

/* line 266, app/assets/stylesheets/components/_proactive_suggestions.scss */
.briefing-stat span {
  font-size: 11px;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 273, app/assets/stylesheets/components/_proactive_suggestions.scss */
.briefing-stat.priority {
  border-left-color: #dc3545;
}

/* line 275, app/assets/stylesheets/components/_proactive_suggestions.scss */
.briefing-stat.priority i {
  color: #dc3545;
}

/* line 278, app/assets/stylesheets/components/_proactive_suggestions.scss */
.briefing-stat.suggestions {
  border-left-color: #ffc107;
}

/* line 280, app/assets/stylesheets/components/_proactive_suggestions.scss */
.briefing-stat.suggestions i {
  color: #ffc107;
}

/* line 283, app/assets/stylesheets/components/_proactive_suggestions.scss */
.briefing-stat.patterns {
  border-left-color: #48c6ef;
}

/* line 285, app/assets/stylesheets/components/_proactive_suggestions.scss */
.briefing-stat.patterns i {
  color: #48c6ef;
}

/* line 289, app/assets/stylesheets/components/_proactive_suggestions.scss */
.briefing-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid #e9ecef;
}

/* line 297, app/assets/stylesheets/components/_proactive_suggestions.scss */
.briefing-timing {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: #6c757d;
}

/* line 304, app/assets/stylesheets/components/_proactive_suggestions.scss */
.briefing-timing span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* line 310, app/assets/stylesheets/components/_proactive_suggestions.scss */
.briefing-timing i {
  font-size: 13px;
}

/* ===== ANIMATIONS ===== */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOutRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(20px);
  }
}

/* line 339, app/assets/stylesheets/components/_proactive_suggestions.scss */
.toast-notification {
  animation: slideInRight 0.3s ease-out;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  /* line 346, app/assets/stylesheets/components/_proactive_suggestions.scss */
  .suggestion-footer,
.briefing-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  /* line 352, app/assets/stylesheets/components/_proactive_suggestions.scss */
  .suggestion-action-buttons {
    width: 100%;
  }
  /* line 355, app/assets/stylesheets/components/_proactive_suggestions.scss */
  .suggestion-action-buttons .btn {
    flex: 1;
  }
  /* line 360, app/assets/stylesheets/components/_proactive_suggestions.scss */
  .briefing-sections-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  /* line 366, app/assets/stylesheets/components/_proactive_suggestions.scss */
  .suggestion-card,
.briefing-summary-card {
    padding: 12px;
  }
  /* line 371, app/assets/stylesheets/components/_proactive_suggestions.scss */
  .briefing-sections-grid {
    grid-template-columns: 1fr;
  }
}

/* line 2, app/assets/stylesheets/components/_pagination.scss */
.pagination-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

/* line 11, app/assets/stylesheets/components/_pagination.scss */
.pagination-nav .pagination-info {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 17, app/assets/stylesheets/components/_pagination.scss */
.pagination-list {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

/* line 27, app/assets/stylesheets/components/_pagination.scss */
.pagination-item.disabled .pagination-link {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* line 35, app/assets/stylesheets/components/_pagination.scss */
.pagination-item.active .pagination-link {
  background: linear-gradient(135deg, #F6E5B3, #D4AF37);
  color: #2a1e3e;
  font-weight: 600;
}

/* line 43, app/assets/stylesheets/components/_pagination.scss */
.pagination-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

/* line 57, app/assets/stylesheets/components/_pagination.scss */
.pagination-link:hover:not(.disabled) {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* line 63, app/assets/stylesheets/components/_pagination.scss */
.pagination-link.disabled {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  /* line 71, app/assets/stylesheets/components/_pagination.scss */
  .pagination-nav {
    flex-direction: column;
    gap: 1rem;
  }
  /* line 76, app/assets/stylesheets/components/_pagination.scss */
  .pagination-info {
    text-align: center;
  }
  /* line 80, app/assets/stylesheets/components/_pagination.scss */
  .pagination-list {
    flex-wrap: wrap;
    justify-content: center;
  }
  /* line 85, app/assets/stylesheets/components/_pagination.scss */
  .pagination-link {
    min-width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }
}

/* line 3, app/assets/stylesheets/components/_questions.scss */
.question-form-container {
  margin-top: 1rem;
  border-top: 1px solid #e5e7eb;
  padding-top: 1rem;
}

/* line 9, app/assets/stylesheets/components/_questions.scss */
.question-form-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.5rem;
}

/* line 16, app/assets/stylesheets/components/_questions.scss */
.question-form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

/* line 22, app/assets/stylesheets/components/_questions.scss */
.question-form-header h4, .question-form-header .h4 {
  margin: 0;
  color: #374151;
  font-size: 1.1rem;
}

/* line 27, app/assets/stylesheets/components/_questions.scss */
.question-form-header h4 i, .question-form-header .h4 i {
  margin-right: 0.5rem;
  color: #3b82f6;
}

/* line 35, app/assets/stylesheets/components/_questions.scss */
.question-form-body .form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

/* line 40, app/assets/stylesheets/components/_questions.scss */
.question-form-body .form-row .form-group {
  flex: 1;
}

/* line 43, app/assets/stylesheets/components/_questions.scss */
.question-form-body .form-row .form-group:last-child {
  flex: 0 0 auto;
  display: flex;
  align-items: end;
}

/* line 48, app/assets/stylesheets/components/_questions.scss */
.question-form-body .form-row .form-group:last-child label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0;
  padding-bottom: 0.5rem;
}

/* line 60, app/assets/stylesheets/components/_questions.scss */
.question-options-section {
  margin-top: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
}

/* line 67, app/assets/stylesheets/components/_questions.scss */
.question-options-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

/* line 73, app/assets/stylesheets/components/_questions.scss */
.question-options-section .section-header h5, .question-options-section .section-header .h5 {
  margin: 0;
  color: #374151;
  font-size: 1rem;
}

/* line 81, app/assets/stylesheets/components/_questions.scss */
.option-form-item {
  display: flex;
  margin-bottom: 0.75rem;
}

/* line 85, app/assets/stylesheets/components/_questions.scss */
.option-form-item .option-inputs {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  align-items: center;
}

/* line 91, app/assets/stylesheets/components/_questions.scss */
.option-form-item .option-inputs .option-label {
  flex: 2;
}

/* line 95, app/assets/stylesheets/components/_questions.scss */
.option-form-item .option-inputs .option-value {
  flex: 1;
}

/* line 101, app/assets/stylesheets/components/_questions.scss */
.question-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

/* line 111, app/assets/stylesheets/components/_questions.scss */
.question-item {
  border: 1px solid #e5e7eb30;
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  color: #e5e7eb;
}

/* line 118, app/assets/stylesheets/components/_questions.scss */
.question-item:hover {
  border-color: #d1d5db;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* line 124, app/assets/stylesheets/components/_questions.scss */
.question-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

/* line 131, app/assets/stylesheets/components/_questions.scss */
.question-info {
  flex: 1;
}

/* line 134, app/assets/stylesheets/components/_questions.scss */
.question-info .question-label {
  margin: 0 0 0.5rem 0;
  color: #f8f9fb;
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 1 !important;
}

/* line 143, app/assets/stylesheets/components/_questions.scss */
.question-meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* line 149, app/assets/stylesheets/components/_questions.scss */
.question-actions {
  display: flex;
  gap: 0.5rem;
}

/* line 155, app/assets/stylesheets/components/_questions.scss */
.question-options .options-list {
  list-style: none;
  margin: 0.5rem 0 0 0;
  padding: 0;
}

/* line 160, app/assets/stylesheets/components/_questions.scss */
.question-options .options-list .option-item {
  padding: 0.375rem 0;
  color: #6b7280;
}

/* line 164, app/assets/stylesheets/components/_questions.scss */
.question-options .options-list .option-item .option-label {
  font-weight: 500;
  color: #374151;
}

/* line 169, app/assets/stylesheets/components/_questions.scss */
.question-options .options-list .option-item .option-value {
  margin-left: 0.5rem;
}

/* line 175, app/assets/stylesheets/components/_questions.scss */
.question-options h5, .question-options .h5 {
  margin: 0 0 0.5rem 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* line 186, app/assets/stylesheets/components/_questions.scss */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 4px;
}

/* line 195, app/assets/stylesheets/components/_questions.scss */
.badge.badge-single_choice {
  background-color: #dbeafe;
  color: #1e40af;
}

/* line 200, app/assets/stylesheets/components/_questions.scss */
.badge.badge-multiple_choice {
  background-color: #dcfce7;
  color: #166534;
}

/* line 205, app/assets/stylesheets/components/_questions.scss */
.badge.badge-text {
  background-color: #f3e8ff;
  color: #7c3aed;
}

/* line 210, app/assets/stylesheets/components/_questions.scss */
.badge.badge-email {
  background-color: #fef3c7;
  color: #92400e;
}

/* line 215, app/assets/stylesheets/components/_questions.scss */
.badge.badge-phone {
  background-color: #fed7d7;
  color: #c53030;
}

/* line 220, app/assets/stylesheets/components/_questions.scss */
.badge.badge-date {
  background-color: #e0f2fe;
  color: #0277bd;
}

/* line 225, app/assets/stylesheets/components/_questions.scss */
.badge.badge-number {
  background-color: #f0f9ff;
  color: #0284c7;
}

/* line 230, app/assets/stylesheets/components/_questions.scss */
.badge.badge-required {
  background-color: #fee2e2;
  color: #dc2626;
}

/* line 237, app/assets/stylesheets/components/_questions.scss */
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: #6b7280;
}

/* line 242, app/assets/stylesheets/components/_questions.scss */
.empty-state i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #d1d5db;
}

/* line 248, app/assets/stylesheets/components/_questions.scss */
.empty-state p {
  margin: 0.5rem 0;
}

/* line 251, app/assets/stylesheets/components/_questions.scss */
.empty-state p.text-muted {
  font-size: 0.875rem;
}

/* line 258, app/assets/stylesheets/components/_questions.scss */
.info-message {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background-color: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 6px;
}

/* line 267, app/assets/stylesheets/components/_questions.scss */
.info-message i {
  color: #3b82f6;
  margin-top: 0.125rem;
}

/* line 272, app/assets/stylesheets/components/_questions.scss */
.info-message p {
  margin: 0;
  color: #1e40af;
}

/* line 276, app/assets/stylesheets/components/_questions.scss */
.info-message p:last-child {
  margin-bottom: 0;
}

/* line 280, app/assets/stylesheets/components/_questions.scss */
.info-message p strong {
  font-weight: 600;
}

/* line 287, app/assets/stylesheets/components/_questions.scss */
.info-card .template-card-content {
  padding: 0;
}

/* Orizen global golden scrollbar */
/* line 3, app/assets/stylesheets/components/_scrollbars.scss */
.orizen-scroll {
  scrollbar-color: rgba(232, 185, 114, 0.6) rgba(255, 255, 255, 0.05);
  /* Firefox */
}

/* line 7, app/assets/stylesheets/components/_scrollbars.scss */
.orizen-scroll::-webkit-scrollbar {
  width: 5px;
}

/* line 11, app/assets/stylesheets/components/_scrollbars.scss */
.orizen-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

/* line 16, app/assets/stylesheets/components/_scrollbars.scss */
.orizen-scroll::-webkit-scrollbar-thumb {
  background: rgba(232, 185, 114, 0.6);
  border-radius: 3px;
}

/* line 21, app/assets/stylesheets/components/_scrollbars.scss */
.orizen-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(232, 185, 114, 0.8);
}

/* Titre style support tickets */
/* line 26, app/assets/stylesheets/components/_scrollbars.scss */
.support-tickets-title-like {
  text-align: center;
  color: #F6E5B3;
  font-weight: 700;
  font-size: 1.8rem;
  margin: 0;
  flex: 1;
}

/* line 34, app/assets/stylesheets/components/_scrollbars.scss */
.support-tickets-title-like .subscription-logo-inline {
  height: 0.9em;
  margin-left: 5px;
  vertical-align: middle;
  display: inline-block;
  filter: none;
  /* Conserver les couleurs originales du logo */
}

/* Header aligné: bouton Retour + Titre même ligne */
/* line 44, app/assets/stylesheets/components/_scrollbars.scss */
.subscription-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
}

/* line 51, app/assets/stylesheets/components/_scrollbars.scss */
.subscription-header .subscription-actions {
  position: absolute;
  left: 16px;
}

/* Panier sticky */
/* line 57, app/assets/stylesheets/components/_scrollbars.scss */
.subscription-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 16px;
}

@media (max-width: 1024px) {
  /* line 63, app/assets/stylesheets/components/_scrollbars.scss */
  .subscription-layout {
    grid-template-columns: 1fr;
  }
}

/* line 65, app/assets/stylesheets/components/_scrollbars.scss */
.cart-sidebar {
  position: sticky;
  top: 16px;
  height: fit-content;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 16px;
  color: #fff;
}

/* line 75, app/assets/stylesheets/components/_scrollbars.scss */
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

/* line 76, app/assets/stylesheets/components/_scrollbars.scss */
.cart-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* line 77, app/assets/stylesheets/components/_scrollbars.scss */
.cart-line {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.95rem;
}

/* line 78, app/assets/stylesheets/components/_scrollbars.scss */
.cart-line.empty {
  opacity: 0.7;
}

/* line 79, app/assets/stylesheets/components/_scrollbars.scss */
.cart-total {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 12px;
  padding-top: 12px;
  font-weight: 700;
}

/* line 2, app/assets/stylesheets/components/_signature_panel.scss */
.signature-preview__iframe {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* line 9, app/assets/stylesheets/components/_signature_panel.scss */
.signature-panel {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

/* line 17, app/assets/stylesheets/components/_signature_panel.scss */
.signature-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

/* line 25, app/assets/stylesheets/components/_signature_panel.scss */
.signature-panel__title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* line 30, app/assets/stylesheets/components/_signature_panel.scss */
.signature-panel__title h3, .signature-panel__title .h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: #111827;
}

/* line 37, app/assets/stylesheets/components/_signature_panel.scss */
.signature-panel__title i {
  font-size: 1.4rem;
  color: #7c3aed;
}

/* line 43, app/assets/stylesheets/components/_signature_panel.scss */
.signature-panel__meta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #6b7280;
}

/* line 51, app/assets/stylesheets/components/_signature_panel.scss */
.signature-panel__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: #f3f4f6;
}

/* line 60, app/assets/stylesheets/components/_signature_panel.scss */
.signature-panel__body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  /* line 65, app/assets/stylesheets/components/_signature_panel.scss */
  .signature-panel__body--split {
    flex-direction: row;
    align-items: flex-start;
  }
}

/* line 73, app/assets/stylesheets/components/_signature_panel.scss */
.signature-panel-error {
  background-color: #c33;
  border: 1px solid #a22;
  border-radius: 4px;
  padding: 12px;
  margin: 10px 0;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 84, app/assets/stylesheets/components/_signature_panel.scss */
.signature-panel-error i {
  font-size: 1.1rem;
}

/* line 88, app/assets/stylesheets/components/_signature_panel.scss */
.signature-panel-error span {
  flex: 1;
}

/* line 93, app/assets/stylesheets/components/_signature_panel.scss */
.signature-panel__form {
  flex: 1;
  background: #f9fafb;
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid #e5e7eb;
}

/* line 100, app/assets/stylesheets/components/_signature_panel.scss */
.signature-panel__form h4, .signature-panel__form .h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
}

/* line 108, app/assets/stylesheets/components/_signature_panel.scss */
.signature-panel__hint {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

/* line 114, app/assets/stylesheets/components/_signature_panel.scss */
.signature-panel__timeline {
  flex: 1.4;
}

/* line 118, app/assets/stylesheets/components/_signature_panel.scss */
.signature-panel__empty {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px dashed #d1d5db;
  border-radius: 12px;
  color: #6b7280;
}

/* line 125, app/assets/stylesheets/components/_signature_panel.scss */
.signature-panel__empty i {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 0.75rem;
  color: #9ca3af;
}

/* line 134, app/assets/stylesheets/components/_signature_panel.scss */
.signature-authentication {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* line 139, app/assets/stylesheets/components/_signature_panel.scss */
.signature-authentication h1, .signature-authentication .h1 {
  margin-bottom: 0.25rem;
  font-weight: 600;
  color: #0f172a;
}

/* line 145, app/assets/stylesheets/components/_signature_panel.scss */
.signature-authentication p {
  color: #475569;
}

/* line 150, app/assets/stylesheets/components/_signature_panel.scss */
.signature-authentication__layout {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* line 157, app/assets/stylesheets/components/_signature_panel.scss */
.signature-authentication__preview {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1rem;
}

/* line 165, app/assets/stylesheets/components/_signature_panel.scss */
.signature-preview__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  padding: 0.5rem 0.75rem;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 8px;
  font-size: 0.85rem;
  color: #64748b;
}

/* line 177, app/assets/stylesheets/components/_signature_panel.scss */
.signature-preview__page-count {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* line 182, app/assets/stylesheets/components/_signature_panel.scss */
.signature-preview__page-count i {
  color: #ef4444;
  font-size: 0.95rem;
}

/* line 188, app/assets/stylesheets/components/_signature_panel.scss */
.signature-preview__actions {
  display: flex;
  justify-content: flex-end;
}

/* line 193, app/assets/stylesheets/components/_signature_panel.scss */
.signature-preview__page-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(30, 41, 59, 0.75);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
}

/* line 202, app/assets/stylesheets/components/_signature_panel.scss */
.signature-preview__page-selector label {
  font-size: 0.85rem;
  color: rgba(226, 232, 240, 0.75);
}

/* line 207, app/assets/stylesheets/components/_signature_panel.scss */
.signature-preview__page-selector input {
  width: 70px;
  border: none;
  background: transparent;
  color: #f8fafc;
  font-size: 0.95rem;
  text-align: center;
}

/* line 215, app/assets/stylesheets/components/_signature_panel.scss */
.signature-preview__page-selector input:focus {
  outline: none;
}

/* line 221, app/assets/stylesheets/components/_signature_panel.scss */
.signature-preview__frame {
  position: relative;
  width: 100%;
}

/* line 226, app/assets/stylesheets/components/_signature_panel.scss */
.signature-preview__frame iframe,
.signature-preview__frame object {
  display: block;
  width: 100%;
  border-radius: 14px;
}

/* line 234, app/assets/stylesheets/components/_signature_panel.scss */
.signature-preview__pdf-frame {
  display: block;
  width: 100%;
  border: none;
  background: #ffffff;
  transition: height 0.15s ease-out;
}

/* line 245, app/assets/stylesheets/components/_signature_panel.scss */
.signature-preview__scroll-container {
  position: relative;
  max-height: 70vh;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 14px;
  background: #ffffff;
}

/* line 254, app/assets/stylesheets/components/_signature_panel.scss */
.signature-preview__scroll-container::-webkit-scrollbar {
  width: 8px;
}

/* line 258, app/assets/stylesheets/components/_signature_panel.scss */
.signature-preview__scroll-container::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}

/* line 263, app/assets/stylesheets/components/_signature_panel.scss */
.signature-preview__scroll-container::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

/* line 267, app/assets/stylesheets/components/_signature_panel.scss */
.signature-preview__scroll-container::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

/* line 273, app/assets/stylesheets/components/_signature_panel.scss */
.signature-preview__scroll-container::after {
  content: '';
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.9), transparent);
  pointer-events: none;
  display: block;
}

/* line 286, app/assets/stylesheets/components/_signature_panel.scss */
.signature-preview__scroll-container:not(:hover)::after {
  opacity: 0.7;
}

/* line 292, app/assets/stylesheets/components/_signature_panel.scss */
.signature-preview__scroll-container .signature-preview__frame {
  position: relative;
}

/* line 295, app/assets/stylesheets/components/_signature_panel.scss */
.signature-preview__scroll-container .signature-preview__frame iframe {
  border-radius: 0;
}

/* line 301, app/assets/stylesheets/components/_signature_panel.scss */
.signature-preview__scroll-container .signature-preview__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  min-height: 100%;
  border-radius: 0;
}

/* line 311, app/assets/stylesheets/components/_signature_panel.scss */
.signature-preview__overlay {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  cursor: crosshair;
  background: transparent;
  pointer-events: none;
}

/* line 320, app/assets/stylesheets/components/_signature_panel.scss */
.signature-preview__overlay--active {
  background: transparent;
}

/* line 324, app/assets/stylesheets/components/_signature_panel.scss */
.signature-preview__marker {
  position: absolute;
  border: 2px dashed rgba(59, 130, 246, 0.8);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.15);
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  color: rgba(248, 250, 252, 0.9);
  pointer-events: none;
}

/* line 339, app/assets/stylesheets/components/_signature_panel.scss */
.signature-preview__marker span {
  padding: 0.25rem 0.5rem;
}

/* line 344, app/assets/stylesheets/components/_signature_panel.scss */
.signature-preview__toggle {
  border-radius: 999px;
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

/* line 351, app/assets/stylesheets/components/_signature_panel.scss */
.signature-preview__toggle--active {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(59, 130, 246, 0.8));
  color: #f8fafc;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.35);
}

/* line 358, app/assets/stylesheets/components/_signature_panel.scss */
.signature-preview__controls {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: 0.75rem;
}

/* line 366, app/assets/stylesheets/components/_signature_panel.scss */
.signature-preview__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  background: #f8fafc;
  border: 2px dashed #e2e8f0;
  border-radius: 14px;
  color: #64748b;
  font-size: 0.95rem;
}

/* line 377, app/assets/stylesheets/components/_signature_panel.scss */
.signature-preview__placeholder p {
  margin: 0;
  padding: 2rem;
  text-align: center;
}

/* line 385, app/assets/stylesheets/components/_signature_panel.scss */
.signature-preview__frame-inner {
  position: relative;
  width: 100%;
}

/* line 391, app/assets/stylesheets/components/_signature_panel.scss */
.position-dynamic {
  width: var(--dynamic-width, auto);
  height: var(--dynamic-height, auto);
  left: var(--dynamic-left, 0);
  top: var(--dynamic-top, 0);
}

/* line 398, app/assets/stylesheets/components/_signature_panel.scss */
.signature-authentication__hint {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: #64748b;
}

/* line 404, app/assets/stylesheets/components/_signature_panel.scss */
.signature-authentication__form {
  flex: 0.8;
  min-width: 320px;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 50%, rgba(30, 41, 59, 0.82) 100%);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 18px;
  padding: 1.75rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.45);
  color: #f8fafc;
}

/* line 415, app/assets/stylesheets/components/_signature_panel.scss */
.signature-capture {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* line 421, app/assets/stylesheets/components/_signature_panel.scss */
.signature-capture__identity {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  opacity: 1;
}

/* line 428, app/assets/stylesheets/components/_signature_panel.scss */
.signature-capture__label {
  font-size: 0.9rem;
  opacity: 1;
  font-weight: 500;
  color: rgba(226, 232, 240, 0.85);
}

/* line 435, app/assets/stylesheets/components/_signature_panel.scss */
.signature-capture__identity-input {
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 0.75rem 1rem;
  background: rgba(15, 23, 42, 0.7);
  color: #f8fafc;
  font-size: 0.95rem;
  font-family: 'Playwrite GB S', 'Permanent Marker', cursive;
}

/* line 444, app/assets/stylesheets/components/_signature_panel.scss */
.signature-capture__identity-input::placeholder {
  color: rgba(226, 232, 240, 0.55);
  font-family: 'Playwrite GB S', 'Permanent Marker', cursive;
}

/* line 450, app/assets/stylesheets/components/_signature_panel.scss */
.signature-capture__mode {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* line 456, app/assets/stylesheets/components/_signature_panel.scss */
.signature-capture__mode-option {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 1;
  font-size: 0.95rem;
  color: rgba(226, 232, 240, 0.9);
  cursor: pointer;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

/* line 469, app/assets/stylesheets/components/_signature_panel.scss */
.signature-capture__mode-option input {
  accent-color: #facc15;
}

/* line 473, app/assets/stylesheets/components/_signature_panel.scss */
.signature-capture__mode-option:hover {
  background: rgba(148, 163, 184, 0.12);
  border-color: rgba(148, 163, 184, 0.25);
}

/* line 479, app/assets/stylesheets/components/_signature_panel.scss */
.signature-capture__canvas {
  position: relative;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.85);
  padding: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
}

/* line 486, app/assets/stylesheets/components/_signature_panel.scss */
.signature-capture__canvas canvas {
  width: 100%;
  height: 240px;
  border-radius: 10px;
  border: 1px dashed rgba(241, 245, 249, 0.28);
  background: white;
  color: black;
  cursor: crosshair;
}

/* line 497, app/assets/stylesheets/components/_signature_panel.scss */
.signature-capture__clear {
  margin-top: 0.85rem;
  align-self: flex-end;
  background: rgba(148, 163, 184, 0.2);
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: #e2e8f0;
}

/* line 504, app/assets/stylesheets/components/_signature_panel.scss */
.signature-capture__clear:hover {
  background: rgba(148, 163, 184, 0.35);
}

/* line 509, app/assets/stylesheets/components/_signature_panel.scss */
.signature-capture__fallback {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
}

/* line 514, app/assets/stylesheets/components/_signature_panel.scss */
.signature-capture__fallback.d-none {
  display: none;
}

/* line 518, app/assets/stylesheets/components/_signature_panel.scss */
.signature-capture__fallback:not(.d-none) {
  display: flex;
}

/* line 522, app/assets/stylesheets/components/_signature_panel.scss */
.signature-capture__fallback textarea,
.signature-capture__fallback .signature-capture__textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 0.85rem;
  font-size: 0.95rem;
  background: rgba(15, 23, 42, 0.75);
  color: #f8fafc;
  font-family: 'Playwrite GB S', 'Permanent Marker', cursive;
  font-style: italic;
}

/* line 534, app/assets/stylesheets/components/_signature_panel.scss */
.signature-capture__fallback textarea::placeholder,
.signature-capture__fallback .signature-capture__textarea::placeholder {
  color: rgba(226, 232, 240, 0.7);
  font-family: 'Playwrite GB S', 'Permanent Marker', cursive;
}

/* line 540, app/assets/stylesheets/components/_signature_panel.scss */
.signature-capture__fallback small, .signature-capture__fallback .small {
  font-size: 0.8rem;
  color: rgba(226, 232, 240, 0.7);
}

/* line 546, app/assets/stylesheets/components/_signature_panel.scss */
.signature-capture__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}

@media (max-width: 992px) {
  /* line 553, app/assets/stylesheets/components/_signature_panel.scss */
  .signature-authentication__layout {
    flex-direction: column;
  }
  /* line 557, app/assets/stylesheets/components/_signature_panel.scss */
  .signature-authentication__preview,
.signature-authentication__form {
    width: 100%;
  }
}

/* line 564, app/assets/stylesheets/components/_signature_panel.scss */
.signature-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
}

/* line 570, app/assets/stylesheets/components/_signature_panel.scss */
.signature-form__group:last-child {
  margin-bottom: 0;
}

@media (min-width: 640px) {
  /* line 574, app/assets/stylesheets/components/_signature_panel.scss */
  .signature-form__group--inline {
    max-width: 320px;
  }
}

/* line 581, app/assets/stylesheets/components/_signature_panel.scss */
.signature-form__row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  /* line 581, app/assets/stylesheets/components/_signature_panel.scss */
  .signature-form__row {
    flex-direction: row;
    gap: 1.5rem;
  }
}

@media (min-width: 640px) {
  /* line 592, app/assets/stylesheets/components/_signature_panel.scss */
  .signature-form__group--half {
    flex: 1;
    width: 50%;
    max-width: 50%;
  }
}

/* line 600, app/assets/stylesheets/components/_signature_panel.scss */
.signature-form__label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #4b5563;
}

/* line 606, app/assets/stylesheets/components/_signature_panel.scss */
.signature-form__input, .signature-form__textarea, .signature-form__select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  padding: 0.65rem 0.75rem;
  font-size: 0.95rem;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* line 617, app/assets/stylesheets/components/_signature_panel.scss */
.signature-form__input:focus, .signature-form__textarea:focus, .signature-form__select:focus {
  outline: none;
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

/* line 624, app/assets/stylesheets/components/_signature_panel.scss */
.signature-form__textarea {
  min-height: 120px;
  resize: vertical;
}

/* line 629, app/assets/stylesheets/components/_signature_panel.scss */
.signature-form__help {
  font-size: 0.8rem;
  color: #9ca3af;
}

/* line 634, app/assets/stylesheets/components/_signature_panel.scss */
.signature-form__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

/* line 642, app/assets/stylesheets/components/_signature_panel.scss */
.signature-form__disabled {
  font-size: 0.85rem;
  color: #9ca3af;
}

/* line 648, app/assets/stylesheets/components/_signature_panel.scss */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* line 660, app/assets/stylesheets/components/_signature_panel.scss */
.signature-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* line 668, app/assets/stylesheets/components/_signature_panel.scss */
.signature-timeline__item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1rem;
  background: #ffffff;
}

/* line 675, app/assets/stylesheets/components/_signature_panel.scss */
.signature-timeline__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

/* line 682, app/assets/stylesheets/components/_signature_panel.scss */
.signature-timeline__header strong {
  font-size: 1rem;
  color: #111827;
}

/* line 688, app/assets/stylesheets/components/_signature_panel.scss */
.signature-timeline__meta {
  font-size: 0.82rem;
  color: #6b7280;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* line 695, app/assets/stylesheets/components/_signature_panel.scss */
.signature-timeline__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* line 702, app/assets/stylesheets/components/_signature_panel.scss */
.signature-timeline__participants {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* line 708, app/assets/stylesheets/components/_signature_panel.scss */
.signature-timeline__audit {
  margin-top: 0.85rem;
  border-top: 1px solid #f3f4f6;
  padding-top: 0.75rem;
}

/* line 713, app/assets/stylesheets/components/_signature_panel.scss */
.signature-timeline__audit strong {
  font-size: 0.85rem;
  color: #4b5563;
  display: block;
  margin-bottom: 0.5rem;
}

/* line 720, app/assets/stylesheets/components/_signature_panel.scss */
.signature-timeline__audit ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* line 728, app/assets/stylesheets/components/_signature_panel.scss */
.signature-timeline__audit ul li {
  font-size: 0.8rem;
  color: #6b7280;
  display: flex;
  gap: 0.5rem;
}

/* line 738, app/assets/stylesheets/components/_signature_panel.scss */
.signature-timeline__audit-date {
  font-weight: 500;
  color: #7c3aed;
}

/* line 743, app/assets/stylesheets/components/_signature_panel.scss */
.signature-timeline__audit-more {
  font-style: italic;
  color: #9ca3af;
}

/* line 748, app/assets/stylesheets/components/_signature_panel.scss */
.signature-participant {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid #f1f5f9;
  border-radius: 10px;
  background: #f8fafc;
}

/* line 758, app/assets/stylesheets/components/_signature_panel.scss */
.signature-participant__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ede9fe;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7c3aed;
}

/* line 769, app/assets/stylesheets/components/_signature_panel.scss */
.signature-participant__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

/* line 776, app/assets/stylesheets/components/_signature_panel.scss */
.signature-participant__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1f2937;
}

/* line 782, app/assets/stylesheets/components/_signature_panel.scss */
.signature-participant__email {
  font-size: 0.8rem;
  color: #6b7280;
}

/* line 788, app/assets/stylesheets/components/_signature_panel.scss */
.signature-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* line 799, app/assets/stylesheets/components/_signature_panel.scss */
.signature-badge i {
  font-size: 0.8rem;
}

/* line 803, app/assets/stylesheets/components/_signature_panel.scss */
.signature-badge--draft {
  background: #f3f4f6;
  color: #6b7280;
}

/* line 808, app/assets/stylesheets/components/_signature_panel.scss */
.signature-badge--ready {
  background: #ede9fe;
  color: #7c3aed;
}

/* line 813, app/assets/stylesheets/components/_signature_panel.scss */
.signature-badge--progress {
  background: #fef3c7;
  color: #f59e0b;
}

/* line 818, app/assets/stylesheets/components/_signature_panel.scss */
.signature-badge--completed {
  background: #dcfce7;
  color: #16a34a;
}

/* line 823, app/assets/stylesheets/components/_signature_panel.scss */
.signature-badge--cancelled {
  background: #fee2e2;
  color: #dc2626;
}

/* line 828, app/assets/stylesheets/components/_signature_panel.scss */
.signature-badge--expired {
  background: #f3f4f6;
  color: #ef4444;
}

/* line 834, app/assets/stylesheets/components/_signature_panel.scss */
.participant-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* line 843, app/assets/stylesheets/components/_signature_panel.scss */
.participant-badge__label {
  line-height: 1;
}

/* line 847, app/assets/stylesheets/components/_signature_panel.scss */
.participant-badge--pending {
  background: #f3f4f6;
  color: #111827;
}

/* line 852, app/assets/stylesheets/components/_signature_panel.scss */
.participant-badge--viewed {
  background: #e0f2fe;
  color: #0284c7;
}

/* line 857, app/assets/stylesheets/components/_signature_panel.scss */
.participant-badge--signed {
  background: #dcfce7;
  color: #16a34a;
}

/* line 862, app/assets/stylesheets/components/_signature_panel.scss */
.participant-badge--declined {
  background: #fee2e2;
  color: #dc2626;
}

/* line 867, app/assets/stylesheets/components/_signature_panel.scss */
.participant-badge--bounced {
  background: #fef3c7;
  color: #d97706;
}

/* line 873, app/assets/stylesheets/components/_signature_panel.scss */
.adv-quote-signature-panel,
.adv-contract-signature-panel,
.adv-invoice-signature-panel,
.adv-credit-note-signature-panel,
.adv-client-acceptance-report-signature-panel,
.crm-contract-signature-panel {
  margin-top: 1.5rem;
}

/* line 882, app/assets/stylesheets/components/_signature_panel.scss */
.signature-confirmation {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: rgba(15, 23, 42, 0.85);
  border-radius: 18px;
  padding: 2rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
}

/* line 891, app/assets/stylesheets/components/_signature_panel.scss */
.signature-confirmation__header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* line 896, app/assets/stylesheets/components/_signature_panel.scss */
.signature-confirmation__header h1, .signature-confirmation__header .h1 {
  font-size: 2rem;
  font-weight: 600;
  color: #e2e8f0;
}

/* line 902, app/assets/stylesheets/components/_signature_panel.scss */
.signature-confirmation__header p {
  color: rgba(226, 232, 240, 0.85);
  margin: 0;
  font-size: 1.05rem;
}

/* line 909, app/assets/stylesheets/components/_signature_panel.scss */
.signature-confirmation__badge {
  display: inline-flex;
  margin-top: 0.5rem;
}

/* line 914, app/assets/stylesheets/components/_signature_panel.scss */
.signature-confirmation__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* line 921, app/assets/stylesheets/components/_signature_panel.scss */
.signature-confirmation__download {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 926, app/assets/stylesheets/components/_signature_panel.scss */
.signature-confirmation__download--disabled {
  color: rgba(226, 232, 240, 0.5);
  border: 1px dashed rgba(148, 163, 184, 0.35);
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  cursor: not-allowed;
}

/* line 935, app/assets/stylesheets/components/_signature_panel.scss */
.signature-confirmation__details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

/* line 941, app/assets/stylesheets/components/_signature_panel.scss */
.signature-confirmation__block {
  background: rgba(30, 41, 59, 0.85);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
}

/* line 947, app/assets/stylesheets/components/_signature_panel.scss */
.signature-confirmation__block h2, .signature-confirmation__block .h2 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #f8fafc;
}

/* line 953, app/assets/stylesheets/components/_signature_panel.scss */
.signature-confirmation__block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* line 961, app/assets/stylesheets/components/_signature_panel.scss */
.signature-confirmation__block ul li {
  color: rgba(226, 232, 240, 0.85);
}

/* line 964, app/assets/stylesheets/components/_signature_panel.scss */
.signature-confirmation__block ul li strong {
  font-weight: 600;
  color: #f1f5f9;
}

/* line 972, app/assets/stylesheets/components/_signature_panel.scss */
.signature-confirmation__timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* line 980, app/assets/stylesheets/components/_signature_panel.scss */
.signature-confirmation__timeline .timeline__date {
  display: block;
  font-size: 0.85rem;
  color: rgba(148, 163, 184, 0.85);
}

/* line 986, app/assets/stylesheets/components/_signature_panel.scss */
.signature-confirmation__timeline .timeline__event {
  font-size: 1rem;
  color: rgba(226, 232, 240, 0.95);
  font-weight: 500;
}

/* line 995, app/assets/stylesheets/components/_signature_panel.scss */
.contact-item-newly-added {
  animation: contactHighlight 2s ease-in-out;
}

@keyframes contactHighlight {
  0% {
    background-color: transparent;
  }
  10% {
    background-color: rgba(40, 167, 69, 0.15);
    transform: scale(1.02);
  }
  100% {
    background-color: transparent;
    transform: scale(1);
  }
}

/* line 1014, app/assets/stylesheets/components/_signature_panel.scss */
.contact-item-newly-added-border {
  animation: contactBorderHighlight 2s ease-in-out;
}

@keyframes contactBorderHighlight {
  0% {
    border-left: 3px solid transparent;
  }
  10% {
    border-left: 3px solid #28a745;
  }
  100% {
    border-left: 3px solid transparent;
  }
}

@media (prefers-reduced-motion: reduce) {
  /* line 1032, app/assets/stylesheets/components/_signature_panel.scss */
  .contact-item-newly-added,
.contact-item-newly-added-border {
    animation: none;
    background-color: rgba(40, 167, 69, 0.1);
    transition: background-color 0.5s ease-out;
  }
}

/* line 5, app/assets/stylesheets/components/_tooltips.scss */
.help-tooltip-icon {
  cursor: help;
  opacity: 0.6;
  transition: opacity 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.25rem;
}

/* line 14, app/assets/stylesheets/components/_tooltips.scss */
.help-tooltip-icon:hover, .help-tooltip-icon:focus {
  opacity: 1;
}

/* line 19, app/assets/stylesheets/components/_tooltips.scss */
.help-tooltip-icon:focus {
  outline: none;
}

/* line 23, app/assets/stylesheets/components/_tooltips.scss */
.help-tooltip-icon:focus-visible {
  outline: 2px solid var(--bs-primary);
  outline-offset: 2px;
  border-radius: 50%;
}

/* line 31, app/assets/stylesheets/components/_tooltips.scss */
.tooltip {
  --bs-tooltip-bg: rgba(0, 0, 0, 0.9);
  --bs-tooltip-color: #fff;
  --bs-tooltip-padding-x: 0.75rem;
  --bs-tooltip-padding-y: 0.5rem;
  --bs-tooltip-border-radius: 6px;
  font-size: 0.8rem;
  max-width: 250px;
  z-index: 10000;
}

/* line 41, app/assets/stylesheets/components/_tooltips.scss */
.tooltip .tooltip-inner {
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* line 48, app/assets/stylesheets/components/_tooltips.scss */
.pv-client-help-tooltip {
  max-width: 320px;
}

/* line 51, app/assets/stylesheets/components/_tooltips.scss */
.pv-client-help-tooltip .tooltip-inner {
  line-height: 1.5;
}

/* line 14, app/assets/stylesheets/components/_omnipresent_chat.scss */
.omnipresent-chat-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* line 26, app/assets/stylesheets/components/_omnipresent_chat.scss */
.omnipresent-chat-wrapper.visible {
  display: flex;
  opacity: 1;
  visibility: visible;
}

/* line 33, app/assets/stylesheets/components/_omnipresent_chat.scss */
.omnipresent-chat-wrapper .chat-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(1px);
  cursor: pointer;
}

/* line 46, app/assets/stylesheets/components/_omnipresent_chat.scss */
.omnipresent-chat-overlay {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 1000px;
  height: 700px;
  max-height: calc(100vh - 48px);
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.98) 0%, rgba(100, 1, 39, 0.98) 100%);
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  z-index: 10001;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  user-select: none;
}

/* line 65, app/assets/stylesheets/components/_omnipresent_chat.scss */
.omnipresent-chat-wrapper.visible .omnipresent-chat-overlay {
  animation: slideInChat 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 70, app/assets/stylesheets/components/_omnipresent_chat.scss */
.omnipresent-chat-overlay.fullscreen {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  max-height: 100vh;
  border-radius: 0;
}

@keyframes slideInChat {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* line 94, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-overlay-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* line 102, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-overlay-header .chat-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 107, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-overlay-header .chat-header-left .orizen-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* line 117, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-overlay-header .chat-header-left .orizen-avatar .orizen-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* line 123, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-overlay-header .chat-header-left .orizen-avatar i {
  display: none;
}

/* line 130, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-overlay-header .chat-header-info h4, .chat-overlay-header .chat-header-info .h4 {
  margin: 0;
  color: #F6E5B3;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* line 142, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-overlay-header .chat-header-info .chat-tier-badge--pro {
  font-size: 0.65rem;
  color: #fbbf24;
  opacity: 0.9;
}

/* line 149, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-overlay-header .chat-header-info .chat-upgrade-link {
  color: #fbbf24;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.15s;
}

/* line 159, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-overlay-header .chat-header-info .chat-upgrade-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* line 164, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-overlay-header .chat-header-info .chat-upgrade-link i {
  font-size: 0.65rem;
}

/* line 169, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-overlay-header .chat-header-info .chat-header-status {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* line 178, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-overlay-header .chat-header-info .chat-header-status span.status-indicator {
  width: 8px !important;
  height: 8px !important;
  min-width: 8px !important;
  min-height: 8px !important;
  max-width: 8px !important;
  max-height: 8px !important;
  border-radius: 50% !important;
  background: #48bb78;
  display: inline-block !important;
  overflow: hidden;
  line-height: 0;
  font-size: 0;
  padding: 0 !important;
  gap: 0 !important;
  animation: pulse 2s ease-in-out infinite;
}

/* line 195, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-overlay-header .chat-header-info .chat-header-status span.status-indicator.online {
  background: #48bb78;
}

/* line 198, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-overlay-header .chat-header-info .chat-header-status span.status-indicator.offline {
  background: #999;
}

/* line 206, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-overlay-header .contextual-bubble-inline {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
  flex: 1;
  margin: 0 10px;
  display: none;
}

/* line 216, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-overlay-header .contextual-bubble-inline strong {
  color: #F6E5B3;
  font-weight: 700;
}

/* line 222, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-overlay-header .chat-header-actions {
  display: flex;
  gap: 6px;
  align-items: center;
}

/* line 228, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-overlay-header .chat-header-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 244, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-overlay-header .chat-header-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

/* line 249, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-overlay-header .chat-header-btn i {
  font-size: 0.9rem;
  line-height: 1;
}

/* line 257, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-autonomy-toggle {
  position: relative;
}

/* line 261, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-autonomy-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  width: 260px;
  background: rgba(30, 20, 40, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  overflow: hidden;
}

/* line 275, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-autonomy-dropdown .autonomy-dropdown-header {
  padding: 10px 14px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 284, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-autonomy-dropdown .autonomy-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  text-align: left;
  transition: background 0.15s ease;
}

/* line 297, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-autonomy-dropdown .autonomy-option:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* line 301, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-autonomy-dropdown .autonomy-option.active {
  background: rgba(246, 139, 33, 0.15);
  color: #fff;
}

/* line 305, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-autonomy-dropdown .autonomy-option.active i {
  color: rgba(246, 139, 33, 0.9);
}

/* line 308, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-autonomy-dropdown .autonomy-option i {
  font-size: 0.9rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

/* line 315, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-autonomy-dropdown .autonomy-option .autonomy-option-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

/* line 320, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-autonomy-dropdown .autonomy-option .autonomy-option-text strong {
  font-size: 0.8rem;
  font-weight: 600;
}

/* line 325, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-autonomy-dropdown .autonomy-option .autonomy-option-text small, .chat-autonomy-dropdown .autonomy-option .autonomy-option-text .small {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.3;
}

/* line 335, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-tabs-container {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

/* line 348, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-tabs-container::-webkit-scrollbar {
  height: 4px;
}

/* line 352, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-tabs-container::-webkit-scrollbar-track {
  background: transparent;
}

/* line 356, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-tabs-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}

/* line 363, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-tabs-skeleton {
  display: flex;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

/* line 369, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-tabs-skeleton.hidden {
  display: none;
}

/* line 374, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-tab-skeleton {
  width: 140px;
  height: 32px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.08) 100%);
  background-size: 200% 100%;
  border-radius: 8px;
  animation: shimmer 1.5s infinite;
  flex-shrink: 0;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* line 398, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-tabs {
  display: flex;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

/* line 404, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-tabs.loading {
  display: none;
}

/* line 409, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s ease;
  position: relative;
  max-width: 200px;
  min-width: 120px;
}

/* line 426, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-tab:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.95);
}

/* line 432, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-tab.active {
  background: rgba(246, 229, 179, 0.2);
  border-color: rgba(246, 229, 179, 0.4);
  color: #F6E5B3;
  font-weight: 500;
}

/* line 439, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-tab .chat-tab-title {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

/* line 447, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-tab .chat-tab-close,
.chat-tab .chat-tab-delete {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  width: 18px;
  height: 18px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s ease;
  opacity: 0.6;
}

/* line 465, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-tab .chat-tab-close i,
.chat-tab .chat-tab-delete i {
  font-size: 0.7rem;
  line-height: 1;
}

/* line 470, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-tab .chat-tab-close:hover,
.chat-tab .chat-tab-delete:hover {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  opacity: 1;
}

/* line 477, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-tab .chat-tab-delete:hover {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

/* line 482, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-tab:hover .chat-tab-close, .chat-tab:hover .chat-tab-delete {
  opacity: 1;
}

/* line 488, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-tab-new {
  background: rgba(246, 229, 179, 0.15);
  border: 1px solid rgba(246, 229, 179, 0.3);
  color: #F6E5B3;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s ease;
  position: relative;
  z-index: 10;
  user-select: none;
  -webkit-user-select: none;
}

/* line 508, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-tab-new i {
  font-size: 0.9rem;
  line-height: 1;
  pointer-events: none;
}

/* line 514, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-tab-new:hover {
  background: rgba(246, 229, 179, 0.25);
  border-color: rgba(246, 229, 179, 0.4);
  transform: scale(1.05);
}

/* line 520, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-tab-new:active {
  transform: scale(0.95);
}

/* line 524, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-tab-new:focus {
  outline: 2px solid rgba(246, 229, 179, 0.5);
  outline-offset: 2px;
}

/* line 531, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-overlay-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* line 539, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-overlay-messages::-webkit-scrollbar {
  width: 6px;
}

/* line 543, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-overlay-messages::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

/* line 548, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-overlay-messages::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

/* line 552, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-overlay-messages::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* line 559, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* line 565, app/assets/stylesheets/components/_omnipresent_chat.scss */
.message {
  display: flex;
  gap: 10px;
  animation: slideInMessage 0.3s ease-out;
}

/* line 570, app/assets/stylesheets/components/_omnipresent_chat.scss */
.message.message-user {
  flex-direction: row-reverse;
}

/* line 573, app/assets/stylesheets/components/_omnipresent_chat.scss */
.message.message-user .message-content {
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  color: white;
  border-radius: 18px 18px 4px 18px;
  margin-left: auto;
  max-width: 75%;
}

/* line 582, app/assets/stylesheets/components/_omnipresent_chat.scss */
.message.message-assistant {
  flex-direction: row;
  gap: 0;
}

/* line 586, app/assets/stylesheets/components/_omnipresent_chat.scss */
.message.message-assistant .message-avatar {
  display: none;
}

/* line 590, app/assets/stylesheets/components/_omnipresent_chat.scss */
.message.message-assistant .message-content {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.95);
  border-radius: 18px 18px 18px 4px;
  max-width: 75%;
}

/* line 600, app/assets/stylesheets/components/_omnipresent_chat.scss */
.message .message-content {
  padding: 10px 16px;
  font-size: 0.95rem;
  line-height: 1.5;
  position: relative;
}

/* line 606, app/assets/stylesheets/components/_omnipresent_chat.scss */
.message .message-content p {
  margin: 0;
  margin-bottom: 8px;
}

/* line 610, app/assets/stylesheets/components/_omnipresent_chat.scss */
.message .message-content p:last-child {
  margin-bottom: 0;
}

/* line 615, app/assets/stylesheets/components/_omnipresent_chat.scss */
.message .message-content strong {
  font-weight: 600;
  color: #F6E5B3;
}

/* line 620, app/assets/stylesheets/components/_omnipresent_chat.scss */
.message .message-content em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
}

/* line 625, app/assets/stylesheets/components/_omnipresent_chat.scss */
.message .message-content code {
  background: rgba(0, 0, 0, 0.3);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
}

/* line 633, app/assets/stylesheets/components/_omnipresent_chat.scss */
.message .message-content .text-muted {
  color: rgba(255, 255, 255, 0.6);
}

/* line 637, app/assets/stylesheets/components/_omnipresent_chat.scss */
.message .message-content .small {
  font-size: 0.85rem;
}

/* line 642, app/assets/stylesheets/components/_omnipresent_chat.scss */
.message .message-content .action-response-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #F6E5B3;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(246, 229, 179, 0.3);
}

/* line 651, app/assets/stylesheets/components/_omnipresent_chat.scss */
.message .message-content .action-response-summary {
  background: rgba(99, 102, 241, 0.15);
  border-left: 3px solid rgba(99, 102, 241, 0.6);
  padding: 12px 14px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

/* line 662, app/assets/stylesheets/components/_omnipresent_chat.scss */
.message .message-content .action-response-section-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #F6E5B3;
  margin-bottom: 10px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* line 672, app/assets/stylesheets/components/_omnipresent_chat.scss */
.message .message-content .action-response-section-title:first-child {
  margin-top: 0;
}

/* line 677, app/assets/stylesheets/components/_omnipresent_chat.scss */
.message .message-content .action-response-alert {
  background: rgba(239, 68, 68, 0.15);
  border-left: 3px solid rgba(239, 68, 68, 0.8);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 12px;
}

/* line 684, app/assets/stylesheets/components/_omnipresent_chat.scss */
.message .message-content .action-response-alert .action-response-section-title {
  color: #FCA5A5;
  margin-top: 0;
}

/* line 690, app/assets/stylesheets/components/_omnipresent_chat.scss */
.message .message-content .action-response-insight {
  background: rgba(59, 130, 246, 0.1);
  border-left: 3px solid rgba(59, 130, 246, 0.6);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 12px;
}

/* line 697, app/assets/stylesheets/components/_omnipresent_chat.scss */
.message .message-content .action-response-insight .action-response-section-title {
  color: #93C5FD;
}

/* line 702, app/assets/stylesheets/components/_omnipresent_chat.scss */
.message .message-content .action-response-recommendation {
  background: rgba(34, 197, 94, 0.1);
  border-left: 3px solid rgba(34, 197, 94, 0.6);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 12px;
}

/* line 709, app/assets/stylesheets/components/_omnipresent_chat.scss */
.message .message-content .action-response-recommendation .action-response-section-title {
  color: #86EFAC;
}

/* line 714, app/assets/stylesheets/components/_omnipresent_chat.scss */
.message .message-content .action-response-list {
  margin: 0;
  padding-left: 20px;
  list-style-position: outside;
}

/* line 719, app/assets/stylesheets/components/_omnipresent_chat.scss */
.message .message-content .action-response-list li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* line 724, app/assets/stylesheets/components/_omnipresent_chat.scss */
.message .message-content .action-response-list li:last-child {
  margin-bottom: 0;
}

/* line 732, app/assets/stylesheets/components/_omnipresent_chat.scss */
.message .message-content .action-response-list ol {
  counter-reset: item;
  padding-left: 24px;
}

/* line 736, app/assets/stylesheets/components/_omnipresent_chat.scss */
.message .message-content .action-response-list ol li {
  counter-increment: item;
  list-style: none;
  position: relative;
}

/* line 741, app/assets/stylesheets/components/_omnipresent_chat.scss */
.message .message-content .action-response-list ol li::before {
  content: counter(item) ".";
  position: absolute;
  left: -20px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

/* line 753, app/assets/stylesheets/components/_omnipresent_chat.scss */
.message .message-content .message-copy-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 6px 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  min-height: 28px;
}

/* line 774, app/assets/stylesheets/components/_omnipresent_chat.scss */
.message .message-content .message-copy-btn i {
  font-size: 12px;
  line-height: 1;
}

/* line 779, app/assets/stylesheets/components/_omnipresent_chat.scss */
.message .message-content .message-copy-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
}

/* line 785, app/assets/stylesheets/components/_omnipresent_chat.scss */
.message .message-content .message-copy-btn.copied {
  background: rgba(34, 197, 94, 0.2);
  border-color: rgba(34, 197, 94, 0.5);
  color: #86EFAC;
}

/* line 790, app/assets/stylesheets/components/_omnipresent_chat.scss */
.message .message-content .message-copy-btn.copied i {
  color: #86EFAC;
}

/* line 797, app/assets/stylesheets/components/_omnipresent_chat.scss */
.message .message-content:hover .message-copy-btn {
  opacity: 1;
  pointer-events: auto;
}

/* line 804, app/assets/stylesheets/components/_omnipresent_chat.scss */
.message:hover .message-content .message-copy-btn {
  opacity: 1;
  pointer-events: auto;
}

/* line 811, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-welcome-message {
  display: flex;
  gap: 0;
}

/* line 815, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-welcome-message .message-avatar {
  display: none;
}

/* line 819, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-welcome-message .message-content {
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  padding: 12px 18px;
  max-width: 85%;
}

/* line 827, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-welcome-message .message-content p {
  margin: 0;
  margin-bottom: 8px;
}

/* line 831, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-welcome-message .message-content p:last-child {
  margin-bottom: 0;
}

/* line 836, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-welcome-message .message-content strong {
  color: #F6E5B3;
}

/* line 843, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-typing-indicator {
  display: flex;
  gap: 0;
  align-items: center;
}

/* line 848, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-typing-indicator.hidden {
  display: none;
}

/* line 852, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-typing-indicator .message-avatar {
  display: none;
}

/* line 856, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-typing-indicator .typing-dots {
  display: flex;
  gap: 4px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 18px;
}

/* line 863, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-typing-indicator .typing-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  animation: typing 1.4s ease-in-out infinite;
}

/* line 870, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-typing-indicator .typing-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

/* line 874, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-typing-indicator .typing-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

/* line 882, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-progress-indicator {
  display: flex;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin: 8px 0;
  transition: opacity 0.3s ease;
}

/* line 890, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-progress-indicator.hidden {
  display: none;
}

/* line 894, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-progress-indicator .progress-content {
  width: 100%;
}

/* line 898, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-progress-indicator .progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

/* line 904, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-progress-indicator .progress-header .progress-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* line 910, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-progress-indicator .progress-header .progress-percentage {
  font-size: 0.75rem;
  color: #F6E5B3;
  font-weight: 600;
  min-width: 35px;
  text-align: right;
}

/* line 919, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-progress-indicator .progress-bar-wrapper {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

/* line 927, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-progress-indicator .progress-bar-wrapper .progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #FF6B35, #F7931E);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 0 8px rgba(246, 229, 179, 0.5);
}

/* line 936, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-progress-indicator .progress-bar-wrapper .progress-bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* line 967, app/assets/stylesheets/components/_omnipresent_chat.scss */
.message.streaming .streaming-cursor {
  display: inline-block;
  animation: cursor-blink 1s step-end infinite;
  color: #FF6B35;
  font-weight: bold;
  margin-left: 2px;
  font-size: 1em;
}

/* line 977, app/assets/stylesheets/components/_omnipresent_chat.scss */
.message:not(.streaming) .streaming-cursor {
  display: none;
}

@keyframes cursor-blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}

/* line 987, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-generators-menu {
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* line 992, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-generators-menu .generators-toggle-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: #F6E5B3;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 1007, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-generators-menu .generators-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 107, 53, 0.4);
}

/* line 1013, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-generators-menu .generators-toggle-btn i:first-child {
  color: #FF6B35;
}

/* line 1017, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-generators-menu .generators-toggle-btn i.fa-chevron-up {
  transition: transform 0.3s ease;
}

/* line 1020, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-generators-menu .generators-toggle-btn i.fa-chevron-up.rotated {
  transform: rotate(180deg);
}

/* line 1026, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-generators-menu .generators-toggle-btn span {
  flex: 1;
  margin: 0 10px;
}

/* line 1032, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-generators-menu .generators-dropdown {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 1038, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-generators-menu .generators-dropdown.hidden {
  display: none;
}

/* line 1043, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-generators-menu .generator-item-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

/* line 1057, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-generators-menu .generator-item-mini:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateX(4px);
  color: #F6E5B3;
  text-decoration: none;
}

/* line 1064, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-generators-menu .generator-item-mini:hover i {
  color: #FF6B35;
}

/* line 1069, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-generators-menu .generator-item-mini i {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

/* line 1078, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-overlay-input {
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* line 1083, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-overlay-input .chat-input-group {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}

/* line 1089, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-overlay-input .chat-input-field {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  line-height: 1.5;
  resize: none;
  min-height: 42px;
  max-height: 120px;
  font-family: inherit;
  transition: all 0.3s ease;
}

/* line 1104, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-overlay-input .chat-input-field::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 1108, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-overlay-input .chat-input-field:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 107, 53, 0.4);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* line 1116, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-overlay-input .chat-voice-btn {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
}

/* line 1132, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-overlay-input .chat-voice-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 107, 53, 0.4);
}

/* line 1138, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-overlay-input .chat-voice-btn i {
  font-size: 1rem;
  z-index: 1;
  position: relative;
}

/* line 1144, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-overlay-input .chat-voice-btn .voice-pulse {
  display: none;
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(255, 107, 53, 0.6);
  animation: voicePulse 1.5s ease-in-out infinite;
}

/* line 1154, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-overlay-input .chat-voice-btn.voice-listening {
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

/* line 1160, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-overlay-input .chat-voice-btn.voice-listening .voice-pulse {
  display: block;
}

/* line 1166, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-overlay-input .chat-voice-btn.voice-transcribing {
  background: rgba(255, 107, 53, 0.15);
  color: #F7931E;
  border-color: rgba(255, 107, 53, 0.3);
  pointer-events: none;
}

/* line 1172, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-overlay-input .chat-voice-btn.voice-transcribing i {
  animation: voiceSpin 1s linear infinite;
}

/* line 1176, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-overlay-input .chat-voice-btn.voice-transcribing i::before {
  content: "\f110";
}

/* line 1182, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-overlay-input .chat-send-btn {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  border: none;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* line 1197, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-overlay-input .chat-send-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(255, 107, 53, 0.5);
}

/* line 1202, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-overlay-input .chat-send-btn:active {
  transform: scale(0.95);
}

/* line 1206, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-overlay-input .chat-send-btn i {
  font-size: 1rem;
}

@keyframes voicePulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes voiceSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* line 1226, app/assets/stylesheets/components/_omnipresent_chat.scss */
.voice-toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(20, 13, 35, 0.95);
  color: rgba(255, 255, 255, 0.9);
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 107, 53, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  z-index: 100001;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  max-width: 320px;
  text-align: center;
}

/* line 1245, app/assets/stylesheets/components/_omnipresent_chat.scss */
.voice-toast.voice-toast-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* line 1252, app/assets/stylesheets/components/_omnipresent_chat.scss */
.voice-auto-submit-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 12px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 107, 53, 0.15);
  border-radius: 8px;
  margin-bottom: 6px;
}

/* line 1264, app/assets/stylesheets/components/_omnipresent_chat.scss */
.voice-auto-submit-hint .voice-cancel-submit {
  background: none;
  border: 1px solid rgba(255, 107, 53, 0.5);
  color: #ff6b35;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 1274, app/assets/stylesheets/components/_omnipresent_chat.scss */
.voice-auto-submit-hint .voice-cancel-submit:hover {
  background: rgba(255, 107, 53, 0.2);
}

@keyframes slideInMessage {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes typing {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  30% {
    transform: translateY(-10px);
    opacity: 1;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes pulse-subtle {
  0%, 100% {
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.4);
  }
  50% {
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.6);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* line 1333, app/assets/stylesheets/components/_omnipresent_chat.scss */
.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: flex-start;
}

/* line 1342, app/assets/stylesheets/components/_omnipresent_chat.scss */
.dialog-actions .action-btn {
  all: unset;
  box-sizing: border-box;
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  line-height: 1.2;
  white-space: nowrap;
  transition: all 0.25s ease;
  display: inline-block;
}

/* line 1356, app/assets/stylesheets/components/_omnipresent_chat.scss */
.dialog-actions .action-btn[data-value="confirm"] {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

/* line 1361, app/assets/stylesheets/components/_omnipresent_chat.scss */
.dialog-actions .action-btn[data-value="confirm"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.5);
}

/* line 1368, app/assets/stylesheets/components/_omnipresent_chat.scss */
.dialog-actions .action-btn[data-value="cancel"] {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 1373, app/assets/stylesheets/components/_omnipresent_chat.scss */
.dialog-actions .action-btn[data-value="cancel"]:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

/* line 1381, app/assets/stylesheets/components/_omnipresent_chat.scss */
.dialog-actions .action-btn:not([data-value="confirm"]):not([data-value="cancel"]) {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(247, 147, 30, 0.1) 100%);
  color: #F6E5B3;
  border: 1px solid rgba(255, 107, 53, 0.4);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* line 1387, app/assets/stylesheets/components/_omnipresent_chat.scss */
.dialog-actions .action-btn:not([data-value="confirm"]):not([data-value="cancel"]):hover {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: white;
  transform: translateY(-2px);
}

/* line 1396, app/assets/stylesheets/components/_omnipresent_chat.scss */
.dialog-actions a.action-btn.action-btn-primary {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

/* line 1412, app/assets/stylesheets/components/_omnipresent_chat.scss */
.dialog-actions a.action-btn.action-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
  color: white;
  text-decoration: none;
}

/* line 1422, app/assets/stylesheets/components/_omnipresent_chat.scss */
.action-confirmation {
  padding: 1rem;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 12px;
  margin-top: 0.5rem;
}

/* line 1429, app/assets/stylesheets/components/_omnipresent_chat.scss */
.action-confirmation p {
  margin: 0 0 1rem 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* line 1436, app/assets/stylesheets/components/_omnipresent_chat.scss */
.action-confirmation .confirmation-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}

/* line 1441, app/assets/stylesheets/components/_omnipresent_chat.scss */
.action-confirmation .confirmation-actions button {
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 1453, app/assets/stylesheets/components/_omnipresent_chat.scss */
.action-confirmation .confirmation-actions button.btn-confirm {
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #22c55e;
}

/* line 1458, app/assets/stylesheets/components/_omnipresent_chat.scss */
.action-confirmation .confirmation-actions button.btn-confirm:hover {
  background: rgba(34, 197, 94, 0.3);
  border-color: rgba(34, 197, 94, 0.5);
  transform: translateY(-1px);
}

/* line 1465, app/assets/stylesheets/components/_omnipresent_chat.scss */
.action-confirmation .confirmation-actions button.btn-cancel {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
}

/* line 1470, app/assets/stylesheets/components/_omnipresent_chat.scss */
.action-confirmation .confirmation-actions button.btn-cancel:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

/* line 1477, app/assets/stylesheets/components/_omnipresent_chat.scss */
.action-confirmation .confirmation-actions button i {
  font-size: 0.85rem;
}

/* line 1487, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1.5rem 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(255, 107, 53, 0.3);
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

/* line 1498, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-title .title-icon {
  color: #FF6B35;
  flex-shrink: 0;
}

/* line 1505, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-separator {
  margin: 1.5rem 0;
}

/* line 1508, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-separator .separator-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3) 20%, rgba(255, 107, 53, 0.5) 50%, rgba(255, 107, 53, 0.3) 80%, transparent);
  position: relative;
}

/* line 1519, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-separator .separator-line::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: #FF6B35;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 107, 53, 0.6);
}

/* line 1535, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  margin: 0.25rem 0.25rem 0.25rem 0;
  white-space: nowrap;
  border: 1px solid;
}

/* line 1546, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-badge.chat-badge-default {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}

/* line 1552, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-badge.chat-badge-success {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

/* line 1558, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-badge.chat-badge-warning {
  background: rgba(251, 191, 36, 0.15);
  border-color: rgba(251, 191, 36, 0.3);
  color: #fbbf24;
}

/* line 1564, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-badge.chat-badge-error {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

/* line 1570, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-badge.chat-badge-info {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
  color: #3b82f6;
}

/* line 1576, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-badge.chat-badge-primary {
  background: rgba(255, 107, 53, 0.15);
  border-color: rgba(255, 107, 53, 0.3);
  color: #FF6B35;
}

/* line 1584, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-list {
  margin: 1rem 0;
  padding-left: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

/* line 1589, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-list li {
  margin: 0.5rem 0;
  line-height: 1.6;
  position: relative;
}

/* line 1594, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-list li::marker {
  color: #FF6B35;
  font-weight: bold;
}

/* line 1599, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-list li strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

/* line 1604, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-list li code {
  background: rgba(255, 107, 53, 0.15);
  color: #F7931E;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 0.9em;
}

/* line 1613, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-list li a {
  color: #F7931E;
  text-decoration: underline;
  text-decoration-color: rgba(247, 147, 30, 0.3);
  transition: all 0.2s ease;
}

/* line 1619, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-list li a:hover {
  text-decoration-color: #F7931E;
  color: #FF6B35;
}

/* line 1627, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-list[type="1"] li::marker {
  font-weight: 600;
}

/* line 1633, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-code-block {
  margin: 1rem 0;
  border-radius: 12px;
  background: rgba(20, 16, 43, 0.6);
  border: 1px solid rgba(255, 107, 53, 0.2);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

/* line 1641, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-code-block .code-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: rgba(255, 107, 53, 0.1);
  border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

/* line 1649, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-code-block .code-header .code-language {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #FF6B35;
  letter-spacing: 0.5px;
}

/* line 1657, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-code-block .code-header .code-copy-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 1671, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-code-block .code-header .code-copy-btn svg {
  width: 14px;
  height: 14px;
}

/* line 1676, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-code-block .code-header .code-copy-btn:hover {
  background: rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.4);
  color: #FF6B35;
  transform: translateY(-1px);
}

/* line 1683, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-code-block .code-header .code-copy-btn.copied {
  background: rgba(34, 197, 94, 0.2);
  border-color: rgba(34, 197, 94, 0.4);
  color: #22c55e;
}

/* line 1691, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-code-block pre {
  margin: 0;
  padding: 1rem;
  overflow-x: auto;
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 0.85rem;
  line-height: 1.6;
}

/* line 1699, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-code-block pre code {
  color: rgba(255, 255, 255, 0.95);
  background: none;
}

/* line 1706, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-code-block pre::-webkit-scrollbar {
  height: 8px;
}

/* line 1710, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-code-block pre::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

/* line 1715, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-code-block pre::-webkit-scrollbar-thumb {
  background: rgba(255, 107, 53, 0.3);
  border-radius: 4px;
}

/* line 1719, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-code-block pre::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 107, 53, 0.5);
}

/* line 1726, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-alert {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 12px;
  border: 1px solid;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

/* line 1736, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-alert .alert-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  line-height: 1;
}

/* line 1742, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-alert .alert-content {
  flex: 1;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* line 1747, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-alert .alert-content strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

/* line 1752, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-alert .alert-content code {
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 0.9em;
}

/* line 1760, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-alert.chat-alert-info {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
}

/* line 1764, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-alert.chat-alert-info .alert-icon {
  color: #3b82f6;
}

/* line 1768, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-alert.chat-alert-info .alert-content code {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
}

/* line 1774, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-alert.chat-alert-warning {
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.3);
}

/* line 1778, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-alert.chat-alert-warning .alert-icon {
  color: #fbbf24;
}

/* line 1782, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-alert.chat-alert-warning .alert-content code {
  background: rgba(251, 191, 36, 0.15);
  color: #fcd34d;
}

/* line 1788, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-alert.chat-alert-success {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.3);
}

/* line 1792, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-alert.chat-alert-success .alert-icon {
  color: #22c55e;
}

/* line 1796, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-alert.chat-alert-success .alert-content code {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}

/* line 1802, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-alert.chat-alert-error {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
}

/* line 1806, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-alert.chat-alert-error .alert-icon {
  color: #ef4444;
}

/* line 1810, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-alert.chat-alert-error .alert-content code {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
}

/* line 1816, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-alert.chat-alert-tip {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.3);
}

/* line 1820, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-alert.chat-alert-tip .alert-icon {
  color: #FF6B35;
}

/* line 1824, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-alert.chat-alert-tip .alert-content code {
  background: rgba(255, 107, 53, 0.15);
  color: #F7931E;
}

/* line 1830, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-alert.chat-alert-data {
  background: rgba(168, 85, 247, 0.1);
  border-color: rgba(168, 85, 247, 0.3);
}

/* line 1834, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-alert.chat-alert-data .alert-icon {
  color: #a855f7;
}

/* line 1838, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-alert.chat-alert-data .alert-content code {
  background: rgba(168, 85, 247, 0.15);
  color: #c084fc;
}

/* line 1844, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-alert:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* line 1851, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-paragraph {
  margin: 0.75rem 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

/* line 1856, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-paragraph strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

/* line 1861, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-paragraph em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
}

/* line 1866, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-paragraph code {
  background: rgba(255, 107, 53, 0.15);
  color: #F7931E;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 0.9em;
}

/* line 1875, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-paragraph a {
  color: #F7931E;
  text-decoration: underline;
  text-decoration-color: rgba(247, 147, 30, 0.3);
  transition: all 0.2s ease;
}

/* line 1881, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-paragraph a:hover {
  text-decoration-color: #F7931E;
  color: #FF6B35;
}

/* line 1886, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-paragraph a.chat-action-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

/* line 1898, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-paragraph a.chat-action-link:hover {
  background: rgba(255, 107, 53, 0.25);
  border-color: rgba(255, 107, 53, 0.5);
  transform: translateX(2px);
}

/* line 1908, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-mermaid-container {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: rgba(20, 16, 43, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  backdrop-filter: blur(10px);
  overflow-x: auto;
  animation: slideUpFadeIn 0.4s ease-out;
}

/* line 1917, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-mermaid-container .chat-mermaid-diagram {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}

/* line 1924, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-mermaid-container .chat-mermaid-diagram svg {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

/* line 1931, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-mermaid-container .chat-mermaid-diagram .node rect,
.chat-mermaid-container .chat-mermaid-diagram .node circle,
.chat-mermaid-container .chat-mermaid-diagram .node ellipse,
.chat-mermaid-container .chat-mermaid-diagram .node polygon {
  fill: rgba(255, 107, 53, 0.2) !important;
  stroke: #FF6B35 !important;
  stroke-width: 2px !important;
}

/* line 1940, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-mermaid-container .chat-mermaid-diagram .edgePath path {
  stroke: #F6E5B3 !important;
  stroke-width: 2px !important;
}

/* line 1945, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-mermaid-container .chat-mermaid-diagram .edgeLabel {
  background-color: rgba(20, 16, 43, 0.9) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 4px 8px !important;
  border-radius: 6px !important;
}

/* line 1952, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-mermaid-container .chat-mermaid-diagram .nodeLabel {
  color: rgba(255, 255, 255, 0.95) !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 14px !important;
}

/* line 1964, app/assets/stylesheets/components/_omnipresent_chat.scss */
.trend-up {
  color: #22c55e !important;
  font-weight: 600 !important;
}

/* line 1969, app/assets/stylesheets/components/_omnipresent_chat.scss */
.trend-down {
  color: #ef4444 !important;
  font-weight: 600 !important;
}

/* line 1974, app/assets/stylesheets/components/_omnipresent_chat.scss */
.trend-stable {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* line 1979, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-chart-container {
  margin: 1.5rem 0 !important;
  padding: 1.5rem !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border-radius: 12px !important;
  border: 1px solid rgba(195, 135, 97, 0.15) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1) !important;
  position: relative;
  animation: slideUpFadeIn 0.4s ease-out;
}

/* line 1990, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-chart-container .chat-chart-canvas {
  width: 100% !important;
  max-height: 400px;
  display: block;
}

@keyframes slideUpFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* line 2012, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-table-container {
  margin: 1.5rem 0 !important;
  overflow-x: auto !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15) !important;
  animation: slideUpFadeIn 0.4s ease-out;
}

/* line 2024, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-table-container .chat-table {
  width: 100% !important;
  border-collapse: collapse !important;
  border-spacing: 0 !important;
  font-size: 0.87rem !important;
  background: transparent !important;
}

/* line 2032, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-table-container .chat-table thead {
  background: none !important;
  background-color: transparent !important;
  background-image: none !important;
  border: none !important;
}

/* line 2038, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-table-container .chat-table thead tr {
  background: none !important;
  background-color: transparent !important;
  border-bottom: none !important;
}

/* line 2044, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-table-container .chat-table thead th {
  padding: 10px 16px !important;
  text-align: left !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.45) !important;
  white-space: nowrap !important;
  font-size: 0.72rem !important;
  text-transform: uppercase !important;
  letter-spacing: 1.2px !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  background: none !important;
  background-color: rgba(255, 255, 255, 0.02) !important;
  position: relative !important;
}

/* line 2066, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-table-container .chat-table tbody {
  background: transparent !important;
}

/* line 2069, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-table-container .chat-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
  background: transparent !important;
  transition: background-color 0.2s ease !important;
}

/* line 2074, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-table-container .chat-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03) !important;
  background-color: rgba(255, 255, 255, 0.03) !important;
}

/* line 2079, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-table-container .chat-table tbody tr:last-child {
  border-bottom: none !important;
}

/* line 2084, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-table-container .chat-table tbody td {
  padding: 9px 16px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  vertical-align: middle !important;
  background: none !important;
  background-color: transparent !important;
  border: none !important;
}

/* line 2093, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-table-container .chat-table tbody td a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.3rem !important;
  padding: 0.2rem 0.65rem !important;
  background: rgba(229, 168, 46, 0.08) !important;
  border: 1px solid rgba(229, 168, 46, 0.18) !important;
  border-radius: 6px !important;
  color: rgba(229, 168, 46, 0.85) !important;
  text-decoration: none !important;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  transition: all 0.2s ease !important;
}

/* line 2107, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-table-container .chat-table tbody td a::after {
  content: '→' !important;
  font-size: 0.85em !important;
  opacity: 0.6 !important;
  transition: all 0.2s ease !important;
}

/* line 2114, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-table-container .chat-table tbody td a:hover {
  background: rgba(229, 168, 46, 0.14) !important;
  border-color: rgba(229, 168, 46, 0.3) !important;
  color: #F6E5B3 !important;
}

/* line 2119, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-table-container .chat-table tbody td a:hover::after {
  opacity: 1 !important;
  transform: translateX(2px) !important;
}

/* line 2126, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-table-container .chat-table tbody td code {
  background: rgba(255, 255, 255, 0.06) !important;
  padding: 2px 6px !important;
  border-radius: 4px !important;
  font-family: 'Courier New', monospace !important;
  font-size: 0.85em !important;
  color: rgba(246, 229, 179, 0.8) !important;
}

/* line 2135, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-table-container .chat-table tbody td strong {
  color: rgba(255, 255, 255, 0.92) !important;
  font-weight: 600 !important;
}

/* line 2144, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-table-container::-webkit-scrollbar {
  height: 4px !important;
}

/* line 2148, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-table-container::-webkit-scrollbar-track {
  background: transparent !important;
}

/* line 2152, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-table-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1) !important;
  border-radius: 2px !important;
}

/* line 2156, app/assets/stylesheets/components/_omnipresent_chat.scss */
.chat-table-container::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2) !important;
}

/* line 2164, app/assets/stylesheets/components/_omnipresent_chat.scss */
.dialog-progress-message {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85em;
  margin: 8px 0;
  font-style: italic;
}

/* line 2171, app/assets/stylesheets/components/_omnipresent_chat.scss */
.dialog-progress-message .fa-clipboard-list {
  margin-right: 6px;
}

/* line 2176, app/assets/stylesheets/components/_omnipresent_chat.scss */
.dialog-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 2185, app/assets/stylesheets/components/_omnipresent_chat.scss */
.suggestion-btn {
  padding: 10px 18px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(247, 147, 30, 0.1) 100%);
  border: 1px solid rgba(255, 107, 53, 0.4);
  color: #F6E5B3;
  border-radius: 24px;
  cursor: pointer;
  font-size: 0.9em;
  font-weight: 500;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
}

/* line 2198, app/assets/stylesheets/components/_omnipresent_chat.scss */
.suggestion-btn:hover {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: white;
  border-color: #FF6B35;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

/* line 2207, app/assets/stylesheets/components/_omnipresent_chat.scss */
.dialog-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: flex-start;
}

/* line 2216, app/assets/stylesheets/components/_omnipresent_chat.scss */
.dialog-action-confirm {
  padding: 10px 24px;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: white;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9em;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

/* line 2228, app/assets/stylesheets/components/_omnipresent_chat.scss */
.dialog-action-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.5);
}

/* line 2234, app/assets/stylesheets/components/_omnipresent_chat.scss */
.dialog-action-cancel {
  padding: 10px 24px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9em;
  transition: all 0.25s ease;
}

/* line 2245, app/assets/stylesheets/components/_omnipresent_chat.scss */
.dialog-action-cancel:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

/* line 2252, app/assets/stylesheets/components/_omnipresent_chat.scss */
.dialog-action-default {
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(247, 147, 30, 0.1) 100%);
  color: #F6E5B3;
  border: 1px solid rgba(255, 107, 53, 0.4);
  border-radius: 24px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9em;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* line 2264, app/assets/stylesheets/components/_omnipresent_chat.scss */
.dialog-action-default:hover {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: white;
  transform: translateY(-2px);
}

/* line 2272, app/assets/stylesheets/components/_omnipresent_chat.scss */
.dialog-multi-field-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 2282, app/assets/stylesheets/components/_omnipresent_chat.scss */
.dialog-multi-field-form .form-title {
  font-size: 1em;
  font-weight: 600;
  color: #F6E5B3;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 2292, app/assets/stylesheets/components/_omnipresent_chat.scss */
.dialog-multi-field-form .form-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* line 2298, app/assets/stylesheets/components/_omnipresent_chat.scss */
.dialog-multi-field-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* line 2304, app/assets/stylesheets/components/_omnipresent_chat.scss */
.dialog-multi-field-form .field-label {
  font-size: 0.85em;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* line 2309, app/assets/stylesheets/components/_omnipresent_chat.scss */
.dialog-multi-field-form .field-label .required-asterisk {
  color: #FF6B35;
}

/* line 2313, app/assets/stylesheets/components/_omnipresent_chat.scss */
.dialog-multi-field-form .field-label .lock-icon {
  font-size: 0.75em;
  margin-left: 4px;
  color: rgba(255, 107, 53, 0.6);
}

/* line 2320, app/assets/stylesheets/components/_omnipresent_chat.scss */
.dialog-multi-field-form .form-input {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: white;
  font-size: 0.95em;
  outline: none;
  transition: all 0.2s ease;
}

/* line 2330, app/assets/stylesheets/components/_omnipresent_chat.scss */
.dialog-multi-field-form .form-input:focus {
  border-color: #FF6B35;
  background: rgba(255, 107, 53, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}

/* line 2336, app/assets/stylesheets/components/_omnipresent_chat.scss */
.dialog-multi-field-form .form-input.form-input-readonly {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.3);
  color: #F6E5B3;
  cursor: not-allowed;
  opacity: 0.9;
}

/* line 2344, app/assets/stylesheets/components/_omnipresent_chat.scss */
.dialog-multi-field-form .form-input.field-error {
  border-color: #ff4444;
}

/* line 2349, app/assets/stylesheets/components/_omnipresent_chat.scss */
.dialog-multi-field-form .form-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  justify-content: flex-start;
}

/* line 2357, app/assets/stylesheets/components/_omnipresent_chat.scss */
.form-submit-btn {
  padding: 12px 28px;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: white;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9em;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 2372, app/assets/stylesheets/components/_omnipresent_chat.scss */
.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.5);
}

/* line 2378, app/assets/stylesheets/components/_omnipresent_chat.scss */
.form-cancel-btn {
  padding: 12px 24px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9em;
  transition: all 0.25s ease;
}

/* line 2389, app/assets/stylesheets/components/_omnipresent_chat.scss */
.form-cancel-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

/* line 2398, app/assets/stylesheets/components/_omnipresent_chat.scss */
.message-action-buttons {
  display: flex;
  gap: 8px;
  margin: 12px 0;
  flex-wrap: wrap;
}

/* line 2405, app/assets/stylesheets/components/_omnipresent_chat.scss */
.action-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.9em;
  font-weight: 500;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

/* line 2419, app/assets/stylesheets/components/_omnipresent_chat.scss */
.action-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
  color: white;
  text-decoration: none;
}

/* line 2428, app/assets/stylesheets/components/_omnipresent_chat.scss */
.action-link {
  color: #C38761;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 500;
  display: inline-block;
  margin: 4px 0;
}

/* line 2, app/assets/stylesheets/components/_ai_feedback.scss */
.message-feedback {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* line 10, app/assets/stylesheets/components/_ai_feedback.scss */
.feedback-btn {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  padding: 4px 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #666;
  font-size: 14px;
}

/* line 20, app/assets/stylesheets/components/_ai_feedback.scss */
.feedback-btn:hover:not(:disabled) {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.3);
}

/* line 25, app/assets/stylesheets/components/_ai_feedback.scss */
.feedback-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* line 30, app/assets/stylesheets/components/_ai_feedback.scss */
.feedback-btn.active, .feedback-btn.feedback-sent {
  background: rgba(0, 123, 255, 0.1);
  border-color: #007bff;
  color: #007bff;
}

/* line 37, app/assets/stylesheets/components/_ai_feedback.scss */
.feedback-btn i {
  font-size: 14px;
}

/* line 42, app/assets/stylesheets/components/_ai_feedback.scss */
.feedback-btn .fa-thumbs-up,
.feedback-btn .fa-thumbs-down {
  color: #FF6B35;
}

/* line 48, app/assets/stylesheets/components/_ai_feedback.scss */
.feedback-btn:hover:not(:disabled) .fa-thumbs-up,
.feedback-btn:hover:not(:disabled) .fa-thumbs-down {
  color: #F7931E;
}

/* line 55, app/assets/stylesheets/components/_ai_feedback.scss */
.feedback-positive.feedback-sent {
  background: rgba(40, 167, 69, 0.1);
  border-color: #28a745;
  color: #28a745;
}

/* line 61, app/assets/stylesheets/components/_ai_feedback.scss */
.feedback-negative.feedback-sent {
  background: rgba(220, 53, 69, 0.1);
  border-color: #dc3545;
  color: #dc3545;
}

/* line 13, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* line 25, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal.visible {
  display: flex;
  opacity: 1;
  visibility: visible;
}

/* line 32, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(1px);
  cursor: pointer;
}

/* line 44, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-content {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 1000px;
  height: 700px;
  max-height: calc(100vh - 48px);
  background: linear-gradient(135deg, rgba(20, 13, 35, 0.98) 0%, rgba(100, 1, 39, 0.98) 100%);
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  z-index: 10001;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  cursor: default;
  user-select: none;
  scrollbar-width: thin;
  scrollbar-color: #C38761 rgba(255, 255, 255, 0.05);
}

/* line 65, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal.visible .morning-briefing-modal .briefing-content {
  animation: slideInBriefing 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 70, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-content::-webkit-scrollbar {
  width: 10px;
}

/* line 74, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

/* line 79, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-content::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

/* line 85, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-content::-webkit-scrollbar-thumb:hover {
  background: #D4A259;
  background-clip: padding-box;
}

/* line 96, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 103, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-header h2, .morning-briefing-modal .briefing-header .h2 {
  margin: 0;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.3;
}

/* line 111, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-header .briefing-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 126, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-header .briefing-close:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

/* line 133, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body {
  padding: 1.5rem;
  min-height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: #C38761 rgba(255, 255, 255, 0.05);
}

/* line 141, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body::-webkit-scrollbar {
  width: 10px;
}

/* line 145, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

/* line 150, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body::-webkit-scrollbar-thumb {
  background: #C38761;
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

/* line 156, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body::-webkit-scrollbar-thumb:hover {
  background: #D4A259;
  background-clip: padding-box;
}

/* line 165, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .briefing-loading {
  text-align: center;
  padding: 2rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 170, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .briefing-loading i {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: rgba(125, 211, 252, 0.7);
}

/* line 176, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .briefing-loading p {
  margin: 0;
  font-size: 1rem;
}

/* line 182, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .briefing-empty {
  text-align: center;
  padding: 2rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 187, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .briefing-empty p {
  margin: 0;
  font-size: 1.1rem;
}

/* line 193, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .briefing-section {
  margin-bottom: 2rem;
}

/* line 196, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .briefing-section:last-child {
  margin-bottom: 0;
}

/* line 200, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .briefing-section h3, .morning-briefing-modal .briefing-body .briefing-section .h3 {
  margin: 0 0 1rem 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 209, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .briefing-section.urgent h3, .morning-briefing-modal .briefing-body .briefing-section.urgent .h3 {
  color: #ef4444;
}

/* line 213, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .briefing-section.suggestions h3, .morning-briefing-modal .briefing-body .briefing-section.suggestions .h3 {
  color: #fbbf24;
}

/* line 217, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .briefing-section.goals h3, .morning-briefing-modal .briefing-body .briefing-section.goals .h3 {
  color: #34d399;
}

/* line 221, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .briefing-section.stats h3, .morning-briefing-modal .briefing-body .briefing-section.stats .h3 {
  color: #7dd3fc;
}

/* line 226, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .briefing-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border-left: 3px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 236, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .briefing-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateX(4px);
}

/* line 242, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .briefing-item.urgent {
  border-left-color: #ef4444;
}

/* line 246, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .briefing-item.warning {
  border-left-color: #fbbf24;
}

/* line 250, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .briefing-item.info {
  border-left-color: #7dd3fc;
}

/* line 254, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .briefing-item.habit {
  border-left-color: #a78bfa;
}

/* line 258, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .briefing-item.opportunity {
  border-left-color: #34d399;
}

/* line 262, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .briefing-item .item-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

/* line 275, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .briefing-item .item-content {
  flex: 1;
}

/* line 278, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .briefing-item .item-content h4, .morning-briefing-modal .briefing-body .briefing-item .item-content .h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

/* line 285, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .briefing-item .item-content p {
  margin: 0 0 0.75rem 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* line 292, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .briefing-item .item-content .item-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* line 300, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .briefing-action-btn {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
}

/* line 313, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .briefing-action-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

/* line 320, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .goal-progress {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

/* line 325, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .goal-progress .goal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* line 333, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .goal-progress .goal-header .goal-amount {
  font-weight: 600;
  color: #ffffff;
}

/* line 339, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .goal-progress .goal-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

/* line 347, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .goal-progress .goal-bar .goal-fill {
  height: 100%;
  background: linear-gradient(90deg, #34d399 0%, #10b981 100%);
  transition: width 0.3s ease;
}

/* line 354, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .goal-progress .goal-status {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

/* line 361, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .goal-progress.at_risk .goal-fill {
  background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
}

/* line 365, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .goal-progress.behind .goal-fill {
  background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
}

/* line 370, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .quick-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

/* line 375, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .quick-stats-grid .stat-item {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 383, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .quick-stats-grid .stat-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* line 388, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .quick-stats-grid .stat-item .stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}

/* line 394, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .quick-stats-grid .stat-item .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

/* line 401, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .quick-stats-grid .stat-item .stat-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* line 408, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .quick-stats-grid .stat-item .stat-badge.urgent {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

/* line 413, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .quick-stats-grid .stat-item .stat-badge.warning {
  background: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
}

/* line 418, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .quick-stats-grid .stat-item .stat-badge.info {
  background: rgba(125, 211, 252, 0.2);
  color: #7dd3fc;
}

/* line 423, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .quick-stats-grid .stat-item .stat-badge.success {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

/* line 428, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .quick-stats-grid .stat-item .stat-badge.neutral {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

/* line 434, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .quick-stats-grid .stat-item .stat-badges {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
  margin-top: 0.5rem;
}

/* line 444, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .quick-stats-grid .stat-item.opportunities-stat .stat-badges .stat-badge {
  display: block;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 455, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .quick-stats-grid .stat-item.welcome-stat {
  grid-column: 1 / -1;
  padding: 1.5rem;
}

/* line 459, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .quick-stats-grid .stat-item.welcome-stat .stat-tip {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
  font-style: italic;
}

/* line 470, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .enriched-kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
}

/* line 476, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .kpi-card {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 483, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .kpi-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* line 488, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .kpi-card.kpi-alert {
  border-color: rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.08);
}

/* line 493, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .kpi-card .kpi-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

/* line 500, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .kpi-card .kpi-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* line 513, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .kpi-card .kpi-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.2;
}

/* line 519, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .kpi-card .kpi-body {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

/* line 526, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .kpi-card .kpi-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
}

/* line 532, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .kpi-card .kpi-sub-value {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.15rem;
}

/* line 538, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .kpi-card .kpi-sparkline {
  display: block;
  width: 100%;
  height: 32px;
  margin-top: 0.5rem;
}

/* line 546, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .trend-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

/* line 554, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .trend-indicator.trend-up {
  color: #34d399;
}

/* line 555, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .trend-indicator.trend-down {
  color: #ef4444;
}

/* line 556, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .trend-indicator.trend-stable {
  color: #fbbf24;
}

/* line 558, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .trend-indicator .trend-arrow {
  font-size: 0.9rem;
}

/* line 559, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .trend-indicator .trend-pct {
  font-size: 0.75rem;
}

/* line 564, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .commercial-health h3, .morning-briefing-modal .briefing-body .commercial-health .h3 {
  color: #f97316;
}

/* line 567, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .health-score-section {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

/* line 576, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .health-score-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
}

/* line 588, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .health-score-badge.health-excellent {
  border-color: #34d399;
  color: #34d399;
}

/* line 589, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .health-score-badge.health-bon {
  border-color: #fbbf24;
  color: #fbbf24;
}

/* line 590, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .health-score-badge.health-surveiller {
  border-color: #f97316;
  color: #f97316;
}

/* line 591, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .health-score-badge.health-critique {
  border-color: #ef4444;
  color: #ef4444;
}

/* line 593, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .health-score-badge .health-score-value {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

/* line 599, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .health-score-badge .health-score-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.2rem;
}

/* line 607, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .health-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* line 615, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .health-bar-item .health-bar-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.35rem;
}

/* line 621, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .health-bar-item .health-bar-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* line 626, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .health-bar-item .health-bar-detail {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* line 631, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .health-bar-item .health-bar-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

/* line 639, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .health-bar-item .health-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.6s ease;
}

/* line 644, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .health-bar-item .health-bar-fill.bar-excellent {
  background: #34d399;
}

/* line 645, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .health-bar-item .health-bar-fill.bar-bon {
  background: #fbbf24;
}

/* line 646, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .health-bar-item .health-bar-fill.bar-surveiller {
  background: #f97316;
}

/* line 647, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .health-bar-item .health-bar-fill.bar-critique {
  background: #ef4444;
}

/* line 653, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .this-week h3, .morning-briefing-modal .briefing-body .this-week .h3 {
  color: #7dd3fc;
}

/* line 656, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .week-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* line 662, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .week-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 3px solid rgba(255, 255, 255, 0.15);
  transition: all 0.2s ease;
}

/* line 672, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .week-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(3px);
}

/* line 677, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .week-item.week-item-appointment {
  border-left-color: #7dd3fc;
}

/* line 678, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .week-item.week-item-event {
  border-left-color: #a78bfa;
}

/* line 679, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .week-item.week-item-deadline {
  border-left-color: #ef4444;
}

/* line 680, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .week-item.week-item-invoice {
  border-left-color: #fbbf24;
}

/* line 681, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .week-item.week-item-followup {
  border-left-color: #f97316;
}

/* line 683, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .week-item .week-item-date {
  width: 52px;
  flex-shrink: 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

/* line 691, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .week-item .week-item-icon {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* line 704, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .week-item .week-item-content {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

/* line 712, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .week-item .week-item-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 720, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .week-item .week-item-detail {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  margin-left: auto;
  flex-shrink: 0;
}

/* line 731, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .comparison h3, .morning-briefing-modal .briefing-body .comparison .h3 {
  color: #34d399;
}

/* line 734, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .comparison-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
}

/* line 740, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .comparison-card {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 746, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .comparison-card .comparison-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.75rem;
  text-align: center;
}

/* line 753, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .comparison-card .comparison-values {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

/* line 760, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .comparison-card .comparison-current,
.morning-briefing-modal .briefing-body .comparison-card .comparison-previous {
  text-align: center;
  flex: 1;
}

/* line 766, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .comparison-card .comparison-period {
  display: block;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

/* line 775, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .comparison-card .comparison-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
}

/* line 781, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .comparison-card .comparison-previous .comparison-value {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

/* line 786, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .comparison-card .comparison-trend {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 792, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .comparison-card .comparison-trend .trend-indicator {
  font-size: 1rem;
}

/* line 795, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .comparison-card .comparison-trend .trend-indicator .trend-arrow {
  font-size: 1.2rem;
}

/* line 800, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .briefing-info-note {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 805, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .briefing-info-note .info-note-content {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border-left: 3px solid rgba(125, 211, 252, 0.3);
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}

/* line 817, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .briefing-info-note .info-note-content i {
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* line 822, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-body .briefing-info-note .info-note-content span {
  flex: 1;
}

/* line 829, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-footer {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 836, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-footer .btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

/* line 845, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-footer .btn.btn-secondary, .morning-briefing-modal .briefing-footer .btn.crm-action-button.crm-action-button-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

/* line 849, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-footer .btn.btn-secondary:hover, .morning-briefing-modal .briefing-footer .btn.crm-action-button.crm-action-button-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* line 855, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-footer .btn.btn-primary, .morning-briefing-modal .briefing-footer .btn.crm-action-button.crm-action-button-primary {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* line 861, app/assets/stylesheets/components/_morning_briefing.scss */
.morning-briefing-modal .briefing-footer .btn.btn-primary:hover, .morning-briefing-modal .briefing-footer .btn.crm-action-button.crm-action-button-primary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* line 2, app/assets/stylesheets/components/_agent_autonomy.scss */
.autonomy-levels-form {
  width: 100%;
}

/* line 6, app/assets/stylesheets/components/_agent_autonomy.scss */
.autonomy-section-card {
  width: 100%;
  max-width: 100%;
}

/* line 11, app/assets/stylesheets/components/_agent_autonomy.scss */
.autonomy-levels {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

/* line 18, app/assets/stylesheets/components/_agent_autonomy.scss */
.autonomy-level-card {
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
  cursor: pointer;
}

/* line 26, app/assets/stylesheets/components/_agent_autonomy.scss */
.autonomy-level-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

/* line 31, app/assets/stylesheets/components/_agent_autonomy.scss */
.autonomy-level-card.active {
  border-color: rgba(125, 211, 252, 0.6);
  background: rgba(125, 211, 252, 0.1);
  box-shadow: 0 4px 12px rgba(125, 211, 252, 0.2);
}

/* line 37, app/assets/stylesheets/components/_agent_autonomy.scss */
.autonomy-level-card .autonomy-level-label {
  display: block;
  cursor: pointer;
  margin: 0;
}

/* line 42, app/assets/stylesheets/components/_agent_autonomy.scss */
.autonomy-level-card .autonomy-level-label input[type="radio"] {
  display: none;
}

/* line 47, app/assets/stylesheets/components/_agent_autonomy.scss */
.autonomy-level-card .level-content {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

/* line 53, app/assets/stylesheets/components/_agent_autonomy.scss */
.autonomy-level-card .level-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

/* line 65, app/assets/stylesheets/components/_agent_autonomy.scss */
.active .autonomy-level-card .level-icon {
  background: rgba(125, 211, 252, 0.2);
  color: #7dd3fc;
}

/* line 71, app/assets/stylesheets/components/_agent_autonomy.scss */
.autonomy-level-card .level-info {
  flex: 1;
}

/* line 74, app/assets/stylesheets/components/_agent_autonomy.scss */
.autonomy-level-card .level-info h4, .autonomy-level-card .level-info .h4 {
  margin: 0 0 0.25rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 83, app/assets/stylesheets/components/_agent_autonomy.scss */
.autonomy-level-card .level-info p {
  margin: 0 0 0.5rem 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  text-transform: none;
  font-weight: normal;
}

/* line 92, app/assets/stylesheets/components/_agent_autonomy.scss */
.autonomy-level-card .level-info .level-permissions {
  list-style: none;
  padding: 0;
  margin: 0 0 0.4rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

/* line 100, app/assets/stylesheets/components/_agent_autonomy.scss */
.autonomy-level-card .level-info .level-permissions li {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 0.2rem 0.4rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

/* line 110, app/assets/stylesheets/components/_agent_autonomy.scss */
.autonomy-level-card .level-info .level-permissions li i {
  color: #34d399;
  font-size: 0.65rem;
}

/* line 117, app/assets/stylesheets/components/_agent_autonomy.scss */
.autonomy-level-card .level-info .level-limits {
  margin-top: 0.4rem;
  padding-top: 0.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 122, app/assets/stylesheets/components/_agent_autonomy.scss */
.autonomy-level-card .level-info .level-limits small, .autonomy-level-card .level-info .level-limits .small {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
}

/* line 132, app/assets/stylesheets/components/_agent_autonomy.scss */
.lightmode .autonomy-level-card {
  border-color: rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.5);
}

/* line 136, app/assets/stylesheets/components/_agent_autonomy.scss */
.lightmode .autonomy-level-card:hover {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(0, 0, 0, 0.2);
}

/* line 141, app/assets/stylesheets/components/_agent_autonomy.scss */
.lightmode .autonomy-level-card.active {
  border-color: rgba(59, 130, 246, 0.6);
  background: rgba(59, 130, 246, 0.1);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

/* line 147, app/assets/stylesheets/components/_agent_autonomy.scss */
.lightmode .autonomy-level-card .level-icon {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.7);
}

/* line 151, app/assets/stylesheets/components/_agent_autonomy.scss */
.active .lightmode .autonomy-level-card .level-icon {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
}

/* line 158, app/assets/stylesheets/components/_agent_autonomy.scss */
.lightmode .autonomy-level-card .level-info h4, .lightmode .autonomy-level-card .level-info .h4 {
  color: #1f2937;
}

/* line 162, app/assets/stylesheets/components/_agent_autonomy.scss */
.lightmode .autonomy-level-card .level-info p {
  color: rgba(0, 0, 0, 0.7);
}

/* line 167, app/assets/stylesheets/components/_agent_autonomy.scss */
.lightmode .autonomy-level-card .level-info .level-permissions li {
  color: rgba(0, 0, 0, 0.6);
  background: rgba(0, 0, 0, 0.05);
}

/* line 173, app/assets/stylesheets/components/_agent_autonomy.scss */
.lightmode .autonomy-level-card .level-info .level-limits {
  border-top-color: rgba(0, 0, 0, 0.1);
}

/* line 176, app/assets/stylesheets/components/_agent_autonomy.scss */
.lightmode .autonomy-level-card .level-info .level-limits small, .lightmode .autonomy-level-card .level-info .level-limits .small {
  color: rgba(0, 0, 0, 0.5);
}

/* line 9, app/assets/stylesheets/customer_space/ai_chat.scss */
.customerspace-assistant {
  height: 600px;
  width: 97%;
  margin: 0 auto;
  /* Centrage horizontal */
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  padding: 20px;
  position: relative;
}

/* line 28, app/assets/stylesheets/customer_space/ai_chat.scss */
.customerspace-assistant .customerspace-assistant-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
}

/* line 46, app/assets/stylesheets/customer_space/ai_chat.scss */
.customerspace-assistant .customerspace-assistant-header h3, .customerspace-assistant .customerspace-assistant-header .h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 55, app/assets/stylesheets/customer_space/ai_chat.scss */
.customerspace-assistant .customerspace-assistant-header h3 .orizen-avatar, .customerspace-assistant .customerspace-assistant-header .h3 .orizen-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(99, 102, 241, 0.4));
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* line 65, app/assets/stylesheets/customer_space/ai_chat.scss */
.customerspace-assistant .customerspace-assistant-header h3 .orizen-avatar i, .customerspace-assistant .customerspace-assistant-header .h3 .orizen-avatar i {
  color: rgba(99, 102, 241, 0.9);
  font-size: 1.1rem;
}

/* line 71, app/assets/stylesheets/customer_space/ai_chat.scss */
.customerspace-assistant .customerspace-assistant-header h3 i, .customerspace-assistant .customerspace-assistant-header .h3 i {
  color: rgba(246, 139, 33, 0.5);
  font-size: 1.4rem;
}

/* line 77, app/assets/stylesheets/customer_space/ai_chat.scss */
.customerspace-assistant .customerspace-assistant-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  font-weight: 300;
}

/* line 84, app/assets/stylesheets/customer_space/ai_chat.scss */
.customerspace-assistant .customerspace-assistant-header .btn {
  padding: 6px 10px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(99, 102, 241, 0.6);
  color: #FFFFFF;
  background: rgba(99, 102, 241, 0.15);
  transition: all 0.2s ease;
}

/* line 96, app/assets/stylesheets/customer_space/ai_chat.scss */
.customerspace-assistant .customerspace-assistant-header .btn i {
  color: rgba(99, 102, 241, 0.9);
}

/* line 100, app/assets/stylesheets/customer_space/ai_chat.scss */
.customerspace-assistant .customerspace-assistant-header .btn:hover {
  background: rgba(99, 102, 241, 0.22);
  border-color: rgba(99, 102, 241, 0.8);
  transform: translateY(-1px);
}

/* line 106, app/assets/stylesheets/customer_space/ai_chat.scss */
.customerspace-assistant .customerspace-assistant-header .btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.35);
}

/* line 113, app/assets/stylesheets/customer_space/ai_chat.scss */
.customerspace-assistant .customerspace-chat-container {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 18px;
  background: radial-gradient(1200px 60% at 0% 0%, rgba(246, 139, 33, 0.08), transparent 70%), rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  max-height: 450px;
  width: 100%;
  scroll-behavior: smooth;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* line 131, app/assets/stylesheets/customer_space/ai_chat.scss */
.customerspace-assistant .customerspace-chat-container .chat-messages {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 10px;
}

/* line 139, app/assets/stylesheets/customer_space/ai_chat.scss */
.customerspace-assistant .customerspace-chat-input {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 145, app/assets/stylesheets/customer_space/ai_chat.scss */
.customerspace-assistant .customerspace-chat-input .input-group {
  display: flex !important;
  gap: 10px !important;
  align-items: stretch !important;
  height: 45px !important;
}

/* line 151, app/assets/stylesheets/customer_space/ai_chat.scss */
.customerspace-assistant .customerspace-chat-input .input-group .chat-input {
  flex: 1;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  padding: 12px 16px;
  resize: none;
  font-size: 0.8rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  transition: all 0.3s ease;
}

/* line 163, app/assets/stylesheets/customer_space/ai_chat.scss */
.customerspace-assistant .customerspace-chat-input .input-group .chat-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* line 167, app/assets/stylesheets/customer_space/ai_chat.scss */
.customerspace-assistant .customerspace-chat-input .input-group .chat-input:focus {
  border-color: rgba(246, 139, 33, 0.5);
  background-color: rgba(255, 255, 255, 0.15);
  outline: none;
  box-shadow: 0 0 0 2px rgba(246, 139, 33, 0.3);
}

/* line 176, app/assets/stylesheets/customer_space/ai_chat.scss */
.customerspace-assistant .customerspace-chat-input .input-group button[type="submit"],
.customerspace-assistant .customerspace-chat-input .input-group button[data-ai-chat-target="submitButton"] {
  border-radius: 0 15px 15px 0 !important;
  width: 45px !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: none !important;
  background: rgba(99, 102, 241, 0.9) !important;
  color: white !important;
  transition: all 0.3s ease !important;
  font-size: 1.1rem !important;
  margin-top: 0 !important;
  vertical-align: top !important;
}

/* line 192, app/assets/stylesheets/customer_space/ai_chat.scss */
.customerspace-assistant .customerspace-chat-input .input-group button[type="submit"]:hover:not(:disabled),
.customerspace-assistant .customerspace-chat-input .input-group button[data-ai-chat-target="submitButton"]:hover:not(:disabled) {
  background: #6366f1 !important;
  transform: scale(1.05) !important;
}

/* line 197, app/assets/stylesheets/customer_space/ai_chat.scss */
.customerspace-assistant .customerspace-chat-input .input-group button[type="submit"]:disabled,
.customerspace-assistant .customerspace-chat-input .input-group button[data-ai-chat-target="submitButton"]:disabled {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
  background-color: rgba(99, 102, 241, 0.3) !important;
}

/* line 204, app/assets/stylesheets/customer_space/ai_chat.scss */
.customerspace-assistant .customerspace-chat-input .input-group button {
  border-radius: 0 15px 15px 0 !important;
  width: 45px !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: none !important;
  background: rgba(99, 102, 241, 0.9) !important;
  color: white !important;
  transition: all 0.3s ease !important;
  font-size: 1.1rem !important;
  margin-top: 0 !important;
  vertical-align: top !important;
}

/* line 219, app/assets/stylesheets/customer_space/ai_chat.scss */
.customerspace-assistant .customerspace-chat-input .input-group button:hover:not(:disabled) {
  background: #6366f1 !important;
  transform: scale(1.05) !important;
}

/* line 224, app/assets/stylesheets/customer_space/ai_chat.scss */
.customerspace-assistant .customerspace-chat-input .input-group button:disabled {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
  background-color: rgba(99, 102, 241, 0.3) !important;
}

/* line 233, app/assets/stylesheets/customer_space/ai_chat.scss */
.customerspace-assistant .typing-indicator {
  padding: 10px 15px;
  background-color: rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 241, app/assets/stylesheets/customer_space/ai_chat.scss */
.customerspace-assistant .typing-indicator .typing-dots {
  display: flex;
  gap: 4px;
}

/* line 245, app/assets/stylesheets/customer_space/ai_chat.scss */
.customerspace-assistant .typing-indicator .typing-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(246, 139, 33, 0.5);
  animation: typing 1.4s infinite ease-in-out;
}

/* line 252, app/assets/stylesheets/customer_space/ai_chat.scss */
.customerspace-assistant .typing-indicator .typing-dots span:nth-child(1) {
  animation-delay: 0s;
}

/* line 255, app/assets/stylesheets/customer_space/ai_chat.scss */
.customerspace-assistant .typing-indicator .typing-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

/* line 258, app/assets/stylesheets/customer_space/ai_chat.scss */
.customerspace-assistant .typing-indicator .typing-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

/* line 264, app/assets/stylesheets/customer_space/ai_chat.scss */
.customerspace-assistant .typing-indicator .typing-text {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

/* line 273, app/assets/stylesheets/customer_space/ai_chat.scss */
.message {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 15px;
  position: relative;
}

/* line 280, app/assets/stylesheets/customer_space/ai_chat.scss */
.message .message-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

/* line 292, app/assets/stylesheets/customer_space/ai_chat.scss */
.message .message-content {
  flex: 1;
  min-width: 0;
}

/* line 296, app/assets/stylesheets/customer_space/ai_chat.scss */
.message .message-content .message-text {
  padding: 12px 15px;
  border-radius: 16px;
  font-size: 0.8rem;
  line-height: 1.5;
  word-wrap: break-word;
  max-width: 85%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* line 306, app/assets/stylesheets/customer_space/ai_chat.scss */
.message .message-content .message-time {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 5px;
  padding: 0 8px;
}

/* line 313, app/assets/stylesheets/customer_space/ai_chat.scss */
.message .message-content a {
  color: rgba(248, 159, 72, 0.5);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* line 317, app/assets/stylesheets/customer_space/ai_chat.scss */
.message .message-content a:hover {
  color: rgba(249, 175, 102, 0.5);
}

/* line 320, app/assets/stylesheets/customer_space/ai_chat.scss */
.message .message-content a:focus-visible {
  outline: 2px solid rgba(246, 139, 33, 0.5);
  outline-offset: 2px;
}

/* line 326, app/assets/stylesheets/customer_space/ai_chat.scss */
.message .message-content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.75rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2px 6px;
  border-radius: 6px;
}

/* line 336, app/assets/stylesheets/customer_space/ai_chat.scss */
.message .message-content pre {
  margin: 6px 0 0;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  overflow: auto;
}

/* line 346, app/assets/stylesheets/customer_space/ai_chat.scss */
.message.user-message {
  flex-direction: row-reverse;
}

/* line 349, app/assets/stylesheets/customer_space/ai_chat.scss */
.message.user-message .message-avatar {
  background: rgba(195, 135, 97, 0.85);
  color: white;
  box-shadow: 0 8px 22px rgba(195, 135, 97, 0.25);
}

/* line 356, app/assets/stylesheets/customer_space/ai_chat.scss */
.message.user-message .message-content .message-text {
  background: linear-gradient(180deg, rgba(246, 139, 33, 0.65), rgba(246, 139, 33, 0.55));
  color: white;
  margin-left: auto;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  position: relative;
}

/* line 369, app/assets/stylesheets/customer_space/ai_chat.scss */
.message.user-message .message-content .message-time {
  text-align: right;
}

/* line 378, app/assets/stylesheets/customer_space/ai_chat.scss */
.message.assistant-message .message-avatar {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(99, 102, 241, 0.4));
  color: rgba(99, 102, 241, 0.9);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
}

/* line 384, app/assets/stylesheets/customer_space/ai_chat.scss */
.message.assistant-message .message-avatar i {
  font-size: 1.1rem;
  color: rgba(99, 102, 241, 0.9);
}

/* line 391, app/assets/stylesheets/customer_space/ai_chat.scss */
.message.assistant-message .message-content .message-text {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  backdrop-filter: blur(10px);
  position: relative;
}

/* line 408, app/assets/stylesheets/customer_space/ai_chat.scss */
.message.error-message .message-avatar {
  background: rgba(220, 53, 69, 0.8);
  color: white;
}

/* line 414, app/assets/stylesheets/customer_space/ai_chat.scss */
.message.error-message .message-content .message-text {
  background-color: rgba(220, 53, 69, 0.2);
  border: 1px solid rgba(220, 53, 69, 0.4);
  color: #ffdddd;
}

@keyframes typing {
  0%,
60%,
100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  30% {
    transform: translateY(-8px);
    opacity: 1;
  }
}

@media (max-width: 1100px) {
  /* line 439, app/assets/stylesheets/customer_space/ai_chat.scss */
  .customerspace-assistant {
    height: 550px;
    max-height: 550px;
  }
  /* line 443, app/assets/stylesheets/customer_space/ai_chat.scss */
  .customerspace-assistant .customerspace-chat-container {
    max-height: 380px;
  }
  /* line 449, app/assets/stylesheets/customer_space/ai_chat.scss */
  .customerspace-assistant .customerspace-chat-input .input-group .chat-input {
    font-size: 16px;
    padding: 10px 14px;
  }
  /* line 454, app/assets/stylesheets/customer_space/ai_chat.scss */
  .customerspace-assistant .customerspace-chat-input .input-group button {
    width: 42px;
    height: 100% !important;
    font-size: 1rem;
    border-radius: 0 12px 12px 0 !important;
  }
  /* line 464, app/assets/stylesheets/customer_space/ai_chat.scss */
  .message {
    gap: 8px;
  }
  /* line 467, app/assets/stylesheets/customer_space/ai_chat.scss */
  .message .message-avatar {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
  /* line 476, app/assets/stylesheets/customer_space/ai_chat.scss */
  .message.user-message .message-content .message-text, .message.assistant-message .message-content .message-text, .message.error-message .message-content .message-text {
    max-width: 90%;
    font-size: 0.75rem;
    padding: 10px 12px;
  }
}

/* line 486, app/assets/stylesheets/customer_space/ai_chat.scss */
.customerspace-chat-container {
  scrollbar-width: thin;
  scrollbar-color: rgba(246, 139, 33, 0.5) transparent;
}

/* line 490, app/assets/stylesheets/customer_space/ai_chat.scss */
.customerspace-chat-container::-webkit-scrollbar {
  width: 6px;
}

/* line 494, app/assets/stylesheets/customer_space/ai_chat.scss */
.customerspace-chat-container::-webkit-scrollbar-track {
  background: transparent;
}

/* line 498, app/assets/stylesheets/customer_space/ai_chat.scss */
.customerspace-chat-container::-webkit-scrollbar-thumb {
  background: rgba(246, 139, 33, 0.5);
  border-radius: 3px;
}

/* line 502, app/assets/stylesheets/customer_space/ai_chat.scss */
.customerspace-chat-container::-webkit-scrollbar-thumb:hover {
  background: rgba(246, 139, 33, 0.7);
}

/* line 510, app/assets/stylesheets/customer_space/ai_chat.scss */
.lightmode .customerspace-assistant {
  background-color: rgba(255, 255, 255, 0.7);
}

/* line 513, app/assets/stylesheets/customer_space/ai_chat.scss */
.lightmode .customerspace-assistant .customerspace-assistant-header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.65));
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* line 521, app/assets/stylesheets/customer_space/ai_chat.scss */
.lightmode .customerspace-assistant .customerspace-assistant-header .btn {
  background: rgba(246, 139, 33, 0.12);
  border-color: rgba(246, 139, 33, 0.35);
  color: #1a1a1a;
}

/* line 528, app/assets/stylesheets/customer_space/ai_chat.scss */
.lightmode .customerspace-assistant .customerspace-chat-container {
  background: radial-gradient(1200px 60% at 0% 0%, rgba(246, 139, 33, 0.05), transparent 70%), rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* line 541, app/assets/stylesheets/customer_space/ai_chat.scss */
.lightmode .message .message-time {
  color: rgba(0, 0, 0, 0.5);
}

/* line 545, app/assets/stylesheets/customer_space/ai_chat.scss */
.lightmode .message.assistant-message .message-content .message-text {
  color: #1a1a1a;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.02));
  border-color: rgba(0, 0, 0, 0.08);
}

/* line 555, app/assets/stylesheets/customer_space/ai_chat.scss */
.lightmode .message.user-message .message-content .message-text {
  border-color: rgba(0, 0, 0, 0.06);
}

/* line 3, app/assets/stylesheets/customer_space/ai_chat_v2_test.scss */
.ai-chat-v2-test {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: #1a1a2e;
  color: #eee;
  min-height: 100vh;
}

/* line 12, app/assets/stylesheets/customer_space/ai_chat_v2_test.scss */
.ai-chat-v2-test h1, .ai-chat-v2-test .h1 {
  color: #FF6B35;
}

/* line 16, app/assets/stylesheets/customer_space/ai_chat_v2_test.scss */
.ai-chat-v2-test__chat-container {
  background: #16213e;
  border-radius: 12px;
  padding: 20px;
  min-height: 400px;
  max-height: 600px;
  overflow-y: auto;
  margin-bottom: 20px;
}

/* line 26, app/assets/stylesheets/customer_space/ai_chat_v2_test.scss */
.ai-chat-v2-test__message {
  margin: 10px 0;
  padding: 12px 16px;
  border-radius: 12px;
  max-width: 80%;
}

/* line 32, app/assets/stylesheets/customer_space/ai_chat_v2_test.scss */
.ai-chat-v2-test__message--user {
  background: #FF6B35;
  color: white;
  margin-left: auto;
  text-align: right;
}

/* line 39, app/assets/stylesheets/customer_space/ai_chat_v2_test.scss */
.ai-chat-v2-test__message--assistant {
  background: #0f3460;
  color: #eee;
}

/* line 45, app/assets/stylesheets/customer_space/ai_chat_v2_test.scss */
.ai-chat-v2-test__meta {
  font-size: 12px;
  color: #888;
  margin-top: 5px;
}

/* line 51, app/assets/stylesheets/customer_space/ai_chat_v2_test.scss */
.ai-chat-v2-test__input-container {
  display: flex;
  gap: 10px;
}

/* line 56, app/assets/stylesheets/customer_space/ai_chat_v2_test.scss */
.ai-chat-v2-test__input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  background: #16213e;
  color: #eee;
  font-size: 16px;
}

/* line 66, app/assets/stylesheets/customer_space/ai_chat_v2_test.scss */
.ai-chat-v2-test__send-btn {
  padding: 12px 24px;
  background: #FF6B35;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}

/* line 75, app/assets/stylesheets/customer_space/ai_chat_v2_test.scss */
.ai-chat-v2-test__send-btn:hover {
  background: #e55a2b;
}

/* line 79, app/assets/stylesheets/customer_space/ai_chat_v2_test.scss */
.ai-chat-v2-test__send-btn:disabled {
  background: #666;
  cursor: not-allowed;
}

/* line 85, app/assets/stylesheets/customer_space/ai_chat_v2_test.scss */
.ai-chat-v2-test__examples {
  margin-top: 20px;
  padding: 15px;
  background: #16213e;
  border-radius: 8px;
}

/* line 91, app/assets/stylesheets/customer_space/ai_chat_v2_test.scss */
.ai-chat-v2-test__examples h3, .ai-chat-v2-test__examples .h3 {
  color: #F7931E;
  margin-top: 0;
}

/* line 97, app/assets/stylesheets/customer_space/ai_chat_v2_test.scss */
.ai-chat-v2-test__example {
  background: #0f3460;
  padding: 8px 12px;
  border-radius: 6px;
  margin: 5px 0;
  cursor: pointer;
}

/* line 104, app/assets/stylesheets/customer_space/ai_chat_v2_test.scss */
.ai-chat-v2-test__example:hover {
  background: #1a4a7a;
}

/* line 109, app/assets/stylesheets/customer_space/ai_chat_v2_test.scss */
.ai-chat-v2-test pre {
  background: #0f3460;
  padding: 10px;
  border-radius: 6px;
  overflow-x: auto;
  font-size: 12px;
}
