@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');

/* All styles scoped to .prop-chatbot */
.pcb-root {
  background-color: #f9f4f1 !important;
	transition : all ease-in-out 0.3s;

}
#menu-sp_menu{
  color: black !important;
}
.pcb-root p {
  margin-top: 0px;
  margin-bottom: 0px;
  line-height: 1.6em;
}
.btContentHolder{
  padding:0 !important; 
max-width: unset !important;
    display: block !important;
}
.btVerticalHeaderTop{
  background-color: white !important;
}
.bt_bb_text_empty{
  filter: invert(1);
}
.btMenuVertical.btStickyHeaderActive.btStickyHeaderOpen .btVerticalHeaderTop .bt_bb_text_empty{
  filter : invert(0);
}
.prop-chatbot {
  --card: #ffffff;
  --ink: #0b1020;
  --ink-2: #3b4254;
  --ink-3: #6b7489;
  --muted: #98a1b3;
  --border: #e7e7ee;
  --blue: #2f6df6;
  --blue-600: #2b62db;
  --blue-50: #eef3ff;
  --shadow: 0 8px 24px rgba(12, 22, 44, 0.08), 0 2px 6px rgba(12, 22, 44, 0.06);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --radius-xs: 999px;
  --c-bg: #ffffff;
  --c-panel: #ffffff;
  --c-panel-alt: #f5f7fa;
  --c-border: #d9e1e8;
  --c-border-strong: #b8c2cc;
  --c-text: #1f2a33;
  --c-text-muted: #5c6b78;
  --c-primary: #2563eb;
  --c-primary-accent: #1d4ed8;
  --c-primary-soft: #e3efff;
  --c-danger: #dc2626;
  --c-danger-soft: #ffe5e5;
  --c-radius-xs: 3px;
  --c-radius-sm: 6px;
  --c-radius-md: 10px;
  --c-radius-pill: 999px;
  --c-focus-ring: 0 0 0 3px rgba(37, 99, 235, 0.35);
  --c-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
  --c-shadow-md: 0 4px 14px -4px rgba(0, 0, 0, 0.18), 0 2px 6px -2px rgba(0, 0, 0, 0.12);
  color-scheme: light dark;

  font-family: Sora, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  min-height: 100svh;
  padding-block: clamp(20px, 4vw, 36px);
	padding-top: 100px;
	 @media (max-width: 700px) {
    padding-top: 50px;
  }
}

/* Layout helpers */
.prop-chatbot .pcbcontainer {
  width: min(1120px, 85%);
  margin-inline: auto;
}

.prop-chatbot .card {
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
}

/* Header */
.prop-chatbot .pcb-header {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.prop-chatbot .brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.prop-chatbot .brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: conic-gradient(from 180deg at 50% 50%, #2f6df6, #6aa1ff);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(47, 109, 246, 0.4);
}

.prop-chatbot .brand-text {
  font-weight: 700;
  font-size: 18px;
}

/* Buttons */
.prop-chatbot .btn {
  --btn-bg: var(--card);
  --btn-ink: var(--ink);
  --btn-bd: var(--border);

  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--btn-bd);
  background: var(--btn-bg);
  color: var(--btn-ink);
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: all ease-in-out 0.3s;
	font-size : 14px;
}

.prop-chatbot .btn:hover {
  transform: translateY(-1px);
}

.top-card {
  padding: clamp(20px, 4vw, 36px);
  background-repeat: repeat;
  background-size: cover;
}

.spec-container {
  /* align-content: center; */

  @media (max-width: 700px) {
    align-content: center;
    padding: 20px;
  }
}

.prop-chatbot .btn-outline {
  --btn-bg: #fff;
  --btn-bd: #e7ebf3;
}

.btn-outline:hover {
  color: #fff;
  background: #000;
  /* --btn-bg: #f3f5f9; */

}

