.hidden {
  display: none !important;
}

/* ─── HEADER ─────────────────────────────────────────── */
.headers {
  text-align: center;
    background: linear-gradient(180deg, #6630C6 0%, #330F95 100%);
    padding: 31px;
    border-radius: 15px;
    margin-bottom: 10px;
}
.headers h1 {
        font-size: 45px !important;
    margin-bottom: 10px;
    font-weight: 700;
    color: white;
}
.subtitle {
        color: rgba(255, 255, 255, 0.9);
    font-size: 1.1em;
    font-weight: 400;
    position: relative;
    z-index: 1;
    letter-spacing: 0.3px;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: white;
}



/* ─── MAIN & CONTAINER ───────────────────────────────── */
/* .main {
  flex: 1;
  padding: 0 0 48px;
} */

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  
}
.contentDiv{
	    padding: 21px;
    background: #f8fafcf0;
    border-radius: 15px;
}
/* ─── TABS ────────────────────────────────────────────── */
.tab-bar {
  display: flex;
  gap: 0;
  margin: 0 0 0;
  background: white !important;
  border-bottom: 2px solid #e2e8f0 !important;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px !important;
  font-size: 14px ;
  font-weight: 600;
  font-family: inherit;
  color: #64748b !important;
  background: transparent;
  border: none !important;
  border-bottom: 3px solid transparent !important;
  cursor: pointer;
  transition: color 0.18s, border-color 0.18s, background 0.18s;
  letter-spacing: 0.01em;
  margin-bottom: -2px;
}

.tab-btn:hover {
  color: #1d6ae5;
  background: #eff6ff;
}

.tab-btn.active {
  color: #1d6ae5 !important;
  border-bottom-color: #1d6ae5 !important;
  background: transparent !important;
}

.tab-btn svg {
  flex-shrink: 0;
}

/* ─── PANEL ───────────────────────────────────────────── */
.panel {
  padding: 28px 0 0;
}

/* ─── PANEL GRID ──────────────────────────────────────── */
.panel-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0 16px;
  align-items: center;
}

/* ─── FIELD CARD ──────────────────────────────────────── */
.field-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 14px !important;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
}

.field-card:focus-within {
  border-color: #60a5fa;
  box-shadow: 0 0 0 3px rgba(29, 106, 229, 0.1), 0 2px 12px rgba(0,0,0,0.05);
}

.output-card {
  background: #eff6ff;
  border-color: #bfdbfe;
}

.field-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px !important;
  border-bottom: 1px solid #f1f5f9;
  background: #f8fafc !important;
}

.output-card .field-header {
  background: #dbeafe;
  border-bottom-color: #bfdbfe;
}

.field-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: default;
}

.output-card .field-label {
  color: #1d4ed8;
}

.field-label svg {
  color: #94a3b8;
  flex-shrink: 0;
}

.output-card .field-label svg {
  color: #3b82f6;
}

/* ─── TEXTAREA ────────────────────────────────────────── */
.field-textarea {
  width: 100%;
  min-height: 200px;
  padding: 16px !important;
  font-size: 14px;
  font-family: 'Menlo', 'Monaco', 'Courier New', monospace;
  line-height: 1.6;
  color: #1e293b;
  background: transparent;
  border: none !important;
  resize: vertical;
  outline: none !important;
}

.field-textarea::placeholder {
  color: #cbd5e1;
}

.output-textarea {
  color: #1e40af;
  cursor: default;
}

.output-textarea::placeholder {
  color: #93c5fd;
}

/* ─── FIELD FOOTER ────────────────────────────────────── */
.field-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  border-top: 1px solid #f1f5f9;
  background: #f8fafc;
  min-height: 36px;
}

.output-card .field-footer {
  background: #dbeafe;
  border-top-color: #bfdbfe;
}

.char-count {
  font-size: 11.5px;
  color: #94a3b8;
  font-variant-numeric: tabular-nums;
}

.output-card .char-count {
  color: #60a5fa;
}

