/* watsonx Orchestrate - Shared Styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "IBM Plex Sans",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #161616;
  background: #f4f4f4;
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
}
/* Connection Modal with Optional Help Panel */
.connection-modal-container {
  display: flex;
  position: relative;
  height: 100%;
  overflow: hidden;
}

/* Help Panel (Tearsheet) - Hidden by default */
.connection-help-panel {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 416px;
  background: #262626;
  border-right: 1px solid #393939;
  z-index: 1001;
  overflow-y: auto;
  transition: transform 0.3s ease;
  transform: translateX(-100%);
}

.connection-help-panel.visible {
  transform: translateX(0);
}

.help-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid #393939;
}

.help-panel-title {
  display: flex;
  align-items: center;
  color: #f4f4f4;
  font-size: 14px;
  font-weight: 400;
}

.help-panel-close {
  background: none;
  border: none;
  color: #f4f4f4;
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}

.help-panel-close:hover {
  color: #ffffff;
}

.help-panel-content {
  padding: 24px;
  color: #f4f4f4;
}

.help-panel-content h3 {
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 400;
}

.help-panel-content h4 {
  font-size: 14px;
  margin-top: 24px;
  margin-bottom: 12px;
  font-weight: 600;
}

.help-panel-content p {
  font-size: 14px;
  line-height: 20px;
  color: #c6c6c6;
  margin-bottom: 16px;
}

.help-panel-content ul {
  margin-left: 20px;
  margin-bottom: 16px;
}

.help-panel-content li {
  font-size: 14px;
  line-height: 20px;
  color: #c6c6c6;
  margin-bottom: 8px;
}

/* Main Content Area */
.connection-main-content {
  flex: 1;
  padding: 24px;
  transition: margin-left 0.3s ease;
  margin-left: 0;
}

.connection-main-content.with-help {
  margin-left: 416px;
}

.connection-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.connection-header h2 {
  font-size: 24px;
  font-weight: 400;
}

.connection-help-toggle {
  background: none;
  border: 1px solid #0f62fe;
  color: #0f62fe;
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 0;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.connection-help-toggle:hover {
  background: #0f62fe;
  color: white;
}

.connection-help-toggle.active {
  background: #0f62fe;
  color: white;
}

/* Persona Selector Overlay */
.persona-selector-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0f62fe 0%, #001d6c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  animation: fadeIn 0.5s ease-in;
}

.persona-selector-overlay.hidden {
  display: none;
}

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

.persona-modal {
  background: white;
  max-width: 1000px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.persona-modal h2 {
  font-size: 32px;
  margin-bottom: 12px;
  font-weight: 400;
}

.persona-modal .description {
  font-size: 16px;
  color: #525252;
  margin-bottom: 16px;
  line-height: 24px;
}

.persona-modal .reassurance {
  font-size: 14px;
  color: #161616;
  margin-bottom: 32px;
  font-weight: 600;
}

.persona-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.persona-card,
.domain-card {
  border: 2px solid #e0e0e0;
  padding: 32px 24px;
  cursor: pointer;
  transition: all 0.2s;
  background: white;
  text-align: center;
  border-radius: 4px;
}

.persona-card:hover,
.domain-card:hover {
  border-color: #0f62fe;
  box-shadow: 0 4px 12px rgba(15, 98, 254, 0.2);
  transform: translateY(-2px);
}

.persona-card.selected,
.domain-card.selected {
  border-color: #0f62fe;
  background: #e8f4ff;
  box-shadow: 0 4px 12px rgba(15, 98, 254, 0.3);
}

.persona-icon {
  font-size: 56px;
  margin-bottom: 20px;
}

/* Domain card specific styles for horizontal layout */
.domain-card {
  padding: 20px 24px;
  text-align: left;
}

.domain-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.domain-card .persona-icon {
  font-size: 32px;
  margin-bottom: 0;
}

.persona-card h3,
.domain-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

.domain-card h3 {
  margin-bottom: 0;
}

.persona-card p,
.domain-card p {
  font-size: 14px;
  color: #525252;
  line-height: 20px;
  margin-bottom: 16px;
}

.focus-areas {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e0e0e0;
  font-size: 12px;
  color: #161616;
  text-align: left;
}

.focus-areas strong {
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-size: 11px;
  color: #525252;
}

.focus-areas ul {
  list-style: none;
  padding: 0;
}

.focus-areas li {
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.focus-areas li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0f62fe;
}

.persona-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.persona-actions-left {
  display: flex;
  gap: 12px;
}

.persona-actions-right {
  display: flex;
  gap: 12px;
}

.persona-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  font-family: inherit;
  border-radius: 4px;
}

.persona-btn.tertiary {
  background: transparent;
  color: #0f62fe;
  text-decoration: underline;
  padding: 12px 0;
}

.persona-btn.tertiary:hover {
  color: #0043ce;
}

.persona-btn.secondary {
  background: transparent;
  border: 1px solid #0f62fe;
  color: #0f62fe;
}

.persona-btn.secondary:hover {
  background: #f4f4f4;
}

.persona-btn.primary {
  background: #0f62fe;
  color: white;
}

.persona-btn.primary:hover {
  background: #0043ce;
}

.persona-btn.primary:disabled {
  background: #c6c6c6;
  cursor: not-allowed;
}

/* Assessment Styles */
.assessment-question {
  margin-bottom: 32px;
}

.assessment-question h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
}

.assessment-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.assessment-option {
  border: 2px solid #e0e0e0;
  padding: 20px;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 4px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.assessment-option:hover {
  border-color: #0f62fe;
  background: #f4f4f4;
}

.assessment-option.selected {
  border-color: #0f62fe;
  background: #e8f4ff;
}

.assessment-option input[type="radio"] {
  margin-top: 4px;
}

.assessment-option-content {
  flex: 1;
}

.assessment-option-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.assessment-option-desc {
  font-size: 14px;
  color: #525252;
}

.progress-indicator {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.progress-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e0e0e0;
  transition: all 0.3s;
}

.progress-dot.active {
  background: #0f62fe;
  width: 24px;
  border-radius: 4px;
}

.info-banner {
  background: #e5f6ff;
  border-left: 4px solid #0f62fe;
  padding: 16px;
  margin-bottom: 32px;
  border-radius: 4px;
}

.info-banner-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.info-banner-text {
  font-size: 14px;
  color: #161616;
  line-height: 20px;
}

/* Main App Styles */
.app-header {
  background: #161616;
  color: white;
  height: 48px;
  display: flex;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.header-content {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 16px;
}

.brand {
  font-size: 14px;
  padding: 0;
}

.brand-ibm {
  font-weight: 400;
}

.brand-product {
  font-weight: 600;
  margin-left: 4px;
}

.hamburger-menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  margin-right: 16px;
  background: transparent;
  border: none;
  border-radius: 4px;
  color: white;
  cursor: pointer;
  transition: background 0.11s cubic-bezier(0.2, 0, 0.38, 0.9);
  outline: none;
}

.hamburger-menu:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hamburger-menu:active {
  background: rgba(255, 255, 255, 0.2);
}

.hamburger-menu:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.nav-drawer-overlay {
  position: fixed;
  inset: 48px 0 0 0;
  background: rgba(0, 0, 0, 0.16);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 1090;
}

.nav-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.nav-drawer {
  position: fixed;
  top: 48px;
  left: 0;
  bottom: 0;
  width: 288px;
  background: #161616;
  color: #f4f4f4;
  transform: translateX(-100%);
  transition: transform 0.24s ease;
  z-index: 1100;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.28);
}

.nav-drawer.open {
  transform: translateX(0);
}

.nav-drawer-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 8px 0 12px;
}

.nav-item,
.nav-subitem {
  font-family: inherit;
  border: none;
  background: transparent;
  color: #c6c6c6;
  text-align: left;
  cursor: pointer;
}

.nav-item {
  position: relative;
  min-height: 32px;
  padding: 0 16px 0 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 600;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.nav-item:hover,
.nav-subitem:hover {
  background: #262626;
  color: #f4f4f4;
}

.nav-item.active {
  background: #393939;
  color: #f4f4f4;
}

.nav-item-indicator {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #0f62fe;
}

.nav-item-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f4f4f4;
  flex-shrink: 0;
}

.nav-item-icon svg,
.nav-group-chevron svg {
  display: block;
  color: currentColor;
}

.persona-badge {
  margin-left: auto;
  background: #0f62fe;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  border: none;
  color: white;
  cursor: pointer;
  transition: background 0.2s;
}