.prop-chatbot .btn-dark {
  --btn-bg: #0f1728;
  --btn-ink: #fff;
  --btn-bd: transparent;
  box-shadow: 0 8px 18px rgba(15, 23, 40, 0.25);
}

.prop-chatbot .btn-light {
  --btn-bg: var(--blue-50);
  --btn-ink: var(--blue);
  --btn-bd: #dbe6ff;
}

.prop-chatbot .btn-pill {
  padding: 10px 12px;
  stroke: #1F2937;
}

.prop-chatbot .btn-primary {
  --btn-bg: var(--blue);
  --btn-ink: #fff;
  --btn-bd: transparent;
}

.prop-chatbot .btn.uploaded {
  outline: 2px solid var(--blue);
}

.prop-chatbot .icon-arrow {
  translate: 5px 0;
  background: white;
  color: black;
  padding: 6px;
  border-radius: 12px;
  margin: -4px;
  /* transform: rotate(352deg); */
}

.prop-chatbot .icon-paperclip {
  /* font-size: 14px; */
  height: 20px;
  width: 20px;
  /* fill: inherit; */
  stroke: inherit;
}

/* Hero */
.prop-chatbot .pcb-hero {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(16px, 4vw, 24px);
  position: relative;
  /* overflow: hidden; */
}

.prop-chatbot .hero-content {
  padding: clamp(6px, 1vw, 10px);
}

.prop-chatbot .of-hidden {
  overflow: hidden;
}

.prop-chatbot .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--blue);
  font-weight: 700;
  padding: 6px 0px;
  border-radius: var(--radius-xs);
  /* background: #eef3ff; */
  /* border: 1px solid #dbe6ff; */
}

.prop-chatbot .hero-title {
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 14px 0 10px;
}

.prop-chatbot .hero-title .accent {
  color: var(--blue);
}

.prop-chatbot .hero-sub {
  color: var(--ink-2);
  font-size: clamp(15px, 1.2vw, 18px);
  max-width: 56ch;
}

.prop-chatbot .hero-actions {
  margin-top: 18px;
}

.prop-chatbot .hero-visual {
  position: relative;
  min-height: 220px;
  border-radius: calc(var(--radius-lg) - 6px);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.prop-chatbot .hero-visual img {
  height: 100%;
  width: 100%;
}

.prop-chatbot .spring {
  --coil: repeating-linear-gradient(90deg,
      #aeb7c7 0 2px,
      #dbe1ec 2px 6px);
  width: 100px;
  height: 160px;
  border-radius: 14px;
  background: var(--coil);
  filter: drop-shadow(0 16px 20px rgba(30, 60, 110, 0.15));
}

.prop-chatbot .spring-a {
  transform: rotate(-18deg);
  margin-right: 120px;
}

.prop-chatbot .spring-b {
  transform: rotate(4deg) scale(1.1);
  margin-left: 120px;
}

/* Requirements */
.prop-chatbot .pcb-req {
  padding: clamp(24px, 5vw, 44px) 0 28px;
}

.prop-chatbot .pcb-req-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 18px;
}

.prop-chatbot .pcb-req h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.02em;
}

.prop-chatbot .accent {
  color: var(--blue);
}

.prop-chatbot .accent-underline {
  position: relative;
}

.prop-chatbot .accent-underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: -2px;
  bottom: 2px;
  height: 6px;
  border-radius: 6px;
  background: linear-gradient(90deg, #cfe0ff, #9ec1ff 60%, transparent);
  z-index: -1;
}

.prop-chatbot .req-copy {
  color: var(--ink-2);
}

/* Segmented control */
.prop-chatbot .pcb-seg {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin: 18px auto 18px;
}

.prop-chatbot .seg-line {
  height: 1px;
  background: #e6e9f2;
}

.prop-chatbot .seg-pill {
  border: 1px solid #dfe6fb;
  background: #f3f6ff;
  color: #2b53a4;
  border-radius: var(--radius-xs);
  padding: 8px 12px;
  font-weight: 700;
  cursor: pointer;
  transition: 150ms ease;
  box-shadow: 0 4px 10px rgba(43, 98, 219, 0.1);
}

