/* [project]/src/app/home/_components/ChatInterface.css [app-client] (css) */
.chat-interface {
  position: fixed;
  bottom: 1rem;
  right: .5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: .5rem;
  z-index: 9999;
}

.chat-toggle-button {
  display: flex;
  align-items: center;
  gap: .5rem;
  background-color: #d25a00;
  color: #fff;
  padding: .75rem 1.5rem;
  border-radius: 9999px;
  border: none;
  font-weight: 600;
  transition: all .2s;
  cursor: pointer;
}

.chat-toggle-button:hover {
  background-color: #c64f00;
  transform: translateY(-1px);
}

.chat-widget {
  position: absolute;
  bottom: 4rem;
  right: .5rem;
  width: 440px;
  height: 580px;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px #00000040;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  overflow: hidden;
}

.chat-header {
  background-color: #fff;
  padding: 1.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
}

.chat-header-left {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.chat-header-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
}

.chat-header-actions {
  display: flex;
  gap: .5rem;
}

.clear-chat-button {
  width: 7rem;
  height: 2rem;
  border-radius: .375rem;
  background-color: #fecaca;
  color: #dc2626;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color .2s;
}

.clear-chat-button:hover {
  background-color: #fca5a5;
}

.close-button {
  height: 2rem;
  width: 2rem;
  border-radius: 9999px;
  border: none;
  background-color: #0000;
  cursor: pointer;
  transition: background-color .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-button:hover {
  background-color: #f3f4f6;
}

.chat-messages {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.message {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  padding: .75rem;
  border-radius: .5rem;
}

.message.user {
  margin-left: auto;
  background-color: #cce4ff;
  color: #0056d2;
}

.message.bot {
  background-color: #fff;
  align-self: flex-start;
}

.message-content {
  margin-left: 0;
}

.typing-indicator {
  display: flex;
  gap: .5rem;
  align-items: center;
  padding: 1rem;
  background-color: #f0e7ef;
  color: #111827;
  border-radius: .75rem;
  width: fit-content;
}

.typing-dots {
  display: flex;
  gap: .25rem;
}

.typing-dot {
  width: .5rem;
  height: .5rem;
  background-color: #6b7280;
  border-radius: 9999px;
  animation: 1.4s ease-in-out infinite bounce;
}

.typing-dot:first-child {
  animation-delay: 0s;
}

.typing-dot:nth-child(2) {
  animation-delay: .2s;
}

.typing-dot:nth-child(3) {
  animation-delay: .4s;
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0);
  }

  40% {
    transform: scale(1);
  }
}

.chat-input-container {
  padding: 1rem;
  border-top: 1px solid #e5e7eb;
}

.chat-input-wrapper {
  padding: .25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid #d1d5db;
  border-radius: .75rem;
  transition: border-color .2s;
}

.chat-input-wrapper:focus-within {
  border-color: #0056d2;
}

.chat-input {
  flex-grow: 1;
  padding: .5rem;
  border-radius: .5rem 0 0 .5rem;
  border: none;
  outline: none;
  color: #0056d2;
  font-weight: 500;
  resize: none;
  font-family: inherit;
}

.chat-input.password {
  font-family: monospace;
}

