.sprouts-loader-fullscreen {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.sprouts-loader-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sprouts-loader-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.sprouts-logo-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
}

.sprouts-logo {
  width: 64px;
  height: 64px;
  -o-object-fit: contain;
     object-fit: contain;
  animation: sprouts-logo-pulse 2s ease-in-out infinite;
  z-index: 2;
  position: relative;
}

.sprouts-pulse-ring {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 2px solid;
  border-color: rgba(34, 197, 94, 0.3);
  border-radius: 50%;
  animation: sprouts-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  z-index: 1;
}

.sprouts-pulse-ring:nth-child(2) {
  animation-delay: 0.4s;
  border-color: rgba(34, 197, 94, 0.2);
}

.sprouts-pulse-ring:nth-child(3) {
  animation-delay: 0.8s;
  border-color: rgba(34, 197, 94, 0.1);
}

.sprouts-loader-message {
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

@keyframes sprouts-logo-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

@keyframes sprouts-pulse {
  0% {
    transform: scale(0.4);
    opacity: 1;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* Alternative smooth fade animation */
@keyframes sprouts-fade-in-out {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

/* Optional: Add a subtle rotation for more dynamism */
@keyframes sprouts-rotate {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(5deg) scale(1.05);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}

._overlay_1fdzj_1 {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  padding: 16px;
}

._modal_1fdzj_13 {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

._sizeSm_1fdzj_25 {
  max-width: 400px;
}

._sizeMd_1fdzj_29 {
  max-width: 500px;
}

._sizeLg_1fdzj_33 {
  max-width: 700px;
}

._sizeXl_1fdzj_37 {
  max-width: 900px;
}

._size2xl_1fdzj_41 {
  max-width: 1100px;
}

._header_1fdzj_45 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

._headerContent_1fdzj_54 {
  flex: 1;
  min-width: 0;
}

._title_1fdzj_59 {
  font-size: 20px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-family: 'Instrument Sans', sans-serif;
}

._subtitle_1fdzj_67 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 4px 0 0 0;
  font-family: 'Instrument Sans', sans-serif;
}

._closeButton_1fdzj_74 {
  flex-shrink: 0;
  padding: 8px;
  border-radius: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.2s;
  margin-left: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

._closeButton_1fdzj_74:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
}

._closeButton_1fdzj_74:focus {
  outline: 2px solid rgba(255, 255, 255, 0.3);
  outline-offset: 2px;
}

._content_1fdzj_99 {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  min-height: 0;
}

._footer_1fdzj_106 {
  padding: 16px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

/* Responsive */
@media (max-width: 640px) {
  ._overlay_1fdzj_1 {
    padding: 8px;
  }

  ._modal_1fdzj_13 {
    max-height: 95vh;
  }

  ._header_1fdzj_45,
  ._content_1fdzj_99,
  ._footer_1fdzj_106 {
    padding: 16px;
  }
}

._tableWrapper_1mqc2_1 {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

._tableContainer_1mqc2_9 {
  overflow-x: auto;
  overflow-y: auto;
  max-height: 70vh;
}

._table_1mqc2_1 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

._thead_1mqc2_21 {
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

._stickyHeader_1mqc2_26 {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(0, 0, 0, 0.95);
}

._th_1mqc2_21 {
  padding: 12px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

._checkboxHeader_1mqc2_45 {
  width: 48px;
  text-align: center;
}

._tbody_1mqc2_50 {
  background: transparent;
}

._tr_1mqc2_54 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background-color 0.15s;
}

._tr_1mqc2_54._hoverable_1mqc2_59:hover {
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

._tr_1mqc2_54._selectedRow_1mqc2_64 {
  background: rgba(59, 130, 246, 0.1);
}

._td_1mqc2_68 {
  padding: 12px 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

._td_1mqc2_68._truncate_1mqc2_75 {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

._checkboxCell_1mqc2_82 {
  text-align: center;
  width: 48px;
}

._checkbox_1mqc2_45 {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: rgba(59, 130, 246, 1);
}

._emptyState_1mqc2_94 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  min-height: 200px;
}

._emptyMessage_1mqc2_102 {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-family: 'Instrument Sans', sans-serif;
}

/* Scrollbar styling */
._tableContainer_1mqc2_9::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

._tableContainer_1mqc2_9::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

._tableContainer_1mqc2_9::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

._tableContainer_1mqc2_9::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  ._th_1mqc2_21,
  ._td_1mqc2_68 {
    padding: 8px 12px;
    font-size: 13px;
  }

  ._tableContainer_1mqc2_9 {
    max-height: 50vh;
  }
}

._overlay_4pohi_1 {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

._overlay_4pohi_1._open_4pohi_12 {
  opacity: 1;
  visibility: visible;
}

._drawer_4pohi_17 {
  position: fixed;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease;
}

/* Position variants */
._right_4pohi_29 {
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

._right_4pohi_29._open_4pohi_12 {
  transform: translateX(0);
}

._left_4pohi_43 {
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

._left_4pohi_43._open_4pohi_12 {
  transform: translateX(0);
}

._top_4pohi_57 {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  transform: translateY(-100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

._top_4pohi_57._open_4pohi_12 {
  transform: translateY(0);
}

._bottom_4pohi_70 {
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  transform: translateY(100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

._bottom_4pohi_70._open_4pohi_12 {
  transform: translateY(0);
}

/* Size variants */
._sizeSm_4pohi_84 {
  max-width: 400px;
  max-height: 100vh;
}

._sizeMd_4pohi_89 {
  max-width: 500px;
  max-height: 100vh;
}

._sizeLg_4pohi_94 {
  max-width: 700px;
  max-height: 100vh;
}

._sizeXl_4pohi_99 {
  max-width: 900px;
  max-height: 100vh;
}

._sizeFull_4pohi_104 {
  max-width: 100%;
  max-height: 100vh;
}

/* Vertical sizes for top/bottom */
._top_4pohi_57._sizeSm_4pohi_84,
._bottom_4pohi_70._sizeSm_4pohi_84 {
  max-width: 100%;
  max-height: 400px;
}

._top_4pohi_57._sizeMd_4pohi_89,
._bottom_4pohi_70._sizeMd_4pohi_89 {
  max-width: 100%;
  max-height: 500px;
}

._top_4pohi_57._sizeLg_4pohi_94,
._bottom_4pohi_70._sizeLg_4pohi_94 {
  max-width: 100%;
  max-height: 700px;
}

._top_4pohi_57._sizeXl_4pohi_99,
._bottom_4pohi_70._sizeXl_4pohi_99 {
  max-width: 100%;
  max-height: 900px;
}

._header_4pohi_134 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

._headerContent_4pohi_143 {
  flex: 1;
  min-width: 0;
}

._title_4pohi_148 {
  font-size: 20px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-family: 'Instrument Sans', sans-serif;
}

._subtitle_4pohi_156 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 4px 0 0 0;
  font-family: 'Instrument Sans', sans-serif;
}

._closeButton_4pohi_163 {
  flex-shrink: 0;
  padding: 8px;
  border-radius: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.2s;
  margin-left: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

._closeButton_4pohi_163:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
}

._closeButton_4pohi_163:focus {
  outline: 2px solid rgba(255, 255, 255, 0.3);
  outline-offset: 2px;
}

._content_4pohi_188 {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 24px;
  min-height: 0;
}

/* Responsive */
@media (max-width: 640px) {
  ._sizeSm_4pohi_84,
  ._sizeMd_4pohi_89,
  ._sizeLg_4pohi_94,
  ._sizeXl_4pohi_99 {
    max-width: 100%;
    width: 100%;
  }

  ._top_4pohi_57._sizeSm_4pohi_84,
  ._top_4pohi_57._sizeMd_4pohi_89,
  ._bottom_4pohi_70._sizeSm_4pohi_84,
  ._bottom_4pohi_70._sizeMd_4pohi_89 {
    max-height: 90vh;
  }

  ._header_4pohi_134,
  ._content_4pohi_188 {
    padding: 16px;
  }
}

/**
 * Email Composer Modal Styles
 * Dark theme design for the email composer
 */

/* Backdrop overlay */
.email-composer-backdrop {
  position: fixed;
  inset: 0;
  /* Must be above DepartmentDrawer (z-index: 10000) and ProfileDrawer (z-index: 10000) */
  z-index: 10003;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

/* Minimized: bar at bottom-right, no dark overlay – user can use the page and open other emails */
.email-composer-backdrop.minimized {
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0 1.5rem 0 0;
  background-color: transparent;
  backdrop-filter: none;
  pointer-events: none;
}

.email-composer-backdrop.minimized .email-composer-modal {
  pointer-events: auto;
}

/* Main modal container */
.email-composer-modal {
  background-color: #0a0a0a;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 960px;
  height: 100%;
  max-height: 90vh;
  min-height: 600px;
}

.email-composer-modal.fullscreen:not(.minimized) {
  position: fixed;
  inset: 1rem;
  max-width: none;
  max-height: none;
}

/* Minimized: LinkedIn-style bar at bottom – contact name + expand/close */
.email-composer-modal.minimized {
  width: 100%;
  max-width: 400px;
  min-width: 280px;
  height: auto;
  min-height: unset;
  max-height: none;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
  margin-bottom: 0;
}

.email-composer-modal.minimized .email-composer-content {
  display: none;
}

.email-composer-modal.minimized .email-composer-header {
  border-radius: 12px 12px 0 0;
  border-bottom: none;
  padding: 0.75rem 1rem;
}

/* Minimized bar: avatar + "Message to Name" + actions */
.email-composer-minimized-bar {
  gap: 0.75rem;
  align-items: center;
}

.email-composer-minimized-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  padding: 0;
  text-align: left;
  cursor: pointer;
}

.email-composer-minimized-trigger:focus-visible {
  outline: 2px solid rgba(139, 92, 246, 0.7);
  outline-offset: 3px;
  border-radius: 10px;
}

.email-composer-minimized-bar .email-composer-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.email-composer-minimized-bar .email-composer-header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
}

.email-composer-minimized-bar .email-composer-header-btn svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  display: block;
}

.email-composer-minimized-avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}

.email-composer-minimized-label {
  flex: 1;
  min-width: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9375rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Content wrapper: flex grow so body fills space, stays in DOM when minimized */
.email-composer-content {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Header section */
.email-composer-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(12px);
  border-radius: 1rem 1rem 0 0;
}

.email-composer-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.email-composer-title {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.email-composer-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.email-composer-header-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.email-composer-header-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

.email-composer-header-btn.close:hover {
  background-color: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

/* Channel tabs */
.email-composer-tabs {
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
}

.email-composer-tabs-container {
  display: flex;
  align-items: center;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 2px;
  font-size: 0.75rem;
  font-weight: 500;
}

.email-composer-tab {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.2s ease;
}

.email-composer-tab:hover {
  color: rgba(255, 255, 255, 0.8);
}

.email-composer-tab.active {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Recipients section */
.email-composer-recipients {
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  gap: 0.75rem;
}

.email-composer-recipients-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.email-composer-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  font-weight: 500;
  min-width: 30px;
}

.email-composer-recipients-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  flex: 1;
}

.email-composer-recipient-chip {
  display: flex;
  height: 1.75rem;
  align-items: center;
  gap: 0.375rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 0.75rem;
  padding-right: 0.5rem;
  transition: border-color 0.2s ease;
  cursor: default;
}

.email-composer-recipient-chip:hover {
  border-color: rgba(139, 92, 246, 0.5);
}

.email-composer-recipient-avatar {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  color: #ffffff;
  font-weight: 700;
}

.email-composer-recipient-name {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  font-weight: 500;
}

.email-composer-recipient-email {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

.email-composer-cc-btn {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  font-weight: 500;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.email-composer-cc-btn:hover {
  color: #8b5cf6;
  text-decoration: underline;
}

.email-composer-linkedin-note {
  margin-left: auto;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Enrich email button */
.email-composer-enrich-btn {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.email-composer-enrich-btn:hover:not(:disabled) {
  background-color: rgba(16, 185, 129, 0.2);
  border-color: rgba(16, 185, 129, 0.5);
}

.email-composer-enrich-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Subject section */
.email-composer-subject {
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.email-composer-subject-input {
  width: 100%;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0;
  outline: none;
}

.email-composer-subject-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.email-composer-subject-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* Toolbar section */
.email-composer-toolbar {
  padding: 0.5rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(20, 20, 20, 0.5);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
  position: sticky;
  top: 0;
  z-index: 10;
}

.email-composer-toolbar-group {
  display: flex;
  align-items: center;
  gap: 2px;
}

.email-composer-toolbar-divider {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 0.5rem;
  margin-right: 0.5rem;
}

.email-composer-toolbar-btn {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  color: rgba(255, 255, 255, 0.5);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.email-composer-toolbar-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

.email-composer-toolbar-btn span {
  font-size: 1rem;
}

/* Message body section */
.email-composer-body {
  flex: 1;
  padding: 1.5rem;
  position: relative;
  overflow-y: auto;
}

.email-composer-body-editor {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.75;
  resize: none;
  padding: 0;
  min-height: 300px;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* Hyperlinks inside the email body (e.g., target contact name linking to LinkedIn) */
.email-composer-body-editor a {
  color: #60a5fa; /* Tailwind sky-400 style blue */
  text-decoration: underline;
  cursor: pointer;
  pointer-events: auto;
}

.email-composer-body-editor a:hover {
  color: #3b82f6; /* Darker blue on hover */
  text-decoration: underline;
}

/* Bullet and numbered lists – responsive for Email and LinkedIn tabs */
.email-composer-body-editor ul,
.email-composer-body-editor ol {
  margin: 0.5em 0;
  padding-left: 1.5em;
  line-height: 1.75;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.email-composer-body-editor ul {
  list-style-type: disc;
}

.email-composer-body-editor ol {
  list-style-type: decimal;
}

.email-composer-body-editor li {
  margin: 0.25em 0;
  padding-left: 0.25em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Nested lists */
.email-composer-body-editor ul ul,
.email-composer-body-editor ol ol,
.email-composer-body-editor ul ol,
.email-composer-body-editor ol ul {
  margin: 0.25em 0;
  padding-left: 1.25em;
}

.email-composer-body-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.email-composer-body-placeholder {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.3);
}

/* Footer section */
.email-composer-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(20, 20, 20, 0.8);
  border-radius: 0 0 1rem 1rem;
}

.email-composer-footer-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.email-composer-send-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 2.5rem;
  padding: 0 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.email-composer-send-btn:active {
  transform: scale(0.95);
}

.email-composer-send-btn.enabled {
  background-color: #8b5cf6;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.3);
}

.email-composer-send-btn.enabled:hover {
  background-color: #7c3aed;
}

.email-composer-send-btn.disabled {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  cursor: not-allowed;
  opacity: 0.6;
}

.email-composer-send-btn.linkedin {
  background-color: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(139, 92, 246, 0.3);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.email-composer-send-btn.linkedin:hover {
  background-color: rgba(139, 92, 246, 0.2);
}

.email-composer-attach-btn {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.5);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.email-composer-attach-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

.email-composer-footer-divider {
  height: 1.5rem;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.15);
  margin: 0 0.25rem;
}

.email-composer-draft-btn {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
}

.email-composer-draft-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.email-composer-footer-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.email-composer-draft-time {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  display: none;
}

@media (min-width: 640px) {
  .email-composer-draft-time {
    display: inline-block;
  }
}

.email-composer-discard-btn {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.4);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.email-composer-discard-btn:hover {
  color: #ef4444;
  background-color: rgba(239, 68, 68, 0.1);
}

/* Responsive lists: tighter padding on small screens */
@media (max-width: 640px) {
  .email-composer-body {
    padding: 1rem;
  }

  .email-composer-body-editor ul,
  .email-composer-body-editor ol {
    padding-left: 1.25em;
  }

  .email-composer-body-editor ul ul,
  .email-composer-body-editor ol ol,
  .email-composer-body-editor ul ol,
  .email-composer-body-editor ol ul {
    padding-left: 1em;
  }
}

/* Large screen adjustments */
@media (min-width: 1024px) {
  .email-composer-modal {
    border-radius: 1.5rem;
  }

  .email-composer-header {
    border-radius: 1.5rem 1.5rem 0 0;
  }

  .email-composer-footer {
    border-radius: 0 0 1.5rem 1.5rem;
  }
}
/* Floating Cortex AI Button */
.cortex-ai-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 10px 20px;
  background: transparent;
  color: #ffffff;
  border: 2px solid #10b981;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cortex-btn-logo {
  width: 20px;
  height: 20px;
}

.cortex-ai-btn.chat-open {
  display: none; /* Hide button when chat is open */
}

.cortex-ai-btn:hover {
  background-color: rgba(16, 185, 129, 0.1);
  border-color: #34d399;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.cortex-ai-btn:active {
  transform: translateY(0);
  background-color: rgba(16, 185, 129, 0.15);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

/* Chat Pane - No Overlay */
.cortex-chat-overlay {
  /* No overlay background - just a container */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  max-width: 90vw;
  z-index: 999;
  pointer-events: none; /* Allow clicks to pass through to the container */
}

/* Chat Pane */
.cortex-chat-pane {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-color: #1a1a1a;
  border-left: 1px solid #2a2a2a;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  animation: slideIn 0.3s ease;
  pointer-events: all; /* Re-enable clicks on the pane itself */
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

/* Chat Header */
.cortex-chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #2a2a2a;
  background-color: #1a1a1a;
  flex-shrink: 0;
}

.cortex-chat-header h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cortex-logo {
  width: 28px;
  height: 28px;
  display: inline-block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.new-conversation-btn {
  background: none;
  border: 1px solid #3a3a3a;
  font-size: 20px;
  color: #9ca3af;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  font-weight: 400;
}

.new-conversation-btn:hover {
  background-color: #2a2a2a;
  color: #10b981;
  border-color: #10b981;
}

.close-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: #9ca3af;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background-color 0.2s ease, color 0.2s ease;
  font-weight: 600;
}

.close-btn:hover {
  background-color: #2a2a2a;
  color: #ffffff;
}

/* Chat Messages */
.cortex-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #1a1a1a;
}

.empty-state {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #6b7280;
  text-align: center;
  font-size: 14px;
}

.message {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 85%;
  animation: messageIn 0.2s ease;
}

@keyframes messageIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.message-user {
  align-self: flex-end;
}

.message-ai {
  align-self: flex-start;
}

.message-content {
  padding: 12px 16px;
  border-radius: 18px;
  word-wrap: break-word;
}

.message-user .message-content {
  background-color: #ffffff;
  color: #111827;
  border-bottom-right-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.message-ai .message-content {
  background-color: transparent;
  color: #d1d5db;
  border-radius: 0;
  padding: 0;
}

.message-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  white-space: pre-wrap;
}

/* Markdown Styling for AI messages in message-content */
.message-ai .message-content code {
  background-color: #2a2a2a;
  color: #10b981;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 13px;
  font-family: 'Courier New', Courier, monospace;
}

.message-ai .message-content pre {
  background-color: #2a2a2a;
  border: 1px solid #3a3a3a;
  border-radius: 6px;
  padding: 12px;
  overflow-x: auto;
  margin: 8px 0;
}

.message-ai .message-content pre code {
  background-color: transparent;
  padding: 0;
  color: #d1d5db;
}

.message-ai .message-content ul,
.message-ai .message-content ol {
  margin: 8px 0;
  padding-left: 20px;
}

.message-ai .message-content li {
  margin: 4px 0;
}

.message-ai .message-content h1,
.message-ai .message-content h2,
.message-ai .message-content h3,
.message-ai .message-content h4,
.message-ai .message-content h5,
.message-ai .message-content h6 {
  margin: 12px 0 8px 0;
  font-weight: 600;
  color: #ffffff;
}

.message-ai .message-content a {
  color: #10b981;
  text-decoration: none;
}

.message-ai .message-content a:hover {
  text-decoration: underline;
}

.message-ai .message-content strong {
  font-weight: 600;
  color: #ffffff;
}

.message-ai .message-content blockquote {
  border-left: 3px solid #3a3a3a;
  padding-left: 12px;
  margin: 8px 0;
  color: #9ca3af;
}

.message-timestamp {
  font-size: 11px;
  color: #6b7280;
  padding: 0 8px;
}

.message-user .message-timestamp {
  text-align: right;
  color: #9ca3af;
}

/* Step Badges */
.step-badges {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
  width: 100%;
}

.ordered-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.ordered-content .text-content {
  color: #d1d5db;
  font-size: 14px;
  line-height: 1.6;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* Markdown Styling */
.text-content p {
  margin: 0 0 8px 0;
}

.text-content p:last-child {
  margin-bottom: 0;
}

.text-content code {
  background-color: #2a2a2a;
  color: #10b981;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 13px;
  font-family: 'Courier New', Courier, monospace;
}

.text-content pre {
  background-color: #2a2a2a;
  border: 1px solid #3a3a3a;
  border-radius: 6px;
  padding: 12px;
  overflow-x: auto;
  margin: 8px 0;
}

.text-content pre code {
  background-color: transparent;
  padding: 0;
  color: #d1d5db;
}

.text-content ul,
.text-content ol {
  margin: 8px 0;
  padding-left: 20px;
}

.text-content li {
  margin: 4px 0;
}

.text-content h1,
.text-content h2,
.text-content h3,
.text-content h4,
.text-content h5,
.text-content h6 {
  margin: 12px 0 8px 0;
  font-weight: 600;
  color: #ffffff;
}

.text-content h1 {
  font-size: 20px;
}

.text-content h2 {
  font-size: 18px;
}

.text-content h3 {
  font-size: 16px;
}

.text-content blockquote {
  border-left: 3px solid #3a3a3a;
  padding-left: 12px;
  margin: 8px 0;
  color: #9ca3af;
}

.text-content a {
  color: #10b981;
  text-decoration: none;
}

.text-content a:hover {
  text-decoration: underline;
}

.text-content strong {
  font-weight: 600;
  color: #ffffff;
}

.text-content em {
  font-style: italic;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border: 1px solid;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  text-transform: capitalize;
  animation: badgeFadeIn 0.3s ease;
  white-space: nowrap;
  box-sizing: border-box;
  transition: all 0.2s ease;
  width: -moz-fit-content;
  width: fit-content;
}

@keyframes badgeFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Typing Indicator */
.typing-indicator-wrapper {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}

.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 8px 0;
}

.typing-indicator span {
  width: 6px;
  height: 6px;
  background-color: #6b7280;
  border-radius: 50%;
  animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  30% {
    transform: translateY(-10px);
    opacity: 1;
  }
}

/* Chat Input */
.cortex-chat-input {
  padding: 16px 20px 20px;
  border-top: 1px solid #2a2a2a;
  background-color: #1a1a1a;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.cortex-chat-input textarea {
  flex: 1;
  padding: 12px 16px;
  background-color: #2a2a2a;
  border: 1px solid #3a3a3a;
  border-radius: 20px;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
  resize: none;
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  line-height: 1.4;
  max-height: 120px;
}

.cortex-chat-input textarea::-moz-placeholder {
  color: #6b7280;
}

.cortex-chat-input textarea::placeholder {
  color: #6b7280;
}

.cortex-chat-input textarea:focus {
  border-color: #4a4a4a;
  background-color: #2d2d2d;
}

.cortex-chat-input textarea:disabled {
  background-color: #222222;
  cursor: not-allowed;
  opacity: 0.6;
}

.send-btn {
  padding: 0;
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  background-color: #3a3a3a;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.send-btn::before {
  content: '↑';
  font-size: 20px;
  line-height: 1;
}

.send-btn:hover:not(:disabled) {
  background-color: #4a4a4a;
}

.send-btn:disabled {
  background-color: #2a2a2a;
  color: #4a4a4a;
  cursor: not-allowed;
}

/* Thinking Steps - Live Display */
.thinking-steps-live {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
  padding: 12px 0;
  opacity: 0.6;
}

.thinking-step-line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #9ca3af;
  animation: fadeInLine 0.3s ease;
}

@keyframes fadeInLine {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.thinking-step-icon {
  flex-shrink: 0;
  font-size: 14px;
  margin-top: 2px;
}

.thinking-step-message {
  flex: 1;
  line-height: 1.5;
}

/* Markdown styling for thinking step messages */
.thinking-step-message p {
  margin: 0 0 4px 0;
}

.thinking-step-message p:last-child {
  margin-bottom: 0;
}

.thinking-step-message code {
  background-color: rgba(42, 42, 42, 0.8);
  color: #10b981;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  font-family: 'Courier New', Courier, monospace;
}

.thinking-step-message pre {
  background-color: rgba(42, 42, 42, 0.8);
  border: 1px solid #3a3a3a;
  border-radius: 6px;
  padding: 8px;
  overflow-x: auto;
  margin: 4px 0;
}

.thinking-step-message pre code {
  background-color: transparent;
  padding: 0;
  color: #d1d5db;
}

.thinking-step-message ul,
.thinking-step-message ol {
  margin: 4px 0;
  padding-left: 20px;
}

.thinking-step-message li {
  margin: 2px 0;
}

.thinking-step-message strong {
  font-weight: 600;
  color: #ffffff;
}

.thinking-step-message em {
  font-style: italic;
}

.thinking-step-message a {
  color: #10b981;
  text-decoration: none;
}

.thinking-step-message a:hover {
  text-decoration: underline;
}

/* Thinking Steps - Collapsed Display */
.thinking-steps-collapsed {
  margin-bottom: 12px;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.thinking-steps-collapsed:hover {
  opacity: 0.7;
}

.thinking-steps-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 0;
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 13px;
  cursor: pointer;
  transition: color 0.2s ease;
  text-align: left;
}

.thinking-steps-toggle:hover {
  color: #d1d5db;
}

.toggle-icon {
  flex-shrink: 0;
  font-size: 10px;
  transition: transform 0.2s ease;
  color: #6b7280;
}

.toggle-text {
  flex: 1;
  font-weight: 400;
  font-style: italic;
}

.thinking-steps-content {
  margin-top: 8px;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: expandContent 0.3s ease;
}

@keyframes expandContent {
  from {
    opacity: 0;
    transform: scaleY(0.95);
    transform-origin: top;
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

.thinking-reasoning-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.thinking-reasoning-block .thinking-step-label {
  font-size: 11px;
  font-weight: 600;
  color: #10b981;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.thinking-reasoning-block .reasoning-text {
  font-size: 13px;
  color: #d1d5db;
  line-height: 1.5;
}

.thinking-reasoning-block .reasoning-text p {
  margin: 0 0 4px 0;
}

.thinking-reasoning-block .reasoning-text p:last-child {
  margin-bottom: 0;
}

.thinking-step-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.thinking-step-label {
  font-size: 11px;
  font-weight: 600;
  color: #10b981;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.thinking-step-item .thinking-step-message {
  font-size: 13px;
  color: #d1d5db;
  line-height: 1.5;
}

.thinking-step-data {
  margin-top: 6px;
  padding: 8px;
  border-radius: 8px;
  background: rgba(42, 42, 42, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.thinking-step-tokens {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.thinking-step-tokens-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.thinking-token-pill {
  background-color: rgba(42, 42, 42, 0.8);
  color: #10b981;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-family: 'Courier New', Courier, monospace;
}

/* Markdown styling for collapsed thinking step messages */
.thinking-step-item .thinking-step-message p {
  margin: 0 0 4px 0;
}

.thinking-step-item .thinking-step-message p:last-child {
  margin-bottom: 0;
}

.thinking-step-item .thinking-step-message code {
  background-color: rgba(42, 42, 42, 0.8);
  color: #10b981;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  font-family: 'Courier New', Courier, monospace;
}

.thinking-step-item .thinking-step-message pre {
  background-color: rgba(42, 42, 42, 0.8);
  border: 1px solid #3a3a3a;
  border-radius: 6px;
  padding: 8px;
  overflow-x: auto;
  margin: 4px 0;
}

.thinking-step-item .thinking-step-message pre code {
  background-color: transparent;
  padding: 0;
  color: #d1d5db;
}

.thinking-step-item .thinking-step-message ul,
.thinking-step-item .thinking-step-message ol {
  margin: 4px 0;
  padding-left: 20px;
}

.thinking-step-item .thinking-step-message li {
  margin: 2px 0;
}

.thinking-step-item .thinking-step-message strong {
  font-weight: 600;
  color: #ffffff;
}

.thinking-step-item .thinking-step-message em {
  font-style: italic;
}

.thinking-step-item .thinking-step-message a {
  color: #10b981;
  text-decoration: none;
}

.thinking-step-item .thinking-step-message a:hover {
  text-decoration: underline;
}

/* Scrollbar Styling */
.cortex-chat-messages::-webkit-scrollbar {
  width: 6px;
}

.cortex-chat-messages::-webkit-scrollbar-track {
  background: #1a1a1a;
}

.cortex-chat-messages::-webkit-scrollbar-thumb {
  background: #3a3a3a;
  border-radius: 3px;
}

.cortex-chat-messages::-webkit-scrollbar-thumb:hover {
  background: #4a4a4a;
}

/* Responsive */
@media (max-width: 768px) {
  .cortex-ai-btn {
    top: 16px;
    right: 16px;
    padding: 8px 16px;
    font-size: 13px;
  }

  .cortex-ai-btn.chat-open {
    display: none; /* Hide button when chat is open on mobile */
  }

  .cortex-chat-overlay {
    width: 100vw;
    max-width: 100vw;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .cortex-chat-pane {
    width: 100vw;
    max-width: 100vw;
  }
}
/* Common Styles - @import must come before all other statements */
/**
 * Common styles index
 * Import all common stylesheets here
 */
/**
 * Common CSS Variables for consistent styling across the application
 */
:root {
  /* Colors - Backgrounds */
  --bg-overlay: rgba(0, 0, 0, 0.5);
  --bg-overlay-blur: rgba(0, 0, 0, 0.5);
  --bg-base: #000000;
  --bg-base-2: rgba(255, 255, 255, 0.02);
  --bg-elevated: rgba(255, 255, 255, 0.05);
  
  /* Colors - Borders */
  --border-default: rgba(255, 255, 255, 0.1);
  --border-hover: rgba(255, 255, 255, 0.2);
  --border-subtle: rgba(255, 255, 255, 0.05);
  
  /* Colors - Text */
  --text-primary: rgba(255, 255, 255, 0.9);
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-tertiary: rgba(255, 255, 255, 0.6);
  --text-disabled: rgba(255, 255, 255, 0.4);
  
  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 12px;
  --spacing-lg: 16px;
  --spacing-xl: 24px;
  --spacing-2xl: 32px;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
  
  /* Z-index layers */
  --z-modal: 10000;
  --z-dropdown: 1000;
  --z-sticky: 100;
  --z-tooltip: 99999;
  
  /* Transitions */
  --transition-fast: 0.15s;
  --transition-base: 0.2s;
  --transition-slow: 0.3s;
  
  /* Focus rings */
  --focus-ring: 0 0 0 3px rgba(59, 130, 246, 0.1);
  --focus-ring-color: rgba(59, 130, 246, 0.5);
}
/**
 * Common button styles
 * Use these classes for consistent button styling across the app
 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  font-family: 'Instrument Sans', sans-serif;
  gap: var(--spacing-sm);
  outline: none;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn:focus-visible {
  outline: 2px solid var(--focus-ring-color);
  outline-offset: 2px;
}
/* Button Variants */
.btn-primary {
  background: rgba(59, 130, 246, 1);
  color: white;
}
.btn-primary:hover:not(:disabled) {
  background: rgba(59, 130, 246, 0.9);
}
.btn-secondary {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-default);
}
.btn-secondary:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}
.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
}
.btn-ghost:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}
.btn-danger {
  background: rgba(239, 68, 68, 1);
  color: white;
}
.btn-danger:hover:not(:disabled) {
  background: rgba(239, 68, 68, 0.9);
}
/* Button Sizes */
.btn-sm {
  padding: 8px 12px;
  font-size: 13px;
  gap: 6px;
}
.btn-md {
  padding: 10px 16px;
  font-size: 14px;
  gap: 8px;
}
.btn-lg {
  padding: 12px 20px;
  font-size: 15px;
  gap: 10px;
}
/**
 * Common form input styles
 */
.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}
.form-label {
  font-size: 14px;
  font-weight: 500;
  color: hsl(var(--foreground));
  font-family: 'Instrument Sans', sans-serif;
}
.form-label-required::after {
  content: ' *';
  color: hsl(var(--destructive));
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  border: 1px solid hsl(var(--border));
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-size: 14px;
  font-family: 'Instrument Sans', sans-serif;
  transition: all var(--transition-base);
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 2px hsl(var(--primary) / 0.2);
}
.form-input:disabled,
.form-textarea:disabled,
.form-select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: hsl(var(--muted));
}
.form-input::-moz-placeholder, .form-textarea::-moz-placeholder {
  color: hsl(var(--muted-foreground));
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: hsl(var(--muted-foreground));
}
.form-textarea {
  resize: vertical;
  min-height: 80px;
}
.form-error {
  font-size: 13px;
  color: hsl(var(--destructive));
  margin-top: var(--spacing-xs);
}
.form-help {
  font-size: 13px;
  color: hsl(var(--muted-foreground));
  margin-top: var(--spacing-xs);
}
*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
/* ! tailwindcss v3.4.19 | MIT License | https://tailwindcss.com */
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/
html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: Instrument Sans, ui-sans-serif, system-ui; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
input:where([type='text']),input:where(:not([type])),input:where([type='email']),input:where([type='url']),input:where([type='password']),input:where([type='number']),input:where([type='date']),input:where([type='datetime-local']),input:where([type='month']),input:where([type='search']),input:where([type='tel']),input:where([type='time']),input:where([type='week']),select:where([multiple]),textarea,select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  border-radius: 0px;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-shadow: 0 0 #0000;
}
input:where([type='text']):focus, input:where(:not([type])):focus, input:where([type='email']):focus, input:where([type='url']):focus, input:where([type='password']):focus, input:where([type='number']):focus, input:where([type='date']):focus, input:where([type='datetime-local']):focus, input:where([type='month']):focus, input:where([type='search']):focus, input:where([type='tel']):focus, input:where([type='time']):focus, input:where([type='week']):focus, select:where([multiple]):focus, textarea:focus, select:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  border-color: #2563eb;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #6b7280;
  opacity: 1;
}
input::placeholder,textarea::placeholder {
  color: #6b7280;
  opacity: 1;
}
::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}
::-webkit-date-and-time-value {
  min-height: 1.5em;
  text-align: inherit;
}
::-webkit-datetime-edit {
  display: inline-flex;
}
::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field {
  padding-top: 0;
  padding-bottom: 0;
}
select {
  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 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
}
select:where([multiple]),select:where([size]:not([size="1"])) {
  background-image: initial;
  background-position: initial;
  background-repeat: unset;
  background-size: initial;
  padding-right: 0.75rem;
  -webkit-print-color-adjust: unset;
          print-color-adjust: unset;
}
input:where([type='checkbox']),input:where([type='radio']) {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
  color: #2563eb;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  --tw-shadow: 0 0 #0000;
}
input:where([type='checkbox']) {
  border-radius: 0px;
}
input:where([type='radio']) {
  border-radius: 100%;
}
input:where([type='checkbox']):focus,input:where([type='radio']):focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 2px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
input:where([type='checkbox']):checked,input:where([type='radio']):checked {
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
input:where([type='checkbox']):checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}
@media (forced-colors: active)  {
  input:where([type='checkbox']):checked {
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}
input:where([type='radio']):checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}
@media (forced-colors: active)  {
  input:where([type='radio']):checked {
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}
input:where([type='checkbox']):checked:hover,input:where([type='checkbox']):checked:focus,input:where([type='radio']):checked:hover,input:where([type='radio']):checked:focus {
  border-color: transparent;
  background-color: currentColor;
}
input:where([type='checkbox']):indeterminate {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media (forced-colors: active)  {
  input:where([type='checkbox']):indeterminate {
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}
input:where([type='checkbox']):indeterminate:hover,input:where([type='checkbox']):indeterminate:focus {
  border-color: transparent;
  background-color: currentColor;
}
input:where([type='file']) {
  background: unset;
  border-color: inherit;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-size: unset;
  line-height: inherit;
}
input:where([type='file']):focus {
  outline: 1px solid ButtonText;
  outline: 1px auto -webkit-focus-ring-color;
}
* {
  border-color: hsl(var(--border));
}
html {
  scroll-behavior: smooth;
}
body {
  --tw-bg-opacity: 1;
  background-color: rgb(246 248 247 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(17 23 20 / var(--tw-text-opacity, 1));
}
body:is(class *) {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(240 244 242 / var(--tw-text-opacity, 1));
}
body {
  font-family: Instrument Sans, ui-sans-serif, system-ui;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* Custom scrollbar - Slim and Global */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
  }
*::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }
::-webkit-scrollbar-thumb {
    background: transparent;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
  }
*::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
  }
/* For dark mode */
.dark *::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
  }
.dark *::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
  }
:root {
    --background: 0 0% 100%;
    --foreground: 222.2 84% 4.9%;
    --card: 0 0% 100%;
    --card-foreground: 222.2 84% 4.9%;
    --popover: 0 0% 100%;
    --popover-foreground: 222.2 84% 4.9%;
    --primary: 221.2 83.2% 53.3%;
    --primary-foreground: 210 40% 98%;
    --secondary: 210 40% 96.1%;
    --secondary-foreground: 222.2 47.4% 11.2%;
    --muted: 210 40% 96.1%;
    --muted-foreground: 215.4 16.3% 46.9%;
    --accent: 210 40% 96.1%;
    --accent-foreground: 222.2 47.4% 11.2%;

    --border: 214.3 31.8% 91.4%;
    --input: 214.3 31.8% 91.4%;
    --ring: 221.2 83.2% 53.3%;

    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 210 40% 98%;
    --success: 142 71% 45%;
    /* #22c55e - green */
    --success-foreground: 0 0% 100%;
    --warning: 38 92% 50%;
    /* #f59e0b - amber */
    --warning-foreground: 0 0% 100%;

    /* Extended Semantic Tokens */
    --surface: 0 0% 96%;
    /* #f5f5f5 */
    --surface-hover: 0 0% 92%;
    /* #ebebeb */
    --text-secondary: 0 0% 38%;
    /* #616161 */
    --text-tertiary: 0 0% 62%;
    /* #9e9e9e */
    --border-secondary: 0 0% 90%;
    /* #e5e5e5 */
    --input-background: 0 0% 100%;
    /* #ffffff */

    /* Chart Colors */
    --chart-1: 12 76% 61%;
    --chart-2: 173 58% 39%;
    --chart-3: 197 37% 24%;
    --chart-4: 43 74% 66%;
    --chart-5: 27 87% 67%;

    /* Radius */
    --radius: 0.5rem;
    /* 8px - default border radius */
  }
.dark {
    /* ========== DARK THEME (Segments/Accounts Style) ========== */

    /* Base Colors - Pure Black Canvas */
    --background: 0 0% 0%;
    /* #000000 - pure black */
    --foreground: 0 0% 100%;
    /* #ffffff - white text */

    /* Surface Colors - Transparent White Overlays */
    --card: 0 0% 0%;
    /* #000000 - cards on black */
    --card-foreground: 0 0% 100%;
    --popover: 0 0% 0%;
    --popover-foreground: 0 0% 100%;

    /* Brand Colors */
    --primary: 271 91% 65%;
    /* #9333ea - purple primary */
    --primary-foreground: 0 0% 100%;
    --secondary: 0 0% 15%;
    /* #262626 - dark gray */
    --secondary-foreground: 0 0% 100%;

    /* Semantic Colors */
    --muted: 0 0% 15%;
    /* #262626 - muted backgrounds */
    --muted-foreground: 0 0% 65%;
    /* #a6a6a6 - muted text */
    --accent: 0 0% 15%;
    /* #262626 - accent backgrounds */
    --accent-foreground: 0 0% 100%;

    /* UI Elements */
    --border: 0 0% 20%;
    /* #333333 - borders */
    --input: 0 0% 10%;
    /* #1a1a1a - input backgrounds */
    --ring: 271 91% 65%;
    /* #9333ea - focus rings */

    /* Status Colors */
    --destructive: 0 84% 60%;
    /* #ef4444 - red */
    --destructive-foreground: 0 0% 100%;
    --success: 142 71% 45%;
    /* #22c55e - green */
    --success-foreground: 0 0% 100%;
    --warning: 38 92% 50%;
    /* #f59e0b - amber */
    --warning-foreground: 0 0% 100%;

    /* Extended Semantic Tokens (Segments/Accounts) */
    --surface: 0 0% 6%;
    /* rgba(255,255,255,0.06) equivalent */
    --surface-hover: 0 0% 10%;
    /* rgba(255,255,255,0.1) equivalent */
    --text-secondary: 0 0% 70%;
    /* rgba(255,255,255,0.7) equivalent */
    --text-tertiary: 0 0% 40%;
    /* rgba(255,255,255,0.4) equivalent */
    --border-secondary: 0 0% 20%;
    /* #333333 */
    --input-background: 0 0% 9%;
    /* rgba(24,24,24,0.8) equivalent */

    /* Chart Colors */
    --chart-1: 220 70% 50%;
    --chart-2: 160 60% 45%;
    --chart-3: 30 80% 55%;
    --chart-4: 280 65% 60%;
    --chart-5: 340 75% 55%;
  }
.container {
  width: 100%;
}
@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}
.form-input,.form-textarea,.form-select,.form-multiselect {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  border-radius: 0px;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-shadow: 0 0 #0000;
}
.form-input:focus, .form-textarea:focus, .form-select:focus, .form-multiselect:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  border-color: #2563eb;
}
.form-input::-moz-placeholder, .form-textarea::-moz-placeholder {
  color: #6b7280;
  opacity: 1;
}
.form-input::placeholder,.form-textarea::placeholder {
  color: #6b7280;
  opacity: 1;
}
.form-input::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}
.form-input::-webkit-date-and-time-value {
  min-height: 1.5em;
  text-align: inherit;
}
.form-input::-webkit-datetime-edit {
  display: inline-flex;
}
.form-input::-webkit-datetime-edit,.form-input::-webkit-datetime-edit-year-field,.form-input::-webkit-datetime-edit-month-field,.form-input::-webkit-datetime-edit-day-field,.form-input::-webkit-datetime-edit-hour-field,.form-input::-webkit-datetime-edit-minute-field,.form-input::-webkit-datetime-edit-second-field,.form-input::-webkit-datetime-edit-millisecond-field,.form-input::-webkit-datetime-edit-meridiem-field {
  padding-top: 0;
  padding-bottom: 0;
}
/* Form input base styles */
.form-input {
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.form-input:is(class *) {
  --tw-bg-opacity: 1;
  background-color: rgb(30 41 59 / var(--tw-bg-opacity, 1));
}
.form-input {
  border-radius: var(--radius);
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(220 229 223 / var(--tw-border-opacity, 1));
}
.form-input:is(class *) {
  --tw-border-opacity: 1;
  border-color: rgb(42 60 49 / var(--tw-border-opacity, 1));
}
.form-input {
  --tw-text-opacity: 1;
  color: rgb(17 23 20 / var(--tw-text-opacity, 1));
}
.form-input:is(class *) {
  --tw-text-opacity: 1;
  color: rgb(240 244 242 / var(--tw-text-opacity, 1));
}
.form-input::-moz-placeholder {
  --tw-text-opacity: 1;
  color: rgb(100 135 114 / var(--tw-text-opacity, 1));
}
.form-input::placeholder {
  --tw-text-opacity: 1;
  color: rgb(100 135 114 / var(--tw-text-opacity, 1));
}
.form-input:is(class *)::-moz-placeholder {
  --tw-text-opacity: 1;
  color: rgb(160 184 172 / var(--tw-text-opacity, 1));
}
.form-input:is(class *)::placeholder {
  --tw-text-opacity: 1;
  color: rgb(160 184 172 / var(--tw-text-opacity, 1));
}
.form-input {
    /* @apply focus:ring-2 focus:ring-primary focus:border-primary; */
  }
.form-input:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.form-input {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
  animation-duration: 200ms;
}
/* Button base styles */
/* Card styles */
.card {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.card:is(class *) {
  --tw-bg-opacity: 1;
  background-color: rgb(15 23 42 / var(--tw-bg-opacity, 1));
}
.card {
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(220 229 223 / var(--tw-border-opacity, 1));
}
.card:is(class *) {
  --tw-border-opacity: 1;
  border-color: rgb(42 60 49 / var(--tw-border-opacity, 1));
}
.card {
  border-radius: 0.75rem;
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
/* Badge styles */
.badge {
  display: inline-flex;
  align-items: center;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 500;
}
/* Dark Theme Components */
/* Dark input with consistent styling */
/* Dark button with border */
/* Dark card/surface */
/* Dark table styles */
/* Dark menu/dropdown */
/* Typography presets */
.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;
}
.pointer-events-none {
  pointer-events: none;
}
.pointer-events-auto {
  pointer-events: auto;
}
.visible {
  visibility: visible;
}
.invisible {
  visibility: hidden;
}
.collapse {
  visibility: collapse;
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.sticky {
  position: sticky;
}
.inset-0 {
  inset: 0px;
}
.inset-x-0 {
  left: 0px;
  right: 0px;
}
.inset-y-0 {
  top: 0px;
  bottom: 0px;
}
.-bottom-1 {
  bottom: -0.25rem;
}
.-left-\[405px\] {
  left: -405px;
}
.-left-\[435px\] {
  left: -435px;
}
.-right-1 {
  right: -0.25rem;
}
.-right-4 {
  right: -1rem;
}
.-top-1 {
  top: -0.25rem;
}
.-top-\[358px\] {
  top: -358px;
}
.bottom-0 {
  bottom: 0px;
}
.bottom-full {
  bottom: 100%;
}
.left-0 {
  left: 0px;
}
.left-1\/2 {
  left: 50%;
}
.left-2 {
  left: 0.5rem;
}
.left-3 {
  left: 0.75rem;
}
.left-4 {
  left: 1rem;
}
.left-\[50\%\] {
  left: 50%;
}
.left-\[60px\] {
  left: 60px;
}
.left-\[calc\(100\%\+8px\)\] {
  left: calc(100% + 8px);
}
.left-auto {
  left: auto;
}
.right-0 {
  right: 0px;
}
.right-1 {
  right: 0.25rem;
}
.right-10 {
  right: 2.5rem;
}
.right-2 {
  right: 0.5rem;
}
.right-3 {
  right: 0.75rem;
}
.right-4 {
  right: 1rem;
}
.top-0 {
  top: 0px;
}
.top-1 {
  top: 0.25rem;
}
.top-1\/2 {
  top: 50%;
}
.top-2 {
  top: 0.5rem;
}
.top-4 {
  top: 1rem;
}
.top-8 {
  top: 2rem;
}
.top-\[40px\] {
  top: 40px;
}
.top-\[50\%\] {
  top: 50%;
}
.top-\[86px\] {
  top: 86px;
}
.top-full {
  top: 100%;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.z-50 {
  z-index: 50;
}
.z-\[10000\] {
  z-index: 10000;
}
.z-\[10001\] {
  z-index: 10001;
}
.z-\[10002\] {
  z-index: 10002;
}
.z-\[1000\] {
  z-index: 1000;
}
.z-\[1001\] {
  z-index: 1001;
}
.z-\[10\] {
  z-index: 10;
}
.z-\[11\] {
  z-index: 11;
}
.z-\[20\] {
  z-index: 20;
}
.z-\[60\] {
  z-index: 60;
}
.z-\[9\] {
  z-index: 9;
}
.z-auto {
  z-index: auto;
}
.col-span-2 {
  grid-column: span 2 / span 2;
}
.m-0 {
  margin: 0px;
}
.-mx-1 {
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}
.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}
.mx-6 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.mb-0\.5 {
  margin-bottom: 0.125rem;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-2\.5 {
  margin-bottom: 0.625rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.ml-1 {
  margin-left: 0.25rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.ml-3 {
  margin-left: 0.75rem;
}
.ml-4 {
  margin-left: 1rem;
}
.ml-\[260px\] {
  margin-left: 260px;
}
.ml-auto {
  margin-left: auto;
}
.mr-1 {
  margin-right: 0.25rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mr-3 {
  margin-right: 0.75rem;
}
.mr-4 {
  margin-right: 1rem;
}
.mt-0 {
  margin-top: 0px;
}
.mt-0\.5 {
  margin-top: 0.125rem;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-1\.5 {
  margin-top: 0.375rem;
}
.mt-10 {
  margin-top: 2.5rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-9 {
  margin-top: 2.25rem;
}
.mt-auto {
  margin-top: auto;
}
.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline {
  display: inline;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.contents {
  display: contents;
}
.hidden {
  display: none;
}
.aspect-square {
  aspect-ratio: 1 / 1;
}
.size-\[21\.754px\] {
  width: 21.754px;
  height: 21.754px;
}
.h-0 {
  height: 0px;
}
.h-1 {
  height: 0.25rem;
}
.h-1\/3 {
  height: 33.333333%;
}
.h-10 {
  height: 2.5rem;
}
.h-11 {
  height: 2.75rem;
}
.h-12 {
  height: 3rem;
}
.h-14 {
  height: 3.5rem;
}
.h-16 {
  height: 4rem;
}
.h-2 {
  height: 0.5rem;
}
.h-2\.5 {
  height: 0.625rem;
}
.h-20 {
  height: 5rem;
}
.h-3 {
  height: 0.75rem;
}
.h-3\.5 {
  height: 0.875rem;
}
.h-32 {
  height: 8rem;
}
.h-4 {
  height: 1rem;
}
.h-48 {
  height: 12rem;
}
.h-5 {
  height: 1.25rem;
}
.h-6 {
  height: 1.5rem;
}
.h-64 {
  height: 16rem;
}
.h-7 {
  height: 1.75rem;
}
.h-8 {
  height: 2rem;
}
.h-9 {
  height: 2.25rem;
}
.h-\[100px\] {
  height: 100px;
}
.h-\[10px\] {
  height: 10px;
}
.h-\[112px\] {
  height: 112px;
}
.h-\[13px\] {
  height: 13px;
}
.h-\[150px\] {
  height: 150px;
}
.h-\[1px\] {
  height: 1px;
}
.h-\[20px\] {
  height: 20px;
}
.h-\[212px\] {
  height: 212px;
}
.h-\[26px\] {
  height: 26px;
}
.h-\[300px\] {
  height: 300px;
}
.h-\[30px\] {
  height: 30px;
}
.h-\[32px\] {
  height: 32px;
}
.h-\[34px\] {
  height: 34px;
}
.h-\[4\.97px\] {
  height: 4.97px;
}
.h-\[400px\] {
  height: 400px;
}
.h-\[48px\] {
  height: 48px;
}
.h-\[4px\] {
  height: 4px;
}
.h-\[50px\] {
  height: 50px;
}
.h-\[52px\] {
  height: 52px;
}
.h-\[64px\] {
  height: 64px;
}
.h-\[72px\] {
  height: 72px;
}
.h-\[79px\] {
  height: 79px;
}
.h-\[927px\] {
  height: 927px;
}
.h-\[calc\(100\%\+16px\)\] {
  height: calc(100% + 16px);
}
.h-\[var\(--radix-select-trigger-height\)\] {
  height: var(--radix-select-trigger-height);
}
.h-auto {
  height: auto;
}
.h-fit {
  height: -moz-fit-content;
  height: fit-content;
}
.h-full {
  height: 100%;
}
.h-px {
  height: 1px;
}
.h-screen {
  height: 100vh;
}
.max-h-60 {
  max-height: 15rem;
}
.max-h-64 {
  max-height: 16rem;
}
.max-h-\[--radix-select-content-available-height\] {
  max-height: var(--radix-select-content-available-height);
}
.max-h-\[300px\] {
  max-height: 300px;
}
.max-h-\[400px\] {
  max-height: 400px;
}
.max-h-\[600px\] {
  max-height: 600px;
}
.max-h-\[70vh\] {
  max-height: 70vh;
}
.max-h-\[80vh\] {
  max-height: 80vh;
}
.max-h-\[90vh\] {
  max-height: 90vh;
}
.max-h-\[calc\(100vh-300px\)\] {
  max-height: calc(100vh - 300px);
}
.max-h-\[calc\(100vh-320px\)\] {
  max-height: calc(100vh - 320px);
}
.max-h-\[calc\(90vh-180px\)\] {
  max-height: calc(90vh - 180px);
}
.max-h-\[var\(--radix-dropdown-menu-content-available-height\)\] {
  max-height: var(--radix-dropdown-menu-content-available-height);
}
.min-h-0 {
  min-height: 0px;
}
.min-h-\[120px\] {
  min-height: 120px;
}
.min-h-\[200px\] {
  min-height: 200px;
}
.min-h-\[300px\] {
  min-height: 300px;
}
.min-h-\[34px\] {
  min-height: 34px;
}
.min-h-\[3rem\] {
  min-height: 3rem;
}
.min-h-\[400px\] {
  min-height: 400px;
}
.min-h-\[600px\] {
  min-height: 600px;
}
.min-h-\[60px\] {
  min-height: 60px;
}
.min-h-\[60vh\] {
  min-height: 60vh;
}
.min-h-\[68px\] {
  min-height: 68px;
}
.min-h-full {
  min-height: 100%;
}
.min-h-screen {
  min-height: 100vh;
}
.w-0 {
  width: 0px;
}
.w-0\.5 {
  width: 0.125rem;
}
.w-1 {
  width: 0.25rem;
}
.w-1\/2 {
  width: 50%;
}
.w-1\/3 {
  width: 33.333333%;
}
.w-10 {
  width: 2.5rem;
}
.w-12 {
  width: 3rem;
}
.w-14 {
  width: 3.5rem;
}
.w-16 {
  width: 4rem;
}
.w-2 {
  width: 0.5rem;
}
.w-2\.5 {
  width: 0.625rem;
}
.w-20 {
  width: 5rem;
}
.w-24 {
  width: 6rem;
}
.w-3 {
  width: 0.75rem;
}
.w-3\.5 {
  width: 0.875rem;
}
.w-3\/4 {
  width: 75%;
}
.w-32 {
  width: 8rem;
}
.w-36 {
  width: 9rem;
}
.w-4 {
  width: 1rem;
}
.w-40 {
  width: 10rem;
}
.w-48 {
  width: 12rem;
}
.w-5 {
  width: 1.25rem;
}
.w-6 {
  width: 1.5rem;
}
.w-60 {
  width: 15rem;
}
.w-64 {
  width: 16rem;
}
.w-7 {
  width: 1.75rem;
}
.w-72 {
  width: 18rem;
}
.w-8 {
  width: 2rem;
}
.w-80 {
  width: 20rem;
}
.w-9 {
  width: 2.25rem;
}
.w-\[100px\] {
  width: 100px;
}
.w-\[10px\] {
  width: 10px;
}
.w-\[120px\] {
  width: 120px;
}
.w-\[130px\] {
  width: 130px;
}
.w-\[15\%\] {
  width: 15%;
}
.w-\[150px\] {
  width: 150px;
}
.w-\[1px\] {
  width: 1px;
}
.w-\[20\%\] {
  width: 20%;
}
.w-\[200px\] {
  width: 200px;
}
.w-\[23px\] {
  width: 23px;
}
.w-\[259px\] {
  width: 259px;
}
.w-\[260px\] {
  width: 260px;
}
.w-\[280px\] {
  width: 280px;
}
.w-\[30\%\] {
  width: 30%;
}
.w-\[300px\] {
  width: 300px;
}
.w-\[34px\] {
  width: 34px;
}
.w-\[35\%\] {
  width: 35%;
}
.w-\[3px\] {
  width: 3px;
}
.w-\[40\%\] {
  width: 40%;
}
.w-\[402px\] {
  width: 402px;
}
.w-\[40px\] {
  width: 40px;
}
.w-\[44px\] {
  width: 44px;
}
.w-\[450px\] {
  width: 450px;
}
.w-\[495\.33px\] {
  width: 495.33px;
}
.w-\[50px\] {
  width: 50px;
}
.w-\[522px\] {
  width: 522px;
}
.w-\[52px\] {
  width: 52px;
}
.w-\[60px\] {
  width: 60px;
}
.w-\[70px\] {
  width: 70px;
}
.w-\[758px\] {
  width: 758px;
}
.w-\[80px\] {
  width: 80px;
}
.w-\[8px\] {
  width: 8px;
}
.w-\[90px\] {
  width: 90px;
}
.w-\[927px\] {
  width: 927px;
}
.w-\[98px\] {
  width: 98px;
}
.w-\[calc\(100\%-140px\)\] {
  width: calc(100% - 140px);
}
.w-auto {
  width: auto;
}
.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}
.w-full {
  width: 100%;
}
.w-px {
  width: 1px;
}
.min-w-0 {
  min-width: 0px;
}
.min-w-16 {
  min-width: 4rem;
}
.min-w-6 {
  min-width: 1.5rem;
}
.min-w-60 {
  min-width: 15rem;
}
.min-w-\[100px\] {
  min-width: 100px;
}
.min-w-\[160px\] {
  min-width: 160px;
}
.min-w-\[180px\] {
  min-width: 180px;
}
.min-w-\[200px\] {
  min-width: 200px;
}
.min-w-\[20px\] {
  min-width: 20px;
}
.min-w-\[250px\] {
  min-width: 250px;
}
.min-w-\[300px\] {
  min-width: 300px;
}
.min-w-\[34px\] {
  min-width: 34px;
}
.min-w-\[40px\] {
  min-width: 40px;
}
.min-w-\[495\.33px\] {
  min-width: 495.33px;
}
.min-w-\[50px\] {
  min-width: 50px;
}
.min-w-\[80px\] {
  min-width: 80px;
}
.min-w-\[8rem\] {
  min-width: 8rem;
}
.min-w-\[var\(--radix-select-trigger-width\)\] {
  min-width: var(--radix-select-trigger-width);
}
.min-w-full {
  min-width: 100%;
}
.min-w-max {
  min-width: -moz-max-content;
  min-width: max-content;
}
.max-w-2xl {
  max-width: 42rem;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-6xl {
  max-width: 72rem;
}
.max-w-\[150px\] {
  max-width: 150px;
}
.max-w-\[200px\] {
  max-width: 200px;
}
.max-w-\[500px\] {
  max-width: 500px;
}
.max-w-full {
  max-width: 100%;
}
.max-w-lg {
  max-width: 32rem;
}
.max-w-md {
  max-width: 28rem;
}
.max-w-none {
  max-width: none;
}
.max-w-sm {
  max-width: 24rem;
}
.max-w-xl {
  max-width: 36rem;
}
.max-w-xs {
  max-width: 20rem;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-\[1_0_0\] {
  flex: 1 0 0;
}
.flex-none {
  flex: none;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.shrink-0 {
  flex-shrink: 0;
}
.caption-bottom {
  caption-side: bottom;
}
.border-collapse {
  border-collapse: collapse;
}
.border-separate {
  border-collapse: separate;
}
.border-spacing-0 {
  --tw-border-spacing-x: 0px;
  --tw-border-spacing-y: 0px;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}
.origin-\[--radix-dropdown-menu-content-transform-origin\] {
  transform-origin: var(--radix-dropdown-menu-content-transform-origin);
}
.origin-\[--radix-popover-content-transform-origin\] {
  transform-origin: var(--radix-popover-content-transform-origin);
}
.origin-\[--radix-select-content-transform-origin\] {
  transform-origin: var(--radix-select-content-transform-origin);
}
.origin-\[--radix-tooltip-content-transform-origin\] {
  transform-origin: var(--radix-tooltip-content-transform-origin);
}
.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-x-4 {
  --tw-translate-x: -1rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-1\/2 {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-1\/2 {
  --tw-translate-x: 50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-4 {
  --tw-translate-x: 1rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-\[-50\%\] {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-1\/2 {
  --tw-translate-y: 50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-\[-50\%\] {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-180 {
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-90 {
  --tw-rotate: 90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-\[-90deg\] {
  --tw-rotate: -90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@keyframes pulse {
  50% {
    opacity: .5;
  }
}
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse-soft {
  0%, 100% {
    box-shadow: 0 2px 4px rgba(102, 126, 234, 0.2);
  }
  50% {
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4), 0 0 16px rgba(102, 126, 234, 0.2);
  }
}
.animate-pulse-soft {
  animation: pulse-soft 2s ease-in-out infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.animate-spin {
  animation: spin 1s linear infinite;
}
.cursor-default {
  cursor: default;
}
.cursor-help {
  cursor: help;
}
.cursor-not-allowed {
  cursor: not-allowed;
}
.cursor-pointer {
  cursor: pointer;
}
.select-none {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.resize-none {
  resize: none;
}
.resize {
  resize: both;
}
.list-inside {
  list-style-position: inside;
}
.list-decimal {
  list-style-type: decimal;
}
.list-disc {
  list-style-type: disc;
}
.appearance-none {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.grid-cols-\[1fr_1fr_1fr_40px\] {
  grid-template-columns: 1fr 1fr 1fr 40px;
}
.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}
.flex-col-reverse {
  flex-direction: column-reverse;
}
.flex-wrap {
  flex-wrap: wrap;
}
.place-content-center {
  place-content: center;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.items-stretch {
  align-items: stretch;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-0\.5 {
  gap: 0.125rem;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-1\.5 {
  gap: 0.375rem;
}
.gap-10 {
  gap: 2.5rem;
}
.gap-12 {
  gap: 3rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-2\.5 {
  gap: 0.625rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-3\.5 {
  gap: 0.875rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-5 {
  gap: 1.25rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-7 {
  gap: 1.75rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-\[10px\] {
  gap: 10px;
}
.gap-\[11px\] {
  gap: 11px;
}
.gap-\[14px\] {
  gap: 14px;
}
.gap-\[16px\] {
  gap: 16px;
}
.gap-\[19px\] {
  gap: 19px;
}
.gap-\[20px\] {
  gap: 20px;
}
.gap-\[24px\] {
  gap: 24px;
}
.gap-\[27px\] {
  gap: 27px;
}
.gap-\[40px\] {
  gap: 40px;
}
.gap-x-4 {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.gap-y-3 {
  row-gap: 0.75rem;
}
.gap-y-4 {
  row-gap: 1rem;
}
.-space-x-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(-0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-0 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0px * var(--tw-space-y-reverse));
}
.space-y-0\.5 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.125rem * var(--tw-space-y-reverse));
}
.space-y-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}
.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.375rem * var(--tw-space-y-reverse));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-y-5 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
}
.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.space-y-8 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}
.space-y-\[17px\] > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(17px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(17px * var(--tw-space-y-reverse));
}
.self-start {
  align-self: flex-start;
}
.self-end {
  align-self: flex-end;
}
.overflow-auto {
  overflow: auto;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-visible {
  overflow: visible;
}
.overflow-x-auto {
  overflow-x: auto;
}
.overflow-y-auto {
  overflow-y: auto;
}
.overflow-x-hidden {
  overflow-x: hidden;
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-ellipsis {
  text-overflow: ellipsis;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.whitespace-pre-wrap {
  white-space: pre-wrap;
}
.break-words {
  overflow-wrap: break-word;
}
.break-all {
  word-break: break-all;
}
.rounded {
  border-radius: 0.5rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-\[10px\] {
  border-radius: 10px;
}
.rounded-\[12px\] {
  border-radius: 12px;
}
.rounded-\[16px\] {
  border-radius: 16px;
}
.rounded-\[30px\] {
  border-radius: 30px;
}
.rounded-\[4px\] {
  border-radius: 4px;
}
.rounded-\[50px\] {
  border-radius: 50px;
}
.rounded-\[60px\] {
  border-radius: 60px;
}
.rounded-\[8px\] {
  border-radius: 8px;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: var(--radius);
}
.rounded-md {
  border-radius: calc(var(--radius) - 2px);
}
.rounded-none {
  border-radius: 0px;
}
.rounded-sm {
  border-radius: calc(var(--radius) - 4px);
}
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-l-\[10px\] {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.rounded-l-none {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
.rounded-r-none {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
.border {
  border-width: 1px;
}
.border-0 {
  border-width: 0px;
}
.border-2 {
  border-width: 2px;
}
.border-4 {
  border-width: 4px;
}
.border-\[0\.533px\] {
  border-width: 0.533px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-b-2 {
  border-bottom-width: 2px;
}
.border-l {
  border-left-width: 1px;
}
.border-l-4 {
  border-left-width: 4px;
}
.border-r {
  border-right-width: 1px;
}
.border-r-4 {
  border-right-width: 4px;
}
.border-t {
  border-top-width: 1px;
}
.border-t-4 {
  border-top-width: 4px;
}
.border-solid {
  border-style: solid;
}
.border-dashed {
  border-style: dashed;
}
.border-none {
  border-style: none;
}
.border-\[\#333333\] {
  --tw-border-opacity: 1;
  border-color: rgb(51 51 51 / var(--tw-border-opacity, 1));
}
.border-\[\#333\] {
  --tw-border-opacity: 1;
  border-color: rgb(51 51 51 / var(--tw-border-opacity, 1));
}
.border-\[\#3f3f3f\] {
  --tw-border-opacity: 1;
  border-color: rgb(63 63 63 / var(--tw-border-opacity, 1));
}
.border-\[\#4D4D4D\] {
  --tw-border-opacity: 1;
  border-color: rgb(77 77 77 / var(--tw-border-opacity, 1));
}
.border-\[rgba\(255\2c 255\2c 255\2c 0\.1\)\] {
  border-color: rgba(255,255,255,0.1);
}
.border-\[rgba\(255\2c 255\2c 255\2c 0\.2\)\] {
  border-color: rgba(255,255,255,0.2);
}
.border-\[rgba\(255\2c 255\2c 255\2c 0\.3\)\] {
  border-color: rgba(255,255,255,0.3);
}
.border-\[rgba\(255\2c 255\2c 255\2c 0\.5\)\] {
  border-color: rgba(255,255,255,0.5);
}
.border-amber-500 {
  --tw-border-opacity: 1;
  border-color: rgb(245 158 11 / var(--tw-border-opacity, 1));
}
.border-background {
  border-color: hsl(var(--background));
}
.border-black {
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
}
.border-blue-200 {
  --tw-border-opacity: 1;
  border-color: rgb(191 219 254 / var(--tw-border-opacity, 1));
}
.border-blue-500 {
  --tw-border-opacity: 1;
  border-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
}
.border-blue-500\/20 {
  border-color: rgb(59 130 246 / 0.2);
}
.border-blue-500\/30 {
  border-color: rgb(59 130 246 / 0.3);
}
.border-blue-700\/50 {
  border-color: rgb(29 78 216 / 0.5);
}
.border-border {
  border-color: hsl(var(--border));
}
.border-border-light {
  --tw-border-opacity: 1;
  border-color: rgb(220 229 223 / var(--tw-border-opacity, 1));
}
.border-border-light\/50 {
  border-color: rgb(220 229 223 / 0.5);
}
.border-border\/50 {
  border-color: hsl(var(--border) / 0.5);
}
.border-destructive {
  border-color: hsl(var(--destructive));
}
.border-destructive\/20 {
  border-color: hsl(var(--destructive) / 0.2);
}
.border-destructive\/30 {
  border-color: hsl(var(--destructive) / 0.3);
}
.border-figma-base {
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
}
.border-figma-border {
  --tw-border-opacity: 1;
  border-color: rgb(51 51 51 / var(--tw-border-opacity, 1));
}
.border-figma-border\/50 {
  border-color: rgb(51 51 51 / 0.5);
}
.border-figma-text {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.border-figma-text-20 {
  border-color: rgba(255, 255, 255, 0.2);
}
.border-figma-text-40 {
  border-color: rgba(255, 255, 255, 0.4);
}
.border-figma-text\/30 {
  border-color: rgb(255 255 255 / 0.3);
}
.border-gray-300 {
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}
.border-gray-500\/30 {
  border-color: rgb(107 114 128 / 0.3);
}
.border-green-500 {
  --tw-border-opacity: 1;
  border-color: rgb(34 197 94 / var(--tw-border-opacity, 1));
}
.border-green-500\/30 {
  border-color: rgb(34 197 94 / 0.3);
}
.border-input {
  border-color: hsl(var(--input));
}
.border-primary {
  border-color: hsl(var(--primary));
}
.border-primary\/20 {
  border-color: hsl(var(--primary) / 0.2);
}
.border-primary\/50 {
  border-color: hsl(var(--primary) / 0.5);
}
.border-purple-400 {
  --tw-border-opacity: 1;
  border-color: rgb(192 132 252 / var(--tw-border-opacity, 1));
}
.border-purple-700\/50 {
  border-color: rgb(126 34 206 / 0.5);
}
.border-red-200 {
  --tw-border-opacity: 1;
  border-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
}
.border-red-300 {
  --tw-border-opacity: 1;
  border-color: rgb(252 165 165 / var(--tw-border-opacity, 1));
}
.border-red-400 {
  --tw-border-opacity: 1;
  border-color: rgb(248 113 113 / var(--tw-border-opacity, 1));
}
.border-red-500 {
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
}
.border-red-500\/20 {
  border-color: rgb(239 68 68 / 0.2);
}
.border-red-500\/30 {
  border-color: rgb(239 68 68 / 0.3);
}
.border-red-500\/50 {
  border-color: rgb(239 68 68 / 0.5);
}
.border-slate-200 {
  --tw-border-opacity: 1;
  border-color: rgb(226 232 240 / var(--tw-border-opacity, 1));
}
.border-slate-300 {
  --tw-border-opacity: 1;
  border-color: rgb(203 213 225 / var(--tw-border-opacity, 1));
}
.border-success {
  border-color: hsl(var(--success));
}
.border-success\/20 {
  border-color: hsl(var(--success) / 0.2);
}
.border-success\/30 {
  border-color: hsl(var(--success) / 0.3);
}
.border-transparent {
  border-color: transparent;
}
.border-warning\/20 {
  border-color: hsl(var(--warning) / 0.2);
}
.border-warning\/30 {
  border-color: hsl(var(--warning) / 0.3);
}
.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.border-white\/10 {
  border-color: rgb(255 255 255 / 0.1);
}
.border-white\/15 {
  border-color: rgb(255 255 255 / 0.15);
}
.border-white\/20 {
  border-color: rgb(255 255 255 / 0.2);
}
.border-white\/30 {
  border-color: rgb(255 255 255 / 0.3);
}
.border-white\/40 {
  border-color: rgb(255 255 255 / 0.4);
}
.border-yellow-500\/30 {
  border-color: rgb(234 179 8 / 0.3);
}
.border-t-figma-border {
  --tw-border-opacity: 1;
  border-top-color: rgb(51 51 51 / var(--tw-border-opacity, 1));
}
.border-t-primary {
  border-top-color: hsl(var(--primary));
}
.border-t-transparent {
  border-top-color: transparent;
}
.bg-\[\#050607\] {
  --tw-bg-opacity: 1;
  background-color: rgb(5 6 7 / var(--tw-bg-opacity, 1));
}
.bg-\[\#0f172a\] {
  --tw-bg-opacity: 1;
  background-color: rgb(15 23 42 / var(--tw-bg-opacity, 1));
}
.bg-\[\#141414\] {
  --tw-bg-opacity: 1;
  background-color: rgb(20 20 20 / var(--tw-bg-opacity, 1));
}
.bg-\[\#1a1a1a\] {
  --tw-bg-opacity: 1;
  background-color: rgb(26 26 26 / var(--tw-bg-opacity, 1));
}
.bg-\[\#1e293b\] {
  --tw-bg-opacity: 1;
  background-color: rgb(30 41 59 / var(--tw-bg-opacity, 1));
}
.bg-\[\#232323\] {
  --tw-bg-opacity: 1;
  background-color: rgb(35 35 35 / var(--tw-bg-opacity, 1));
}
.bg-\[\#252525\] {
  --tw-bg-opacity: 1;
  background-color: rgb(37 37 37 / var(--tw-bg-opacity, 1));
}
.bg-\[\#2a2a2a\] {
  --tw-bg-opacity: 1;
  background-color: rgb(42 42 42 / var(--tw-bg-opacity, 1));
}
.bg-\[\#333\] {
  --tw-bg-opacity: 1;
  background-color: rgb(51 51 51 / var(--tw-bg-opacity, 1));
}
.bg-\[\#4285f4\] {
  --tw-bg-opacity: 1;
  background-color: rgb(66 133 244 / var(--tw-bg-opacity, 1));
}
.bg-\[\#434343\] {
  --tw-bg-opacity: 1;
  background-color: rgb(67 67 67 / var(--tw-bg-opacity, 1));
}
.bg-\[\#99ff96\] {
  --tw-bg-opacity: 1;
  background-color: rgb(153 255 150 / var(--tw-bg-opacity, 1));
}
.bg-\[\#fa5457\] {
  --tw-bg-opacity: 1;
  background-color: rgb(250 84 87 / var(--tw-bg-opacity, 1));
}
.bg-\[\#fbbc04\] {
  --tw-bg-opacity: 1;
  background-color: rgb(251 188 4 / var(--tw-bg-opacity, 1));
}
.bg-\[rgba\(24\2c 24\2c 24\2c 0\.8\)\] {
  background-color: rgba(24,24,24,0.8);
}
.bg-\[rgba\(24\2c 24\2c 24\2c 0\.95\)\] {
  background-color: rgba(24,24,24,0.95);
}
.bg-\[rgba\(255\2c 255\2c 255\2c 0\.03\)\] {
  background-color: rgba(255,255,255,0.03);
}
.bg-\[rgba\(255\2c 255\2c 255\2c 0\.05\)\] {
  background-color: rgba(255,255,255,0.05);
}
.bg-\[rgba\(255\2c 255\2c 255\2c 0\.07\)\] {
  background-color: rgba(255,255,255,0.07);
}
.bg-\[rgba\(255\2c 255\2c 255\2c 0\.1\)\] {
  background-color: rgba(255,255,255,0.1);
}
.bg-\[rgba\(255\2c 255\2c 255\2c 0\.2\)\] {
  background-color: rgba(255,255,255,0.2);
}
.bg-\[rgba\(255\2c 255\2c 255\2c 0\.3\)\] {
  background-color: rgba(255,255,255,0.3);
}
.bg-\[rgba\(255\2c 255\2c 255\2c 0\.4\)\] {
  background-color: rgba(255,255,255,0.4);
}
.bg-\[rgba\(30\2c 30\2c 30\2c 0\.95\)\] {
  background-color: rgba(30,30,30,0.95);
}
.bg-\[rgba\(30\2c 30\2c 30\2c 0\.98\)\] {
  background-color: rgba(30,30,30,0.98);
}
.bg-accent {
  background-color: hsl(var(--accent));
}
.bg-amber-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(217 119 6 / var(--tw-bg-opacity, 1));
}
.bg-background {
  background-color: hsl(var(--background));
}
.bg-background-light {
  --tw-bg-opacity: 1;
  background-color: rgb(246 248 247 / var(--tw-bg-opacity, 1));
}
.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}
.bg-black\/40 {
  background-color: rgb(0 0 0 / 0.4);
}
.bg-black\/50 {
  background-color: rgb(0 0 0 / 0.5);
}
.bg-black\/60 {
  background-color: rgb(0 0 0 / 0.6);
}
.bg-black\/80 {
  background-color: rgb(0 0 0 / 0.8);
}
.bg-blue-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
}
.bg-blue-400\/20 {
  background-color: rgb(96 165 250 / 0.2);
}
.bg-blue-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}
.bg-blue-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(59 130 246 / var(--tw-bg-opacity, 1));
}
.bg-blue-500\/10 {
  background-color: rgb(59 130 246 / 0.1);
}
.bg-blue-500\/20 {
  background-color: rgb(59 130 246 / 0.2);
}
.bg-blue-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}
.bg-blue-900\/30 {
  background-color: rgb(30 58 138 / 0.3);
}
.bg-border {
  background-color: hsl(var(--border));
}
.bg-card {
  background-color: hsl(var(--card));
}
.bg-destructive {
  background-color: hsl(var(--destructive));
}
.bg-destructive\/10 {
  background-color: hsl(var(--destructive) / 0.1);
}
.bg-emerald-500\/15 {
  background-color: rgb(16 185 129 / 0.15);
}
.bg-figma-base {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}
.bg-figma-base-2 {
  background-color: rgba(24, 24, 24, 0.8);
}
.bg-figma-border {
  --tw-bg-opacity: 1;
  background-color: rgb(51 51 51 / var(--tw-bg-opacity, 1));
}
.bg-figma-text {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-figma-text-20 {
  background-color: rgba(255, 255, 255, 0.2);
}
.bg-gray-500\/20 {
  background-color: rgb(107 114 128 / 0.2);
}
.bg-green-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(74 222 128 / var(--tw-bg-opacity, 1));
}
.bg-green-400\/20 {
  background-color: rgb(74 222 128 / 0.2);
}
.bg-green-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
}
.bg-green-500\/10 {
  background-color: rgb(34 197 94 / 0.1);
}
.bg-green-500\/20 {
  background-color: rgb(34 197 94 / 0.2);
}
.bg-green-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1));
}
.bg-green-900\/30 {
  background-color: rgb(20 83 45 / 0.3);
}
.bg-indigo-500\/10 {
  background-color: rgb(99 102 241 / 0.1);
}
.bg-indigo-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(79 70 229 / var(--tw-bg-opacity, 1));
}
.bg-muted {
  background-color: hsl(var(--muted));
}
.bg-muted-foreground\/30 {
  background-color: hsl(var(--muted-foreground) / 0.3);
}
.bg-muted\/30 {
  background-color: hsl(var(--muted) / 0.3);
}
.bg-muted\/50 {
  background-color: hsl(var(--muted) / 0.5);
}
.bg-pink-500\/10 {
  background-color: rgb(236 72 153 / 0.1);
}
.bg-popover {
  background-color: hsl(var(--popover));
}
.bg-primary {
  background-color: hsl(var(--primary));
}
.bg-primary-foreground {
  background-color: hsl(var(--primary-foreground));
}
.bg-primary\/10 {
  background-color: hsl(var(--primary) / 0.1);
}
.bg-primary\/15 {
  background-color: hsl(var(--primary) / 0.15);
}
.bg-primary\/20 {
  background-color: hsl(var(--primary) / 0.2);
}
.bg-primary\/5 {
  background-color: hsl(var(--primary) / 0.05);
}
.bg-purple-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(243 232 255 / var(--tw-bg-opacity, 1));
}
.bg-purple-500\/10 {
  background-color: rgb(168 85 247 / 0.1);
}
.bg-purple-500\/20 {
  background-color: rgb(168 85 247 / 0.2);
}
.bg-purple-500\/30 {
  background-color: rgb(168 85 247 / 0.3);
}
.bg-purple-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(147 51 234 / var(--tw-bg-opacity, 1));
}
.bg-purple-600\/20 {
  background-color: rgb(147 51 234 / 0.2);
}
.bg-purple-600\/30 {
  background-color: rgb(147 51 234 / 0.3);
}
.bg-purple-600\/40 {
  background-color: rgb(147 51 234 / 0.4);
}
.bg-purple-900\/30 {
  background-color: rgb(88 28 135 / 0.3);
}
.bg-red-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
}
.bg-red-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
}
.bg-red-500\/10 {
  background-color: rgb(239 68 68 / 0.1);
}
.bg-red-500\/20 {
  background-color: rgb(239 68 68 / 0.2);
}
.bg-red-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
}
.bg-red-900\/20 {
  background-color: rgb(127 29 29 / 0.2);
}
.bg-red-900\/30 {
  background-color: rgb(127 29 29 / 0.3);
}
.bg-secondary {
  background-color: hsl(var(--secondary));
}
.bg-slate-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(226 232 240 / var(--tw-bg-opacity, 1));
}
.bg-slate-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
}
.bg-slate-500\/10 {
  background-color: rgb(100 116 139 / 0.1);
}
.bg-success {
  background-color: hsl(var(--success));
}
.bg-success\/10 {
  background-color: hsl(var(--success) / 0.1);
}
.bg-success\/30 {
  background-color: hsl(var(--success) / 0.3);
}
.bg-transparent {
  background-color: transparent;
}
.bg-warning {
  background-color: hsl(var(--warning));
}
.bg-warning\/10 {
  background-color: hsl(var(--warning) / 0.1);
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-white\/10 {
  background-color: rgb(255 255 255 / 0.1);
}
.bg-white\/20 {
  background-color: rgb(255 255 255 / 0.2);
}
.bg-white\/5 {
  background-color: rgb(255 255 255 / 0.05);
}
.bg-white\/\[0\.04\] {
  background-color: rgb(255 255 255 / 0.04);
}
.bg-white\/\[0\.06\] {
  background-color: rgb(255 255 255 / 0.06);
}
.bg-white\/\[0\.08\] {
  background-color: rgb(255 255 255 / 0.08);
}
.bg-white\/\[0\.14\] {
  background-color: rgb(255 255 255 / 0.14);
}
.bg-yellow-500\/20 {
  background-color: rgb(234 179 8 / 0.2);
}
.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}
.from-\[\#333\] {
  --tw-gradient-from: #333 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(51 51 51 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-\[\#6366F1\] {
  --tw-gradient-from: #6366F1 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(99 102 241 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-\[\#667eea\] {
  --tw-gradient-from: #667eea var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(102 126 234 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-\[\#99ff96\] {
  --tw-gradient-from: #99ff96 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(153 255 150 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-\[\#f6b51e\] {
  --tw-gradient-from: #f6b51e var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(246 181 30 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-\[\#ff9999\] {
  --tw-gradient-from: #ff9999 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(255 153 153 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-\[\#ffd966\] {
  --tw-gradient-from: #ffd966 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(255 217 102 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-black {
  --tw-gradient-from: #000 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-black\/90 {
  --tw-gradient-from: rgb(0 0 0 / 0.9) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-400 {
  --tw-gradient-from: #60a5fa var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(96 165 250 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-500 {
  --tw-gradient-from: #3b82f6 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(59 130 246 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-500 {
  --tw-gradient-from: #06b6d4 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(6 182 212 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-figma-base\/40 {
  --tw-gradient-from: rgb(0 0 0 / 0.4) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-figma-text {
  --tw-gradient-from: #ffffff var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-green-400 {
  --tw-gradient-from: #4ade80 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(74 222 128 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-green-500 {
  --tw-gradient-from: #22c55e var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(34 197 94 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-indigo-500 {
  --tw-gradient-from: #6366f1 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(99 102 241 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-muted {
  --tw-gradient-from: hsl(var(--muted)) var(--tw-gradient-from-position);
  --tw-gradient-to: hsl(var(--muted) / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-orange-500 {
  --tw-gradient-from: #f97316 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(249 115 22 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-500 {
  --tw-gradient-from: #ec4899 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(236 72 153 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-400 {
  --tw-gradient-from: #c084fc var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(192 132 252 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-500 {
  --tw-gradient-from: #a855f7 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(168 85 247 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-500\/20 {
  --tw-gradient-from: rgb(168 85 247 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(168 85 247 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-transparent {
  --tw-gradient-from: transparent var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-violet-500 {
  --tw-gradient-from: #8b5cf6 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(139 92 246 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-white\/\[0\.02\] {
  --tw-gradient-from: rgb(255 255 255 / 0.02) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-white\/\[0\.08\] {
  --tw-gradient-from: rgb(255 255 255 / 0.08) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.via-black\/80 {
  --tw-gradient-to: rgb(0 0 0 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), rgb(0 0 0 / 0.8) var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-figma-base\/30 {
  --tw-gradient-to: rgb(0 0 0 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), rgb(0 0 0 / 0.3) var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-figma-text-70 {
  --tw-gradient-to: rgba(255, 255, 255, 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), rgba(255, 255, 255, 0.7) var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-transparent {
  --tw-gradient-to: rgb(0 0 0 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), transparent var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-white\/30 {
  --tw-gradient-to: rgb(255 255 255 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), rgb(255 255 255 / 0.3) var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.to-\[\#1a9d16\] {
  --tw-gradient-to: #1a9d16 var(--tw-gradient-to-position);
}
.to-\[\#333\] {
  --tw-gradient-to: #333 var(--tw-gradient-to-position);
}
.to-\[\#4F46E5\] {
  --tw-gradient-to: #4F46E5 var(--tw-gradient-to-position);
}
.to-\[\#764ba2\] {
  --tw-gradient-to: #764ba2 var(--tw-gradient-to-position);
}
.to-\[\#cc0000\] {
  --tw-gradient-to: #cc0000 var(--tw-gradient-to-position);
}
.to-\[\#d6a800\] {
  --tw-gradient-to: #d6a800 var(--tw-gradient-to-position);
}
.to-\[\#ffecc0\] {
  --tw-gradient-to: #ffecc0 var(--tw-gradient-to-position);
}
.to-background {
  --tw-gradient-to: hsl(var(--background)) var(--tw-gradient-to-position);
}
.to-black {
  --tw-gradient-to: #000 var(--tw-gradient-to-position);
}
.to-blue-500 {
  --tw-gradient-to: #3b82f6 var(--tw-gradient-to-position);
}
.to-blue-500\/20 {
  --tw-gradient-to: rgb(59 130 246 / 0.2) var(--tw-gradient-to-position);
}
.to-blue-600 {
  --tw-gradient-to: #2563eb var(--tw-gradient-to-position);
}
.to-cyan-500 {
  --tw-gradient-to: #06b6d4 var(--tw-gradient-to-position);
}
.to-emerald-500 {
  --tw-gradient-to: #10b981 var(--tw-gradient-to-position);
}
.to-figma-base\/50 {
  --tw-gradient-to: rgb(0 0 0 / 0.5) var(--tw-gradient-to-position);
}
.to-figma-text {
  --tw-gradient-to: #ffffff var(--tw-gradient-to-position);
}
.to-figma-text-40 {
  --tw-gradient-to: rgba(255, 255, 255, 0.4) var(--tw-gradient-to-position);
}
.to-green-600 {
  --tw-gradient-to: #16a34a var(--tw-gradient-to-position);
}
.to-pink-500 {
  --tw-gradient-to: #ec4899 var(--tw-gradient-to-position);
}
.to-purple-500 {
  --tw-gradient-to: #a855f7 var(--tw-gradient-to-position);
}
.to-purple-600 {
  --tw-gradient-to: #9333ea var(--tw-gradient-to-position);
}
.to-red-500 {
  --tw-gradient-to: #ef4444 var(--tw-gradient-to-position);
}
.to-rose-500 {
  --tw-gradient-to: #f43f5e var(--tw-gradient-to-position);
}
.to-teal-400 {
  --tw-gradient-to: #2dd4bf var(--tw-gradient-to-position);
}
.to-transparent {
  --tw-gradient-to: transparent var(--tw-gradient-to-position);
}
.to-white\/\[0\.02\] {
  --tw-gradient-to: rgb(255 255 255 / 0.02) var(--tw-gradient-to-position);
}
.to-white\/\[0\.04\] {
  --tw-gradient-to: rgb(255 255 255 / 0.04) var(--tw-gradient-to-position);
}
.fill-current {
  fill: currentColor;
}
.object-contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.p-0 {
  padding: 0px;
}
.p-1 {
  padding: 0.25rem;
}
.p-1\.5 {
  padding: 0.375rem;
}
.p-10 {
  padding: 2.5rem;
}
.p-12 {
  padding: 3rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-2\.5 {
  padding: 0.625rem;
}
.p-3 {
  padding: 0.75rem;
}
.p-4 {
  padding: 1rem;
}
.p-5 {
  padding: 1.25rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.p-\[10px\] {
  padding: 10px;
}
.p-\[20px\] {
  padding: 20px;
}
.p-\[37px_40px\] {
  padding: 37px 40px;
}
.p-\[42px\] {
  padding: 42px;
}
.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}
.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-1\.5 {
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}
.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.px-14 {
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-2\.5 {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-3\.5 {
  padding-left: 0.875rem;
  padding-right: 0.875rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.px-\[10px\] {
  padding-left: 10px;
  padding-right: 10px;
}
.px-\[20px\] {
  padding-left: 20px;
  padding-right: 20px;
}
.py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-\[10px\] {
  padding-top: 10px;
  padding-bottom: 10px;
}
.py-\[12px\] {
  padding-top: 12px;
  padding-bottom: 12px;
}
.py-\[37px\] {
  padding-top: 37px;
  padding-bottom: 37px;
}
.pb-12 {
  padding-bottom: 3rem;
}
.pb-16 {
  padding-bottom: 4rem;
}
.pb-2 {
  padding-bottom: 0.5rem;
}
.pb-3 {
  padding-bottom: 0.75rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pb-6 {
  padding-bottom: 1.5rem;
}
.pb-8 {
  padding-bottom: 2rem;
}
.pb-\[10px\] {
  padding-bottom: 10px;
}
.pl-1 {
  padding-left: 0.25rem;
}
.pl-10 {
  padding-left: 2.5rem;
}
.pl-2 {
  padding-left: 0.5rem;
}
.pl-3 {
  padding-left: 0.75rem;
}
.pl-3\.5 {
  padding-left: 0.875rem;
}
.pl-5 {
  padding-left: 1.25rem;
}
.pl-6 {
  padding-left: 1.5rem;
}
.pl-8 {
  padding-left: 2rem;
}
.pl-9 {
  padding-left: 2.25rem;
}
.pl-\[28px\] {
  padding-left: 28px;
}
.pr-10 {
  padding-right: 2.5rem;
}
.pr-16 {
  padding-right: 4rem;
}
.pr-2 {
  padding-right: 0.5rem;
}
.pr-20 {
  padding-right: 5rem;
}
.pr-3 {
  padding-right: 0.75rem;
}
.pr-4 {
  padding-right: 1rem;
}
.pr-6 {
  padding-right: 1.5rem;
}
.pr-8 {
  padding-right: 2rem;
}
.pt-0 {
  padding-top: 0px;
}
.pt-1 {
  padding-top: 0.25rem;
}
.pt-12 {
  padding-top: 3rem;
}
.pt-2 {
  padding-top: 0.5rem;
}
.pt-3 {
  padding-top: 0.75rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pt-5 {
  padding-top: 1.25rem;
}
.pt-6 {
  padding-top: 1.5rem;
}
.pt-8 {
  padding-top: 2rem;
}
.pt-\[15px\] {
  padding-top: 15px;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.align-middle {
  vertical-align: middle;
}
.font-\[\"Instrument_Sans\"\] {
  font-family: "Instrument Sans";
}
.font-\[\'Instrument_Sans\'\] {
  font-family: 'Instrument Sans';
}
.font-display {
  font-family: Instrument Sans, ui-sans-serif, system-ui;
}
.font-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-9xl {
  font-size: 8rem;
  line-height: 1;
}
.text-\[10px\] {
  font-size: 10px;
}
.text-\[11px\] {
  font-size: 11px;
}
.text-\[12px\] {
  font-size: 12px;
}
.text-\[13px\] {
  font-size: 13px;
}
.text-\[14px\] {
  font-size: 14px;
}
.text-\[16px\] {
  font-size: 16px;
}
.text-\[17px\] {
  font-size: 17px;
}
.text-\[18px\] {
  font-size: 18px;
}
.text-\[20px\] {
  font-size: 20px;
}
.text-\[24px\] {
  font-size: 24px;
}
.text-\[38px\] {
  font-size: 38px;
}
.text-\[50px\] {
  font-size: 50px;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-bold {
  font-weight: 700;
}
.font-medium {
  font-weight: 500;
}
.font-normal {
  font-weight: 400;
}
.font-semibold {
  font-weight: 600;
}
.uppercase {
  text-transform: uppercase;
}
.lowercase {
  text-transform: lowercase;
}
.capitalize {
  text-transform: capitalize;
}
.normal-case {
  text-transform: none;
}
.italic {
  font-style: italic;
}
.leading-4 {
  line-height: 1rem;
}
.leading-5 {
  line-height: 1.25rem;
}
.leading-6 {
  line-height: 1.5rem;
}
.leading-7 {
  line-height: 1.75rem;
}
.leading-\[1\.1\] {
  line-height: 1.1;
}
.leading-\[1\.2\] {
  line-height: 1.2;
}
.leading-\[1\.3\] {
  line-height: 1.3;
}
.leading-\[1\.4\] {
  line-height: 1.4;
}
.leading-\[1\.5\] {
  line-height: 1.5;
}
.leading-\[100\%\] {
  line-height: 100%;
}
.leading-\[110\%\] {
  line-height: 110%;
}
.leading-\[130\%\] {
  line-height: 130%;
}
.leading-\[140\%\] {
  line-height: 140%;
}
.leading-\[150\%\] {
  line-height: 150%;
}
.leading-none {
  line-height: 1;
}
.leading-relaxed {
  line-height: 1.625;
}
.leading-tight {
  line-height: 1.25;
}
.tracking-tight {
  letter-spacing: -0.025em;
}
.tracking-wide {
  letter-spacing: 0.025em;
}
.tracking-wider {
  letter-spacing: 0.05em;
}
.tracking-widest {
  letter-spacing: 0.1em;
}
.text-\[\#0a3a08\] {
  --tw-text-opacity: 1;
  color: rgb(10 58 8 / var(--tw-text-opacity, 1));
}
.text-\[\#3d2a00\] {
  --tw-text-opacity: 1;
  color: rgb(61 42 0 / var(--tw-text-opacity, 1));
}
.text-\[\#4285f4\] {
  --tw-text-opacity: 1;
  color: rgb(66 133 244 / var(--tw-text-opacity, 1));
}
.text-\[\#99ff96\] {
  --tw-text-opacity: 1;
  color: rgb(153 255 150 / var(--tw-text-opacity, 1));
}
.text-\[\#fa5457\] {
  --tw-text-opacity: 1;
  color: rgb(250 84 87 / var(--tw-text-opacity, 1));
}
.text-\[\#fbbc04\] {
  --tw-text-opacity: 1;
  color: rgb(251 188 4 / var(--tw-text-opacity, 1));
}
.text-\[rgba\(255\2c 255\2c 255\2c 0\.5\)\] {
  color: rgba(255,255,255,0.5);
}
.text-\[rgba\(255\2c 255\2c 255\2c 0\.6\)\] {
  color: rgba(255,255,255,0.6);
}
.text-\[rgba\(255\2c 255\2c 255\2c 0\.7\)\] {
  color: rgba(255,255,255,0.7);
}
.text-amber-400 {
  --tw-text-opacity: 1;
  color: rgb(251 191 36 / var(--tw-text-opacity, 1));
}
.text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}
.text-blue-100 {
  --tw-text-opacity: 1;
  color: rgb(219 234 254 / var(--tw-text-opacity, 1));
}
.text-blue-200 {
  --tw-text-opacity: 1;
  color: rgb(191 219 254 / var(--tw-text-opacity, 1));
}
.text-blue-300 {
  --tw-text-opacity: 1;
  color: rgb(147 197 253 / var(--tw-text-opacity, 1));
}
.text-blue-400 {
  --tw-text-opacity: 1;
  color: rgb(96 165 250 / var(--tw-text-opacity, 1));
}
.text-blue-400\/70 {
  color: rgb(96 165 250 / 0.7);
}
.text-blue-500 {
  --tw-text-opacity: 1;
  color: rgb(59 130 246 / var(--tw-text-opacity, 1));
}
.text-blue-600 {
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}
.text-blue-700 {
  --tw-text-opacity: 1;
  color: rgb(29 78 216 / var(--tw-text-opacity, 1));
}
.text-card-foreground {
  color: hsl(var(--card-foreground));
}
.text-current {
  color: currentColor;
}
.text-destructive {
  color: hsl(var(--destructive));
}
.text-destructive-foreground {
  color: hsl(var(--destructive-foreground));
}
.text-emerald-400 {
  --tw-text-opacity: 1;
  color: rgb(52 211 153 / var(--tw-text-opacity, 1));
}
.text-emerald-600 {
  --tw-text-opacity: 1;
  color: rgb(5 150 105 / var(--tw-text-opacity, 1));
}
.text-figma-base {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}
.text-figma-text {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-figma-text-40 {
  color: rgba(255, 255, 255, 0.4);
}
.text-figma-text-70 {
  color: rgba(255, 255, 255, 0.7);
}
.text-foreground {
  color: hsl(var(--foreground));
}
.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.text-green-400 {
  --tw-text-opacity: 1;
  color: rgb(74 222 128 / var(--tw-text-opacity, 1));
}
.text-green-500 {
  --tw-text-opacity: 1;
  color: rgb(34 197 94 / var(--tw-text-opacity, 1));
}
.text-indigo-500 {
  --tw-text-opacity: 1;
  color: rgb(99 102 241 / var(--tw-text-opacity, 1));
}
.text-muted-foreground {
  color: hsl(var(--muted-foreground));
}
.text-pink-500 {
  --tw-text-opacity: 1;
  color: rgb(236 72 153 / var(--tw-text-opacity, 1));
}
.text-popover-foreground {
  color: hsl(var(--popover-foreground));
}
.text-primary {
  color: hsl(var(--primary));
}
.text-primary-foreground {
  color: hsl(var(--primary-foreground));
}
.text-purple-400 {
  --tw-text-opacity: 1;
  color: rgb(192 132 252 / var(--tw-text-opacity, 1));
}
.text-purple-500 {
  --tw-text-opacity: 1;
  color: rgb(168 85 247 / var(--tw-text-opacity, 1));
}
.text-purple-700 {
  --tw-text-opacity: 1;
  color: rgb(126 34 206 / var(--tw-text-opacity, 1));
}
.text-red-300 {
  --tw-text-opacity: 1;
  color: rgb(252 165 165 / var(--tw-text-opacity, 1));
}
.text-red-400 {
  --tw-text-opacity: 1;
  color: rgb(248 113 113 / var(--tw-text-opacity, 1));
}
.text-red-500 {
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}
.text-red-700 {
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / var(--tw-text-opacity, 1));
}
.text-rose-400 {
  --tw-text-opacity: 1;
  color: rgb(251 113 133 / var(--tw-text-opacity, 1));
}
.text-secondary-foreground {
  color: hsl(var(--secondary-foreground));
}
.text-sky-400 {
  --tw-text-opacity: 1;
  color: rgb(56 189 248 / var(--tw-text-opacity, 1));
}
.text-slate-400 {
  --tw-text-opacity: 1;
  color: rgb(148 163 184 / var(--tw-text-opacity, 1));
}
.text-slate-500 {
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / var(--tw-text-opacity, 1));
}
.text-slate-600 {
  --tw-text-opacity: 1;
  color: rgb(71 85 105 / var(--tw-text-opacity, 1));
}
.text-slate-700 {
  --tw-text-opacity: 1;
  color: rgb(51 65 85 / var(--tw-text-opacity, 1));
}
.text-slate-900 {
  --tw-text-opacity: 1;
  color: rgb(15 23 42 / var(--tw-text-opacity, 1));
}
.text-success {
  color: hsl(var(--success));
}
.text-violet-400 {
  --tw-text-opacity: 1;
  color: rgb(167 139 250 / var(--tw-text-opacity, 1));
}
.text-warning {
  color: hsl(var(--warning));
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-white\/30 {
  color: rgb(255 255 255 / 0.3);
}
.text-white\/40 {
  color: rgb(255 255 255 / 0.4);
}
.text-white\/50 {
  color: rgb(255 255 255 / 0.5);
}
.text-white\/60 {
  color: rgb(255 255 255 / 0.6);
}
.text-white\/70 {
  color: rgb(255 255 255 / 0.7);
}
.text-white\/80 {
  color: rgb(255 255 255 / 0.8);
}
.text-white\/90 {
  color: rgb(255 255 255 / 0.9);
}
.text-yellow-400 {
  --tw-text-opacity: 1;
  color: rgb(250 204 21 / var(--tw-text-opacity, 1));
}
.text-yellow-500 {
  --tw-text-opacity: 1;
  color: rgb(234 179 8 / var(--tw-text-opacity, 1));
}
.underline {
  text-decoration-line: underline;
}
.underline-offset-4 {
  text-underline-offset: 4px;
}
.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.placeholder-figma-text-40::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.placeholder-figma-text-40::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.opacity-0 {
  opacity: 0;
}
.opacity-100 {
  opacity: 1;
}
.opacity-20 {
  opacity: 0.2;
}
.opacity-40 {
  opacity: 0.4;
}
.opacity-50 {
  opacity: 0.5;
}
.opacity-60 {
  opacity: 0.6;
}
.opacity-70 {
  opacity: 0.7;
}
.opacity-80 {
  opacity: 0.8;
}
.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-2xl {
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_2px_4px_rgba\(102\2c 126\2c 234\2c 0\.2\)\] {
  --tw-shadow: 0 2px 4px rgba(102,126,234,0.2);
  --tw-shadow-colored: 0 2px 4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_2px_8px_rgba\(0\2c 0\2c 0\2c 0\.3\)\] {
  --tw-shadow: 0 2px 8px rgba(0,0,0,0.3);
  --tw-shadow-colored: 0 2px 8px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_4px_12px_rgba\(0\2c 0\2c 0\2c 0\.3\)\] {
  --tw-shadow: 0 4px 12px rgba(0,0,0,0.3);
  --tw-shadow-colored: 0 4px 12px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-inner {
  --tw-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: inset 0 2px 4px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-xl {
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-purple-500\/20 {
  --tw-shadow-color: rgb(168 85 247 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.outline {
  outline-style: solid;
}
.ring-0 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-1 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-2 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-black\/10 {
  --tw-ring-color: rgb(0 0 0 / 0.1);
}
.ring-figma-text-20\/50 {
  --tw-ring-color: rgba(255, 255, 255, 0.5);
}
.ring-primary\/20 {
  --tw-ring-color: hsl(var(--primary) / 0.2);
}
.ring-purple-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(168 85 247 / var(--tw-ring-opacity, 1));
}
.ring-purple-500\/70 {
  --tw-ring-color: rgb(168 85 247 / 0.7);
}
.ring-offset-background {
  --tw-ring-offset-color: hsl(var(--background));
}
.blur {
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.blur-3xl {
  --tw-blur: blur(64px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.blur-xl {
  --tw-blur: blur(24px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.backdrop-blur-\[10px\] {
  --tw-backdrop-blur: blur(10px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.backdrop-blur-\[12px\] {
  --tw-backdrop-blur: blur(12px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.backdrop-blur-\[20\.5px\] {
  --tw-backdrop-blur: blur(20.5px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.backdrop-blur-\[22px\] {
  --tw-backdrop-blur: blur(22px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.backdrop-blur-lg {
  --tw-backdrop-blur: blur(16px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.backdrop-blur-sm {
  --tw-backdrop-blur: blur(4px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-shadow {
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-100 {
  transition-duration: 100ms;
}
.duration-150 {
  transition-duration: 150ms;
}
.duration-200 {
  transition-duration: 200ms;
}
.duration-300 {
  transition-duration: 300ms;
}
.duration-500 {
  transition-duration: 500ms;
}
.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
@keyframes enter {
  from {
    opacity: var(--tw-enter-opacity, 1);
    transform: translate3d(var(--tw-enter-translate-x, 0), var(--tw-enter-translate-y, 0), 0) scale3d(var(--tw-enter-scale, 1), var(--tw-enter-scale, 1), var(--tw-enter-scale, 1)) rotate(var(--tw-enter-rotate, 0));
  }
}
@keyframes exit {
  to {
    opacity: var(--tw-exit-opacity, 1);
    transform: translate3d(var(--tw-exit-translate-x, 0), var(--tw-exit-translate-y, 0), 0) scale3d(var(--tw-exit-scale, 1), var(--tw-exit-scale, 1), var(--tw-exit-scale, 1)) rotate(var(--tw-exit-rotate, 0));
  }
}
.animate-in {
  animation-name: enter;
  animation-duration: 150ms;
  --tw-enter-opacity: initial;
  --tw-enter-scale: initial;
  --tw-enter-rotate: initial;
  --tw-enter-translate-x: initial;
  --tw-enter-translate-y: initial;
}
.fade-in {
  --tw-enter-opacity: 0;
}
.fade-in-0 {
  --tw-enter-opacity: 0;
}
.zoom-in-95 {
  --tw-enter-scale: .95;
}
.slide-in-from-bottom-2 {
  --tw-enter-translate-y: 0.5rem;
}
.slide-in-from-left-1\/2 {
  --tw-enter-translate-x: -50%;
}
.slide-in-from-left-2 {
  --tw-enter-translate-x: -0.5rem;
}
.slide-in-from-top-\[48\%\] {
  --tw-enter-translate-y: -48%;
}
.duration-100 {
  animation-duration: 100ms;
}
.duration-150 {
  animation-duration: 150ms;
}
.duration-200 {
  animation-duration: 200ms;
}
.duration-300 {
  animation-duration: 300ms;
}
.duration-500 {
  animation-duration: 500ms;
}
.ease-in-out {
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-out {
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.running {
  animation-play-state: running;
}
/* Glass effect */
/* Primary gradient */
/* Hide scrollbar but keep functionality */
/* Base styles */
/* Custom utilities */
/* Component styles */
.file\:border-0::file-selector-button {
  border-width: 0px;
}
.file\:bg-transparent::file-selector-button {
  background-color: transparent;
}
.file\:text-sm::file-selector-button {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.file\:font-medium::file-selector-button {
  font-weight: 500;
}
.file\:text-foreground::file-selector-button {
  color: hsl(var(--foreground));
}
.placeholder\:text-muted-foreground::-moz-placeholder {
  color: hsl(var(--muted-foreground));
}
.placeholder\:text-muted-foreground::placeholder {
  color: hsl(var(--muted-foreground));
}
.placeholder\:text-white\/30::-moz-placeholder {
  color: rgb(255 255 255 / 0.3);
}
.placeholder\:text-white\/30::placeholder {
  color: rgb(255 255 255 / 0.3);
}
.placeholder\:text-white\/40::-moz-placeholder {
  color: rgb(255 255 255 / 0.4);
}
.placeholder\:text-white\/40::placeholder {
  color: rgb(255 255 255 / 0.4);
}
.placeholder\:text-white\/70::-moz-placeholder {
  color: rgb(255 255 255 / 0.7);
}
.placeholder\:text-white\/70::placeholder {
  color: rgb(255 255 255 / 0.7);
}
.after\:absolute::after {
  content: var(--tw-content);
  position: absolute;
}
.after\:right-0::after {
  content: var(--tw-content);
  right: 0px;
}
.after\:top-1\/2::after {
  content: var(--tw-content);
  top: 50%;
}
.after\:hidden::after {
  content: var(--tw-content);
  display: none;
}
.after\:h-6::after {
  content: var(--tw-content);
  height: 1.5rem;
}
.after\:w-px::after {
  content: var(--tw-content);
  width: 1px;
}
.after\:-translate-y-1\/2::after {
  content: var(--tw-content);
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.after\:bg-border::after {
  content: var(--tw-content);
  background-color: hsl(var(--border));
}
.first\:mt-0:first-child {
  margin-top: 0px;
}
.last\:mb-0:last-child {
  margin-bottom: 0px;
}
.last\:border-0:last-child {
  border-width: 0px;
}
.last\:border-b-0:last-child {
  border-bottom-width: 0px;
}
.checked\:border-blue-400:checked {
  --tw-border-opacity: 1;
  border-color: rgb(96 165 250 / var(--tw-border-opacity, 1));
}
.checked\:border-green-400:checked {
  --tw-border-opacity: 1;
  border-color: rgb(74 222 128 / var(--tw-border-opacity, 1));
}
.checked\:bg-blue-400\/20:checked {
  background-color: rgb(96 165 250 / 0.2);
}
.checked\:bg-green-400\/20:checked {
  background-color: rgb(74 222 128 / 0.2);
}
.focus-within\:border-primary:focus-within {
  border-color: hsl(var(--primary));
}
.focus-within\:ring-1:focus-within {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus-within\:ring-ring:focus-within {
  --tw-ring-color: hsl(var(--ring));
}
.hover\:rotate-90:hover {
  --tw-rotate: 90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:scale-105:hover {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:scale-110:hover {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:border-figma-border:hover {
  --tw-border-opacity: 1;
  border-color: rgb(51 51 51 / var(--tw-border-opacity, 1));
}
.hover\:border-figma-text-40:hover {
  border-color: rgba(255, 255, 255, 0.4);
}
.hover\:border-primary:hover {
  border-color: hsl(var(--primary));
}
.hover\:border-primary\/50:hover {
  border-color: hsl(var(--primary) / 0.5);
}
.hover\:border-success\/30:hover {
  border-color: hsl(var(--success) / 0.3);
}
.hover\:border-white\/30:hover {
  border-color: rgb(255 255 255 / 0.3);
}
.hover\:border-white\/40:hover {
  border-color: rgb(255 255 255 / 0.4);
}
.hover\:border-white\/50:hover {
  border-color: rgb(255 255 255 / 0.5);
}
.hover\:bg-\[\#2a2a2a\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(42 42 42 / var(--tw-bg-opacity, 1));
}
.hover\:bg-\[\#353535\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(53 53 53 / var(--tw-bg-opacity, 1));
}
.hover\:bg-\[rgba\(24\2c 24\2c 24\2c 0\.9\)\]:hover {
  background-color: rgba(24,24,24,0.9);
}
.hover\:bg-\[rgba\(255\2c 255\2c 255\2c 0\.08\)\]:hover {
  background-color: rgba(255,255,255,0.08);
}
.hover\:bg-\[rgba\(255\2c 255\2c 255\2c 0\.1\)\]:hover {
  background-color: rgba(255,255,255,0.1);
}
.hover\:bg-\[rgba\(255\2c 255\2c 255\2c 0\.2\)\]:hover {
  background-color: rgba(255,255,255,0.2);
}
.hover\:bg-\[rgba\(40\2c 40\2c 40\2c 0\.95\)\]:hover {
  background-color: rgba(40,40,40,0.95);
}
.hover\:bg-accent:hover {
  background-color: hsl(var(--accent));
}
.hover\:bg-black\/90:hover {
  background-color: rgb(0 0 0 / 0.9);
}
.hover\:bg-blue-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}
.hover\:bg-blue-500\/10:hover {
  background-color: rgb(59 130 246 / 0.1);
}
.hover\:bg-blue-500\/30:hover {
  background-color: rgb(59 130 246 / 0.3);
}
.hover\:bg-blue-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}
.hover\:bg-blue-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
}
.hover\:bg-destructive\/80:hover {
  background-color: hsl(var(--destructive) / 0.8);
}
.hover\:bg-destructive\/90:hover {
  background-color: hsl(var(--destructive) / 0.9);
}
.hover\:bg-figma-base-2:hover {
  background-color: rgba(24, 24, 24, 0.8);
}
.hover\:bg-figma-base-2\/80:hover {
  background-color: rgba(24, 24, 24, 0.8);
}
.hover\:bg-figma-text-20:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.hover\:bg-figma-text-20\/50:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.hover\:bg-figma-text-40:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
.hover\:bg-figma-text-70:hover {
  background-color: rgba(255, 255, 255, 0.7);
}
.hover\:bg-green-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(21 128 61 / var(--tw-bg-opacity, 1));
}
.hover\:bg-indigo-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(67 56 202 / var(--tw-bg-opacity, 1));
}
.hover\:bg-muted:hover {
  background-color: hsl(var(--muted));
}
.hover\:bg-muted\/50:hover {
  background-color: hsl(var(--muted) / 0.5);
}
.hover\:bg-primary:hover {
  background-color: hsl(var(--primary));
}
.hover\:bg-primary\/10:hover {
  background-color: hsl(var(--primary) / 0.1);
}
.hover\:bg-primary\/5:hover {
  background-color: hsl(var(--primary) / 0.05);
}
.hover\:bg-primary\/80:hover {
  background-color: hsl(var(--primary) / 0.8);
}
.hover\:bg-primary\/90:hover {
  background-color: hsl(var(--primary) / 0.9);
}
.hover\:bg-purple-500\/30:hover {
  background-color: rgb(168 85 247 / 0.3);
}
.hover\:bg-purple-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(126 34 206 / var(--tw-bg-opacity, 1));
}
.hover\:bg-red-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(254 202 202 / var(--tw-bg-opacity, 1));
}
.hover\:bg-red-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(185 28 28 / var(--tw-bg-opacity, 1));
}
.hover\:bg-secondary\/80:hover {
  background-color: hsl(var(--secondary) / 0.8);
}
.hover\:bg-slate-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1));
}
.hover\:bg-slate-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
}
.hover\:bg-success\/10:hover {
  background-color: hsl(var(--success) / 0.1);
}
.hover\:bg-transparent:hover {
  background-color: transparent;
}
.hover\:bg-white\/10:hover {
  background-color: rgb(255 255 255 / 0.1);
}
.hover\:bg-white\/20:hover {
  background-color: rgb(255 255 255 / 0.2);
}
.hover\:bg-white\/40:hover {
  background-color: rgb(255 255 255 / 0.4);
}
.hover\:bg-white\/5:hover {
  background-color: rgb(255 255 255 / 0.05);
}
.hover\:bg-white\/90:hover {
  background-color: rgb(255 255 255 / 0.9);
}
.hover\:bg-white\/\[0\.06\]:hover {
  background-color: rgb(255 255 255 / 0.06);
}
.hover\:bg-white\/\[0\.08\]:hover {
  background-color: rgb(255 255 255 / 0.08);
}
.hover\:bg-white\/\[0\.12\]:hover {
  background-color: rgb(255 255 255 / 0.12);
}
.hover\:bg-white\/\[0\.1\]:hover {
  background-color: rgb(255 255 255 / 0.1);
}
.hover\:bg-white\/\[0\.2\]:hover {
  background-color: rgb(255 255 255 / 0.2);
}
.hover\:bg-opacity-90:hover {
  --tw-bg-opacity: 0.9;
}
.hover\:text-\[rgba\(255\2c 255\2c 255\2c 0\.7\)\]:hover {
  color: rgba(255,255,255,0.7);
}
.hover\:text-accent-foreground:hover {
  color: hsl(var(--accent-foreground));
}
.hover\:text-blue-300:hover {
  --tw-text-opacity: 1;
  color: rgb(147 197 253 / var(--tw-text-opacity, 1));
}
.hover\:text-destructive:hover {
  color: hsl(var(--destructive));
}
.hover\:text-figma-text:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.hover\:text-figma-text-70:hover {
  color: rgba(255, 255, 255, 0.7);
}
.hover\:text-foreground:hover {
  color: hsl(var(--foreground));
}
.hover\:text-primary:hover {
  color: hsl(var(--primary));
}
.hover\:text-primary\/80:hover {
  color: hsl(var(--primary) / 0.8);
}
.hover\:text-purple-300:hover {
  --tw-text-opacity: 1;
  color: rgb(216 180 254 / var(--tw-text-opacity, 1));
}
.hover\:text-slate-600:hover {
  --tw-text-opacity: 1;
  color: rgb(71 85 105 / var(--tw-text-opacity, 1));
}
.hover\:text-slate-900:hover {
  --tw-text-opacity: 1;
  color: rgb(15 23 42 / var(--tw-text-opacity, 1));
}
.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.hover\:text-white\/60:hover {
  color: rgb(255 255 255 / 0.6);
}
.hover\:text-white\/70:hover {
  color: rgb(255 255 255 / 0.7);
}
.hover\:text-white\/80:hover {
  color: rgb(255 255 255 / 0.8);
}
.hover\:underline:hover {
  text-decoration-line: underline;
}
.hover\:no-underline:hover {
  text-decoration-line: none;
}
.hover\:opacity-100:hover {
  opacity: 1;
}
.hover\:opacity-80:hover {
  opacity: 0.8;
}
.hover\:opacity-90:hover {
  opacity: 0.9;
}
.hover\:shadow-\[0_4px_12px_rgba\(99\2c 102\2c 241\2c 0\.4\)\]:hover {
  --tw-shadow: 0 4px 12px rgba(99,102,241,0.4);
  --tw-shadow-colored: 0 4px 12px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:shadow-lg:hover {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:shadow-md:hover {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:shadow-sm:hover {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.focus\:border-destructive:focus {
  border-color: hsl(var(--destructive));
}
.focus\:border-primary:focus {
  border-color: hsl(var(--primary));
}
.focus\:border-white\/60:focus {
  border-color: rgb(255 255 255 / 0.6);
}
.focus\:bg-accent:focus {
  background-color: hsl(var(--accent));
}
.focus\:bg-muted:focus {
  background-color: hsl(var(--muted));
}
.focus\:text-accent-foreground:focus {
  color: hsl(var(--accent-foreground));
}
.focus\:text-destructive:focus {
  color: hsl(var(--destructive));
}
.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus\:ring-1:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-2:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-blue-400:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(96 165 250 / var(--tw-ring-opacity, 1));
}
.focus\:ring-blue-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1));
}
.focus\:ring-destructive:focus {
  --tw-ring-color: hsl(var(--destructive));
}
.focus\:ring-figma-text-40:focus {
  --tw-ring-color: rgba(255, 255, 255, 0.4);
}
.focus\:ring-green-400:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(74 222 128 / var(--tw-ring-opacity, 1));
}
.focus\:ring-primary:focus {
  --tw-ring-color: hsl(var(--primary));
}
.focus\:ring-primary\/20:focus {
  --tw-ring-color: hsl(var(--primary) / 0.2);
}
.focus\:ring-purple-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(168 85 247 / var(--tw-ring-opacity, 1));
}
.focus\:ring-red-600:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(220 38 38 / var(--tw-ring-opacity, 1));
}
.focus\:ring-ring:focus {
  --tw-ring-color: hsl(var(--ring));
}
.focus\:ring-secondary:focus {
  --tw-ring-color: hsl(var(--secondary));
}
.focus\:ring-white\/20:focus {
  --tw-ring-color: rgb(255 255 255 / 0.2);
}
.focus\:ring-white\/40:focus {
  --tw-ring-color: rgb(255 255 255 / 0.4);
}
.focus\:ring-offset-2:focus {
  --tw-ring-offset-width: 2px;
}
.focus-visible\:outline-none:focus-visible {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus-visible\:ring-0:focus-visible {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus-visible\:ring-1:focus-visible {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus-visible\:ring-2:focus-visible {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus-visible\:ring-ring:focus-visible {
  --tw-ring-color: hsl(var(--ring));
}
.focus-visible\:ring-offset-0:focus-visible {
  --tw-ring-offset-width: 0px;
}
.focus-visible\:ring-offset-2:focus-visible {
  --tw-ring-offset-width: 2px;
}
.focus-visible\:ring-offset-background:focus-visible {
  --tw-ring-offset-color: hsl(var(--background));
}
.active\:scale-95:active {
  --tw-scale-x: .95;
  --tw-scale-y: .95;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.disabled\:pointer-events-none:disabled {
  pointer-events: none;
}
.disabled\:cursor-not-allowed:disabled {
  cursor: not-allowed;
}
.disabled\:bg-muted:disabled {
  background-color: hsl(var(--muted));
}
.disabled\:opacity-40:disabled {
  opacity: 0.4;
}
.disabled\:opacity-50:disabled {
  opacity: 0.5;
}
.disabled\:opacity-60:disabled {
  opacity: 0.6;
}
.group:hover .group-hover\:block {
  display: block;
}
.group:hover .group-hover\:border-figma-text-40 {
  border-color: rgba(255, 255, 255, 0.4);
}
.group:hover .group-hover\:bg-figma-text-20\/30 {
  background-color: rgba(255, 255, 255, 0.3);
}
.group:hover .group-hover\:text-figma-text {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.group:hover .group-hover\:text-primary {
  color: hsl(var(--primary));
}
.group:hover .group-hover\:text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}
.group:hover .group-hover\:ring-2 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.group:hover .group-hover\:ring-purple-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(168 85 247 / var(--tw-ring-opacity, 1));
}
.peer:disabled ~ .peer-disabled\:cursor-not-allowed {
  cursor: not-allowed;
}
.peer:disabled ~ .peer-disabled\:opacity-70 {
  opacity: 0.7;
}
.data-\[disabled\=true\]\:pointer-events-none[data-disabled="true"] {
  pointer-events: none;
}
.data-\[disabled\]\:pointer-events-none[data-disabled] {
  pointer-events: none;
}
.data-\[side\=bottom\]\:translate-y-1[data-side="bottom"] {
  --tw-translate-y: 0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.data-\[side\=left\]\:-translate-x-1[data-side="left"] {
  --tw-translate-x: -0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.data-\[side\=right\]\:translate-x-1[data-side="right"] {
  --tw-translate-x: 0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.data-\[side\=top\]\:-translate-y-1[data-side="top"] {
  --tw-translate-y: -0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.data-\[state\=checked\]\:translate-x-4[data-state="checked"] {
  --tw-translate-x: 1rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.data-\[state\=unchecked\]\:translate-x-0[data-state="unchecked"] {
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@keyframes accordion-up {
  from {
    height: var(--radix-accordion-content-height);
  }
  to {
    height: 0;
  }
}
.data-\[state\=closed\]\:animate-accordion-up[data-state="closed"] {
  animation: accordion-up 0.2s ease-out;
}
@keyframes accordion-down {
  from {
    height: 0;
  }
  to {
    height: var(--radix-accordion-content-height);
  }
}
.data-\[state\=open\]\:animate-accordion-down[data-state="open"] {
  animation: accordion-down 0.2s ease-out;
}
.data-\[state\=checked\]\:border-transparent[data-state="checked"] {
  border-color: transparent;
}
.data-\[state\=unchecked\]\:border-border[data-state="unchecked"] {
  border-color: hsl(var(--border));
}
.data-\[selected\=true\]\:bg-accent[data-selected="true"] {
  background-color: hsl(var(--accent));
}
.data-\[state\=checked\]\:bg-primary[data-state="checked"] {
  background-color: hsl(var(--primary));
}
.data-\[state\=checked\]\:bg-primary-foreground[data-state="checked"] {
  background-color: hsl(var(--primary-foreground));
}
.data-\[state\=open\]\:bg-accent[data-state="open"] {
  background-color: hsl(var(--accent));
}
.data-\[state\=open\]\:bg-secondary[data-state="open"] {
  background-color: hsl(var(--secondary));
}
.data-\[state\=selected\]\:bg-muted[data-state="selected"] {
  background-color: hsl(var(--muted));
}
.data-\[state\=unchecked\]\:bg-foreground[data-state="unchecked"] {
  background-color: hsl(var(--foreground));
}
.data-\[state\=unchecked\]\:bg-muted[data-state="unchecked"] {
  background-color: hsl(var(--muted));
}
.data-\[placeholder\]\:text-muted-foreground[data-placeholder] {
  color: hsl(var(--muted-foreground));
}
.data-\[selected\=true\]\:text-accent-foreground[data-selected="true"] {
  color: hsl(var(--accent-foreground));
}
.data-\[state\=checked\]\:text-primary-foreground[data-state="checked"] {
  color: hsl(var(--primary-foreground));
}
.data-\[state\=open\]\:text-muted-foreground[data-state="open"] {
  color: hsl(var(--muted-foreground));
}
.data-\[disabled\=true\]\:opacity-50[data-disabled="true"] {
  opacity: 0.5;
}
.data-\[disabled\]\:opacity-50[data-disabled] {
  opacity: 0.5;
}
.data-\[state\=closed\]\:duration-300[data-state="closed"] {
  transition-duration: 300ms;
}
.data-\[state\=open\]\:duration-500[data-state="open"] {
  transition-duration: 500ms;
}
.data-\[state\=open\]\:animate-in[data-state="open"] {
  animation-name: enter;
  animation-duration: 150ms;
  --tw-enter-opacity: initial;
  --tw-enter-scale: initial;
  --tw-enter-rotate: initial;
  --tw-enter-translate-x: initial;
  --tw-enter-translate-y: initial;
}
.data-\[state\=closed\]\:animate-out[data-state="closed"] {
  animation-name: exit;
  animation-duration: 150ms;
  --tw-exit-opacity: initial;
  --tw-exit-scale: initial;
  --tw-exit-rotate: initial;
  --tw-exit-translate-x: initial;
  --tw-exit-translate-y: initial;
}
.data-\[state\=closed\]\:fade-out-0[data-state="closed"] {
  --tw-exit-opacity: 0;
}
.data-\[state\=open\]\:fade-in-0[data-state="open"] {
  --tw-enter-opacity: 0;
}
.data-\[state\=closed\]\:zoom-out-95[data-state="closed"] {
  --tw-exit-scale: .95;
}
.data-\[state\=open\]\:zoom-in-95[data-state="open"] {
  --tw-enter-scale: .95;
}
.data-\[side\=bottom\]\:slide-in-from-top-2[data-side="bottom"] {
  --tw-enter-translate-y: -0.5rem;
}
.data-\[side\=left\]\:slide-in-from-right-2[data-side="left"] {
  --tw-enter-translate-x: 0.5rem;
}
.data-\[side\=right\]\:slide-in-from-left-2[data-side="right"] {
  --tw-enter-translate-x: -0.5rem;
}
.data-\[side\=top\]\:slide-in-from-bottom-2[data-side="top"] {
  --tw-enter-translate-y: 0.5rem;
}
.data-\[state\=closed\]\:slide-out-to-bottom[data-state="closed"] {
  --tw-exit-translate-y: 100%;
}
.data-\[state\=closed\]\:slide-out-to-left[data-state="closed"] {
  --tw-exit-translate-x: -100%;
}
.data-\[state\=closed\]\:slide-out-to-left-1\/2[data-state="closed"] {
  --tw-exit-translate-x: -50%;
}
.data-\[state\=closed\]\:slide-out-to-right[data-state="closed"] {
  --tw-exit-translate-x: 100%;
}
.data-\[state\=closed\]\:slide-out-to-top[data-state="closed"] {
  --tw-exit-translate-y: -100%;
}
.data-\[state\=closed\]\:slide-out-to-top-\[48\%\][data-state="closed"] {
  --tw-exit-translate-y: -48%;
}
.data-\[state\=open\]\:slide-in-from-bottom[data-state="open"] {
  --tw-enter-translate-y: 100%;
}
.data-\[state\=open\]\:slide-in-from-left[data-state="open"] {
  --tw-enter-translate-x: -100%;
}
.data-\[state\=open\]\:slide-in-from-left-1\/2[data-state="open"] {
  --tw-enter-translate-x: -50%;
}
.data-\[state\=open\]\:slide-in-from-right[data-state="open"] {
  --tw-enter-translate-x: 100%;
}
.data-\[state\=open\]\:slide-in-from-top[data-state="open"] {
  --tw-enter-translate-y: -100%;
}
.data-\[state\=open\]\:slide-in-from-top-\[48\%\][data-state="open"] {
  --tw-enter-translate-y: -48%;
}
.data-\[state\=closed\]\:duration-300[data-state="closed"] {
  animation-duration: 300ms;
}
.data-\[state\=open\]\:duration-500[data-state="open"] {
  animation-duration: 500ms;
}
.dark\:border-border-dark:is(class *) {
  --tw-border-opacity: 1;
  border-color: rgb(42 60 49 / var(--tw-border-opacity, 1));
}
.dark\:border-border-dark\/50:is(class *) {
  border-color: rgb(42 60 49 / 0.5);
}
.dark\:border-red-700:is(class *) {
  --tw-border-opacity: 1;
  border-color: rgb(185 28 28 / var(--tw-border-opacity, 1));
}
.dark\:border-red-800:is(class *) {
  --tw-border-opacity: 1;
  border-color: rgb(153 27 27 / var(--tw-border-opacity, 1));
}
.dark\:border-slate-600:is(class *) {
  --tw-border-opacity: 1;
  border-color: rgb(71 85 105 / var(--tw-border-opacity, 1));
}
.dark\:border-slate-700:is(class *) {
  --tw-border-opacity: 1;
  border-color: rgb(51 65 85 / var(--tw-border-opacity, 1));
}
.dark\:border-slate-800:is(class *) {
  --tw-border-opacity: 1;
  border-color: rgb(30 41 59 / var(--tw-border-opacity, 1));
}
.dark\:bg-background-dark:is(class *) {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}
.dark\:bg-black\/70:is(class *) {
  background-color: rgb(0 0 0 / 0.7);
}
.dark\:bg-blue-900\/20:is(class *) {
  background-color: rgb(30 58 138 / 0.2);
}
.dark\:bg-blue-900\/30:is(class *) {
  background-color: rgb(30 58 138 / 0.3);
}
.dark\:bg-emerald-500\/20:is(class *) {
  background-color: rgb(16 185 129 / 0.2);
}
.dark\:bg-purple-900\/30:is(class *) {
  background-color: rgb(88 28 135 / 0.3);
}
.dark\:bg-red-900\/20:is(class *) {
  background-color: rgb(127 29 29 / 0.2);
}
.dark\:bg-slate-700:is(class *) {
  --tw-bg-opacity: 1;
  background-color: rgb(51 65 85 / var(--tw-bg-opacity, 1));
}
.dark\:bg-slate-800:is(class *) {
  --tw-bg-opacity: 1;
  background-color: rgb(30 41 59 / var(--tw-bg-opacity, 1));
}
.dark\:bg-slate-900:is(class *) {
  --tw-bg-opacity: 1;
  background-color: rgb(15 23 42 / var(--tw-bg-opacity, 1));
}
.dark\:bg-slate-900\/50:is(class *) {
  background-color: rgb(15 23 42 / 0.5);
}
.dark\:bg-slate-900\/60:is(class *) {
  background-color: rgb(15 23 42 / 0.6);
}
.dark\:text-blue-300:is(class *) {
  --tw-text-opacity: 1;
  color: rgb(147 197 253 / var(--tw-text-opacity, 1));
}
.dark\:text-blue-400:is(class *) {
  --tw-text-opacity: 1;
  color: rgb(96 165 250 / var(--tw-text-opacity, 1));
}
.dark\:text-emerald-300:is(class *) {
  --tw-text-opacity: 1;
  color: rgb(110 231 183 / var(--tw-text-opacity, 1));
}
.dark\:text-purple-300:is(class *) {
  --tw-text-opacity: 1;
  color: rgb(216 180 254 / var(--tw-text-opacity, 1));
}
.dark\:text-red-300:is(class *) {
  --tw-text-opacity: 1;
  color: rgb(252 165 165 / var(--tw-text-opacity, 1));
}
.dark\:text-red-400:is(class *) {
  --tw-text-opacity: 1;
  color: rgb(248 113 113 / var(--tw-text-opacity, 1));
}
.dark\:text-slate-300:is(class *) {
  --tw-text-opacity: 1;
  color: rgb(203 213 225 / var(--tw-text-opacity, 1));
}
.dark\:text-slate-400:is(class *) {
  --tw-text-opacity: 1;
  color: rgb(148 163 184 / var(--tw-text-opacity, 1));
}
.dark\:text-slate-500:is(class *) {
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / var(--tw-text-opacity, 1));
}
.dark\:text-white:is(class *) {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.dark\:hover\:bg-blue-900\/20:hover:is(class *) {
  background-color: rgb(30 58 138 / 0.2);
}
.dark\:hover\:bg-slate-800:hover:is(class *) {
  --tw-bg-opacity: 1;
  background-color: rgb(30 41 59 / var(--tw-bg-opacity, 1));
}
.dark\:hover\:text-slate-100:hover:is(class *) {
  --tw-text-opacity: 1;
  color: rgb(241 245 249 / var(--tw-text-opacity, 1));
}
.dark\:hover\:text-slate-300:hover:is(class *) {
  --tw-text-opacity: 1;
  color: rgb(203 213 225 / var(--tw-text-opacity, 1));
}
.dark\:hover\:text-white:hover:is(class *) {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
@media (min-width: 640px) {
  .sm\:mt-0 {
    margin-top: 0px;
  }
  .sm\:max-w-\[425px\] {
    max-width: 425px;
  }
  .sm\:max-w-\[500px\] {
    max-width: 500px;
  }
  .sm\:max-w-full {
    max-width: 100%;
  }
  .sm\:max-w-sm {
    max-width: 24rem;
  }
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .sm\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .sm\:flex-row {
    flex-direction: row;
  }
  .sm\:justify-end {
    justify-content: flex-end;
  }
  .sm\:space-x-2 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(0.5rem * var(--tw-space-x-reverse));
    margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
  }
  .sm\:rounded-lg {
    border-radius: var(--radius);
  }
  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .sm\:text-left {
    text-align: left;
  }
}
@media (min-width: 768px) {
  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  .md\:h-40 {
    height: 10rem;
  }
  .md\:w-40 {
    width: 10rem;
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:flex-row {
    flex-direction: row;
  }
  .md\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:p-6 {
    padding: 1.5rem;
  }
  .lg\:p-8 {
    padding: 2rem;
  }
  .lg\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
.\[\&\:\:-webkit-scrollbar\]\:\!w-0::-webkit-scrollbar {
  width: 0px !important;
}
.\[\&\:has\(\[role\=checkbox\]\)\]\:pr-0:has([role=checkbox]) {
  padding-right: 0px;
}
.\[\&\:last-child\]\:after\:hidden:last-child::after {
  content: var(--tw-content);
  display: none;
}
.\[\&\>\[role\=checkbox\]\]\:translate-y-\[2px\]>[role=checkbox] {
  --tw-translate-y: 2px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.\[\&\>button\]\:hidden>button {
  display: none;
}
.\[\&\>span\]\:line-clamp-1>span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.\[\&\>svg\]\:size-4>svg {
  width: 1rem;
  height: 1rem;
}
.\[\&\>svg\]\:shrink-0>svg {
  flex-shrink: 0;
}
.\[\&\>tr\]\:last\:border-b-0:last-child>tr {
  border-bottom-width: 0px;
}
.\[\&\[data-state\=open\]\>svg\]\:rotate-180[data-state=open]>svg {
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.\[\&_\[cmdk-group-heading\]\]\:px-2 [cmdk-group-heading] {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.\[\&_\[cmdk-group-heading\]\]\:py-1\.5 [cmdk-group-heading] {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.\[\&_\[cmdk-group-heading\]\]\:text-xs [cmdk-group-heading] {
  font-size: 0.75rem;
  line-height: 1rem;
}
.\[\&_\[cmdk-group-heading\]\]\:font-medium [cmdk-group-heading] {
  font-weight: 500;
}
.\[\&_\[cmdk-group-heading\]\]\:text-muted-foreground [cmdk-group-heading] {
  color: hsl(var(--muted-foreground));
}
.\[\&_\[cmdk-group\]\:not\(\[hidden\]\)_\~\[cmdk-group\]\]\:pt-0 [cmdk-group]:not([hidden]) ~[cmdk-group] {
  padding-top: 0px;
}
.\[\&_\[cmdk-group\]\]\:px-2 [cmdk-group] {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.\[\&_\[cmdk-input-wrapper\]_svg\]\:h-5 [cmdk-input-wrapper] svg {
  height: 1.25rem;
}
.\[\&_\[cmdk-input-wrapper\]_svg\]\:w-5 [cmdk-input-wrapper] svg {
  width: 1.25rem;
}
.\[\&_\[cmdk-input\]\]\:h-12 [cmdk-input] {
  height: 3rem;
}
.\[\&_\[cmdk-item\]\]\:px-2 [cmdk-item] {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.\[\&_\[cmdk-item\]\]\:py-3 [cmdk-item] {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.\[\&_\[cmdk-item\]_svg\]\:h-5 [cmdk-item] svg {
  height: 1.25rem;
}
.\[\&_\[cmdk-item\]_svg\]\:w-5 [cmdk-item] svg {
  width: 1.25rem;
}
.\[\&_svg\]\:pointer-events-none svg {
  pointer-events: none;
}
.\[\&_svg\]\:size-4 svg {
  width: 1rem;
  height: 1rem;
}
.\[\&_svg\]\:shrink-0 svg {
  flex-shrink: 0;
}
.\[\&_tr\:last-child\]\:border-0 tr:last-child {
  border-width: 0px;
}
.\[\&_tr\]\:border-b tr {
  border-bottom-width: 1px;
}
.\[\&_tr\]\:border-border tr {
  border-color: hsl(var(--border));
}/* Login Page Styles */

._loginContainer_13o1g_3 {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background-color: black;
  overflow: hidden;
}

/* Background decorative elements */
._backgroundContainer_13o1g_12 {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

._bgPattern1_13o1g_18 {
  position: absolute;
  left: -541.29px;
  top: calc(50% + 601.58px);
  transform: translateY(-50%) scale(2.632);
  height: 324.402px;
  width: 2810.583px;
}

._bgPattern1_13o1g_18 img {
  display: block;
  max-width: none;
  width: 100%;
  height: 100%;
}

._bgDecorative_13o1g_34 {
  position: absolute;
  top: calc(50% + 601.58px);
  transform: translateY(-50%);
  opacity: 0.5;
}

._bgDecorative1_13o1g_41 {
  left: -129.1px;
  height: 581.32px;
  width: 498.953px;
}

._bgDecorative1_13o1g_41 img {
  display: block;
  max-width: none;
  width: 100%;
  height: 100%;
  transform: scale(1.188);
}

._bgDecorative2_13o1g_55 {
  left: 528.74px;
  height: 422.206px;
  width: 498.954px;
}

._bgDecorative2_13o1g_55 img {
  display: block;
  max-width: none;
  width: 100%;
  height: 100%;
  transform: scale(1.259);
}

._bgDecorative3_13o1g_69 {
  left: 1062.29px;
  height: 422.206px;
  width: 498.954px;
}

._bgDecorative3_13o1g_69 img {
  display: block;
  max-width: none;
  width: 100%;
  height: 100%;
  transform: scale(1.259);
}

._bgDecorative4_13o1g_83 {
  left: 1358.15px;
  height: 621.635px;
  width: 498.953px;
}

._bgDecorative4_13o1g_83 img {
  display: block;
  max-width: none;
  width: 100%;
  height: 100%;
  transform: scale(1.176);
}

/* Login Form Container */
._loginFormContainer_13o1g_98 {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 3rem 1rem;
}

._loginFormWrapper_13o1g_109 {
  width: 100%;
  max-width: 378px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 39px;
}

/* Header */
._loginHeader_13o1g_119 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  text-align: center;
  color: white;
  width: 313.2px;
}

._loginTitle_13o1g_129 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.68px;
  width: 100%;
  font-family: 'Instrument Sans', 'Manrope', ui-sans-serif, system-ui;
}

._loginSubtitle_13o1g_138 {
  font-size: 24px;
  font-weight: 500;
  opacity: 0.7;
  width: 100%;
  font-family: 'Instrument Sans', 'Manrope', ui-sans-serif, system-ui;
}

/* Form Container */
._formContainer_13o1g_147 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  min-height: 200px;
}

/* Form Step Animation */
._formStep_13o1g_158 {
  width: 100%;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
}

._formStep_13o1g_158._active_13o1g_169 {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

._formStep_13o1g_158._inactive_13o1g_176 {
  opacity: 0;
  transform: translateX(-30px);
}

._formStep_13o1g_158._animating_13o1g_181 {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

._form_13o1g_147 {
  width: 100%;
}

._formFields_13o1g_189 {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Input Field */
._inputField_13o1g_197 {
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 8px 16px;
  padding-right: 8px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

._inputField_13o1g_197 input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: white;
  font-size: 16px;
  line-height: 1.1;
  font-family: 'Instrument Sans', 'Manrope', ui-sans-serif, system-ui;
  font-weight: 400;
  padding-right: 8px;
}

._inputField_13o1g_197 input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

._inputField_13o1g_197 input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

._inputField_13o1g_197 input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

._passwordToggle_13o1g_232 {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
  flex-shrink: 0;
}

._passwordToggle_13o1g_232:hover:not(:disabled) {
  color: rgba(255, 255, 255, 0.9);
}

._passwordToggle_13o1g_232:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

._passwordToggleIcon_13o1g_254 {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

._inputField_13o1g_197 input:focus,
._inputField_13o1g_197 input:focus-visible,
._inputField_13o1g_197 input:active {
  outline: none !important;
  outline-width: 0 !important;
  outline-offset: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

/* Prevent browser autofill from changing background */
._inputField_13o1g_197 input:-webkit-autofill,
._inputField_13o1g_197 input:-webkit-autofill:hover,
._inputField_13o1g_197 input:-webkit-autofill:focus,
._inputField_13o1g_197 input:-webkit-autofill:active {
  -webkit-text-fill-color: white !important;
  box-shadow: 0 0 0px 1000px rgba(255, 255, 255, 0.05) inset !important;
  background-color: transparent !important;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

/* Button */
._button_13o1g_283 {
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
  font-family: 'Instrument Sans', 'Manrope', ui-sans-serif, system-ui;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1;
}

._button_13o1g_283:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

._buttonPrimary_13o1g_305 {
  background-color: rgba(255, 255, 255, 0.2);
  color: black;
}

._buttonPrimary_13o1g_305:not(:disabled) {
  background-color: #ffffff;
}

._buttonPrimary_13o1g_305:hover:not(:disabled) {
  background-color: rgba(255, 255, 255, 0.9);
}

._buttonOutline_13o1g_318 {
  background: transparent;
  border: 1px solid white;
  color: white;
}

._buttonOutline_13o1g_318:hover:not(:disabled) {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Spinner */
._spinner_13o1g_329 {
  width: 18px;
  height: 18px;
  animation: _spin_13o1g_329 1s linear infinite;
}

@keyframes _spin_13o1g_329 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* OR Divider */
._dividerContainer_13o1g_345 {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}

._dividerLine_13o1g_352 {
  flex: 1;
  height: 1px;
  position: relative;
}

._dividerLine_13o1g_352 img {
  display: block;
  width: 100%;
  height: 100%;
}

._dividerText_13o1g_364 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1;
  color: white;
  white-space: nowrap;
  padding: 0 8px;
  font-family: 'Instrument Sans', 'Manrope', ui-sans-serif, system-ui;
}

/* OAuth Buttons */
._oauthButtons_13o1g_375 {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

._oauthButton_13o1g_375 {
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 10px;
  border: 1px solid white;
  background: transparent;
  color: white;
  cursor: pointer;
  transition: background-color 0.2s;
  font-family: 'Instrument Sans', 'Manrope', ui-sans-serif, system-ui;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1;
}

._oauthButton_13o1g_375:hover:not(:disabled) {
  background-color: rgba(255, 255, 255, 0.1);
}

._oauthButton_13o1g_375:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

._oauthIcon_13o1g_411 {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}

._oauthIcon_13o1g_411 img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}

/* Error Message */
._errorMessage_13o1g_428 {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  background-color: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.5);
  color: rgb(252, 165, 165);
  font-size: 14px;
  animation: _slideDown_13o1g_507 0.3s ease-out;
}

/* Back Button */
._backButton_13o1g_440 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-family: 'Instrument Sans', 'Manrope', ui-sans-serif, system-ui;
  padding: 8px 0;
  opacity: 0.7;
  transition: opacity 0.2s;
}

._backButton_13o1g_440:hover {
  opacity: 1;
}

._backButton_13o1g_440:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

._backIcon_13o1g_464 {
  width: 16px;
  height: 16px;
}

/* Email Display */
._emailDisplay_13o1g_470 {
  color: white;
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 8px;
  font-family: 'Instrument Sans', 'Manrope', ui-sans-serif, system-ui;
}

/* Animations */
@keyframes _fadeIn_13o1g_503 {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes _slideDown_13o1g_507 {
  from {
    opacity: 0;
    transform: translateY(-10px);
    max-height: 0;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    max-height: 100px;
  }
}

._fadeIn_13o1g_503 {
  animation: _fadeIn_13o1g_503 0.5s ease-out;
}

._slideDown_13o1g_507 {
  animation: _slideDown_13o1g_507 0.3s ease-out;
}
/**
 * Platform Selection Page Styles
 *
 * Dark theme with gradient cards matching the design.
 */

._container_1g4dj_7 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0f1a 0%, #111827 50%, #0f172a 100%);
  padding: 2rem;
}

._content_1g4dj_16 {
  text-align: center;
  max-width: 800px;
  width: 100%;
}

/* Logo Section */
._logoContainer_1g4dj_23 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

._logo_1g4dj_23 {
  width: 40px;
  height: 40px;
}

._logoText_1g4dj_36 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.02em;
}

/* Subtitle */
._subtitle_1g4dj_45 {
  color: #94a3b8;
  font-size: 1rem;
  margin: 0 0 3rem 0;
  font-weight: 400;
}

/* Cards Container */
._cardsContainer_1g4dj_53 {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Card Base Styles */
._card_1g4dj_53 {
  width: 280px;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
}

._card_1g4dj_53::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

._card_1g4dj_53:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

._card_1g4dj_53:focus {
  outline: none;
}

._card_1g4dj_53:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* Account OS Card (Purple/Blue gradient) */
._accountOS_1g4dj_101 {
  background: linear-gradient(145deg, #4c1d95 0%, #6366f1 50%, #8b5cf6 100%);
}

._accountOS_1g4dj_101:hover {
  background: linear-gradient(145deg, #5b21b6 0%, #7c3aed 50%, #a78bfa 100%);
}

/* Marketing OS Card (Green gradient) */
._marketingOS_1g4dj_110 {
  background: linear-gradient(145deg, #064e3b 0%, #059669 50%, #10b981 100%);
}

._marketingOS_1g4dj_110:hover {
  background: linear-gradient(145deg, #065f46 0%, #10b981 50%, #34d399 100%);
}

/* Card Icon */
._cardIcon_1g4dj_119 {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  color: #ffffff;
  backdrop-filter: blur(4px);
}

/* Card Title */
._cardTitle_1g4dj_133 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.01em;
}

/* Card Description */
._cardDescription_1g4dj_142 {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}

/* Responsive */
@media (max-width: 640px) {
  ._cardsContainer_1g4dj_53 {
    flex-direction: column;
    align-items: center;
  }

  ._card_1g4dj_53 {
    width: 100%;
    max-width: 320px;
  }

  ._logoText_1g4dj_36 {
    font-size: 1.5rem;
  }

  ._subtitle_1g4dj_45 {
    font-size: 0.875rem;
    margin-bottom: 2rem;
  }
}
/* Layout */
._discoverPage_4q79t_2 {
  display: flex;
  min-height: 100vh;
  background: var(--base, #000);
  color: var(--neutral-100, #ececed);
  width: 100%;
  height: auto;
  overflow: visible;
}

._mainContent_4q79t_12 {
  flex: 1;
  padding: 40px;
  min-height: 100vh;
  height: auto;
  overflow-y: auto;
  overflow-x: visible;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

._centeredSearchContainer_4q79t_24 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: 100%;
  max-width: 696px;
  margin: 0 auto;
  padding: 40px 20px;
}

._greetingMessage_4q79t_36 {
  font-size: 32px;
  font-weight: 400;
  color: var(--neutral-100, #ececed);
  text-align: center;
  margin: 0 0 40px 0;
  line-height: 1.2;
}

._pageHeader_4q79t_45 {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  flex-shrink: 0;
}

._pageTitle_4q79t_53 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text, #fff);
  margin: 0;
}

/* History Sidebar */
._historySidebar_4q79t_61 {
  width: 427px;
  min-width: 427px;
  background: rgba(24, 24, 24, 0.8);
  backdrop-filter: blur(12px);
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  height: auto;
  overflow: visible;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

._historySidebar_4q79t_61._collapsed_4q79t_76 {
  width: 0;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: none;
}

._historyHeader_4q79t_84 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 40px 16px 40px;
  position: sticky;
  top: 0;
  background: rgba(24, 24, 24, 0.95);
  backdrop-filter: blur(12px);
  z-index: 10;
  flex-shrink: 0;
}

._historyTitle_4q79t_97 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text, #fff);
}

._closeButton_4q79t_106,
._backButton_4q79t_107 {
  background: transparent;
  border: none;
  color: var(--text, #fff);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background 0.2s;
}

._closeButton_4q79t_106:hover,
._backButton_4q79t_107:hover {
  background: rgba(255, 255, 255, 0.1);
}

._historySearch_4q79t_125 {
  padding: 0 40px 16px 40px;
  position: sticky;
  top: 76px;
  background: rgba(24, 24, 24, 0.95);
  backdrop-filter: blur(12px);
  z-index: 9;
  flex-shrink: 0;
}

._historySearchInput_4q79t_135 {
  width: 100%;
  padding: 10px 12px;
  background: rgba(24, 24, 24, 0.8);
  border: 1px solid #333;
  border-radius: 10px;
  color: var(--text-70, rgba(255, 255, 255, 0.7));
  font-size: 16px;
  outline: none;
}

._historySearchInput_4q79t_135:focus {
  border-color: var(--primary, #fff);
}

._historyList_4q79t_150 {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
  max-height: calc(100vh - 140px);
}

._historyItem_4q79t_161 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 6px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20.5px);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
  text-align: left;
  width: 100%;
}

._historyItem_4q79t_161:hover {
  background: rgba(255, 255, 255, 0.1);
}

._historyItemQuery_4q79t_180 {
  color: var(--text, #fff);
  font-size: 14px;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

._historyItemDate_4q79t_189 {
  color: #b2b2b2;
  font-size: 12px;
  margin-left: 12px;
  white-space: nowrap;
}

._historyLoading_4q79t_196,
._historyError_4q79t_197,
._historyEmpty_4q79t_198,
._historyEnd_4q79t_199 {
  padding: 20px;
  text-align: center;
  color: var(--text-70, rgba(255, 255, 255, 0.7));
}

._historyEmptySubtext_4q79t_205 {
  font-size: 14px;
  color: var(--text-40, rgba(255, 255, 255, 0.4));
  margin-top: 4px;
}

._showHistoryButton_4q79t_211 {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 8px 16px;
  color: var(--text, #fff);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  margin-left: auto;
}

._showHistoryButton_4q79t_211:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

/* ICP tooltip */
._icpTooltipTrigger_4q79t_233 {
  display: flex;
  align-items: center;
  margin-left: 4px;
  cursor: pointer;
  position: relative;
}

._icpInfoIcon_4q79t_241 {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.8);
}

._icpTooltip_4q79t_233 {
  position: absolute;
  top: 24px;
  right: 0;
  width: 280px;
  padding: 12px;
  background: rgba(19, 19, 19, 0.95);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0px 4px 4px -1px rgba(12, 12, 13, 0.1),
    0px 4px 4px -1px rgba(12, 12, 13, 0.05);
  z-index: 40;
}

._icpTooltipHeader_4q79t_269 {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}

._icpTooltipTitle_4q79t_276 {
  font-size: 13px;
  font-weight: 600;
}

._icpTooltipSubtitle_4q79t_281 {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}

._icpTooltipBody_4q79t_286 {
  font-size: 12px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

._icpTooltipScoreRow_4q79t_294 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

._icpTooltipLoading_4q79t_300 {
  margin-top: 4px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}

._icpTooltipFitLabel_4q79t_306 {
  font-size: 12px;
  font-weight: 500;
  color: #ff3f4f;
}

._icpTooltipBarWrapper_4q79t_312 {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  padding: 6px 10px;
  gap: 4px;
  width: 100%;
  height: 26px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  box-sizing: border-box;
}

._icpTooltipBarSegment_4q79t_325 {
  width: 3px;
  height: 14px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
}

._icpTooltipBarSegmentActive_4q79t_332 {
  background: linear-gradient(180deg, #fb3748 0%, #fa7319 100%);
}

._icpTooltipSummary_4q79t_336 {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

._icpTooltipSection_4q79t_342 {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

._icpTooltipSectionTitle_4q79t_348 {
  font-size: 11px;
  font-weight: 600;
}

._icpTooltipFilterRow_4q79t_353 {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
}

._icpTooltipPositive_4q79t_359 {
  color: #99ff96;
}

._icpTooltipNegative_4q79t_363 {
  color: #ff3f4f;
}

._icpTooltipSignalsRow_4q79t_367 {
  display: flex;
  gap: 8px;
}

._icpTooltipSignalGroup_4q79t_372 {
  flex: 1;
}

._icpTooltipSignalLabelPositive_4q79t_376 {
  font-size: 11px;
  font-weight: 500;
  color: #99ff96;
  margin-bottom: 2px;
}

._icpTooltipSignalLabelNegative_4q79t_383 {
  font-size: 11px;
  font-weight: 500;
  color: #ff3f4f;
  margin-bottom: 2px;
}

._icpTooltipSignalList_4q79t_390 {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
}

._icpTooltipDivider_4q79t_398 {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
}

._icpTooltipLink_4q79t_405 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
  gap: 10px;
  width: 100%;
  height: 20px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
}

/* Search Area */
._searchArea_4q79t_424 {
  margin-bottom: 30px;
  flex-shrink: 0;
}

._searchAreaCentered_4q79t_429 {
  width: 100%;
  max-width: 696px;
  margin: 0 auto;
}

._searchBox_4q79t_435,
._searchBoxCentered_4q79t_436 {
  background: #171717;
  border-radius: 20px;
  padding: 2px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid transparent;
}

._searchBoxCentered_4q79t_436 {
  align-items: center;
  padding: 2px 2px 10px;
  isolation: isolate;
  width: 700px;
  max-width: 100%;
  min-height: 156px;
  box-sizing: border-box;
}

._searchTextarea_4q79t_456 {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 18px;
  padding: 14px 16px;
  color: var(--neutral-100, #ececed);
  font-size: 15px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  resize: none;
  min-height: 100px;
  max-height: 500px;
  outline: none;
  width: 100%;
  line-height: 1.5;
  box-sizing: border-box;
}

._searchBoxCentered_4q79t_436 ._searchTextarea_4q79t_456 {
  min-height: 120px;
}

._searchTextarea_4q79t_456::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

._searchTextarea_4q79t_456::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

._searchActions_4q79t_481 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px 12px;
  gap: 14px;
}

._searchBoxCentered_4q79t_436 ._searchActions_4q79t_481 {
  width: 100%;
  box-sizing: border-box;
}

._searchControls_4q79t_494 {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
  overflow: visible; /* Allow ICP dropdown to expand */
  position: relative;
  z-index: 100;
}

._searchBoxCentered_4q79t_436 ._searchControls_4q79t_494,
._searchBoxCentered_4q79t_436 ._searchButtons_4q79t_505 {
  margin: 0;
  padding: 0;
}

._icpSelectWrapper_4q79t_510 {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px 10px 6px 12px;
  gap: 10px;
  margin: 0 auto;
  width: 133px;
  height: 36px;
  background: rgba(24, 24, 24, 0.8);
  border: 1px solid #FFFFFF;
  border-radius: 10px;
  flex: none;
  order: 0;
  flex-grow: 0;
  position: relative;
  overflow: visible; /* Allow dropdown to expand beyond container */
}

._icpIcon_4q79t_531 {
  color: #FFFFFF;
  flex-shrink: 0;
}

._icpSelect_4q79t_510 {
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 16px;
  font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  cursor: pointer;
  outline: none;
  flex: 1;
  min-width: 0;
  padding: 0;
  padding-right: 20px; /* Space for caret */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  overflow: visible; /* Allow dropdown to show all options */
  text-overflow: ellipsis;
  z-index: 1000; /* Ensure dropdown appears above other elements */
}

._icpSelect_4q79t_510:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

._icpSelect_4q79t_510 option {
  background: #000000;
  color: #FFFFFF;
  padding: 8px 12px;
  white-space: nowrap;
  min-width: 150px; /* Ensure dropdown can show full text */
}

._icpSelect_4q79t_510 option[value="manage"],
._icpSelect_4q79t_510 option[data-manage-icp="true"] {
  font-weight: 500;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(24, 24, 24, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 12px;
  margin-top: 4px;
}

._icpCaret_4q79t_584 {
  color: #FFFFFF;
  flex-shrink: 0;
  cursor: pointer;
}

._icpWeightSelect_4q79t_590 {
  background: rgba(24, 24, 24, 0.8);
  border: 1px solid #333;
  border-radius: 10px;
  padding: 6px 10px;
  color: var(--text-70, rgba(255, 255, 255, 0.7));
  font-size: 16px;
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 60px;
}

._searchButtons_4q79t_505 {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-shrink: 0;
}

._actionButton_4q79t_612 {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 11.571px;
  padding: 5.143px;
  color: var(--text, #fff);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  width: 32px;
  height: 32px;
}

._actionButton_4q79t_612:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

._actionButton_4q79t_612:not(:disabled):hover {
  background: rgba(255, 255, 255, 0.2);
}

._submitButton_4q79t_636 {
  background: #fff;
  color: #000;
}

._submitButton_4q79t_636:not(:disabled):hover {
  background: rgba(255, 255, 255, 0.9);
}

/* Thinking Panel */
._thinkingPanel_4q79t_646 {
  background: rgba(24, 24, 24, 0.8);
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 20px;
  flex-shrink: 0;
}

._thinkingPanelCollapsed_4q79t_654 {
  padding: 12px 16px;
  margin-bottom: 12px;
}

._thinkingPanelCollapsed_4q79t_654 ._thinkingHeader_4q79t_659 {
  margin-bottom: 0;
}

._thinkingHeader_4q79t_659 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

._thinkingTitle_4q79t_670 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--neutral-100, #ececed);
}

._thinkingIconContainer_4q79t_679 {
  width: 24px;
  height: 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  order: 0;
  flex-grow: 0;
}

._thinkingGlow_4q79t_691 {
  width: 24px;
  height: 24px;
  background: linear-gradient(270deg, #47B1FD 0%, #99FF96 100%);
  filter: blur(4px);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  flex: none;
  order: 0;
  flex-grow: 0;
}

._thinkingIcon_4q79t_679 {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  flex: none;
  order: 0;
  flex-grow: 0;
}

._spinning_4q79t_718 {
  animation: _spin_4q79t_718 1s linear infinite;
}

@keyframes _spin_4q79t_718 {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

._collapseButton_4q79t_727 {
  background: transparent;
  border: none;
  color: var(--text, #fff);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

._thinkingSteps_4q79t_738 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 16px;
  width: 100%;
  max-width: 1039px;
  margin-bottom: 20px;
  box-sizing: border-box;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

._thinkingStep_4q79t_738 {
  display: flex;
  flex-direction: row;
  /* Keep timeline rail + icons anchored left (avoid recentering in narrow widths) */
  justify-content: flex-start;
  /* Default to top-align so the indicator lines up with the first text line */
  align-items: flex-start;
  padding: 0 4px 0 34px;
  gap: 16px;
  width: 100%;
  min-height: 24px;
  position: relative;
  box-sizing: border-box;
  flex: none;
  align-self: stretch;
  flex-grow: 0;
}

._thinkingStep_4q79t_738._hasMessage_4q79t_772 {
  min-height: 54px;
  height: auto;
}

._thinkingStep_4q79t_738::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 60px;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

._thinkingStep_4q79t_738:last-child::before {
  display: none;
}

._thinkingStep_4q79t_738:not(._hasMessage_4q79t_772) {
  /* If there is no message/details, vertically center the icon + label row */
  align-items: center;
}

._stepIndicator_4q79t_801 {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  flex: none;
  order: 1;
  flex-grow: 0;
  /* When step has multi-line content, keep icon aligned to the first line */
  align-self: flex-start;
}

._checkIcon_4q79t_816 {
  color: #99FF96;
  width: 16px;
  height: 16px;
}

._stepIndicator_4q79t_801 ._spinning_4q79t_718 {
  color: #FFFFFF;
  width: 16px;
  height: 16px;
}

._pendingDot_4q79t_828 {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  margin: auto;
  flex: none;
  order: 0;
  flex-grow: 0;
}

._stepContent_4q79t_839 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
  gap: 16px;
  flex: none;
  order: 2;
  flex-grow: 1;
  /* Critical for long text inside flex children */
  min-width: 0;
  width: 100%;
}

._stepContentWrapper_4q79t_854 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 6px;
  width: 100%;
  min-width: 0;
}

._stepLabelRow_4q79t_864,
._stepMessageRow_4q79t_865 {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0;
  gap: 10px;
  width: 100%;
  /* Allow multi-line content (e.g. semantic query) to wrap */
  height: auto;
  min-height: 24px;
  min-width: 0;
}

._stepMessageRow_4q79t_865 {
  gap: 6px;
}

._stepLabel_4q79t_864,
._stepMessage_4q79t_865,
._stepDetails_4q79t_884 {
  font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-style: normal;
  font-size: 15px;
  line-height: 150%;
  /* Render like a paragraph and wrap within the panel */
  display: block;
  letter-spacing: -0.01em;
  font-feature-settings: 'calt' off, 'liga' off;
  height: auto;
  min-width: 0;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

._stepLabel_4q79t_864 {
  font-weight: 600;
  color: #ECECED;
  flex: 1;
  order: 1;
  flex-grow: 1;
}

._stepMessage_4q79t_865,
._stepDetails_4q79t_884 {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  flex: 1;
  order: 0;
  align-self: stretch;
  flex-grow: 1;
}

/* Filters */
._filtersSection_4q79t_920 {
  margin-top: 20px;
}

._filtersTitle_4q79t_924 {
  font-size: 15px;
  font-weight: 600;
  color: var(--neutral-100, #ececed);
  margin-bottom: 20px;
}

._filtersList_4q79t_931 {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-left: 34px;
}

._filterTag_4q79t_938 {
  background: rgba(24, 24, 24, 0.8);
  border: 1px solid #333;
  border-radius: 60px;
  padding: 4px 12px 6px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

._filterKey_4q79t_948 {
  color: var(--text-70, rgba(255, 255, 255, 0.7));
  font-size: 14px;
}

._filterValue_4q79t_953 {
  color: var(--neutral-100, #ececed);
  font-size: 14px;
  font-weight: 600;
}

/* Error Message */
._errorMessage_4q79t_960 {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fca5a5;
  flex-shrink: 0;
}

._errorMessage_4q79t_960 button {
  background: transparent;
  border: none;
  color: #fca5a5;
  cursor: pointer;
  text-decoration: underline;
}

/* Bulk Actions */
._bulkActionsBar_4q79t_982 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 16px 0;
  flex-shrink: 0;
}

._selectionCount_4q79t_991 {
  font-size: 16px;
  font-weight: 600;
  color: var(--neutral-100, #ececed);
}

._bulkActions_4q79t_982 {
  display: flex;
  gap: 20px;
  align-items: center;
}

._addToSegmentButton_4q79t_1003 {
  background: #000 !important;
  color: #fff !important;
  border: 1px solid #333 !important;
}

._addToSegmentButton_4q79t_1003:hover:not(:disabled) {
  background: rgba(0, 0, 0, 0.9) !important;
}

._addToSegmentButton_4q79t_1003:disabled {
  background: rgba(0, 0, 0, 0.5) !important;
  color: rgba(255, 255, 255, 0.5) !important;
}

._bulkActionButton_4q79t_1018 {
  background: #fff;
  color: #000;
  border: none;
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

._bulkActionButton_4q79t_1018:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.9);
}

._bulkActionButton_4q79t_1018:disabled {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  cursor: not-allowed;
  opacity: 1;
}

._bulkActionButtonOutline_4q79t_1046 {
  background: transparent;
  color: var(--neutral-100, #ececed);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  height: 50px;
}

._bulkActionButtonOutline_4q79t_1046:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Results Table */
._resultsTable_4q79t_1064 {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  max-height: calc(100vh - 350px);
}

._tableWrapper_4q79t_1074 {
  flex: 1;
  overflow-y: auto;
  overflow-x: auto;
  min-height: 0;
  width: 100%;
}

._resultsTable_4q79t_1064 ._table_4q79t_1074 {
  width: 100%;
  margin: 0;
}

._pagination_4q79t_1087 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(24, 24, 24, 0.5);
  border-radius: 0 0 8px 8px;
  gap: 16px;
  flex-shrink: 0;
  min-height: 70px;
}

._paginationButton_4q79t_1100 {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

._paginationButton_4q79t_1100:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

._paginationButton_4q79t_1100:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

._paginationInfo_4q79t_1125 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

._paginationCount_4q79t_1134 {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

._table_4q79t_1074 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  display: table;
  table-layout: auto;
  min-width: 100%;
  background: transparent;
}

._table_4q79t_1074 th,
._table_4q79t_1074 td {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

._table_4q79t_1074 thead {
  position: sticky;
  top: 0;
  /* Keep header above table body but below floating UI like dropdowns */
  z-index: 10;
  background: #181818;
  background-color: #181818;
}

._table_4q79t_1074 thead th {
  background: #181818 !important;
  background-color: #181818 !important;
}

._table_4q79t_1074 th {
  padding: 12px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  white-space: nowrap;
}

._table_4q79t_1074 th:not(._checkboxColumn_4q79t_1183):not(._stickyFirstColumn_4q79t_1183) {
  background: transparent !important;
}

._table_4q79t_1074 th:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

._tableRow_4q79t_1191 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.2s;
  background: transparent !important;
}

._tableRow_4q79t_1191 td {
  padding: 12px 16px;
  font-size: 14px;
  color: #fff;
  height: auto;
  min-height: 48px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: transparent !important;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

._tableRow_4q79t_1191 td:not(._checkboxColumn_4q79t_1183):not(._stickyFirstColumn_4q79t_1183) {
  background: transparent !important;
  background-color: transparent !important;
  z-index: 1;
}

._tableRow_4q79t_1191 td:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

._checkboxColumn_4q79t_1183 {
  width: 48px;
  min-width: 48px;
  max-width: 48px;
  position: sticky;
  left: 0;
  background: #000 !important;
  background-color: #000 !important;
  z-index: 10;
}

._table_4q79t_1074 thead th._checkboxColumn_4q79t_1183 {
  position: sticky;
  top: 0;
  left: 0;
  background: #181818 !important;
  background-color: #181818 !important;
  z-index: 1002 !important;
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: normal !important;
}

._tableRow_4q79t_1191 td._checkboxColumn_4q79t_1183 {
  position: sticky;
  left: 0;
  background: #000 !important;
  background-color: #000 !important;
  z-index: 9 !important;
  isolation: isolate;
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: normal !important;
}

._stickyFirstColumn_4q79t_1183 {
  position: sticky !important;
  left: 48px !important;
  background: #000 !important;
  background-color: #000 !important;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.4);
  min-width: 150px;
  max-width: 250px;
  overflow: hidden;
}

._table_4q79t_1074 thead th._stickyFirstColumn_4q79t_1183 {
  position: sticky !important;
  top: 0 !important;
  left: 48px !important;
  background: #181818 !important;
  background-color: #181818 !important;
  z-index: 1001 !important;
}

._tableRow_4q79t_1191 td._stickyFirstColumn_4q79t_1183 {
  position: sticky !important;
  left: 48px !important;
  background: #000 !important;
  background-color: #000 !important;
  z-index: 8 !important;
  isolation: isolate;
}

._tableHeaderCell_4q79t_1285,
._tableCell_4q79t_1286 {
  min-width: 120px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 16px 12px;
}

._tableCell_4q79t_1286 {
  position: relative;
}

._singleLineText_4q79t_1298 {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  flex: 1;
}

/* Chips */
._chipsContainer_4q79t_1308 {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
  overflow: hidden;
  max-width: 100%;
}

._chip_4q79t_1308 {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  font-size: 12px;
  color: var(--text, #fff);
  white-space: nowrap;
  flex-shrink: 0;
  max-width: 100%;
  overflow: hidden;
}

._chipText_4q79t_1332 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 120px;
}

._chipMore_4q79t_1339 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text, #fff);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

._chipTooltipWrapper_4q79t_1355 {
  position: relative;
  display: inline-block;
}

._chipTooltip_4q79t_1355,
._chipTooltipAbove_4q79t_1361 {
  position: fixed;
  z-index: 10000;
  padding: 12px;
  background: rgba(24, 24, 24, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  max-width: 400px;
  max-height: 300px;
  overflow-y: auto;
  backdrop-filter: blur(12px);
  pointer-events: auto;
  transform: none !important;
  margin: 0 !important;
}

._chipTooltipContent_4q79t_1378 {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

._checkbox_4q79t_1183 {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: var(--primary, #fff);
}

._nameColumn_4q79t_1391 {
  width: 235px;
}

._nameCell_4q79t_1395 {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  min-width: 0;
  width: 100%;
  overflow: hidden;
}

._nameCellTooltip_4q79t_1405 {
  position: fixed !important;
  background: rgba(24, 24, 24, 0.98) !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 16px;
  min-width: 240px;
  max-width: 320px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  z-index: 99999 !important;
  pointer-events: auto;
}

._tooltipRow_4q79t_1419 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

._tooltipRow_4q79t_1419:last-child {
  margin-bottom: 0;
}

._tooltipRowContent_4q79t_1431 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  min-width: 0;
  gap: 4px;
}

._tooltipLabel_4q79t_1440 {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

._tooltipLabel_4q79t_1440 svg {
  color: rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
}

._tooltipValue_4q79t_1456 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
  word-break: break-word;
  line-height: 1.4;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
}

._tooltipLink_4q79t_1469 {
  font-size: 14px;
  color: #667eea;
  text-decoration: none;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  justify-content: flex-end;
}

._tooltipLink_4q79t_1469:hover {
  color: #764ba2;
  text-decoration: underline;
}

._tooltipDomainLink_4q79t_1486 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 400;
  line-height: 1.4;
  justify-content: flex-end;
  min-width: 0;
}

._tooltipDomainLink_4q79t_1486:hover {
  color: rgba(255, 255, 255, 1);
  text-decoration: underline;
}

._tooltipDomainText_4q79t_1505 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

._tooltipDomainIcon_4q79t_1512 {
  flex-shrink: 0;
  color: inherit;
  width: 12px;
  height: 12px;
  margin-left: 2px;
}

._companyLogo_4q79t_1520 {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: rgba(148, 163, 184, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

._companyLogoImg_4q79t_1531 {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  -o-object-fit: contain;
     object-fit: contain;
  background: #ffffff;
  flex-shrink: 0;
}

._buildingIcon_4q79t_1540 {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.5);
}

._hidden_4q79t_1546 {
  display: none;
}

._fitColumn_4q79t_1550 {
  width: 170px;
}

._fitCell_4q79t_1554 {
  display: flex;
  align-items: center;
  gap: 8px;
}

._circularProgress_4q79t_1560 {
  position: relative;
  width: 36px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

._circularProgressSvg_4q79t_1570 {
  width: 36px;
  height: 18px;
  overflow: visible;
  display: block;
}

._circularProgressBg_4q79t_1577 {
  stroke-dasharray: 56.5;
  stroke-dashoffset: 0;
}

._circularProgressFill_4q79t_1582 {
  transition: stroke-dashoffset 0.3s ease;
}

._fitValue_4q79t_1586 {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}

/* ICP Fit Score Styles */
._icpScoreCell_4q79t_1593 {
  display: flex;
  align-items: center;
  gap: 8px;
}

._icpScoreBadge_4q79t_1599 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.2;
}

._icpScoreHigh_4q79t_1611 {
  background: rgba(153, 255, 150, 0.2); /* Green with transparency */
  color: #99FF96;
  border: 1px solid rgba(153, 255, 150, 0.3);
}

._icpScoreMedium_4q79t_1617 {
  background: rgba(255, 193, 7, 0.2); /* Yellow/Amber with transparency */
  color: #FFC107;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

._icpScoreLow_4q79t_1623 {
  background: rgba(255, 82, 82, 0.2); /* Red with transparency */
  color: #FF5252;
  border: 1px solid rgba(255, 82, 82, 0.3);
}

._buyerColumn_4q79t_1629,
._warmColumn_4q79t_1630 {
  width: 281px;
}

._committeeCell_4q79t_1634 {
  display: flex;
  align-items: center;
  gap: 8px;
}

._avatar_4q79t_1640 {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}

._noData_4q79t_1655 {
  color: rgba(255, 255, 255, 0.4);
}

/* Empty State */
._emptyState_4q79t_1660 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
  color: var(--text-70, rgba(255, 255, 255, 0.7));
  flex: 1;
  min-height: 400px;
}

._emptyState_4q79t_1660 h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 16px 0 8px;
  color: var(--text, #fff);
}

._emptyState_4q79t_1660 p {
  font-size: 16px;
  color: var(--text-70, rgba(255, 255, 255, 0.7));
}

/* Dialog */
._dialogOverlay_4q79t_1685 {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

._dialog_4q79t_1685 {
  background: rgba(24, 24, 24, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

._dialogHeader_4q79t_1708 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

._dialogTitle_4q79t_1716 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text, #fff);
  margin: 0;
}

._dialogClose_4q79t_1723 {
  background: transparent;
  border: none;
  color: var(--text, #fff);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background 0.2s;
}

._dialogClose_4q79t_1723:hover {
  background: rgba(255, 255, 255, 0.1);
}

._dialogContent_4q79t_1740 {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}

._dialogTabs_4q79t_1746 {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

._dialogTab_4q79t_1746 {
  background: transparent;
  border: none;
  color: var(--text-70, rgba(255, 255, 255, 0.7));
  padding: 8px 16px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  font-size: 14px;
}

._dialogTab_4q79t_1746._active_4q79t_1764 {
  color: var(--text, #fff);
  border-bottom-color: var(--primary, #fff);
}

._dialogForm_4q79t_1769 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

._formField_4q79t_1775 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

._formField_4q79t_1775 label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text, #fff);
}

._formInput_4q79t_1787,
._formTextarea_4q79t_1788 {
  background: rgba(24, 24, 24, 0.8);
  border: 1px solid #333;
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--text, #fff);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

._formInput_4q79t_1787:focus,
._formTextarea_4q79t_1788:focus {
  border-color: var(--primary, #fff);
}

._formTextarea_4q79t_1788 {
  resize: vertical;
  min-height: 80px;
}

._segmentList_4q79t_1809 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 300px;
  overflow-y: auto;
}

._segmentItem_4q79t_1817 {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

._segmentItem_4q79t_1817:hover {
  background: rgba(255, 255, 255, 0.1);
}

._segmentInfo_4q79t_1832 {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

._segmentName_4q79t_1839 {
  font-size: 14px;
  font-weight: 500;
  color: var(--text, #fff);
}

._segmentDescription_4q79t_1845 {
  font-size: 12px;
  color: var(--text-70, rgba(255, 255, 255, 0.7));
}

._noSegments_4q79t_1850 {
  text-align: center;
  color: var(--text-70, rgba(255, 255, 255, 0.7));
  padding: 20px;
}

._dialogActions_4q79t_1856 {
  display: flex;
  gap: 12px;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: flex-end;
}

._dialogButtonCancel_4q79t_1864,
._dialogButtonSave_4q79t_1865 {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

._dialogButtonCancel_4q79t_1864 {
  background: transparent;
  color: var(--text-70, rgba(255, 255, 255, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.2);
}

._dialogButtonCancel_4q79t_1864:hover {
  background: rgba(255, 255, 255, 0.1);
}

._dialogButtonSave_4q79t_1865 {
  background: #fff;
  color: #000;
}

._dialogButtonSave_4q79t_1865:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.9);
}

._dialogButtonSave_4q79t_1865:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Responsive */
@media (max-width: 1024px) {
  ._historySidebar_4q79t_61 {
    transform: translateX(-100%);
  }
  
  ._historySidebar_4q79t_61:not(._collapsed_4q79t_76) {
    transform: translateX(0);
  }
  
  ._mainContent_4q79t_12 {
    margin-left: 0;
  }
}
._form_1alk8_1 {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

._formFields_1alk8_7 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

._field_1alk8_14 {
  display: flex;
  flex-direction: column;
}

._label_1alk8_19 {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  font-family: 'Instrument Sans', sans-serif;
}

._input_1alk8_28,
._textarea_1alk8_29 {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-family: 'Instrument Sans', sans-serif;
  transition: all 0.2s;
}

._input_1alk8_28:focus,
._textarea_1alk8_29:focus {
  outline: none;
  border-color: rgba(59, 130, 246, 0.5);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

._input_1alk8_28:disabled,
._textarea_1alk8_29:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

._input_1alk8_28::-moz-placeholder, ._textarea_1alk8_29::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

._input_1alk8_28::placeholder,
._textarea_1alk8_29::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

._textarea_1alk8_29 {
  resize: vertical;
  min-height: 80px;
}

._footer_1alk8_65 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 8px;
}

._cancelButton_1alk8_75 {
  padding: 10px 16px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Instrument Sans', sans-serif;
}

._cancelButton_1alk8_75:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

._cancelButton_1alk8_75:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

._submitButton_1alk8_98 {
  padding: 10px 16px;
  border-radius: 8px;
  border: none;
  background: rgba(59, 130, 246, 1);
  color: white;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Instrument Sans', sans-serif;
}

._submitButton_1alk8_98:hover:not(:disabled) {
  background: rgba(59, 130, 246, 0.9);
}

._submitButton_1alk8_98:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

._backdrop_ihxp1_1 {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

._modal_ihxp1_13 {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px;
  gap: 20px;
  width: 521px;
  max-width: 100%;
  max-height: 90vh;
  background: rgba(19, 19, 19, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0px 4px 4px -1px rgba(12, 12, 13, 0.1),
    0px 4px 4px -1px rgba(12, 12, 13, 0.05);
  border-radius: 16px;
  overflow-y: auto;
  color: #ffffff;
}

._header_ihxp1_34 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}

._titleRow_ihxp1_42 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

._title_ihxp1_42 {
  font-family: 'Instrument Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

._subtitle_ihxp1_57 {
  font-family: 'Instrument Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

._closeButton_ihxp1_65 {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 4px;
  border-radius: 999px;
}

._closeButton_ihxp1_65:hover {
  background: rgba(255, 255, 255, 0.1);
}

._overallSection_ihxp1_78 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}

._overallRow_ihxp1_86 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

._overallLabel_ihxp1_94 {
  font-size: 16px;
  font-weight: 400;
}

._overallFit_ihxp1_99 {
  font-size: 16px;
  font-weight: 500;
}

._fitLow_ihxp1_104 {
  color: #ff3f4f;
}

._fitMedium_ihxp1_108 {
  color: #fbbf24;
}

._fitHigh_ihxp1_112 {
  color: #99ff96;
}

._barWrapper_ihxp1_116 {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  padding: 6px 10px;
  gap: 4px;
  width: 100%;
  height: 26px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  box-sizing: border-box;
}

._barSegment_ihxp1_129 {
  width: 3px;
  height: 14px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
}

._barSegmentActive_ihxp1_136 {
  background: linear-gradient(180deg, #fb3748 0%, #fa7319 100%);
}

._divider_ihxp1_140 {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
}

._section_ihxp1_147 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
}

._sectionTitle_ihxp1_155 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

._twoColumnRow_ihxp1_161 {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

._column_ihxp1_169 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

._badgeRow_ihxp1_176 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

._badgeIcon_ihxp1_183 {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

._badgeText_ihxp1_192 {
  font-size: 14px;
  font-weight: 500;
}

._badgeCheck_ihxp1_197 {
  color: #99ff96;
}

._badgeCheckText_ihxp1_201 {
  color: #99ff96;
}

._badgeCross_ihxp1_205 {
  color: #ff3f4f;
}

._badgeCrossText_ihxp1_209 {
  color: #ff3f4f;
}

._signalsList_ihxp1_213 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

._signalItem_ihxp1_219 {
  display: flex;
  flex-direction: row;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
}

._signalIndicatorPositive_ihxp1_227 {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #99ff96;
}

._signalIndicatorNegative_ihxp1_237 {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #ff3f4f;
}

._footer_ihxp1_247 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

._footerText_ihxp1_256 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

._arrowIcon_ihxp1_263 {
  width: 16px;
  height: 16px;
}


._manageICPPage_1n85x_1 {
  width: 100%;
  min-height: 100vh;
  background: #000000;
  padding: 100px 330px;
  box-sizing: border-box;
}

._container_1n85x_9 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 45px;
  width: 1198px;
  max-width: 100%;
  margin: 0 auto;
}

/* Create new ICP Section */
._createSection_1n85x_21 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 25px;
  width: 100%;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

._header_1n85x_34 {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 18px;
  width: 100%;
  height: 26px;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

._backButton_1n85x_48 {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #FFFFFF;
  padding: 0;
  flex: none;
  order: 0;
  flex-grow: 0;
}

._backButton_1n85x_48:hover {
  opacity: 0.8;
}

._title_1n85x_68 {
  width: 172px;
  height: 26px;
  font-family: 'Instrument Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 110%;
  color: #FFFFFF;
  margin: 0;
  flex: none;
  order: 1;
  flex-grow: 0;
}

._form_1n85x_83 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 40px;
  width: 100%;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

._formField_1n85x_96 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 21px;
  width: 100%;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

._label_1n85x_109 {
  width: 100%;
  height: 20px;
  font-family: 'Instrument Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  color: #FFFFFF;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

._input_1n85x_124 {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 20px;
  gap: 10px;
  width: 100%;
  height: 63px;
  background: rgba(24, 24, 24, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: rgba(255, 255, 255, 0.4);
  outline: none;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

._input_1n85x_124:focus {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.4);
}

._input_1n85x_124::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

._input_1n85x_124::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

._textarea_1n85x_158 {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 20px 20px 40px;
  gap: 10px;
  width: 100%;
  min-height: 160px;
  background: rgba(24, 24, 24, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: rgba(255, 255, 255, 0.4);
  outline: none;
  resize: vertical;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

._textarea_1n85x_158:focus {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.4);
}

._textarea_1n85x_158::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

._textarea_1n85x_158::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

._filtersRow_1n85x_193 {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  gap: 40px;
  width: 100%;
  flex: none;
  order: 2;
  align-self: stretch;
  flex-grow: 0;
}

._filtersRow_1n85x_193 ._formField_1n85x_96 {
  flex: 1;
  min-width: 0;
}

._buttonContainer_1n85x_211 {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 21px;
  width: auto;
  height: 50px;
  flex: none;
  order: 3;
  flex-grow: 0;
}

._createButton_1n85x_224 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  gap: 10px;
  width: auto;
  height: 50px;
  background: #FFFFFF;
  border-radius: 10px;
  border: none;
  font-family: 'Instrument Sans', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 110%;
  text-align: right;
  color: #000000;
  cursor: pointer;
  flex: none;
  order: 0;
  flex-grow: 0;
  transition: opacity 0.2s;
}

._createButton_1n85x_224:hover:not(:disabled) {
  opacity: 0.9;
}

._createButton_1n85x_224:disabled {
  cursor: not-allowed;
  opacity: 0.3;
}

._cancelButton_1n85x_259 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  gap: 10px;
  height: 50px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  font-family: 'Instrument Sans', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 110%;
  color: #FFFFFF;
  cursor: pointer;
  transition: background 0.2s;
}

._cancelButton_1n85x_259:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Separator */
._separator_1n85x_285 {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

/* Your ICPs Section */
._icpsSection_1n85x_297 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 25px;
  width: 100%;
  flex: none;
  order: 2;
  align-self: stretch;
  flex-grow: 0;
}

._sectionTitle_1n85x_310 {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 18px;
  width: auto;
  height: 26px;
  font-family: 'Instrument Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 110%;
  color: #FFFFFF;
  margin: 0;
  flex: none;
  order: 0;
  flex-grow: 0;
}

._loading_1n85x_330,
._emptyState_1n85x_331 {
  width: 100%;
  padding: 40px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 16px;
}

._emptySubtext_1n85x_340 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
}

._icpsGrid_1n85x_346 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  padding: 0px;
  gap: 25px;
  width: 100%;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

._icpCard_1n85x_358 {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  gap: 20px;
  background: rgba(24, 24, 24, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  width: 100%;
}

._cardContent_1n85x_371 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 12px;
  width: 100%;
  flex: none;
  order: 0;
  flex-grow: 1;
}

._cardHeader_1n85x_383 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0px;
  gap: 12px;
  width: 100%;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

._cardTitle_1n85x_397 {
  width: auto;
  font-family: 'Instrument Sans', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  color: #FFFFFF;
  margin: 0;
  flex: 1;
  order: 0;
  flex-grow: 1;
}

._menuContainer_1n85x_411 {
  position: relative;
  flex: none;
  order: 1;
  flex-grow: 0;
}

._menuButton_1n85x_418 {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 4px;
  gap: 10px;
  width: 28px;
  height: 28px;
  background: #131313;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  color: #FFFFFF;
  flex: none;
  order: 0;
  flex-grow: 0;
  transition: background 0.2s;
}

._menuButton_1n85x_418:hover {
  background: rgba(255, 255, 255, 0.1);
}

._menuOverlay_1n85x_441 {
  position: fixed;
  inset: 0;
  z-index: 10;
  background: transparent;
}

._menuDropdown_1n85x_448 {
  position: fixed;
  z-index: 50;
  width: 128px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #000000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  padding: 4px;
}

._menuItem_1n85x_459 {
  width: 100%;
  padding: 10px 14px;
  background: transparent;
  border: none;
  text-align: left;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 14px;
  color: #FFFFFF;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
}

._menuItem_1n85x_459:hover {
  background: rgba(255, 255, 255, 0.1);
}

._menuItemIcon_1n85x_480 {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.85);
}

._menuItemLabel_1n85x_486 {
  color: #FFFFFF;
}

._menuItemDanger_1n85x_490 {
  color: #FF4B4B;
}

._menuItemDanger_1n85x_490:hover {
  background: rgba(255, 75, 75, 0.1);
}

._menuItemIconDanger_1n85x_498 {
  width: 16px;
  height: 16px;
  color: #FF4B4B;
}

._menuItemLabelDanger_1n85x_504 {
  color: #FF4B4B;
}

._cardDescription_1n85x_508 {
  width: 100%;
  min-height: 0;
  font-family: 'Instrument Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.7);
  margin: 8px 0 10px;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

._filterButtons_1n85x_524 {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  gap: 8px;
  width: auto;
  height: 31px;
  flex: none;
  order: 2;
  flex-grow: 0;
}

._filterButton_1n85x_524 {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 4px 12px 6px 16px;
  gap: 10px;
  height: 31px;
  background: rgba(24, 24, 24, 0.8);
  border: 1px solid #333333;
  border-radius: 60px;
  font-family: 'Instrument Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #FFFFFF;
  cursor: pointer;
  flex: none;
  transition: background 0.2s, border-color 0.2s;
}

._filterButton_1n85x_524:hover {
  background: rgba(24, 24, 24, 1);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Responsive adjustments */
@media (max-width: 1600px) {
  ._manageICPPage_1n85x_1 {
    padding: 100px 200px;
  }
}

@media (max-width: 1400px) {
  ._manageICPPage_1n85x_1 {
    padding: 100px 100px;
  }
  
  ._icpCard_1n85x_358 {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 768px) {
  ._manageICPPage_1n85x_1 {
    padding: 50px 20px;
  }
  
  ._container_1n85x_9 {
    width: 100%;
  }
  
  ._filtersRow_1n85x_193 {
    flex-direction: column;
  }
  
  ._icpCard_1n85x_358 {
    width: 100%;
    min-width: 0;
  }
}

._loaderContainer_11y2h_1 {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: black;
  z-index: 50;
}

._loaderContent_11y2h_11 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

._spinner_11y2h_18 {
  width: 48px;
  height: 48px;
  color: white;
  animation: _spin_11y2h_18 1s linear infinite;
}

@keyframes _spin_11y2h_18 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

._message_11y2h_34 {
  color: white;
  font-size: 18px;
  font-weight: 500;
  font-family: 'Instrument Sans', 'Manrope', ui-sans-serif, system-ui;
  opacity: 0.9;
}

._dotsLoader_11y2h_42 {
  display: flex;
  gap: 8px;
}

._dotsLoader_11y2h_42 span {
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
  animation: _bounce_11y2h_1 1.4s ease-in-out infinite both;
}

._dotsLoader_11y2h_42 span:nth-child(1) {
  animation-delay: -0.32s;
}

._dotsLoader_11y2h_42 span:nth-child(2) {
  animation-delay: -0.16s;
}

._dotsLoader_11y2h_42 span:nth-child(3) {
  animation-delay: 0s;
}

@keyframes _bounce_11y2h_1 {
  0%, 80%, 100% {
    transform: scale(0);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}
._container_18b6h_1 {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: black;
}

._errorContainer_18b6h_10 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px;
  max-width: 400px;
  text-align: center;
}

._errorIcon_18b6h_20 {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(239, 68, 68, 0.2);
  border: 2px solid rgba(239, 68, 68, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(252, 165, 165);
  font-size: 32px;
  font-weight: 700;
}

._errorTitle_18b6h_34 {
  color: white;
  font-size: 24px;
  font-weight: 600;
  font-family: 'Instrument Sans', 'Manrope', ui-sans-serif, system-ui;
  margin: 0;
}

._errorMessage_18b6h_42 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-family: 'Instrument Sans', 'Manrope', ui-sans-serif, system-ui;
  margin: 0;
  line-height: 1.5;
}

._redirectMessage_18b6h_50 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-family: 'Instrument Sans', 'Manrope', ui-sans-serif, system-ui;
  margin: 0;
}
/* MagicLink Page Styles - based on Login page */

._container_1hsmy_3 {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background-color: black;
  overflow: hidden;
}

/* Background decorative elements */
._backgroundContainer_1hsmy_12 {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

._bgPattern1_1hsmy_18 {
  position: absolute;
  left: -541.29px;
  top: calc(50% + 601.58px);
  transform: translateY(-50%) scale(2.632);
  height: 324.402px;
  width: 2810.583px;
}

._bgPattern1_1hsmy_18 img {
  display: block;
  max-width: none;
  width: 100%;
  height: 100%;
}

._bgDecorative_1hsmy_34 {
  position: absolute;
  top: calc(50% + 601.58px);
  transform: translateY(-50%);
  opacity: 0.5;
}

._bgDecorative1_1hsmy_41 {
  left: -129.1px;
  height: 581.32px;
  width: 498.953px;
}

._bgDecorative1_1hsmy_41 img {
  display: block;
  max-width: none;
  width: 100%;
  height: 100%;
  transform: scale(1.188);
}

._bgDecorative2_1hsmy_55 {
  left: 528.74px;
  height: 422.206px;
  width: 498.954px;
}

._bgDecorative2_1hsmy_55 img {
  display: block;
  max-width: none;
  width: 100%;
  height: 100%;
  transform: scale(1.259);
}

._bgDecorative3_1hsmy_69 {
  left: 1062.29px;
  height: 422.206px;
  width: 498.954px;
}

._bgDecorative3_1hsmy_69 img {
  display: block;
  max-width: none;
  width: 100%;
  height: 100%;
  transform: scale(1.259);
}

._bgDecorative4_1hsmy_83 {
  left: 1358.15px;
  height: 621.635px;
  width: 498.953px;
}

._bgDecorative4_1hsmy_83 img {
  display: block;
  max-width: none;
  width: 100%;
  height: 100%;
  transform: scale(1.176);
}

/* Form Container */
._formContainer_1hsmy_98 {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 3rem 1rem;
}

._formWrapper_1hsmy_109 {
  width: 100%;
  max-width: 378px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 39px;
}

/* Header */
._header_1hsmy_119 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  text-align: center;
  color: white;
  width: 313.2px;
}

._title_1hsmy_129 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.68px;
  width: 100%;
  font-family: 'Instrument Sans', 'Manrope', ui-sans-serif, system-ui;
}

._subtitle_1hsmy_138 {
  font-size: 24px;
  font-weight: 500;
  opacity: 0.7;
  width: 100%;
  font-family: 'Instrument Sans', 'Manrope', ui-sans-serif, system-ui;
}

/* Content Container */
._content_1hsmy_147 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

._form_1hsmy_98 {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Input Field */
._inputField_1hsmy_163 {
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

._inputField_1hsmy_163 input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: white;
  font-size: 16px;
  line-height: 1.1;
  font-family: 'Instrument Sans', 'Manrope', ui-sans-serif, system-ui;
  font-weight: 400;
}

._inputField_1hsmy_163 input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

._inputField_1hsmy_163 input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

._inputField_1hsmy_163 input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Prevent browser autofill from changing background */
._inputField_1hsmy_163 input:-webkit-autofill,
._inputField_1hsmy_163 input:-webkit-autofill:hover,
._inputField_1hsmy_163 input:-webkit-autofill:focus,
._inputField_1hsmy_163 input:-webkit-autofill:active {
  -webkit-text-fill-color: white !important;
  box-shadow: 0 0 0px 1000px rgba(255, 255, 255, 0.05) inset !important;
  background-color: transparent !important;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

/* Button */
._button_1hsmy_208 {
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
  font-family: 'Instrument Sans', 'Manrope', ui-sans-serif, system-ui;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1;
}

._button_1hsmy_208:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

._buttonPrimary_1hsmy_231 {
  background-color: rgba(255, 255, 255, 0.2);
  color: black;
}

._buttonPrimary_1hsmy_231:not(:disabled) {
  background-color: #ffffff;
}

._buttonPrimary_1hsmy_231:hover:not(:disabled) {
  background-color: rgba(255, 255, 255, 0.9);
}

._buttonOutline_1hsmy_244 {
  background: transparent;
  border: 1px solid white;
  color: white;
}

._buttonOutline_1hsmy_244:hover:not(:disabled) {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Spinner */
._spinner_1hsmy_255 {
  width: 18px;
  height: 18px;
  animation: _spin_1hsmy_255 1s linear infinite;
}

@keyframes _spin_1hsmy_255 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* OR Divider */
._dividerContainer_1hsmy_271 {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}

._dividerLine_1hsmy_278 {
  flex: 1;
  height: 1px;
  position: relative;
}

._dividerLine_1hsmy_278 img {
  display: block;
  width: 100%;
  height: 100%;
}

._dividerText_1hsmy_290 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1;
  color: white;
  white-space: nowrap;
  padding: 0 8px;
  font-family: 'Instrument Sans', 'Manrope', ui-sans-serif, system-ui;
}

/* Error Message */
._errorMessage_1hsmy_301 {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  background-color: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.5);
  color: rgb(252, 165, 165);
  font-size: 14px;
  animation: _slideDown_1hsmy_1 0.3s ease-out;
}

@keyframes _slideDown_1hsmy_1 {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Success State */
._successContainer_1hsmy_324 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

._successIcon_1hsmy_333 {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(34, 197, 94, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(134, 239, 172);
}

._successMessage_1hsmy_344 {
  color: white;
  font-size: 16px;
  font-family: 'Instrument Sans', 'Manrope', ui-sans-serif, system-ui;
  margin: 0;
  line-height: 1.5;
}

._successMessage_1hsmy_344 strong {
  color: rgba(255, 255, 255, 0.9);
}

._successHint_1hsmy_356 {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-family: 'Instrument Sans', 'Manrope', ui-sans-serif, system-ui;
  margin: 0;
  line-height: 1.5;
}

._linkButton_1hsmy_364 {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-family: 'Instrument Sans', 'Manrope', ui-sans-serif, system-ui;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s;
}

._linkButton_1hsmy_364:hover {
  color: white;
}
._container_18b6h_1 {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: black;
}

._errorContainer_18b6h_10 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px;
  max-width: 400px;
  text-align: center;
}

._errorIcon_18b6h_20 {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(239, 68, 68, 0.2);
  border: 2px solid rgba(239, 68, 68, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(252, 165, 165);
  font-size: 32px;
  font-weight: 700;
}

._errorTitle_18b6h_34 {
  color: white;
  font-size: 24px;
  font-weight: 600;
  font-family: 'Instrument Sans', 'Manrope', ui-sans-serif, system-ui;
  margin: 0;
}

._errorMessage_18b6h_42 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-family: 'Instrument Sans', 'Manrope', ui-sans-serif, system-ui;
  margin: 0;
  line-height: 1.5;
}

._redirectMessage_18b6h_50 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-family: 'Instrument Sans', 'Manrope', ui-sans-serif, system-ui;
  margin: 0;
}
/* ResetPasswordSuccess Page Styles - based on Login page */

._container_jrsu3_3 {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background-color: black;
  overflow: hidden;
}

/* Background decorative elements */
._backgroundContainer_jrsu3_12 {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

._bgPattern1_jrsu3_18 {
  position: absolute;
  left: -541.29px;
  top: calc(50% + 601.58px);
  transform: translateY(-50%) scale(2.632);
  height: 324.402px;
  width: 2810.583px;
}

._bgPattern1_jrsu3_18 img {
  display: block;
  max-width: none;
  width: 100%;
  height: 100%;
}

._bgDecorative_jrsu3_34 {
  position: absolute;
  top: calc(50% + 601.58px);
  transform: translateY(-50%);
  opacity: 0.5;
}

._bgDecorative1_jrsu3_41 {
  left: -129.1px;
  height: 581.32px;
  width: 498.953px;
}

._bgDecorative1_jrsu3_41 img {
  display: block;
  max-width: none;
  width: 100%;
  height: 100%;
  transform: scale(1.188);
}

._bgDecorative2_jrsu3_55 {
  left: 528.74px;
  height: 422.206px;
  width: 498.954px;
}

._bgDecorative2_jrsu3_55 img {
  display: block;
  max-width: none;
  width: 100%;
  height: 100%;
  transform: scale(1.259);
}

._bgDecorative3_jrsu3_69 {
  left: 1062.29px;
  height: 422.206px;
  width: 498.954px;
}

._bgDecorative3_jrsu3_69 img {
  display: block;
  max-width: none;
  width: 100%;
  height: 100%;
  transform: scale(1.259);
}

._bgDecorative4_jrsu3_83 {
  left: 1358.15px;
  height: 621.635px;
  width: 498.953px;
}

._bgDecorative4_jrsu3_83 img {
  display: block;
  max-width: none;
  width: 100%;
  height: 100%;
  transform: scale(1.176);
}

/* Form Container */
._formContainer_jrsu3_98 {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 3rem 1rem;
}

._formWrapper_jrsu3_109 {
  width: 100%;
  max-width: 378px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 39px;
}

/* Header */
._header_jrsu3_119 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  text-align: center;
  color: white;
  width: 313.2px;
}

._title_jrsu3_129 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.68px;
  width: 100%;
  font-family: 'Instrument Sans', 'Manrope', ui-sans-serif, system-ui;
}

._subtitle_jrsu3_138 {
  font-size: 24px;
  font-weight: 500;
  opacity: 0.7;
  width: 100%;
  font-family: 'Instrument Sans', 'Manrope', ui-sans-serif, system-ui;
}

/* Content */
._content_jrsu3_147 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

._successIcon_jrsu3_156 {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: rgba(34, 197, 94, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(134, 239, 172);
}

._successMessage_jrsu3_167 {
  color: white;
  font-size: 18px;
  font-weight: 500;
  font-family: 'Instrument Sans', 'Manrope', ui-sans-serif, system-ui;
  margin: 0;
  line-height: 1.5;
}

._successHint_jrsu3_176 {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-family: 'Instrument Sans', 'Manrope', ui-sans-serif, system-ui;
  margin: 0;
  line-height: 1.5;
}

/* Button */
._button_jrsu3_185 {
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
  font-family: 'Instrument Sans', 'Manrope', ui-sans-serif, system-ui;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1;
}

._button_jrsu3_185:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

._buttonPrimary_jrsu3_208 {
  background-color: #ffffff;
  color: black;
}

._buttonPrimary_jrsu3_208:hover:not(:disabled) {
  background-color: rgba(255, 255, 255, 0.9);
}
/* SetPassword Page Styles */

._container_vnpsm_3 {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background-color: black;
  overflow: hidden;
}

/* Background decorative elements */
._backgroundContainer_vnpsm_12 {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

._bgPattern1_vnpsm_18 {
  position: absolute;
  left: -541.29px;
  top: calc(50% + 601.58px);
  transform: translateY(-50%) scale(2.632);
  height: 324.402px;
  width: 2810.583px;
}

._bgPattern1_vnpsm_18 img {
  display: block;
  max-width: none;
  width: 100%;
  height: 100%;
}

._bgDecorative_vnpsm_34 {
  position: absolute;
  top: calc(50% + 601.58px);
  transform: translateY(-50%);
  opacity: 0.5;
}

._bgDecorative1_vnpsm_41 {
  left: -129.1px;
  height: 581.32px;
  width: 498.953px;
}

._bgDecorative1_vnpsm_41 img {
  display: block;
  max-width: none;
  width: 100%;
  height: 100%;
  transform: scale(1.188);
}

._bgDecorative2_vnpsm_55 {
  left: 528.74px;
  height: 422.206px;
  width: 498.954px;
}

._bgDecorative2_vnpsm_55 img {
  display: block;
  max-width: none;
  width: 100%;
  height: 100%;
  transform: scale(1.259);
}

._bgDecorative3_vnpsm_69 {
  left: 1062.29px;
  height: 422.206px;
  width: 498.954px;
}

._bgDecorative3_vnpsm_69 img {
  display: block;
  max-width: none;
  width: 100%;
  height: 100%;
  transform: scale(1.259);
}

._bgDecorative4_vnpsm_83 {
  left: 1358.15px;
  height: 621.635px;
  width: 498.953px;
}

._bgDecorative4_vnpsm_83 img {
  display: block;
  max-width: none;
  width: 100%;
  height: 100%;
  transform: scale(1.176);
}

/* Form Container */
._formContainer_vnpsm_98 {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 3rem 1rem;
}

._formWrapper_vnpsm_109 {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

/* Header */
._header_vnpsm_119 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  text-align: center;
  color: white;
}

._title_vnpsm_128 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.68px;
  font-family: 'Instrument Sans', 'Manrope', ui-sans-serif, system-ui;
}

._subtitle_vnpsm_136 {
  font-size: 24px;
  font-weight: 500;
  opacity: 0.7;
  font-family: 'Instrument Sans', 'Manrope', ui-sans-serif, system-ui;
}

/* Content */
._content_vnpsm_144 {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

._form_vnpsm_98 {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Name row */
._nameRow_vnpsm_159 {
  display: flex;
  gap: 16px;
}

._nameRow_vnpsm_159 ._inputGroup_vnpsm_164 {
  flex: 1;
}

/* Input Groups */
._inputGroup_vnpsm_164 {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

._label_vnpsm_175 {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  font-family: 'Instrument Sans', 'Manrope', ui-sans-serif, system-ui;
}

._required_vnpsm_182 {
  color: #ef4444;
}

/* Input Field */
._inputField_vnpsm_187 {
  height: 46px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

._inputField_vnpsm_187 input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: white;
  font-size: 14px;
  font-family: 'Instrument Sans', 'Manrope', ui-sans-serif, system-ui;
}

._inputField_vnpsm_187 input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

._inputField_vnpsm_187 input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

._inputField_vnpsm_187 input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Autofill styles */
._inputField_vnpsm_187 input:-webkit-autofill,
._inputField_vnpsm_187 input:-webkit-autofill:hover,
._inputField_vnpsm_187 input:-webkit-autofill:focus,
._inputField_vnpsm_187 input:-webkit-autofill:active {
  -webkit-text-fill-color: white !important;
  -webkit-box-shadow: 0 0 0px 1000px rgba(255, 255, 255, 0.05) inset !important;
  background-color: transparent !important;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

/* Password Toggle */
._passwordToggle_vnpsm_229 {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

._passwordToggle_vnpsm_229:hover:not(:disabled) {
  color: rgba(255, 255, 255, 0.8);
}

._passwordToggle_vnpsm_229:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Validation Container */
._validationContainer_vnpsm_251 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}

._validationTitle_vnpsm_260 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 500;
  font-family: 'Instrument Sans', 'Manrope', ui-sans-serif, system-ui;
  margin: 0 0 4px 0;
}

._validationItem_vnpsm_268 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-family: 'Instrument Sans', 'Manrope', ui-sans-serif, system-ui;
}

._validationItem_vnpsm_268._valid_vnpsm_251 {
  color: rgb(134, 239, 172);
}

._validIcon_vnpsm_281 {
  color: rgb(34, 197, 94);
}

._invalidIcon_vnpsm_285 {
  color: rgba(255, 255, 255, 0.3);
}

/* Button */
._button_vnpsm_290 {
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
  font-family: 'Instrument Sans', 'Manrope', ui-sans-serif, system-ui;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1;
  margin-top: 8px;
}

._button_vnpsm_290:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

._buttonPrimary_vnpsm_314 {
  background-color: rgba(255, 255, 255, 0.2);
  color: black;
}

._buttonPrimary_vnpsm_314:not(:disabled) {
  background-color: #ffffff;
}

._buttonPrimary_vnpsm_314:hover:not(:disabled) {
  background-color: rgba(255, 255, 255, 0.9);
}

/* Spinner */
._spinner_vnpsm_328 {
  width: 18px;
  height: 18px;
  animation: _spin_vnpsm_328 1s linear infinite;
}

@keyframes _spin_vnpsm_328 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Error Message */
._errorMessage_vnpsm_344 {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  background-color: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.5);
  color: rgb(252, 165, 165);
  font-size: 14px;
  animation: _slideDown_vnpsm_1 0.3s ease-out;
}

@keyframes _slideDown_vnpsm_1 {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