.prop-chatbot .seg-pill.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue-600);
}

/* Row */
.prop-chatbot .pcb-row {
  display: grid;
  grid-template-columns: 1.2fr 0.1fr 0.8fr;
  gap: clamp(14px, 3vw, 14px);
  align-items: stretch;
}

.prop-chatbot .spec-side {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-color: white;
  border-radius: var(--radius-lg);
  gap: 0px !important;
  text-align: center;

  @media (max-width: 700px) {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto);
  }
}


.prop-chatbot .doc-side {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.prop-chatbot .spec-side.dim,
.prop-chatbot .doc-side.dim {
  opacity: 0.5;
  filter: saturate(0.7);
}

/* Spec card */
.prop-chatbot .spec-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  padding-top: 50px;

  @media (max-width: 700px) {
    padding-top: 16px !important;
  }
}

.prop-chatbot .center-spec {
  border-left: 2px solid #d0d4da;
  border-right: 2px solid #d0d4da;

  @media (max-width: 700px) {
    border-left: none;
    border-right: none;
    border-top: 2px solid #d0d4da;
    border-bottom: 2px solid #d0d4da;
  }
}

.prop-chatbot .spec-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(75deg, #fff, #eee);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);

}

.prop-chatbot .icon-coin {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #cfd6e6 0 40%, #aab4c8 41% 100%);
  box-shadow: inset 0 0 0 2px #dfe4ef;
}

.prop-chatbot .spec-body h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.prop-chatbot .spec-body p {
  margin: 0;
  color: var(--ink-3);
  font-size: 14px;
}

.prop-chatbot .muted {
  color: var(--muted);
  font-weight: 600;
}

/* OR pill */
.prop-chatbot .or-pill {
  align-self: center;
  width: 60px;
  height: 100%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 50%, #3c7ffe57, #eef3ff00);
  color: var(--ink-2);
  font-weight: 800;
}

.prop-chatbot .or-text {
  color: white;
  background: #1b54c0;
  aspect-ratio: 1;
  align-content: center;
  padding: 2px;
  border-radius: 50%;
  outline: 5px white solid;
  box-shadow: -2px 5px 17px 1px #0000006b;
}

/* Doc card */
.prop-chatbot .doc-card {
  padding: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.prop-chatbot .doc-thumb img {
  height: 100%;
  width: 100%;
  max-height: 300px;
  object-fit: contain;
}

.prop-chatbot .doc-thumb {
  /* height: 230px; */
  max-height: 260px;
  border-radius: 12px;
  /* border: 1px dashed #d3d9ea; */
  /* background: linear-gradient(180deg, #fafbff, #f4f6fd); */
  display: grid;
  place-items: center;
  overflow: hidden;
}

.lside {
  display: flex;
  flex-direction: column;
  gap: 5px;
  /* box-shadow: var(--shadow); */
}

.spec-side {
  flex-grow: 1
}

.prop-chatbot .doc-lines {
  width: 90%;
  height: 80%;
  border-radius: 8px;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.06)) 0 0/100% 2px no-repeat,
    repeating-linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0 6px, transparent 6px 20px);
  box-shadow: inset 0 0 0 2px #eef1fb;
}

.prop-chatbot .doc-cta {
  display: grid;
  gap: 6px;
  justify-content: start;
}

.prop-chatbot .doc-cta .file-input {
  display: none;
}

.prop-chatbot .doc-hint {
  font-size: 12px;
  color: var(--ink-3);
}

/* Input bar */
.prop-chatbot .pcb-input {
  position: fixed;
  bottom: 20px;
  width: 100%;
  left: 0;
  /* background-color: #f9f4f1; */
  /* margin: 26px auto 60px; */
}

.prop-chatbot .input-shell {
  position: relative;
  background: #f9f4f1;

  width: min(1120px, 85%);
  margin-inline: auto;

  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 10px 12px;
}

