/* ════════════ MANUAL KYC RIGHT PANEL ════════════ */
body.manual-kyc-active #call-screen {
  width: 70% !important;
  align-self: flex-start !important;
}

#manual-kyc-panel {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 30%;
  background: #f8fafc;
  border-left: 1px solid #e2e8f0;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.05);
  flex-direction: column;
  padding: 24px;
  gap: 20px;
  z-index: 1000;
  overflow-y: auto;
}

.mkp-step {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px 14px;
}

.mkp-step-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.mkp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid #64748b;
}

.mkp-step-title {
  font-weight: 600;
  color: #1e293b;
  font-size: 14px;
}

.mkp-desc {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 12px;
  line-height: 1.4;
}

.mkp-btn {
  background: var(--primary-color, #3b82f6);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}

.mkp-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.mkp-loc-result {
  margin-top: 10px;
  font-size: 13px;
  color: #334155;
  background: #f1f5f9;
  padding: 8px;
  border-radius: 6px;
}

.mkp-loc-flag {
  margin-right: 4px;
}

.mkp-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #334155;
  margin-top: 10px;
  cursor: pointer;
}

.mkp-check input {
  width: 16px;
  height: 16px;
}

.mkp-pan-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mkp-pan-icon {
  background: #000;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.mkp-fields {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

#mkp-pan-image {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  margin-bottom: 8px;
  transition: max-height 0.25s ease-in-out;
  cursor: pointer;
}

#mkp-pan-image:hover {
  max-height: 450px;
}

.mkp-field-group {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mkp-field-group:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.mkp-group-header {
  font-size: 11.5px;
  font-weight: 700;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mkp-group-fields {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.mkp-field-card {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mkp-field-label-text {
  font-size: 11px;
  font-weight: 600;
  color: #475569;
  letter-spacing: 0.1px;
}

.mkp-field-input {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 12.5px;
  color: #0f172a;
  background: #f8fafc;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, background-color 0.15s ease-in-out;
}

.mkp-field-input:hover {
  background: #ffffff;
  border-color: #94a3b8;
}

.mkp-field-input:focus {
  background: #ffffff;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.14);
}

.mkp-field-input::placeholder {
  color: #94a3b8;
  font-size: 11.5px;
}

.mkp-field-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mkp-label {
  color: #334155;
  font-size: 12px;
  font-weight: 500;
  width: 105px;
  flex-shrink: 0;
}

.mkp-arrow {
  display: none;
}