.nav-item-label {
  flex: 1;
}

.nav-group {
  display: flex;
  flex-direction: column;
}

.nav-group-trigger {
  padding-right: 16px;
}

.nav-group-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f4f4f4;
  transition: transform 0.2s ease;
}

.nav-group-chevron svg {
  display: block;
  color: currentColor;
}

.nav-group.expanded .nav-group-chevron {
  transform: rotate(180deg);
}

.nav-submenu {
  display: flex;
  flex-direction: column;
  padding: 4px 0 8px 62px;
  gap: 2px;
}

.nav-subitem {
  min-height: 40px;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #c6c6c6;
}

.nav-item-bottom {
  margin-top: auto;
  border-top: 1px solid #393939;
}

.persona-badge:hover {
  background: #0353e9;
}

.persona-badge:active {
  background: #002d9c;
}
/* Collapsible Page Header (IBM Carbon Pattern) */
.page-header {
  background: white;
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.3s cubic-bezier(0.2, 0, 0.38, 0.9);
  overflow: hidden;
  flex-shrink: 0;
}

.page-header.collapsed {
  max-height: 56px;
}

.page-header.expanded {
  max-height: 400px;
}

.page-header-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 32px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
}

.page-header-toggle:hover {
  background: #f4f4f4;
}

.page-header-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-header-title h2 {
  font-size: 16px;
  font-weight: 600;
  color: #161616;
  margin: 0;
}

.page-header-subtitle {
  font-size: 14px;
  color: #525252;
  margin-left: 8px;
}

/* Ghost button for page header toggle */
.page-header-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  min-height: 32px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 4px;
  color: #525252;
  cursor: pointer;
  transition: background 0.11s cubic-bezier(0.2, 0, 0.38, 0.9);
  outline: none;
}

.page-header-toggle-btn:hover {
  background: #e5e5e5;
}

.page-header-toggle-btn:active {
  background: #d0d0d0;
}

.page-header-toggle-btn:focus {
  outline: 2px solid #0f62fe;
  outline-offset: 2px;
}

/* Chevron icon animation */
.page-header-chevron {
  transition: transform 0.3s cubic-bezier(0.2, 0, 0.38, 0.9);
}

.page-header.expanded .page-header-chevron {
  transform: rotate(180deg);
}

.page-header-content {
  padding: 0 32px 24px;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.2, 0, 0.38, 0.9);
}

.page-header.expanded .page-header-content {
  opacity: 1;
}

.page-header-description {
  font-size: 14px;
  color: #525252;
  margin-bottom: 24px;
  line-height: 1.5;
}

/* Getting Started Cards in Page Header */
.getting-started-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.getting-started-card {
  background: white;
  border: 1px solid #e0e0e0;
  padding: 16px;
  border-radius: 4px;
  transition: all 0.2s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.getting-started-card:hover {
  border-color: #0f62fe;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.getting-started-card.priority {
  border: 2px solid #0f62fe;
  background: #f0f7ff;
}

.getting-started-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
}

.getting-started-card-title {
  font-size: 14px;
  font-weight: 600;
  color: #161616;
  margin: 0;
}

.getting-started-card-badge {
  background: #0f62fe;
  color: white;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.getting-started-card-description {
  font-size: 13px;
  color: #525252;
  line-height: 1.4;
  margin-bottom: 12px;
}

.getting-started-card-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: #525252;
  padding-top: 12px;
  margin-top: auto;
  border-top: 1px solid #e0e0e0;
}