.prop-chatbot .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 4px 2px 8px;
  /* justify-content: center; */
}

.prop-chatbot .chip {
  background: #f3f5f9;
  border: 1px solid #e5e9f2;
  color: #4c5568;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  padding: 6px 10px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.prop-chatbot .chip:hover {
  background: #e5e9f2;
  color: #1f2937;
}

.prop-chatbot .input-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.prop-chatbot .text-input {
  width: 100%;
  border: 0;
  outline: 0;
  font-size: 15px;
  padding-block: 20px;
  padding-inline: 14px;
  /* padding: 12px 12px 12px 14px; */
  border-radius: 14px;
  background: #f8fafc;
  color: var(--ink);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  resize: none;
}

.text-xs {
  font-size: 12px;
}

.text-sm {
  font-size: 14px;

}

.btn-pill:hover {
  stroke: white;
  /* fill: white !important; */
}

.prop-chatbot .input-actions {
  display: contents;
  gap: 8px;
  align-items: center;
  justify-self: flex-end;
}

.prop-chatbot .input-actions .file-input {
  display: none;
}

/* Responsive tweaks */
@media (max-width: 960px) {
  .prop-chatbot .pcb-hero {
    grid-template-columns: 1fr;
  }

  .prop-chatbot .pcb-req-head {
    grid-template-columns: 1fr;
  }

  .prop-chatbot .pcb-row {
    grid-template-columns: 1fr;
  }

  .prop-chatbot .or-pill {
    justify-self: center;
    width: 100%;
    height: 60px;
  }

  .prop-chatbot .spring-a,
  .prop-chatbot .spring-b {
    margin: 0;
  }



  .chips.main {
    display: none;
  }

  .chips.mobile-only {
    display: flex !important;

  }
}

.chips.mobile-only {
  display: none;

}

.sparkles-icon {
  fill: transparent;
  stroke: var(--blue-600);
  height: 20px;
  width: 20px;
}