.send-button {
  background-color: #dbeafe;
  color: #0056d2;
  padding: 1rem;
  border-radius: 0 .75rem .75rem 0;
  border: none;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.send-button:hover {
  background-color: #bfdbfe;
}

.send-button:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.input-help-text {
  font-size: .875rem;
  color: #6b7280;
  text-align: center;
  margin-top: .5rem;
}

.quick-replies {
  margin-left: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.quick-reply-button {
  font-size: .875rem;
  padding: .5rem 1.65rem;
  border-radius: 9999px;
  border: 2px solid #b68df0;
  color: #5e3fc7;
  background-color: #fff;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}

.quick-reply-button:hover {
  background-color: #f3ebff;
  transform: translateY(-1px);
}

.user-type-selection {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background-color: #fff;
  padding: 1rem;
  border-radius: .5rem;
}

.user-type-buttons {
  display: flex;
  gap: 1rem;
}

.user-type-button {
  padding: 1.5rem;
  background-color: #dbeafe;
  color: #1d4ed8;
  border: 2px solid #93c5fd;
  border-radius: .5rem;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-weight: 500;
}

.user-type-button:hover {
  background-color: #bfdbfe;
  border-color: #60a5fa;
}

.login-register-selection {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  background-color: #fff;
  padding: 1rem;
  border-radius: .5rem;
  width: 100%;
}

.auth-option-button {
  padding: 1.5rem;
  border-radius: .5rem;
  border: 2px solid;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-weight: 500;
  width: 100%;
}

.login-button {
  background-color: #dcfce7;
  color: #166534;
  border-color: #86efac;
}

.login-button:hover {
  background-color: #bbf7d0;
  border-color: #4ade80;
}

.register-button {
  background-color: #dbeafe;
  color: #1d4ed8;
  border-color: #93c5fd;
}

.register-button:hover {
  background-color: #bfdbfe;
  border-color: #60a5fa;
}

.back-button {
  background-color: #f3f4f6;
  color: #374151;
  border-color: #d1d5db;
}

.back-button:hover {
  background-color: #e5e7eb;
  border-color: #9ca3af;
}

.profile-wizard-step {
  background: linear-gradient(135deg, #eff6ff 0%, #e0e7ff 100%);
  border: 1px solid #bfdbfe;
  border-radius: .75rem;
  padding: 1rem;
  box-shadow: 0 10px 15px -3px #0000001a;
  animation: .5s ease-out slideInRight;
  width: 22rem;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.profile-wizard-header {
  margin-bottom: 1.5rem;
}

.profile-wizard-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: .5rem;
}

.profile-wizard-step-indicator {
  font-size: .875rem;
  color: #2563eb;
  font-weight: 500;
}

.profile-wizard-description {
  color: #4b5563;
  margin-bottom: 1rem;
}

.profile-progress-bar {
  width: 100%;
  background-color: #e5e7eb;
  border-radius: 9999px;
  height: .5rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.profile-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 9999px;
  transition: width .5s ease-in-out;
}

.profile-input-group {
  margin-bottom: 1.5rem;
}

.profile-input-label {
  display: block;
  font-size: .875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: .5rem;
}

.profile-input {
  width: 100%;
  padding: .75rem;
  border: 1px solid #d1d5db;
  border-radius: .5rem;
  outline: none;
  transition: all .2s;
  font-family: inherit;
}

.profile-input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px #3b82f61a;
  transform: scale(1.02);
}

.profile-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem;
}

.profile-option-button {
  padding: .75rem;
  text-align: left;
  border-radius: .5rem;
  border: 2px solid;
  transition: all .2s;
  cursor: pointer;
  font-family: inherit;
}

.profile-option-button.selected {
  border-color: #3b82f6;
  background-color: #eff6ff;
  color: #1d4ed8;
}

.profile-option-button:not(.selected) {
  border-color: #e5e7eb;
  background-color: #fff;
  color: #374151;
}

.profile-option-button:not(.selected):hover {
  border-color: #bfdbfe;
  background-color: #f8fafc;
}

.profile-wizard-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

.profile-wizard-left-actions {
  display: flex;
  gap: .5rem;
}

.profile-wizard-right-actions {
  display: flex;
  gap: .5rem;
}

.profile-action-button {
  padding: .5rem;
  border-radius: .5rem;
  border: none;
  cursor: pointer;
  transition: all .2s;
  font-weight: 500;
  font-family: inherit;
}

.profile-action-button.secondary {
  color: #6b7280;
  background-color: #0000;
}

.profile-action-button.secondary:hover {
  color: #374151;
  background-color: #f3f4f6;
}

.profile-action-button.danger {
  color: #dc2626;
  background-color: #0000;
}

.profile-action-button.danger:hover {
  color: #b91c1c;
  background-color: #fef2f2;
}

.profile-action-button.primary {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #fff;
}

.profile-action-button.primary:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  transform: scale(1.05);
}

.profile-progress-preview {
  margin-top: 1rem;
  padding: .75rem;
  background-color: #f9fafb;
  border-radius: .5rem;
}

.profile-progress-title {
  font-size: .875rem;
  color: #4b5563;
  margin-bottom: .5rem;
}

.profile-progress-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem;
  font-size: .75rem;
}