.getting-started-card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Page Header Banner */
.page-header-banner {
  background: #e5f6ff;
  border: 1px solid #0f62fe;
  border-radius: 4px;
  padding: 12px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.page-header-banner-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.page-header-banner-content {
  flex: 1;
}

.page-header-banner-title {
  font-size: 14px;
  font-weight: 600;
  color: #161616;
  margin: 0 0 4px 0;
}

.page-header-banner-message {
  font-size: 13px;
  color: #525252;
  line-height: 1.4;
  margin: 0;
}

/* Role Dropdown (v1.5) */
.role-dropdown {
  background: transparent;
  border: 1px solid #525252;
  color: white;
  padding: 6px 12px;
  font-size: 12px;
  cursor: pointer;
  margin-left: 12px;
  transition: all 0.2s;
  border-radius: 4px;
  font-family: inherit;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 28px;
}

.role-dropdown:hover {
  background-color: #353535;
  border-color: white;
}

.role-dropdown:focus {
  outline: 2px solid #0f62fe;
  outline-offset: 2px;
}

/* Role Info Card (v1.5) */
.role-info-section {
  margin-bottom: 24px;
}

.role-info-card {
  background: #f4f4f4;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 16px;
  margin-bottom: 16px;
}

.role-info-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.role-info-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.role-info-title {
  font-size: 16px;
  font-weight: 600;
  color: #161616;
  margin: 0 0 4px 0;
}

.role-info-description {
  font-size: 14px;
  color: #525252;
  margin: 0;
}

.role-info-focus {
  font-size: 14px;
  color: #161616;
}

.role-info-focus strong {
  display: block;
  margin-bottom: 8px;
}

.role-info-focus ul {
  margin: 0;
  padding-left: 20px;
}

.role-info-focus li {
  margin-bottom: 4px;
  color: #525252;
}

.main-layout {
  display: flex;
  flex: 1;
  overflow: hidden;
}

/* AI Chat Panel */
.ai-chat-panel {
  width: 360px;
  background: linear-gradient(180deg, #f3f3f3 0%, #eef2ff 100%);
  border-right: 1px solid #d9d9d9;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  min-height: 0;
  transition:
    width 0.25s ease,
    min-width 0.25s ease,
    border-color 0.25s ease;
}

.ai-chat-panel.chat-panel-hidden {
  width: 0;
  min-width: 0;
  border-right-color: transparent;
  overflow: hidden;
}

.chat-header {
  height: 56px;
  padding: 0 18px;
  border-bottom: 1px solid #c6c6c6;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

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

.chat-header-icon-btn {
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  color: #161616;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.chat-header-icon-btn:hover {
  background: rgba(22, 22, 22, 0.08);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-message {
  display: flex;
  gap: 14px;
}

.chat-message.user-message {
  justify-content: flex-end;
}

.chat-message.user-message .chat-avatar {
  order: 2;
  background: #8d8d8d;
  color: #ffffff;
  box-shadow: none;
}

.chat-message.user-message .chat-content {
  order: 1;
  flex: 0 1 auto;
  max-width: 75%;
  text-align: right;
}

.chat-message.user-message .chat-source {
  justify-content: flex-end;
}

.chat-message.user-message .chat-text {
  display: inline-block;
  background: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  padding: 10px 12px;
}

.chat-avatar {
  width: 32px;
  height: 32px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f62fe;
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.chat-avatar svg,
.chat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.chat-content {
  flex: 1;
}

.chat-source {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 13px;
  color: #525252;
  margin-bottom: 14px;
}

.chat-source-name {
  font-size: 15px;
  font-weight: 400;
  color: #525252;
}

.chat-source-time {
  font-size: 14px;
  color: #525252;
}

.connection-settings-page {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #f4f4f4;
}

.connection-settings-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px 0;
  font-size: 14px;
  color: #6f6f6f;
}

.connection-settings-breadcrumb .active {
  color: #161616;
  font-weight: 600;
}

.connection-settings-breadcrumb-link {
  border: none;
  padding: 0;
  background: transparent;
  color: #0f62fe;
  font: inherit;
  cursor: pointer;
}

.connection-settings-breadcrumb-link:hover {
  text-decoration: underline;
}

.connection-settings-breadcrumb-separator {
  color: #8d8d8d;
}

.connection-settings-header {
  padding: 24px 32px 16px;
  border-bottom: 1px solid #d9d9d9;
  background: #f4f4f4;
}

.connection-settings-header h1 {
  margin: 0 0 8px;
  font-size: 36px;
  font-weight: 400;
  color: #161616;
}

.connection-settings-header p {
  margin: 0;
  font-size: 14px;
  color: #525252;
}

.connection-settings-tabs {
  display: flex;
  gap: 4px;
  padding: 0 32px;
  border-bottom: 1px solid #d9d9d9;
  background: #f4f4f4;
}

.connection-settings-tab {
  height: 48px;
  padding: 0 14px;
  border: none;
  background: transparent;
  color: #525252;
  font-size: 14px;
  font-weight: 400;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}

.connection-settings-tab.active {
  color: #161616;
  font-weight: 600;
  border-bottom-color: #0f62fe;
}

.connection-settings-card {
  margin: 24px 32px 32px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
}

.connection-settings-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 24px 16px;
}

.connection-settings-card-header h2 {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 400;
  color: #161616;
}

.connection-settings-card-header p {
  margin: 0;
  font-size: 14px;
  color: #525252;
  max-width: 760px;
  line-height: 1.5;
}

.connection-settings-add-btn {
  height: 40px;
  padding: 0 18px;
  border: none;
  background: #0f62fe;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  white-space: nowrap;
}

.connection-settings-add-btn:hover {
  background: #0353e9;
}

.connection-settings-filters {
  display: flex;
  gap: 8px;
  padding: 0 24px 16px;
}

.connection-settings-pill {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  border: 1px solid #8d8d8d;
  border-radius: 999px;
  font-size: 12px;
  color: #525252;
}

.connection-settings-pill.active {
  background: #161616;
  border-color: #161616;
  color: #ffffff;
}

.connection-settings-table {
  border-top: 1px solid #e0e0e0;
}

.connection-settings-row {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1.5fr 180px;
  gap: 24px;
  padding: 16px 24px;
  border-bottom: 1px solid #e0e0e0;
  align-items: start;
  font-size: 14px;
  color: #161616;
}

.connection-settings-head {
  background: #f4f4f4;
  font-weight: 600;
}

.connection-settings-row small {
  font-size: 12px;
  color: #6f6f6f;
}

.chat-text {
  font-size: 14px;
  line-height: 1.5;
  color: #161616;
}

.chat-text p {
  margin-bottom: 14px;
}

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

.chat-title {
  display: block;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
  color: #525252;
  margin-bottom: 14px;
}

.chat-section-title {
  display: block;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
  color: #161616;
  margin: 24px 0 12px;
}

.chat-suggestions {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 0;
}

.chat-inline-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.chat-inline-option {
  border: 1px solid #0f62fe;
  background: #ffffff;
  color: #0f62fe;
  border-radius: 999px;
  padding: 8px 12px;
  font-family: inherit;
  font-size: 13px;
  line-height: 1.2;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.chat-inline-option:hover {
  background: #0f62fe;
  color: #ffffff;
}

.suggestion-card {
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid #d0d0d0;
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  min-height: 100px;
}

.suggestion-card:hover {
  border-color: #0f62fe;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 24px rgba(15, 98, 254, 0.08);
  transform: translateY(-1px);
}

.suggestion-card-content {
  flex: 1;
}

.suggestion-title {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  color: #262626;
  margin-bottom: 6px;
}

.suggestion-description {
  font-size: 14px;
  line-height: 1.45;
  color: #6f6f6f;
}

.suggestion-arrow {
  color: #0f62fe;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.chat-input-wrapper {
  padding: 16px;
  margin-top: auto;
}

.chat-input-shell {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 12px 14px;
}

.chat-input {
  width: 100%;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.4;
  color: #161616;
  resize: none;
  min-height: 24px;
  max-height: 120px;
}

.chat-input::placeholder {
  .chat-input-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }

  .chat-input-icon-btn {
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    color: #393939;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
      color 0.2s ease,
      background-color 0.2s ease;
  }

  .chat-input-icon-btn:hover {
    color: #161616;
    background: rgba(22, 22, 22, 0.06);
  }

  .chat-send-btn {
    color: #c6c6c6;
  }

  @media (max-width: 1024px) {
    .ai-chat-panel {
      width: 100%;
      min-height: 420px;
      border-right: none;
      border-bottom: 1px solid #d9d9d9;
    }

    .chat-messages {
      padding: 20px 16px 16px;
    }

    .suggestion-card {
      min-height: 88px;
    }
  }
  color: #b8b8b8;
}

.chat-input:focus {
  outline: none;
}

.chat-input-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.chat-input-icon-btn {
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  color: #393939;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.chat-input-icon-btn:hover {
  color: #161616;
  background: rgba(22, 22, 22, 0.06);
}

.chat-send-btn {
  color: #c6c6c6;
}

/* Content Area */
.content-area {
  flex: 1;
  overflow-y: auto;
  background: #f4f4f4;
}

.hero-section {
  background: white;
  padding: 32px 32px 24px;
  border-bottom: none;
}

.hero-content {
  max-width: 1248px;
  margin: 0;
}

.hero-section h1 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 8px;
  color: #161616;
}

.hero-section .subtitle {
  font-size: 14px;
  color: #525252;
  margin-bottom: 0;
  line-height: 1.43;
}

.main-content {
  max-width: 1248px;
  margin: 0;
  padding: 32px;
}

.action-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.action-card {
  background: white;
  border: 1px solid #e0e0e0;
  padding: 24px;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 4px;
}

.action-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
  border-color: #0f62fe;
}

.action-card.featured {
  border: 2px solid #0f62fe;
  box-shadow: 0 2px 8px rgba(15, 98, 254, 0.2);
}

.action-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.action-card-title {
  font-size: 18px;
  font-weight: 600;
  flex: 1;
}

.action-card-badge {
  background: #0f62fe;
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.action-card-description {
  font-size: 14px;
  color: #525252;
  line-height: 20px;
  flex: 1;
}

.action-card-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: #525252;
  padding-top: 12px;
  border-top: 1px solid #e0e0e0;
  flex-wrap: wrap;
}

.action-card-cta {
  color: #0f62fe;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}

.action-card-cta:hover {
  text-decoration: underline;
}

/* Domain Personalization Styles */

/* Card Integrations */
.card-integrations {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e0e0e0;
  font-size: 13px;
  color: #525252;
}

.card-integrations strong {
  color: #161616;
}

/* Integrations Section */
.integrations-section {
  margin-top: 32px;
  padding: 24px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.integrations-section h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #161616;
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.integration-card {
  padding: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s;
  background: white;
}

.integration-card.high {
  border-color: #0f62fe;
  background: #f4f4ff;
}

.integration-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.integration-icon {
  font-size: 24px;
}

.integration-name {
  flex: 1;
  font-weight: 600;
  font-size: 14px;
}

.priority-badge {
  background: #0f62fe;
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
}

/* KPIs Section */
.kpis-section {
  margin-top: 32px;
  padding: 24px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.kpis-section h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #161616;
}

.kpis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.kpi-card {
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #f4f4f4 0%, #ffffff 100%);
  transition: all 0.2s;
}

.kpi-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.kpi-icon {
  font-size: 32px;
}

.kpi-content {
  flex: 1;
}

.kpi-label {
  font-size: 14px;
  color: #525252;
  margin-bottom: 4px;
}

.kpi-value {
  font-size: 20px;
  font-weight: 600;
  color: #0f62fe;
}

/* Responsive */
@media (max-width: 1024px) {
  .main-layout {
    flex-direction: column;
  }
  .ai-chat-panel {
    width: 100%;
    max-height: none;
    min-height: 520px;
    border-right: none;
    border-bottom: 1px solid #d9d9d9;
  }

  .chat-messages {
    padding: 24px 20px 20px;
  }

  .suggestion-card {
    min-height: 120px;
  }
}

@media (max-width: 768px) {
  .persona-cards {
    grid-template-columns: 1fr;
  }
  .persona-modal {
    padding: 32px 24px;
  }
  .hero-section {
    padding: 32px 16px;
  }
  .hero-section h1 {
    font-size: 24px;
  }
  .action-cards {
    grid-template-columns: 1fr;
  }
  .main-content {
    padding: 20px;
  }
  .integrations-grid {
    grid-template-columns: 1fr;
  }
  .kpis-grid {
    grid-template-columns: 1fr;
  }
}

/* v1.4 Jobs-First Styles */

/* Jobs Grid */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

/* Job Card - Compact & Expanded Views */
.job-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 24px;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.job-card-compact {
  min-height: auto;
}

.job-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
  border-color: #0f62fe;
}

.job-card.featured {
  border: 2px solid #0f62fe;
  box-shadow: 0 2px 8px rgba(15, 98, 254, 0.2);
}

.job-card.expanded {
  border-color: #0f62fe;
}

/* Job Header */
.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.job-title {
  font-size: 18px;
  font-weight: 600;
  color: #161616;
  line-height: 1.25;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.job-badge {
  background: #0f62fe;
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  text-transform: uppercase;
}

.job-description {
  font-size: 14px;
  color: #525252;
  line-height: 20px;
  flex: 1;
}

/* Job Card Metadata Section */
.job-meta {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  margin: 12px 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #525252;
  font-weight: 400;
}

/* Compact View Styles */
.job-compact-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.job-metrics-compact {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: #525252;
  padding-top: 12px;
  border-top: 1px solid #e0e0e0;
  flex-wrap: wrap;
}

.metric-compact {
  display: flex;
  align-items: center;
  gap: 4px;
}

.metric-compact-icon {
  font-size: 14px;
}

.metric-compact-value {
  font-size: 12px;
  font-weight: 600;
  color: #525252;
}

.metric-compact-label {
  font-size: 12px;
  color: #525252;
  font-weight: 400;
}

.job-proof-compact {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e0e0e0;
  font-size: 13px;
  color: #525252;
}

.job-proof-compact strong {
  color: #161616;
}

.external-link-icon {
  color: #0f62fe;
  font-size: 13px;
  margin-left: 4px;
  transition: transform 0.2s ease;
  display: inline-block;
}

.job-proof-compact:hover .external-link-icon {
  transform: translate(2px, -2px);
}

.job-actions {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.job-cta {
  flex: 1;
  height: 48px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: background 70ms cubic-bezier(0, 0, 0.38, 0.9);
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  outline: none;
  border: 1px solid #0f62fe;
}

.job-cta.primary {
  background: transparent;
  color: #0f62fe;
}

.job-cta.primary:hover {
  background: #e8f4ff;
  color: #0043ce;
}

.job-cta.secondary {
  background: transparent;
  color: #0f62fe;
}

.job-cta.secondary:hover {
  background: #e8f4ff;
  color: #0043ce;
}

.job-cta:active {
  background: #d0e2ff;
}

.job-cta:focus {
  border-color: #0f62fe;
  box-shadow:
    inset 0 0 0 1px #0f62fe,
    inset 0 0 0 2px #ffffff;
}

/* Expanded View Styles */
.job-expanded-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: expandIn 0.3s ease-out;
}

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

.job-expanded-divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    #e0e0e0 20%,
    #e0e0e0 80%,
    transparent
  );
  margin: 8px 0;
}

.job-expanded-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.job-expanded-header {
  font-size: 14px;
  font-weight: 600;
  color: #161616;
  display: flex;
  align-items: center;
  gap: 8px;
}

.job-expanded-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.job-expanded-list li {
  padding-left: 20px;
  position: relative;
  font-size: 14px;
  color: #525252;
  line-height: 1.5;
}

.job-expanded-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0f62fe;
  font-weight: bold;
}