.sub-input-container {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.prop-chatbot .message.client {
  background-color: white;
  padding: 12px;
  border-radius: 15px;
  width: fit-content;
  font-size: 14px;
  justify-self: end;
}

.prop-chatbot .message.assistant {
  background-color: #f8dcc7;
  padding: 12px;
  border-radius: 15px;
  width: fit-content;
  font-size: 14px;
  justify-self: start;
}

.prop-chatbot .message.assistant.error {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.prop-chatbot .message.assistant.success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.prop-chatbot .messages {
  margin-bottom: 10px;
}

@keyframes fadeUpReveal {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.loader {
  width: 15px;
  aspect-ratio: 1;
  border-radius: 50%;
  animation: l5 1s infinite linear alternate;
}

@keyframes l5 {
  0% {
    box-shadow: 20px 0 #000, -20px 0 #0002;
    background: #000
  }

  33% {
    box-shadow: 20px 0 #000, -20px 0 #0002;
    background: #0002
  }

  66% {
    box-shadow: 20px 0 #0002, -20px 0 #000;
    background: #0002
  }

  100% {
    box-shadow: 20px 0 #0002, -20px 0 #000;
    background: #000
  }
}

.message.fade-up {
  animation: fadeUpReveal 0.8s ease forwards;
}

.prop-chatbot .message {
  margin-block: 5px;
}


.prop-chatbot .messages {
  max-height: 200px;
  overflow-y: auto;
  padding-right: 6px;
  /* add some padding so scrollbar doesn't cover content */
}

/* For WebKit browsers (Chrome, Safari) */
.prop-chatbot .messages::-webkit-scrollbar {
  width: 6px;
}

.prop-chatbot .messages::-webkit-scrollbar-track {
  background: transparent;
}

.prop-chatbot .messages::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 3px;
}

/* For Firefox */
.prop-chatbot .messages {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
}

.prop-chatbot .typing-indicator {
  display: flex;
  gap: 5px;
  font-style: italic;
  padding-right: 20px !important;
}

label.btn.btn-pill.btn-outline.text-xs {
  display: none;
}

.prop-chatbot .loader {
  transform: scale(0.5);
  margin-left: 10px;
}

.pcb-input .messages {
  /*max-height: 30vh;

  /* big enough to show content */
  overflow: auto;
  max-height: 470px;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 1;
}

.pcb-input.hide-messages .messages {
  max-height: 0;
  opacity: 0;
}

.pcb-input.hide-messages .chips.mobile-only {
  max-height: 0;
  opacity: 0;
}

.prop-chatbot .message.client img {
  width: 80px;
  height: 80px;
}

.pcalculation-result {
  min-height: fit-content;
  padding: 10px !important;
  position: relative;
  gap: 5px;
  display: flex;
  overflow: initial;
  flex-direction: column;
  align-self: center;
  width: auto;
}

.pcalculation-result p {
  margin-bottom: 5px;
  border-bottom: 1px solid #62626254
}

.pcalculation-result h4 {
  color: black;
  text-align: center;
  margin: 0 0 5px 0;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}


.pcalculation-result p {
  color: black;
}

.pcalculation-result span {
  width: auto;
  background: white;
  margin: 2px 0;
  padding: 8px 8px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.4;
  color: #2d3748;
  display: flex;
  justify-content: space-between;
}

.pcalculation-result p:last-child {
  margin-bottom: 0;
}

.pcalculation-result strong {
  color: #4a5568;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Hover effect for interactivity */

.invoice-btn {
  background: linear-gradient(135deg, #2f6df6 0%, #2f6df6 100%);
  border: none;
  color: white;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 50px;
  cursor: pointer;
  transition: left 0.3s ease;
  text-transform: none;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
}

.invoice-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}

.invoice-btn:hover {
  /* transform: translateY(-2px); */
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, #2f6df6 0%, #5677ed 100%);
}

.invoice-btn:hover::before {
  left: 100%;
}

.invoice-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.prop-chatbot .clear-btn:hover {
  background-color: #fcaeae !important;
}


.pcb-input .dnd-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  /* rgb(158 158 158 / 41%) */
  background: rgba(158, 158, 158, 0.41);
  backdrop-filter: blur(4px);
  border: 3px dashed #2563eb;
  border-radius: 10px;
  color: #1e3a8a;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, sans-serif;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(.98);
  transition: opacity .18s ease, transform .18s ease, background-color .25s;
  pointer-events: none;
  /* lets underlying input still receive events if needed */
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  place-self: center;
	z-index : 50;
}

.pcb-input.drag-over .dnd-overlay {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/* Inner layout */
.dnd-inner {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  align-items: center;
  max-width: 320px;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  z-index: 5;

}

.dnd-icon {
  color: #2563eb;
  opacity: .9;
}

.dnd-text {
  margin: 0;
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.3;
  color: #1e3a8a;
  letter-spacing: .2px;
}

.dnd-text .dnd-sub {
  display: block;
  margin-top: .25rem;
  font-weight: 400;
  font-size: .75rem;
  color: #334155;
  letter-spacing: .3px;
  opacity: .85;
}

/* Optional: subtle animated accent when active */
.pcb-input.drag-over .dnd-overlay {
  animation: pulseBorder 1.4s ease-in-out infinite;
}

@keyframes pulseBorder {

  0%,
  100% {
    border-color: #2563eb;
  }

  50% {
    border-color: #82a1d4;
  }
}

/* Dark mode (optional) */
@media (prefers-color-scheme: dark) {
  .pcb-input .dnd-overlay {
    background: rgba(59, 130, 246, 0.10);
    border-color: #3b82f6;
    color: #dbeafe;
  }

  .dnd-text .dnd-sub {
    color: #94a3b8;
  }

  .dnd-icon {
    color: #60a5fa;
  }
}

.message.assistant.contact-form {
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
}

.invoice-form-container {
  max-width: 520px;
  margin: 1.5rem 0;
  padding: clamp(1rem, 2vw + .25rem, 1.8rem);
  background: var(--c-panel);
  border: 1px solid var(--c-border);
  border-radius: var(--c-radius-md);
  box-shadow: var(--c-shadow-sm);
  animation: formFade .4s ease;
}

@media (min-width: 700px) {
  .invoice-form-container {
    box-shadow: var(--c-shadow-md);
  }
}

@keyframes formFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

/* Intro paragraph (the <p> before form) */
.message.assistant.contact-form>div>p,
.invoice-form-container>p {
  margin: 0 0 1.1rem;
  font-size: .95rem;
  line-height: 1.45;
  color: var(--c-text-muted);
}

/* Form layout */
.invoice-form {
  display: grid;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
}

/* Field groups */
.invoice-form .form-group {
  display: grid;
  gap: .15rem;
}

/* Labels */
.invoice-form .form-group label {
  font-size: .85rem;
  text-transform: none;
  letter-spacing: .4px;
  font-weight: 600;
  color: var(--c-text);
  display: flex;
  align-items: center;
  gap: .35rem;
}

/* Inputs */
.invoice-form .form-group input {
  font: inherit;
  color: var(--c-text);
  background: var(--c-panel-alt);
  border: 1.5px solid var(--c-border);
  border-radius: var(--c-radius-sm);
  padding: .72rem .85rem;
  width: auto;
  line-height: 1.25;
  transition: border-color .18s ease, background .22s ease, box-shadow .25s ease;
}

.invoice-form .form-group input:hover {
  border-color: var(--c-border-strong);
}

.invoice-form .form-group input:focus-visible {
  outline: none;
  border-color: var(--c-primary);
  background: var(--c-panel);
  box-shadow: var(--c-focus-ring);
}

.invoice-form .form-group input:disabled {
  opacity: .55;
  cursor: not-allowed;
}

/* Buttons row */
.invoice-form .form-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: .35rem;
}

/* Base button style */
.invoice-form .form-buttons button {
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  border: none;
  padding: .78rem 1.35rem;
  line-height: 1;
  border-radius: var(--c-radius-pill);
  letter-spacing: .3px;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: background .25s ease, color .25s ease, transform .16s ease, box-shadow .25s ease, filter .25s ease;
}

/* Primary submit */
.invoice-form .form-buttons .submit-btn {
  background: linear-gradient(145deg, var(--c-primary), var(--c-primary-accent));
  color: #fff;
  box-shadow: 0 3px 10px -4px rgba(0, 0, 0, .4), 0 2px 4px -2px rgba(0, 0, 0, .3);
}

.invoice-form .form-buttons .submit-btn:hover {
  filter: brightness(1.07);
}

.invoice-form .form-buttons .submit-btn:active {
  transform: translateY(1px);
  filter: brightness(.93);
}

/* Secondary (cancel) */
.invoice-form .form-buttons .cancel-btn {
  background: var(--c-panel-alt);
  color: var(--c-text-muted);
  border: 1px solid var(--c-border);
}

.invoice-form .form-buttons .cancel-btn:hover {
  background: var(--c-panel);
  color: var(--c-text);
}

.invoice-form .form-buttons .cancel-btn:active {
  transform: translateY(1px);
}

.invoice-form .form-buttons button:focus-visible {
  outline: none;
  box-shadow: var(--c-focus-ring);
}

/* Optional error state (apply .error to .form-group) */
.invoice-form .form-group.error input {
  border-color: var(--c-danger);
  background: var(--c-danger-soft);
}

.invoice-form .form-group.error label {
  color: var(--c-danger);
}

.invoice-form .form-group .error-text {
  margin: .25rem 0 0;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .3px;
  color: var(--c-danger);
}

/* Autofill neutralization */
.invoice-form input:-webkit-autofill {
  box-shadow: 0 0 0 1000px var(--c-panel-alt) inset;
  -webkit-text-fill-color: var(--c-text);
  transition: background-color 9999s ease-in-out 0s;
}

@media (max-width: 480px) {
  .invoice-form-container {
    padding: 1rem .95rem 1.25rem;
    border-radius: var(--c-radius-sm);
  }

  .invoice-form .form-buttons {
    flex-direction: column;
  }

  .invoice-form .form-buttons button {
    width: 100%;
    justify-content: center;
  }
}

.text-input.disabled {
  background-color: #e7e7e7;
}

.btn.disabled {
  background: #d4d4d4;
  opacity: 0.5;
  pointer-events: none;
}


.pcb-card-heading {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
}

.line-left {
  flex: 1;
  height: 2px;
  background-color: #d0d0d0;
  margin-right: 20px;
}

.pcb-card-heading-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
  background-color: #fff;
  padding: 5px 15px 8px 10px;
  gap: 10px;
  border-radius: 20px;
  font-weight: 900;
}

.pcb-card-heading-content {
  padding-bottom: 3px;
}




.line-right {
  flex: 1;
  height: 2px;
  background-color: #d0d0d0;
  margin-left: 20px;
}

.minimizeContainer {
  height: 24px;
  display: flex;
  justify-content: end;
  padding-right: 10px;
  height: 24px;
  margin-top: -7px;
  margin-bottom: 0px;
  transition: all ease-in-out 0.3s;
}

.minimizeContainer svg {
  transform: rotate(180deg);
  cursor: pointer;

}

.hide-messages .minimizeContainer {
  margin-top: -7px;
  margin-bottom: -10px !important;
}

.hide-messages .minimizeContainer svg {
  transform: rotate(0deg) !important;

}

@media (max-width: 700px) {
  .hide-messages .minimizeContainer {
    margin-bottom: -20px !important;
  }
}

.minimizeContainer svg {
  stroke: #3a3a3a;
  opacity: 0.5;
  transition: opacity ease-in-out 0.3s;
}

.minimizeContainer svg:hover {
  opacity: 1;
}

* {
  font-family: "Sora", sans-serif;
}

.cost-breakdown,
.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cost-item,
.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: #fff;
  border-radius: 4px;
}