.profile-progress-item {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.profile-progress-check {
  color: #10b981;
}

.profile-progress-label {
  color: #374151;
  font-weight: 500;
}

.profile-progress-value {
  color: #6b5563;
  font-weight: 500;
}

.partner-card {
  background: linear-gradient(135deg, #eff6ff 0%, #e0e7ff 100%);
  border: 1px solid #bfdbfe;
  border-radius: .75rem;
  padding: 1rem;
  margin-top: 1rem;
  transition: all .2s;
  animation: .4s ease-out slideInUp;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.partner-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px #0000001a;
}

.partner-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .5rem;
}

.partner-info {
  flex: 1;
}

.partner-name {
  font-weight: 600;
  font-size: 1.125rem;
  color: #1f2937;
  margin-bottom: .5rem;
}

.partner-match-score {
  display: grid;
  align-items: center;
  gap: .5rem;
  margin-bottom: .5rem;
}

.match-score-label {
  font-size: .875rem;
  color: #6b7280;
}

.match-score-bar {
  height: .5rem;
  background-color: #e5e7eb;
  border-radius: 9999px;
  overflow: hidden;
}

.match-score-fill {
  height: 100%;
  background: linear-gradient(90deg, #10b981 0%, #059669 100%);
  border-radius: 9999px;
  transition: width .5s;
}

.match-score-value {
  margin-left: .5rem;
  font-size: .875rem;
  font-weight: 500;
  color: #059669;
}

.partner-id {
  font-size: .875rem;
  color: #6b7280;
}

.partner-avatar {
  margin-left: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partner-avatar-circle {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .5rem;
}

.partner-avatar-text {
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
}

.partner-actions {
  margin-top: .75rem;
  padding-top: .75rem;
  border-top: 1px solid #dbeafe;
}

.partner-actions-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .75rem;
}

.partner-action-buttons {
  display: flex;
  gap: .5rem;
}

.partner-action-button {
  padding: .5rem .75rem;
  background-color: #3b82f6;
  color: #fff;
  border: none;
  border-radius: .5rem;
  font-size: .75rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color .2s;
}

.partner-action-button:hover {
  background-color: #2563eb;
}

.match-badge {
  font-size: .75rem;
  padding: .25rem .5rem;
  border-radius: 9999px;
  font-weight: 500;
}

.match-badge.high {
  background-color: #dcfce7;
  color: #166534;
}

.match-badge.good {
  background-color: #fef3c7;
  color: #92400e;
}

.show-more-container {
  display: flex;
  justify-content: center;
  margin-top: .75rem;
}

.show-more-button {
  padding: .5rem 1rem;
  background-color: #8b5cf6;
  color: #fff;
  border: none;
  border-radius: .5rem;
  font-size: .875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color .2s;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.show-more-button:hover {
  background-color: #7c3aed;
}

.all-partners-shown {
  display: flex;
  justify-content: center;
  margin-top: .75rem;
  font-size: .875rem;
  color: #6b7280;
  font-weight: 500;
}

.whatsapp-optin {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .625rem;
  background-color: #fff;
  padding: 1rem;
  border-radius: .5rem;
}

.whatsapp-optin-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .625rem;
}

.whatsapp-optin-main {
  display: flex;
  align-items: center;
  gap: .625rem;
  height: 117.85px;
}

.whatsapp-qr-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  flex: 1;
}

.qr-title {
  font-size: .625rem;
  text-align: center;
  font-family: Inter, sans-serif;
}

.qr-container {
  width: 100px;
  height: 100.85px;
  background-color: #fff;
  border-radius: .25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-divider {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  align-items: center;
  gap: .625rem;
}

.divider-line {
  width: 1px;
  height: 42.92px;
  background-color: #d9d9d9;
}

.divider-text {
  font-size: .625rem;
  color: #d9d9d9;
  font-family: Inter, sans-serif;
}

.whatsapp-link-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  flex: 1;
}

.link-title {
  font-size: .625rem;
  text-align: center;
  font-family: Inter, sans-serif;
}

.link-container {
  display: flex;
  gap: .125rem;
}

.link-text {
  background-color: #0056d21a;
  border: 1px solid #72acff;
  border-radius: .1875rem;
  padding: .125rem .5rem;
  font-size: .5rem;
  color: #1d4ed8;
  text-decoration: underline;
}

.copy-button {
  background-color: #0056d21a;
  border: 1px solid #72acff;
  border-radius: .1875rem;
  padding: .25rem;
  cursor: pointer;
}

.whatsapp-help-text {
  font-size: .625rem;
  text-align: center;
  color: #555;
  font-family: Inter, sans-serif;
}

.send-otp-button {
  width: 166px;
  height: 44px;
  background-color: #2563eb;
  border-radius: .5rem;
  box-shadow: inset -4px -4px 4px #51515140, inset 2px 4px 4px #ffffff40;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border: none;
  cursor: pointer;
  transition: all .2s;
}

.send-otp-button:hover {
  background-color: #1d4ed8;
  transform: translateY(-1px);
}

.send-otp-text {
  color: #fff;
  font-size: 1.25rem;
  font-family: Helvetica, sans-serif;
}

.complete-profile-button {
  display: flex;
  justify-content: center;
  padding: 1rem;
}

.complete-profile-btn {
  padding: 1.5rem;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #fff;
  border: none;
  border-radius: .5rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
  transform: scale(1);
  box-shadow: 0 10px 15px -3px #0000001a;
}

.complete-profile-btn:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  transform: scale(1.05);
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.catalog-wizard-step {
  background: linear-gradient(135deg, #eff6ff 0%, #e0e7ff 100%);
  border: 1px solid #bfdbfe;
  border-radius: .75rem;
  padding: 1rem;
  box-shadow: 0 10px 15px -3px #0000001a;
  animation: .5s ease-out slideInRight;
  width: 22rem;
}

.catalog-wizard-header {
  margin-bottom: 1.5rem;
}

.catalog-wizard-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: .5rem;
}

.catalog-wizard-step-indicator {
  font-size: .875rem;
  color: #2563eb;
  font-weight: 500;
}

.catalog-wizard-description {
  color: #4b5563;
  margin-bottom: 1rem;
}

.catalog-progress-bar {
  width: 100%;
  background-color: #e5e7eb;
  border-radius: 9999px;
  height: .5rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.catalog-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 9999px;
  transition: width .5s ease-in-out;
}

.catalog-input-group {
  margin-bottom: 1.5rem;
}

.catalog-input-label {
  display: block;
  font-size: .875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: .5rem;
}

.catalog-input {
  width: 100%;
  padding: .75rem;
  border: 1px solid #d1d5db;
  border-radius: .5rem;
  outline: none;
  transition: all .2s;
  font-family: inherit;
}

.catalog-input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px #3b82f61a;
  transform: scale(1.02);
}