.job-expanded-solution {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  background: #e5f6ff;
  border-radius: 4px;
}

.job-expanded-solution strong {
  font-size: 15px;
  color: #161616;
}

.solution-meta-inline {
  font-size: 13px;
  color: #525252;
}

.solution-integrations-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
  margin-top: 4px;
}

.solution-integrations-inline strong {
  font-size: 13px;
  color: #161616;
}

.integration-tag-inline {
  display: inline-block;
  background: white;
  border: 1px solid #0f62fe;
  color: #0f62fe;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.integration-tag-inline.required {
  background: #0f62fe;
  color: white;
}

.job-metrics-expanded {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 12px;
  background: #f4f4f4;
  border-radius: 4px;
}

.metric-expanded {
  font-size: 13px;
  color: #161616;
  white-space: nowrap;
}

.job-expanded-proof {
  padding: 12px;
  background: #e8f4ff;
  border-radius: 4px;
  border-left: 3px solid #0f62fe;
}

.job-expanded-proof p {
  font-size: 14px;
  color: #161616;
  line-height: 1.5;
  margin: 0 0 8px 0;
  font-style: italic;
}

.proof-metric-expanded {
  font-size: 13px;
  font-weight: 600;
  color: #0f62fe;
}

/* Job Pain Points */
.job-pain {
  background: #fff1f1;
  border-left: 4px solid #da1e28;
  padding: 16px;
  border-radius: 4px;
}

.job-pain strong {
  display: block;
  color: #da1e28;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.job-pain ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.job-pain li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  font-size: 14px;
  color: #161616;
  line-height: 1.4;
}

.job-pain li:before {
  content: "⚠️";
  position: absolute;
  left: 0;
  font-size: 12px;
}

/* Job Solution */
.job-solution {
  background: #e5f6ff;
  border-left: 4px solid #0f62fe;
  padding: 16px;
  border-radius: 4px;
}

.job-solution strong {
  display: block;
  color: #0f62fe;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.solution-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.solution-name {
  font-size: 16px;
  font-weight: 600;
  color: #161616;
}

.solution-meta {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: #525252;
}

.solution-integrations {
  margin-top: 12px;
}

.solution-integrations strong {
  display: inline;
  font-size: 13px;
  color: #161616;
  margin-right: 8px;
}

.integration-tag {
  display: inline-block;
  background: white;
  border: 1px solid #0f62fe;
  color: #0f62fe;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  margin-right: 6px;
  margin-top: 6px;
}

.integration-tag.required {
  background: #0f62fe;
  color: white;
}

/* Job Impact */
.job-impact {
  background: #f4f4f4;
  padding: 16px;
  border-radius: 4px;
}

.job-impact strong {
  display: block;
  color: #161616;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.impact-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.impact-metric {
  display: flex;
  align-items: center;
  gap: 12px;
}

.metric-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.metric-content {
  flex: 1;
}

.metric-label {
  font-size: 12px;
  color: #525252;
  margin-bottom: 2px;
}

.metric-value {
  font-size: 18px;
  font-weight: 600;
  color: #0f62fe;
}

/* Job Proof */
.job-proof {
  background: #e8f4ff;
  border: 1px solid #0f62fe;
  padding: 16px;
  border-radius: 4px;
  display: flex;
  gap: 12px;
}

.proof-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.proof-content {
  flex: 1;
}

.proof-content strong {
  display: block;
  color: #0f62fe;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.proof-content p {
  font-size: 14px;
  color: #161616;
  line-height: 1.4;
  margin-bottom: 8px;
}

.proof-metric {
  font-size: 13px;
  font-weight: 600;
  color: #0f62fe;
  background: white;
  padding: 6px 12px;
  border-radius: 4px;
  display: inline-block;
}

/* Job CTA */
.job-cta {
  background: #0f62fe;
  color: white;
  border: none;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  width: 100%;
}

.job-cta:hover {
  background: #0043ce;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 98, 254, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .job-card {
    padding: 20px;
  }

  .job-icon {
    font-size: 36px;
  }

  .job-metrics-compact {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .job-actions {
    flex-direction: column;
  }

  .job-cta.secondary {
    flex: 1;
  }

  .job-title {
    font-size: 20px;
  }
}

/* Made with Bob */

/* Role Switcher Modal V2 Styles */
.persona-selector-card-v2 {
  background: white;
  border-radius: 8px;
  padding: 48px;
  max-width: 1200px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.persona-selector-title-v2 {
  font-size: 32px;
  font-weight: 600;
  color: #161616;
  margin-bottom: 16px;
  text-align: left;
}

.persona-selector-subtitle-v2 {
  font-size: 16px;
  color: #525252;
  margin-bottom: 8px;
  line-height: 1.5;
}

.persona-selector-note {
  font-size: 14px;
  color: #161616;
  margin-bottom: 32px;
}

.persona-options-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.persona-option-v2 {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 24px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: white;
}

.persona-option-v2:hover {
  border-color: #0f62fe;
  box-shadow: 0 2px 8px rgba(15, 98, 254, 0.1);
}

.persona-option-v2.selected {
  border-color: #0f62fe;
  background: #f4f4ff;
}

.persona-option-icon-v2 {
  font-size: 48px;
  margin-bottom: 16px;
  text-align: center;
}

.persona-option-title-v2 {
  font-size: 20px;
  font-weight: 600;
  color: #161616;
  margin-bottom: 8px;
  text-align: center;
}

.persona-option-description-v2 {
  font-size: 14px;
  color: #525252;
  margin-bottom: 16px;
  text-align: center;
}

.persona-option-focus {
  font-size: 12px;
  color: #161616;
  text-align: left;
}

.persona-option-focus strong {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.persona-option-focus ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.persona-option-focus li {
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.persona-option-focus li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0f62fe;
}

.persona-selector-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.persona-selector-link {
  background: none;
  border: none;
  color: #0f62fe;
  font-size: 14px;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.persona-selector-link:hover {
  color: #0043ce;
}

.persona-selector-buttons {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.persona-selector-secondary {
  background: white;
  border: 1px solid #8d8d8d;
  color: #161616;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.persona-selector-secondary:hover {
  background: #f4f4f4;
}

.persona-selector-primary {
  background: #0f62fe;
  border: none;
  color: white;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.persona-selector-primary:hover {
  background: #0043ce;
}

.persona-selector-primary:disabled {
  background: #c6c6c6;
  cursor: not-allowed;
}

/* Job Details Modal */
.job-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  animation: fadeIn 0.2s ease-in;
}

.job-modal {
  background: white;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease-out;
}

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

.job-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid #e0e0e0;
}

.job-modal-header h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

.job-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #525252;
  padding: 8px;
  line-height: 1;
  transition: color 0.2s;
}

.job-modal-close:hover {
  color: #161616;
}

.job-modal-content {
  padding: 24px;
}

.job-modal-section {
  margin-bottom: 24px;
}

.job-modal-section h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #161616;
}

.job-modal-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.job-modal-section li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #525252;
  line-height: 1.5;
}