.message.assistant.breakdown {
  width: 35%;
  max-width: 80vw;
  min-width: 270px;
}

.pricing-item.highlight {
  background: #e8f4fd;
  border-color: #2271b1;
}

.cost-label,
.pricing-label {
  font-weight: 500;
  color: #50575e;
  font-size: 13px;
}

.cost-value,
.pricing-value {
  font-weight: 600;
  color: #1d2327;
  font-size: 14px;
}

.pricing-item.highlight .pricing-value {
  color: #2271b1;
  font-size: 16px;
}

.breakdown-container {
  border-radius: 8px;
  /* padding: 16px; */
  /* margin: 8px 0; */
  font-family: Arial, sans-serif;
}

.breakdown-container h3 {
  color: #6c6ace;
  /* margin: 0 0 16px 0; */
  font-size: 18px;
}

.breakdown-container h4 {
  color: #495057;
  /* margin: 16px 0 8px 0; */
  font-size: 16px;
}

.manufacturing-section,
.pricing-section,
.work-steps-section {
  margin-bottom: 16px;
}

.cost-details,
.pricing-details {
  background: white;
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #dee2e6;
}

.cost-item,
.price-item {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
}

.cost-item:last-child,
.price-item:last-child {
  border-bottom: none;
}

.label {
  font-weight: 500;
  color: #495057;
}

.value {
  font-weight: 600;
  color: #28a745;
}

.steps-container {
  display: grid;
  gap: 8px;
}

.step-item {
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 12px;
}

.step-header {
  font-weight: 600;
  color: #495057;
  margin-bottom: 8px;
}

.step-details {
  display: grid;
  gap: 4px;
}

.step-detail {
  display: flex;
  justify-content: space-between;
  padding: 2px 0;
}
#main-header{
	background-color : black;	
}