.catalog-wizard-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

.catalog-wizard-left-actions {
  display: flex;
  gap: .5rem;
}

.catalog-wizard-right-actions {
  display: flex;
  gap: .5rem;
}

.catalog-action-button {
  padding: .5rem;
  border-radius: .5rem;
  border: none;
  cursor: pointer;
  transition: all .2s;
  font-weight: 500;
  font-family: inherit;
}

.catalog-action-button.secondary {
  color: #6b7280;
  background-color: #0000;
}

.catalog-action-button.secondary:hover {
  color: #374151;
  background-color: #f3f4f6;
}

.catalog-action-button.primary {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #fff;
}

.catalog-action-button.primary:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  transform: scale(1.05);
}

@media (width <= 480px) {
  .catalog-wizard-step {
    margin: .5rem;
    padding: 1rem;
  }

  .catalog-wizard-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .catalog-action-button {
    width: 100%;
    min-width: auto;
  }
}

@media (width <= 768px) {
  .chat-widget {
    width: calc(100vw - 2rem);
    height: calc(100vh - 8rem);
    right: 1rem;
    bottom: 5rem;
  }

  .user-type-buttons {
    flex-direction: column;
    gap: .75rem;
  }

  .profile-options-grid {
    grid-template-columns: 1fr;
  }

  .profile-wizard-actions {
    flex-direction: column;
    gap: .75rem;
  }

  .profile-wizard-left-actions, .profile-wizard-right-actions {
    justify-content: center;
  }
}