.job-modal-section li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: #0f62fe;
  font-weight: bold;
}

.job-modal-meta {
  font-size: 13px;
  color: #525252;
  margin: 8px 0;
}

.job-modal-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.job-modal-metric {
  text-align: center;
  padding: 16px;
  background: #f4f4f4;
  border-radius: 4px;
}

.job-modal-metric-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.job-modal-metric-value {
  font-size: 24px;
  font-weight: 600;
  color: #0f62fe;
  margin-bottom: 4px;
}

.job-modal-metric-label {
  font-size: 12px;
  color: #525252;
}

.job-modal-actions {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e0e0e0;
  display: flex;
  justify-content: flex-end;
}

.job-modal-actions .job-cta {
  width: auto;
  min-width: 200px;
}

/* Connection Setup Modal */
.connection-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  animation: fadeIn 0.2s ease-in;
}

.connection-modal {
  background: white;
  max-width: 900px;
  width: 90%;
  height: 80vh;
  max-height: 80vh;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease-out;
  display: flex;
  flex-direction: column;
}

.connection-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid #e0e0e0;
}

.connection-modal-header h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

.connection-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #525252;
  padding: 8px;
  line-height: 1;
  transition: color 0.2s;
}

.connection-modal-close:hover {
  color: #161616;
}

.connection-modal-content {
  padding: 0;
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

/* Environment Education Section */
.environment-education {
  background: #e8f4ff;
  border-left: 4px solid #0f62fe;
  padding: 20px;
  margin-bottom: 24px;
  border-radius: 4px;
}

.environment-education h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #161616;
  display: flex;
  align-items: center;
  gap: 8px;
}

.environment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 16px 0;
}

.environment-card {
  background: white;
  padding: 16px;
  border-radius: 4px;
  border: 1px solid #d0e2ff;
}

.environment-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.environment-card-header h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.environment-card-purpose {
  font-size: 12px;
  color: #0f62fe;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.environment-card p {
  font-size: 14px;
  color: #525252;
  line-height: 1.5;
  margin-bottom: 12px;
}

.environment-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.environment-card li {
  font-size: 13px;
  color: #525252;
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}

.environment-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0f62fe;
  font-weight: bold;
}

/* Connection Type Selection */
.connection-type-selector {
  margin: 24px 0;
}

.connection-type-selector h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.connection-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.connection-type-card {
  border: 2px solid #e0e0e0;
  padding: 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}

.connection-type-card:hover {
  border-color: #0f62fe;
  box-shadow: 0 2px 8px rgba(15, 98, 254, 0.2);
}

.connection-type-card.selected {
  border-color: #0f62fe;
  background: #e8f4ff;
}

.connection-type-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.connection-type-card p {
  font-size: 14px;
  color: #525252;
  margin: 0;
}

/* OOTB Connections Grid */
.ootb-connections {
  margin: 24px 0;
}

.ootb-connections h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.connections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.connection-card {
  border: 2px solid #e0e0e0;
  padding: 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  background: white;
}

.connection-card:hover {
  border-color: #0f62fe;
  box-shadow: 0 2px 8px rgba(15, 98, 254, 0.15);
  transform: translateY(-2px);
}

.connection-card.selected {
  border-color: #0f62fe;
  background: #e8f4ff;
  box-shadow: 0 4px 12px rgba(15, 98, 254, 0.25);
}

/* Search Bar */
.connection-search-container {
  position: relative;
  margin-bottom: 24px;
  margin-top: 0;
}

.connection-search-input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
  font-family: "IBM Plex Sans", sans-serif;
  transition: border-color 0.2s;
}

.connection-search-input:focus {
  outline: none;
  border-color: #0f62fe;
  box-shadow: 0 0 0 1px #0f62fe;
}

.connection-search-input::placeholder {
  color: #a8a8a8;
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  pointer-events: none;
}

/* Section Label */
.section-label {
  margin-bottom: 16px;
}

.section-label h3 {
  font-size: 16px;
  font-weight: 600;
  color: #161616;
  margin: 0 0 4px 0;
}

.section-label .section-description {
  font-size: 13px;
  color: #525252;
}

/* Connection Title Group */
.connection-title-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.connection-title-group h4 {
  margin: 0;
}

.tool-count-badge {
  display: inline-block;
  padding: 2px 8px;
  background: #e8f4ff;
  color: #0f62fe;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  width: fit-content;
}

/* Custom Connection Section */
.custom-connection-section {
  margin-top: 32px;
}

.section-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 24px 0;
}

.section-divider::before,
.section-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #e0e0e0;
}

.section-divider span {
  padding: 0 16px;
  color: #8d8d8d;
  font-size: 13px;
  font-weight: 500;
}

.custom-connection-card {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: white;
  border: 2px dashed #c6c6c6;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
}

.custom-connection-card:hover {
  border-color: #0f62fe;
  background: #f4f4f4;
}

.custom-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.custom-content {
  flex: 1;
}

.custom-content h4 {
  margin: 0 0 4px 0;
  font-size: 16px;
  color: #161616;
}

.custom-content p {
  margin: 0;
  font-size: 13px;
  color: #525252;
}

.arrow-icon {
  font-size: 20px;
  color: #8d8d8d;
  flex-shrink: 0;
}

.connection-card.popular::after {
  content: "POPULAR";
  position: absolute;
  top: 12px;
  right: 12px;
  background: #0f62fe;
  color: white;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 2px;
}

.connection-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.connection-icon {
  font-size: 32px;
}

.connection-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.connection-card p {
  font-size: 13px;
  color: #525252;
  line-height: 1.5;
  margin-bottom: 12px;
}

.connection-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: #525252;
  margin-bottom: 12px;
}

.connection-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.connection-use-cases {
  font-size: 12px;
  color: #525252;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e0e0e0;
}

.connection-use-cases strong {
  display: inline;
  margin-right: 4px;
  color: #161616;
  font-weight: 600;
}

/* Connection Modal Actions */
.connection-modal-actions {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.connection-actions-left {
  display: flex;
  gap: 12px;
}

.connection-actions-right {
  display: flex;
  gap: 12px;
}

/* Connection Details Form Styles */
.connection-details-container {
  display: flex;
  gap: 0;
  min-height: 500px;
}

.connection-details-sidebar {
  width: 254px;
  background: #f4f4f4;
  padding: 24px 0;
  border-right: 1px solid #e0e0e0;
  flex-shrink: 0;
}

.connection-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 24px;
  cursor: pointer;
  transition: background 0.2s;
}

.connection-step.active {
  background: white;
  border-left: 3px solid #0f62fe;
}

.connection-step:not(.active):hover {
  background: #e8e8e8;
}

.step-indicator {
  flex-shrink: 0;
}

.step-number {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: white;
  border: 2px solid #c6c6c6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: #525252;
}

.connection-step.active .step-number {
  background: #0f62fe;
  border-color: #0f62fe;
  color: white;
}

.step-label {
  font-size: 14px;
  color: #161616;
  line-height: 1.5;
  padding-top: 2px;
}

.connection-details-main {
  flex: 1;
  padding: 32px 40px;
  background: white;
}

.connection-details-title {
  font-size: 20px;
  font-weight: 400;
  color: #161616;
  margin: 0 0 32px 0;
}

.connection-form-field {
  margin-bottom: 32px;
}

.connection-form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #525252;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.32px;
}

.connection-form-label.required {
  position: relative;
}

.required-asterisk {
  color: #da1e28;
  margin-left: 2px;
}