/* ─── STATUS PILL ─────────────────────────────────────── */
.status-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 10px !important;
  border-radius: 99px;
  letter-spacing: 0.03em;
  display: none !important ;
}

.status-pill.success {
  display: inline-block;
  background: #dcfce7;
  color: #15803d;
}

.status-pill.error {
  display: inline-block;
  background: #fee2e2;
  color: #dc2626;
}

/* ─── ARROW COL ───────────────────────────────────────── */
.arrow-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.arrow-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: blue !important;
  border: 1.5px solid blue !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white !important;
}

/* ─── BUTTONS ─────────────────────────────────────────── */
button {
  font-family: inherit;
  cursor: pointer;
}

.ghost-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px !important;
  font-size: 12px;
  font-weight: 500;
  color: #64748b !important;
  background: transparent;
  border: 1px solid #e2e8f0;
	border-color:#e2e8f0 !important;
  border-radius: 7px !important;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}

.ghost-btn:hover {
  color: #dc2626;
  background: #fef2f2;
  border-color: #fca5a5;
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px !important;
  font-size: 12px;
  font-weight: 600;
  color: #1d6ae5 !important;
  background: white;
  border: 1.5px solid #93c5fd !important;
  border-radius: 7px;
  transition: all 0.15s;
}

.copy-btn:hover {
  background: #1d6ae5;
  color: white;
  border-color: #1d6ae5;
}

.copy-btn.copied {
  background: #16a34a;
  color: white;
  border-color: #16a34a;
}

.copy-label {
  font-size: 12px;
}

.icon-copy, .icon-check {
  flex-shrink: 0;
}

/* ─── OPTIONS BAR ─────────────────────────────────────── */
.options-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding: 12px 16px;
  background: white;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
}

/* ─── TOGGLE ──────────────────────────────────────────── */
.toggle-label-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 500;
  color: #475569;
  user-select: none;
}

.toggle-label-wrap input[type="checkbox"] {
  display: none;
}

.toggle-track {
  position: relative;
  width: 38px;
  height: 22px;
  background: #cbd5e1;
  border-radius: 99px;
  transition: background 0.2s;
  flex-shrink: 0;
}

.toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}

.toggle-label-wrap input:checked + .toggle-track {
  background: #1d6ae5;
}

.toggle-label-wrap input:checked + .toggle-track .toggle-thumb {
  transform: translateX(16px);
}

/* ─── INFO SECTION ────────────────────────────────────── */
.info-section {
  margin-top: 48px;
  padding: 40px 10px;
  background: white;
  border-top: 1px solid #e2e8f0;
	border-radius:10px !important;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.info-card {
  padding: 24px;
  border: 1.5px solid #dbeafe;
  border-radius: 14px;
  background: #eff6ff;
  transition: box-shadow 0.2s, transform 0.2s;
}

.info-card:hover {
  box-shadow: 0 8px 24px rgba(29, 106, 229, 0.1);
  transform: translateY(-2px);
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #1d6ae5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 14px;
}

.info-card h3 {
  font-size: 15px !important;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.info-card p {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.6;
}

/* ─── FOOTER ──────────────────────────────────────────── */
.footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 20px 24px;
  text-align: center;
  font-size: 13px;
}

.footer .container {
  max-width: 1100px;
  margin: 0 auto;
}

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 768px) {
  .container {
    padding: 0px;
  }
	.tab-bar{
		text-align: center;
		display:block;
	}

  .headers h1 {
    font-size: 33px !important;
  }
	.headers p{
		font-size:15px !important.
	}

  .tab-btn {
    padding: 14px 20px;
    font-size: 13.5px;
  }

  .panel-grid {
    grid-template-columns: 1fr;
    gap: 12px 0;
  }

  .arrow-col {
    padding: 4px 0;
  }

  .arrow-wrap {
    transform: rotate(90deg);
  }

  .field-textarea {
    min-height: 160px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .options-bar {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .tab-btn {
    padding: 12px 16px;
    font-size: 13px;
    gap: 6px;
  }

  .logo-text {
    font-size: 18px;
  }
}