.deals-overview {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1px solid #bae6fd;
  border-radius: .5rem;
  padding: .75rem;
  margin: .5rem 0;
  box-shadow: 0 2px 4px -1px #0000001a;
  animation: .3s ease-out slideInUp;
}

.deals-overview-title {
  font-size: 1rem;
  font-weight: 600;
  color: #0c4a6e;
  margin-bottom: .75rem;
  text-align: center;
}

.deals-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem;
  margin-bottom: .75rem;
}

.deals-summary-card {
  background: #fff;
  border-radius: .375rem;
  padding: .75rem;
  text-align: center;
  border: 1px solid #e0f2fe;
  transition: all .2s;
}

.deals-summary-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px -1px #0000001a;
}

.deals-summary-icon {
  font-size: 1.5rem;
  margin-bottom: .25rem;
}

.deals-summary-label {
  font-size: .75rem;
  color: #64748b;
  margin-bottom: .25rem;
  font-weight: 500;
}

.deals-summary-count {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0c4a6e;
}

.deals-summary-total {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%);
  color: #fff;
  border: none;
}

.deals-summary-total .deals-summary-label, .deals-summary-total .deals-summary-count {
  color: #fff;
}

.deals-details-section {
  background: #fff;
  border-radius: .5rem;
  padding: .75rem;
  border: 1px solid #e0f2fe;
  margin-top: .5rem;
}

.deals-details-title {
  font-size: 1rem;
  font-weight: 600;
  color: #0c4a6e;
  margin-bottom: .75rem;
  text-align: center;
}

.deals-engagement-item {
  background: #f8fafc;
  border-radius: .375rem;
  padding: .75rem;
  margin-bottom: .5rem;
  border-left: 3px solid #0ea5e9;
  transition: all .2s;
  position: relative;
}

.deals-engagement-item:hover {
  background: #f1f5f9;
  transform: translateX(2px);
  box-shadow: 0 2px 4px -1px #0000001a;
  border-left-color: #0ea5e9;
}

.deals-engagement-item:active {
  transform: translateX(1px);
  transition: transform .1s;
}

.deals-engagement-item:after {
  content: "💬 Click to open chat";
  position: absolute;
  top: -25px;
  right: 0;
  background: #0c4a6e;
  color: #fff;
  padding: .25rem .5rem;
  border-radius: .25rem;
  font-size: .625rem;
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
  white-space: nowrap;
}

.deals-engagement-item:hover:after {
  opacity: 1;
}

.deals-engagement-header {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .375rem;
}