.connection-form-input {
  width: 100%;
  max-width: 600px;
  padding: 11px 16px;
  border: none;
  border-bottom: 1px solid #8d8d8d;
  background: #f4f4f4;
  font-size: 14px;
  color: #161616;
  transition: all 0.2s;
  font-family:
    "IBM Plex Sans",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
}

.connection-form-input:focus {
  outline: none;
  border-bottom: 2px solid #0f62fe;
  background: white;
}

.connection-form-input:disabled,
.connection-form-input[readonly] {
  background: #f4f4f4;
  color: #525252;
  cursor: not-allowed;
}

.connection-form-help {
  font-size: 12px;
  color: #525252;
  margin: 8px 0 0 0;
  line-height: 1.5;
  max-width: 600px;
}

/* Connection Details Form - Redesigned */
.connection-details-header {
  margin-bottom: 24px;
}

.connection-details-subtitle {
  font-size: 14px;
  color: #525252;
  margin-top: 8px;
  line-height: 1.5;
}

.connection-help-link {
  color: #0f62fe;
  text-decoration: none;
  font-weight: 500;
}

.connection-help-link:hover {
  text-decoration: underline;
}

/* Connection Configuration Sections */
.connection-config-section {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e0e0e0;
}

.connection-config-section:last-child {
  border-bottom: none;
}

.connection-section-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.connection-section-header h4 {
  font-size: 14px;
  font-weight: 600;
  color: #161616;
  margin: 0;
}

.connection-info-btn {
  background: none;
  border: none;
  color: #0f62fe;
  cursor: pointer;
  font-size: 16px;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.connection-info-btn:hover {
  color: #0353e9;
}

/* Toggle Styles */
.connection-toggle-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.toggle-label-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.toggle-label-title {
  font-size: 14px;
  font-weight: 500;
  color: #161616;
}

.toggle-label-subtitle {
  font-size: 12px;
  color: #525252;
}

.connection-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.connection-toggle input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 24px;
  background-color: #8d8d8d;
  border-radius: 24px;
  transition: background-color 0.2s;
  cursor: pointer;
}

.toggle-slider::before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.2s;
}

.connection-toggle input[type="checkbox"]:checked + .toggle-slider {
  background-color: #0f62fe;
}

.connection-toggle input[type="checkbox"]:checked + .toggle-slider::before {
  transform: translateX(24px);
}

.toggle-status {
  font-size: 14px;
  color: #525252;
  min-width: 30px;
}

/* Form Row */
.connection-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Form Select */
.connection-form-select {
  width: 100%;
  padding: 11px 16px;
  border: none;
  border-bottom: 1px solid #8d8d8d;
  background: #f4f4f4;
  font-size: 14px;
  color: #161616;
  font-family: "IBM Plex Sans", sans-serif;
  cursor: pointer;
}

.connection-form-select:focus {
  outline: none;
  border-bottom: 2px solid #0f62fe;
  background: white;
}

/* Input with Action Button */
.connection-input-with-action {
  position: relative;
  display: flex;
  align-items: center;
}

.connection-input-with-action .connection-form-input {
  flex: 1;
  padding-right: 80px;
}

.connection-reset-btn {
  position: absolute;
  right: 8px;
  background: none;
  border: none;
  color: #0f62fe;
  font-size: 14px;
  cursor: pointer;
  padding: 4px 8px;
}

.connection-reset-btn:hover {
  text-decoration: underline;
}

/* Radio Group */
.connection-radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.connection-radio-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  transition: all 0.2s;
}

.connection-radio-label:hover {
  border-color: #0f62fe;
  background: #f0f7ff;
}

.connection-radio-label input[type="radio"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.radio-content {
  flex: 1;
}

.radio-title {
  font-size: 14px;
  font-weight: 500;
  color: #161616;
}

/* Live Environment Toggle Section */
.connection-live-toggle-section {
  margin: 32px 0;
  padding: 16px;
  background: #f4f4f4;
  border-radius: 4px;
}

.connection-live-fields {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e0e0e0;
}

/* Modal Footer */

/* Clickable Sidebar Steps */
.connection-step {
  cursor: pointer;
  transition: background-color 0.2s;
}

.connection-step:hover {
  background-color: #f4f4f4;
}

.connection-step.current {
  background-color: white;
  border-left: 3px solid #0f62fe;
}

.connection-step.active:not(.current) {
  opacity: 1;
}

.connection-step:not(.active) {
  opacity: 0.6;
  cursor: not-allowed;
}

.connection-step:not(.active):hover {
  background-color: transparent;
}

.connection-modal-footer {
  border-top: 1px solid #e0e0e0;
  padding: 16px 24px;
  background: white;
}

.connection-modal-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.connection-actions-left {
  display: flex;
  gap: 16px;
  align-items: center;
}

.connection-actions-right {
  display: flex;
  gap: 12px;
}

/* Sidebar Step Icons */
.step-icon {
  font-size: 14px;
  font-weight: 600;
}

.connection-step.active .step-icon {
  color: #0f62fe;
}

.connection-step:not(.active) .step-icon {
  color: #8d8d8d;
}

.connection-modal-actions .persona-btn.tertiary {
  text-decoration: none;
}

.connection-modal-actions .persona-btn.primary:disabled {
  background: #c6c6c6;
  cursor: not-allowed;
  opacity: 0.6;
}
/* New Connection Details Modal - Figma Design */
.connection-details-container-new {
  display: flex;
  height: 100%;
  overflow: hidden;
}

/* Left Progress Sidebar */
.connection-progress-sidebar {
  width: 256px;
  background: #f4f4f4;
  border-right: 1px solid #e0e0e0;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex-shrink: 0;
}

.progress-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  opacity: 0.5;
  transition: opacity 0.2s;
  cursor: pointer;
  padding: 8px;
  margin: -8px;
  border-radius: 4px;
}

.progress-step:hover {
  background-color: #f4f4f4;
}

.progress-step.current,
.progress-step.complete {
  opacity: 1;
}

.progress-step-indicator {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  color: #525252;
  transition: all 0.2s;
}

.progress-step.current .progress-step-indicator {
  background: #0f62fe;
  color: white;
}

.progress-step.complete .progress-step-indicator {
  background: #24a148;
  color: white;
}

.step-check {
  font-size: 14px;
}

.step-number {
  font-size: 12px;
}

.progress-step-label {
  flex: 1;
  padding-top: 2px;
}

.step-label-text {
  font-size: 14px;
  font-weight: 400;
  color: #161616;
  line-height: 18px;
}

.step-label-subtitle {
  font-size: 12px;
  color: #525252;
  margin-top: 2px;
  line-height: 16px;
}

.progress-connector {
  width: 2px;
  height: 32px;
  background: #e0e0e0;
  margin-left: 11px;
  transition: background 0.2s;
}

.progress-connector.complete {
  background: #24a148;
}

/* Main Content Area */
.connection-form-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: white;
  position: relative;
}

.connection-form-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 32px;
  padding-bottom: 100px; /* Space for sticky footer */
}

.connection-form-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e0e0e0;
}

/* Step Sections - Visual separation while keeping in single scroll */
.connection-step-section {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 2px solid #e0e0e0;
}

.connection-step-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.step-section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #0f62fe;
  color: white;
  font-size: 12px;
  font-weight: 600;
  margin-right: 12px;
}