.deals-engagement-status {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.deals-engagement-partner {
  font-weight: 600;
  color: #0c4a6e;
  flex-grow: 1;
  font-size: .875rem;
}

.deals-engagement-info {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  font-size: .75rem;
  color: #64748b;
}

.deals-engagement-status-text {
  display: inline-block;
  padding: .125rem .375rem;
  border-radius: .25rem;
  font-size: .625rem;
  font-weight: 500;
  text-transform: capitalize;
}

.deals-engagement-status-text.pending {
  background: #fef3c7;
  color: #92400e;
}

.deals-engagement-status-text.dsinterested {
  background: #fce7f3;
  color: #be185d;
}

.deals-engagement-status-text.active {
  background: #dbeafe;
  color: #1e40af;
}

.deals-engagement-status-text.completed {
  background: #d1fae5;
  color: #065f46;
}

.deals-engagement-status-text.cancelled {
  background: #fee2e2;
  color: #991b1b;
}

.deals-engagement-date {
  font-style: italic;
  color: #94a3b8;
  font-size: .75rem;
}

.deals-empty-state {
  text-align: center;
  padding: 1rem;
  color: #64748b;
}

.deals-empty-icon {
  font-size: 2rem;
  margin-bottom: .5rem;
  opacity: .5;
}

.deals-empty-title {
  font-size: .875rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: .375rem;
}

.deals-empty-description {
  font-size: .75rem;
  line-height: 1.4;
  color: #94a3b8;
}

.deals-loading {
  text-align: center;
  padding: 1rem;
  color: #0c4a6e;
}

.deals-loading-icon {
  font-size: 1.5rem;
  margin-bottom: .5rem;
  animation: 1.5s infinite pulse;
}

.deals-loading-text {
  font-size: .75rem;
  color: #64748b;
}

.deals-error {
  text-align: center;
  padding: 1rem;
  color: #dc2626;
}

.deals-error-icon {
  font-size: 1.5rem;
  margin-bottom: .5rem;
}

.deals-error-text {
  font-size: .75rem;
  color: #991b1b;
}

@media (width <= 640px) {
  .deals-summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .deals-summary-total {
    grid-column: 1 / 3;
  }

  .deals-overview {
    padding: 1rem;
    margin: .5rem 0;
  }

  .deals-details-section {
    padding: 1rem;
  }
}

.quick-reply-button.back-button {
  width: 11.5rem;
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #64748b;
}

.quick-reply-button.back-button:hover {
  background: #e2e8f0;
  border-color: #94a3b8;
  color: #475569;
}

.help-topics-menu {
  margin-left: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.help-topics-grid {
  margin-left: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.help-topic-button {
  font-size: .875rem;
  padding: .5rem 1.25rem;
  border-radius: 9999px;
  border: 2px solid #b68df0;
  color: #5e3fc7;
  background-color: #fff;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  min-width: 140px;
  text-align: center;
}

.help-topic-button:hover {
  background-color: #f3ebff;
  transform: translateY(-1px);
}

.help-topic-button:active {
  transform: translateY(0);
}

.help-topic-icon {
  font-size: 1.25rem;
  margin-bottom: .125rem;
}

.help-topic-label {
  font-size: .75rem;
  font-weight: 600;
  color: #5e3fc7;
  line-height: 1.2;
  text-align: center;
}

.help-topic-desc {
  font-size: .625rem;
  color: #8b5cf6;
  line-height: 1.2;
  text-align: center;
  max-width: 120px;
}

.help-subtopics-menu {
  margin-left: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.help-subtopics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .5rem;
}

.help-subtopic-button {
  font-size: .875rem;
  padding: .5rem 1.25rem;
  border-radius: 9999px;
  border: 2px solid #b68df0;
  color: #5e3fc7;
  background-color: #fff;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
  text-align: center;
  min-width: 160px;
}

.help-subtopic-button:hover {
  background-color: #f3ebff;
  transform: translateY(-1px);
}

.help-subtopic-button:active {
  transform: translateY(0);
}

.help-subtopic-button.back-button {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #64748b;
  min-width: 180px;
}

.help-subtopic-button.back-button:hover {
  background: #e2e8f0;
  border-color: #94a3b8;
  color: #475569;
}

@media (width <= 640px) {
  .help-topics-menu, .help-subtopics-menu {
    margin-left: 1rem;
  }

  .help-topic-button, .help-subtopic-button {
    min-width: 120px;
    padding: .375rem 1rem;
  }

  .help-topic-desc {
    max-width: 100px;
  }
}


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