.step-section-header {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.step-section-title {
  font-size: 18px;
  font-weight: 600;
  color: #161616;
  margin: 0;
}

.connection-form-title {
  font-size: 20px;
  font-weight: 400;
  color: #161616;
  margin: 0 0 8px 0;
  line-height: 28px;
}

.connection-form-subtitle {
  font-size: 14px;
  color: #161616;
  margin: 0;
  line-height: 18px;
}

/* Form Sections */
.connection-form-section {
  margin-bottom: 32px;
}

.connection-form-section.section-with-border {
  padding-bottom: 24px;
  border-bottom: 1px solid #e0e0e0;
}

.section-header-with-tooltip {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.section-title {
  font-size: 16px;
  font-weight: 600;
  color: #161616;
  margin: 0;
  line-height: 22px;
}

.tooltip-trigger {
  background: none;
  border: none;
  color: #0f62fe;
  cursor: pointer;
  font-size: 16px;
  padding: 0;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tooltip-trigger:hover {
  color: #0043ce;
}

/* Form Fields */
.form-field {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #525252;
  margin-bottom: 8px;
  line-height: 16px;
}

.form-input,
.form-select {
  width: 100%;
  height: 40px;
  padding: 0 16px;
  border: none;
  border-bottom: 1px solid #8d8d8d;
  background: #f4f4f4;
  font-size: 14px;
  color: #161616;
  font-family: "IBM Plex Sans", sans-serif;
  transition: all 0.2s;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-bottom-color: #0f62fe;
  border-bottom-width: 2px;
}

.form-input::placeholder {
  color: #a8a8a8;
}

.form-helper-text {
  font-size: 12px;
  color: #525252;
  margin: 4px 0 0 0;
  line-height: 16px;
}

/* Radio Button Group */
.radio-button-group {
  display: flex;
  gap: 16px;
}

.radio-button-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #161616;
}

.radio-button-label input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
}

.radio-button-text {
  line-height: 18px;
}

/* Password Input */
.password-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-input-wrapper .form-input {
  padding-right: 48px;
}

.password-toggle-btn {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #525252;
}

.password-toggle-btn:hover {
  color: #161616;
}

.eye-icon {
  font-size: 16px;
}

/* Advanced Options Link */
.advanced-options-link {
  color: #0f62fe;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.advanced-options-link:hover {
  text-decoration: underline;
  color: #0043ce;
}

/* Toggle */
.toggle-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.toggle-input {
  position: relative;
  width: 48px;
  height: 24px;
  appearance: none;
  background: #8d8d8d;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s;
}

.toggle-input:checked {
  background: #24a148;
}

.toggle-input::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: white;
  top: 3px;
  left: 3px;
  transition: transform 0.2s;
}

.toggle-input:checked::before {
  transform: translateX(24px);
}

.toggle-text {
  font-size: 14px;
  color: #161616;
  line-height: 18px;
}

/* Carbon Accordion Styles */
.cds--accordion {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.cds--accordion__item {
  border-top: 1px solid #e0e0e0;
  list-style: none;
  overflow: visible;
  transition: all 0.11s cubic-bezier(0.2, 0, 0.38, 0.9);
}

.cds--accordion__item:last-child {
  border-bottom: 1px solid #e0e0e0;
}

.cds--accordion__heading {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 8px 0;
  margin: 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #161616;
  transition: background-color 0.11s;
  position: relative;
}

.cds--accordion__heading:hover {
  background-color: #e5e5e5;
}

.cds--accordion__heading:focus {
  outline: 2px solid #0f62fe;
  outline-offset: -2px;
}

.cds--accordion__arrow {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  flex-shrink: 0;
  fill: currentColor;
  transition: transform 0.11s cubic-bezier(0.2, 0, 0.38, 0.9);
  transform: rotate(0deg);
}

.cds--accordion__item--active .cds--accordion__arrow {
  transform: rotate(90deg);
}

.cds--accordion__title {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.16px;
  margin: 0;
  padding: 0;
  flex: 1;
}

.cds--accordion__content {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  transition: max-height 0.11s cubic-bezier(0.2, 0, 0.38, 0.9);
}

.cds--accordion__item--active .cds--accordion__content {
  padding: 8px 0 16px 24px;
}

/* Inline Notification */
.inline-notification {
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 4px;
  margin-top: 16px;
}

.inline-notification.info {
  background: #edf5ff;
  border-left: 3px solid #0f62fe;
}

.notification-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.notification-content {
  flex: 1;
}

.notification-title {
  font-size: 14px;
  font-weight: 600;
  color: #161616;
  margin: 0 0 4px 0;
  line-height: 18px;
}

.notification-subtitle {
  font-size: 14px;
  color: #161616;
  margin: 0;
  line-height: 18px;
}

/* Footer - Sticky */
.connection-form-footer {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 1px solid #e0e0e0;
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  z-index: 10;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

.footer-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-link {
  font-size: 14px;
  color: #0f62fe;
  text-decoration: none;
  font-weight: 400;
  cursor: pointer;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #0043ce;
  text-decoration: underline;
}

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

.btn-ghost,
.btn-secondary,
.btn-primary {
  margin: 0;
  box-sizing: border-box;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  font-family: inherit;
  border-radius: 4px;
}

.btn-ghost {
  background: transparent;
  color: #0f62fe;
}

.btn-ghost:hover {
  background: #e5e5e5;
  color: #0043ce;
}

.btn-secondary {
  background: transparent;
  color: #161616;
  border: 1px solid #161616;
}

.btn-secondary:hover {
  background: #e5e5e5;
}

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

.btn-primary {
  background: #0f62fe;
  color: white;
}

.btn-primary:hover {
  background: #0043ce;
}

.btn-primary:disabled {
  background: #c6c6c6;
  cursor: not-allowed;
}

/* Data Source Selection Styles */
.data-source-selection-container {
  display: flex;
  position: relative;
  min-height: 500px;
}

/* Help Panel (Tearsheet) */
.data-source-help-panel {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 416px;
  background: #262626;
  border-right: 1px solid #393939;
  z-index: 1001;
  overflow-y: auto;
  transition: transform 0.3s ease;
}

.help-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px;
  border-bottom: 1px solid #393939;
}

.help-panel-title {
  display: flex;
  align-items: center;
  color: #f4f4f4;
  font-size: 10px;
}

.help-panel-close {
  background: none;
  border: none;
  color: #f4f4f4;
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}

.help-panel-close:hover {
  color: #ffffff;
}

.help-panel-content {
  padding: 17px;
}

.help-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}

.help-card {
  background: #262626;
  padding: 8px;
  border-radius: 0;
}

.help-card h4 {
  color: #f4f4f4;
  font-size: 10px;
  font-weight: 400;
  margin-bottom: 4px;
  line-height: 23px;
}

.help-card p {
  color: #f4f4f4;
  font-size: 8px;
  line-height: 12px;
  margin-bottom: 8px;
}

.help-learn-more {
  color: #78a9ff;
  font-size: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.help-learn-more:hover {
  text-decoration: underline;
}

/* Main Content Area */
.data-source-main-content {
  flex: 1;
  padding: 32px;
  transition: margin-left 0.3s ease;
  margin-left: 0;
}

.data-source-header {
  margin-bottom: 24px;
}

.data-source-header h2 {
  font-size: 20px;
  font-weight: 400;
  color: #f4f4f4;
  margin-bottom: 4px;
  line-height: 28px;
}

.data-source-subtitle {
  font-size: 14px;
  color: #c6c6c6;
  line-height: 18px;
  letter-spacing: 0.16px;
}

/* Data Source Grid */
.data-source-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.data-source-card {
  background: #262626;
  padding: 8px;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
}

.data-source-card:hover {
  background: #2d2d2d;
}

.data-source-card.selected {
  border-color: #0f62fe;
  background: #2d2d2d;
}

.data-source-card-content {
  flex: 1;
}

.data-source-card h4 {
  font-size: 10px;
  font-weight: 400;
  color: #f4f4f4;
  margin-bottom: 4px;
  line-height: normal;
}

.data-source-description {
  font-size: 8px;
  color: #f4f4f4;
  line-height: normal;
  margin-top: 4px;
}

.data-source-checkbox {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding-top: 10px;
}

.data-source-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #0f62fe;
}

/* Data Source Options */
.data-source-options {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-left: 11px;
}

.data-source-option-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 10px;
  color: #f4f4f4;
}

.data-source-option-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #0f62fe;
}

.data-source-help-link {
  background: none;
  border: none;
  color: #78a9ff;
  font-size: 12px;
  cursor: pointer;
  text-decoration: none;
  padding: 0;
  letter-spacing: 0.32px;
  line-height: 16px;
}

.data-source-help-link:hover {
  text-decoration: underline;
}

/* Connection Modal Actions for Data Source Selection */
.data-source-main-content .connection-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #393939;
}

.data-source-main-content .connection-modal-actions button {
  min-width: 120px;
}

/* Connection Success Page */
.connection-success-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: white;
}

.connection-success-content {
  flex: 1;
  overflow-y: auto;
  padding: 48px 32px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.success-icon-wrapper {
  margin-bottom: 24px;
  animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-title {
  font-size: 28px;
  font-weight: 400;
  color: #161616;
  margin-bottom: 12px;
  line-height: 36px;
}

.success-description {
  font-size: 14px;
  color: #525252;
  line-height: 20px;
  margin-bottom: 32px;
  max-width: 500px;
}

.connection-success-card {
  width: 100%;
  max-width: 600px;
  background: #f4f4f4;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 24px;
  margin-bottom: 24px;
  text-align: left;
}

.success-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #0f62fe;
}

.success-card-header h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: #161616;
}

.success-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.success-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  color: #161616;
  font-size: 14px;
  line-height: 20px;
}

.success-card-list li:last-child {
  border-bottom: none;
}

.success-card-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #0f62fe;
}

.success-card-list li span {
  flex: 1;
}

.connection-success-footer {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  padding: 16px 32px;
  border-top: 1px solid #e0e0e0;
  background: white;
}

/* Success Subtitle */
.success-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #525252;
  margin-top: 8px;
  display: block;
}

/* Confetti Animation */
.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  top: -10px;
  z-index: 1000;
  animation: confetti-fall linear forwards;
}

@keyframes confetti-fall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

/* Tool Preview Section - Updated */
.tool-preview-section {
  width: 100%;
  max-width: 600px;
  margin-bottom: 24px;
}

.tool-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.tool-preview-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tool-preview-title h3 {
  font-size: 16px;
  font-weight: 600;
  color: #161616;
  margin: 0;
}

.launch-icon {
  color: #525252;
  flex-shrink: 0;
}

.tool-count {
  font-size: 12px;
  color: #525252;
  background: #f4f4f4;
  padding: 4px 12px;
  border-radius: 12px;
}

.tool-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}

.tool-preview-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 16px;
  display: flex;
  gap: 12px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.tool-preview-card:hover {
  border-color: #0f62fe;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.tool-card-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #f4f4f4;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f62fe;
}

.tool-card-label-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.tool-card-preview-hint {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6f6f6f;
  flex-shrink: 0;
  opacity: 0.85;
  transition:
    color 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

.tool-preview-card:hover .tool-card-preview-hint {
  color: #0f62fe;
  opacity: 1;
  transform: translateX(1px);
}

.tool-card-content {
  flex: 1;
  min-width: 0;
}

.tool-card-content h4 {
  font-size: 14px;
  font-weight: 600;
  color: #161616;
  margin: 0 0 4px 0;
  line-height: 18px;
}

.tool-card-content p {
  font-size: 12px;
  color: #525252;
  margin: 0;
  line-height: 16px;
}

.tool-preview-more {
  text-align: center;
  padding: 12px;
  background: #f4f4f4;
  border-radius: 4px;
}

.tool-preview-more span {
  font-size: 12px;
  color: #525252;
  font-weight: 500;
}

/* Chat Preview Section */
.chat-preview-section {
  width: 100%;
  max-width: 600px;
  margin-bottom: 24px;
  background: #f4f4f4;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 16px;
}

.chat-preview-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #0f62fe;
}

.chat-preview-header span {
  font-size: 14px;
  font-weight: 600;
  color: #161616;
}

.chat-preview-examples {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-example-btn {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 12px 16px;
  text-align: left;
  font-size: 14px;
  color: #161616;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-example-btn:hover {
  border-color: #0f62fe;
  background: #f4f4f4;
}

.chat-example-btn svg {
  flex-shrink: 0;
  color: #0f62fe;
}

/* Tool Chat Panel */
.tool-chat-panel {
  position: absolute;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  background: white;
  border-left: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  z-index: 100;
}

.tool-chat-panel.open {
  right: 0;
}

.tool-chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid #e0e0e0;
  background: #f4f4f4;
}

.tool-chat-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0f62fe;
}

.tool-chat-title span {
  font-size: 14px;
  font-weight: 600;
  color: #161616;
}

.tool-chat-close {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: #525252;
  transition: color 0.2s ease;
}

.tool-chat-close:hover {
  color: #161616;
}

.tool-chat-content {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  background: white;
}

.tool-chat-message {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.message-avatar {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f62fe;
}

.message-content {
  flex: 1;
  min-width: 0;
}

.message-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.message-source {
  font-size: 12px;
  color: #525252;
}

.message-time {
  font-size: 12px;
  color: #8d8d8d;
}

.message-text {
  font-size: 14px;
  color: #161616;
  line-height: 20px;
  margin-bottom: 12px;
}

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

.quick-action-btn {
  background: white;
  border: 1px solid #0f62fe;
  border-radius: 16px;
  padding: 8px 16px;
  font-size: 14px;
  color: #0f62fe;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.quick-action-btn:hover {
  background: #f4f4f4;
}

.tool-chat-input {
  display: flex;
  gap: 8px;
  padding: 16px;
  border-top: 1px solid #e0e0e0;
  background: white;
}

.tool-chat-input input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
}

.tool-chat-input input:focus {
  border-color: #0f62fe;
}

.send-btn {
  background: #0f62fe;
  border: none;
  border-radius: 4px;
  padding: 12px 16px;
  color: white;
  cursor: pointer;
  transition: background 0.2s ease;
}

.send-btn:hover {
  background: #0353e9;
}

/* User Message Styles */
.user-message {
  justify-content: flex-end;
}

.user-content {
  background: #e0e0e0;
  border-radius: 8px;
  padding: 12px 16px;
  max-width: 80%;
}

.message-bubble {
  font-size: 14px;
  color: #161616;
  line-height: 20px;
}

/* Typing Indicator */
.typing-indicator .message-content {
  background: #f4f4f4;
  border-radius: 8px;
  padding: 12px 16px;
}

.typing-dots {
  display: flex;
  gap: 4px;
  align-items: center;
}

.typing-dots span {
  width: 8px;
  height: 8px;
  background: #8d8d8d;
  border-radius: 50%;
  animation: typing 1.4s infinite;
}

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

.typing-dots 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;
  }
}

/* Response Table */
.response-table {
  margin-top: 12px;
  overflow-x: auto;
}

.response-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 12px;
}

.response-table thead {
  background: #f4f4f4;
}

.response-table th {
  padding: 8px 12px;
  text-align: left;
  font-weight: 600;
  color: #161616;
  border-bottom: 1px solid #e0e0e0;
}

.response-table td {
  padding: 8px 12px;
  color: #525252;
  border-bottom: 1px solid #f4f4f4;
}

.response-table tbody tr:last-child td {
  border-bottom: none;
}

.response-table tbody tr:hover {
  background: #f4f4f4;
}
.send-btn svg {
  display: block;
}

/* v1.5 Onboarding Styles */
.section-container {
  margin-bottom: 32px;
}

.section-header {
  margin-bottom: 16px;
}

.section-description {
  font-size: 14px;
  color: #525252;
  line-height: 20px;
  margin-bottom: 24px;
}

.getting-started-card-icon {
  font-size: 24px;
  margin-bottom: 12px;
}

.getting-started-card-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

/* Get Started Banner */
.get-started-banner {
  background: linear-gradient(135deg, #0f62fe 0%, #4c1d95 100%);
  color: white;
  padding: 1.5rem;
  margin: 0;
  border-radius: 0;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.get-started-banner-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.get-started-banner-close:hover {
  opacity: 1;
}

.get-started-banner-content {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.get-started-banner-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.get-started-banner-icon svg {
  width: 24px;
  height: 24px;
}

.get-started-banner-text {
  flex: 1;
}

.get-started-banner-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 24px 0;
  line-height: 28px;
  display: flex;
  align-items: center;
}

.lightbulb-icon {
  margin-right: 8px;
  font-size: 24px;
}

/* Banner styling for onboarding page */
.get-started-banner {
  background: linear-gradient(135deg, #0f62fe 0%, #4c1d95 100%);
  color: white;
  padding: 1.5rem;
  margin: 0;
  border-radius: 0;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.get-started-banner-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.get-started-banner-close:hover {
  opacity: 1;
}

.get-started-banner-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 24px 0;
  line-height: 28px;
  display: flex;
  align-items: center;
}

.get-started-banner-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.get-started-banner-column h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 12px 0;
  line-height: 20px;
}

.get-started-banner-column p {
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 12px 0;
  opacity: 0.9;
}

.get-started-banner-link {
  color: white;
  text-decoration: underline;
  cursor: pointer;
  font-size: 14px;
}

.get-started-banner-link:hover {
  text-decoration: none;
}

.get-started-banner-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.get-started-banner-column h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 12px 0;
  line-height: 20px;
}

.get-started-banner-column p {
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 12px 0;
  opacity: 0.9;
}

.get-started-banner-link {
  color: white;
  text-decoration: underline;
  font-size: 14px;
  line-height: 20px;
  display: inline-block;
  transition: opacity 0.2s;
}

.get-started-banner-link:hover {
  opacity: 0.8;
}

.get-started-banner.hidden {
  display: none;
}
