/**
 * Sales Onboarding Styles
 * AI Link Platform - �º��� + ���� ��� ���
 * ����: 1.0
 */

/* ========== ��� �������� ========== */
.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: 9999;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.modal-overlay.hidden {
  display: none;
}

.modal-content {
  background: white;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  max-height: 90vh;
  overflow-y: auto;
  animation: modalSlideUp 0.3s ease;
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s;
}

.modal-close-btn:hover {
  background: #e5e7eb;
  color: #374151;
}

/* ========== ������ǥ �º��� ��� ========== */
.sales-onboarding-modal {
  position: relative;
  max-width: 440px;
  padding: 2rem;
  text-align: center;
}

.sales-onboarding-header {
  margin-bottom: 1.5rem;
}

.sales-onboarding-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.sales-onboarding-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 0.5rem;
}

.sales-onboarding-header p {
  color: #6b7280;
  margin: 0;
}

/* ������ �ϼ��� */
.profile-completion {
  background: #f9fafb;
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.completion-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.completion-value {
  font-weight: 700;
  color: #f59e0b;
}

.completion-bar {
  height: 8px;
  background: #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
}

.completion-fill {
  height: 100%;
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
  border-radius: 4px;
  transition: width 0.5s ease;
}

.completion-hint {
  font-size: 0.8rem;
  color: #6b7280;
  margin: 0.5rem 0 0;
}

.completion-hint strong {
  color: #10b981;
}

/* ���� �ܰ� ī�� */
.next-step-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, #fef3c7, #fffbeb);
  border: 1px solid #f59e0b;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  text-align: left;
}

.next-step-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.next-step-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #92400e;
  margin: 0 0 0.5rem;
}

.next-step-content p {
  font-size: 0.85rem;
  color: #78350f;
  margin: 0 0 0.5rem;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #78350f;
  margin-bottom: 0.25rem;
}

.benefit-list .check-icon {
  color: #10b981;
  font-weight: bold;
}

/* �º��� �׼� ��ư */
.sales-onboarding-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sales-onboarding-actions .btn-primary {
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.sales-onboarding-actions .btn-primary:hover {
  background: linear-gradient(135deg, #d97706, #b45309);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.sales-onboarding-actions .btn-ghost {
  padding: 0.75rem 1rem;
  background: transparent;
  color: #6b7280;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}

.sales-onboarding-actions .btn-ghost:hover {
  color: #374151;
  background: #f3f4f6;
}

/* ���� �º��� �ȳ� */
.customer-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: #eff6ff;
  color: #1d4ed8;
  border-radius: 8px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.customer-notice i {
  font-size: 1rem;
}

/* ========== ���� ��� ��� ========== */
.business-card-modal {
  max-width: 480px;
  padding: 2rem;
  position: relative;
}

.bc-modal-header {
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.bc-modal-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.bc-modal-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 0.5rem;
}

.bc-modal-header p {
  color: #6b7280;
  margin: 0;
}

/* v812 fix — close button 위치·z-index·click 영역 보강
   기존: top:-0.5rem right:-0.5rem (모달 외곽 → 잘림·클릭 차단)
   수정: 모달 내부 우측 상단 + z-index 최고 + pointer-events 강제 */
.bc-close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1000;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s;
  pointer-events: auto;
}

.bc-close-btn:hover {
  background: #e5e7eb;
  color: #374151;
}

/* ���� ���� */
.bc-step {
  animation: fadeIn 0.3s ease;
}

.bc-step.hidden {
  display: none;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ���� �� */
.bc-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bc-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.bc-form .form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.25rem;
}

.bc-form .form-label.required::after {
  content: ' *';
  color: #ef4444;
}

.bc-form .form-label i {
  margin-right: 0.25rem;
  color: #6b7280;
}

.bc-form .form-input {
  padding: 0.75rem 1rem;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.bc-form .form-input:focus {
  outline: none;
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.bc-form .form-hint {
  font-size: 0.8rem;
  color: #6b7280;
  margin: 0.25rem 0 0;
}

.bc-form .form-hint i.fa-lightbulb {
  color: #f59e0b;
}

.bc-form .form-hint i.fa-info-circle {
  color: #3b82f6;
}

/* ���м� */
.bc-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0.5rem 0;
}

.bc-divider::before,
.bc-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}

.bc-divider span {
  font-size: 0.8rem;
  color: #9ca3af;
  font-weight: 500;
}

/* �̸��� ���� */
.bc-email-section {
  margin-top: 0.5rem;
}

.bc-business-email,
.bc-login-account {
  margin-bottom: 1rem;
}

.email-badge {
  display: inline-block;
  padding: 2px 8px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 10px;
  margin-left: 0.5rem;
}

.verified-email-display,
.login-account-display {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #f9fafb;
  border-radius: 8px;
  font-size: 0.95rem;
}

.verified-badge-inline {
  color: #10b981;
  font-size: 0.8rem;
  font-weight: 600;
}

.login-provider {
  padding: 2px 8px;
  background: #f3f4f6;
  border-radius: 4px;
  font-size: 0.75rem;
  color: #6b7280;
}

.email-desc {
  font-size: 0.8rem;
  color: #6b7280;
  margin: 0.5rem 0 0;
}

.email-desc.muted {
  color: #9ca3af;
}

.btn-link-small {
  background: none;
  border: none;
  color: #6366f1;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0;
  margin-top: 0.5rem;
}

.btn-link-small:hover {
  text-decoration: underline;
}

/* ���� �ȳ� */
.bc-permission-notice {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: linear-gradient(135deg, #fef3c7, #fffbeb);
  border: 1px solid #fcd34d;
  border-radius: 12px;
  margin: 0.5rem 0;
}

.permission-icon {
  font-size: 1.5rem;
}

.permission-text strong {
  display: block;
  font-size: 0.9rem;
  color: #92400e;
  margin-bottom: 0.5rem;
}

.permission-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.permission-text li {
  font-size: 0.85rem;
  color: #78350f;
  margin-bottom: 0.25rem;
}

/* ��ư �׷� */
.bc-button-group {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.bc-button-group .btn {
  flex: 1;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.bc-button-group .btn-secondary {
  background: #f3f4f6;
  color: #374151;
  border: 1px solid #d1d5db;
}

.bc-button-group .btn-secondary:hover {
  background: #e5e7eb;
}

.bc-button-group .btn-primary {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  border: none;
}

.bc-button-group .btn-primary:hover {
  background: linear-gradient(135deg, #d97706, #b45309);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.bc-button-group .btn-primary:disabled {
  background: #d1d5db;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ========== ���� �ڵ� �Է� ========== */
.bc-verify-section {
  text-align: center;
}

.verify-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.bc-verify-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 0.5rem;
}

.verify-email-display {
  font-size: 1rem;
  font-weight: 600;
  color: #6366f1;
  margin: 0 0 0.5rem;
}

.verify-hint {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0 0 1.5rem;
}

.verify-code-inputs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.code-input {
  width: 48px;
  height: 56px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  border: 2px solid #d1d5db;
  border-radius: 8px;
  transition: border-color 0.2s;
}

.code-input:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.verify-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.timer-value {
  font-weight: 600;
  color: #ef4444;
}

.resend-btn {
  background: none;
  border: none;
  color: #6366f1;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
}

.resend-btn:hover {
  text-decoration: underline;
}

.resend-btn:disabled {
  color: #9ca3af;
  cursor: not-allowed;
  text-decoration: none;
}

/* ========== ������ ========== */
@media (max-width: 480px) {
  .modal-content {
    margin: 0.5rem;
    max-height: 95vh;
  }

  .sales-onboarding-modal,
  .business-card-modal {
    padding: 1.5rem;
  }

  .next-step-card {
    flex-direction: column;
    text-align: center;
  }

  .bc-button-group {
    flex-direction: column;
  }

  .verify-code-inputs {
    gap: 0.25rem;
  }

  .code-input {
    width: 40px;
    height: 48px;
    font-size: 1.25rem;
  }
}

/* ========== �߰� ��Ÿ�� ========== */
.optional {
  font-weight: 400;
  color: #9ca3af;
  font-size: 0.85em;
}

.verify-error {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: #fef2f2;
  color: #dc2626;
  border-radius: 8px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.verify-error.hidden {
  display: none;
}

.verify-help-box {
  margin-bottom: 1rem;
  text-align: left;
}

.verify-help-box details {
  background: #f9fafb;
  border-radius: 8px;
  padding: 0.75rem 1rem;
}

.verify-help-box summary {
  cursor: pointer;
  font-size: 0.85rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.verify-help-box ul {
  margin: 0.75rem 0 0;
  padding-left: 1.5rem;
  font-size: 0.8rem;
  color: #6b7280;
}

.verify-help-box li {
  margin-bottom: 0.25rem;
}

.verify-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.verify-actions .divider {
  color: #d1d5db;
}

.btn-link {
  background: none;
  border: none;
  color: #6366f1;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0;
}

.btn-link:hover {
  text-decoration: underline;
}

/* ���� �Ϸ� ���� */
.bc-success-section {
  text-align: center;
  padding: 1rem 0;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.bc-success-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 0.5rem;
}

.bc-success-section p {
  color: #6b7280;
  margin: 0 0 1.5rem;
}

.success-benefits {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.success-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.success-benefit .benefit-icon {
  font-size: 1.5rem;
}

.success-benefit span:last-child {
  font-size: 0.85rem;
  color: #374151;
  font-weight: 500;
}

.btn-full {
  width: 100%;
}

/* ========== �̸��� �ȳ� ���� (����) ========== */

/* �α��� ��� ǥ�� */
.bc-login-method {
  margin-bottom: 1rem;
}

.login-method-display {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}

.login-method-icon-sm {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 0.9rem;
}

.login-method-icon-sm.kakao {
  background: #FEE500;
  color: #3C1E1E;
}

.login-method-icon-sm.naver {
  background: #03C75A;
  color: white;
}

.login-method-icon-sm.google {
  background: white;
  border: 1px solid #e5e7eb;
  color: #6b7280;
}

.login-method-icon-sm.email {
  background: #ede9fe;
  color: #7c3aed;
}

.login-method-display span {
  font-size: 0.9rem;
  color: #374151;
  font-weight: 500;
}

/* ������ �̸��� ǥ�� (����) */
.bc-work-email {
  margin-bottom: 1rem;
}

.work-email-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 1px solid #10b981;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.work-email-address {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2937;
}

.work-email-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: #10b981;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
}

.form-hint.highlight {
  background: #fffbeb;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  border-left: 3px solid #f59e0b;
  margin-top: 0.5rem;
}

.form-hint.highlight i {
  color: #d97706;
}

.btn-link-small {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0;
  background: none;
  border: none;
  color: #7c3aed;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s;
}

.btn-link-small:hover {
  color: #6d28d9;
  text-decoration: underline;
}

/* �ű� ��� �� �α��� ���� �ڽ� */
.bc-login-info-box {
  padding: 1rem;
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  border: 1px solid #7dd3fc;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.login-info-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0369a1;
  margin-bottom: 0.5rem;
}

.login-info-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  background: white;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.login-info-desc {
  font-size: 0.8rem;
  color: #0c4a6e;
  margin: 0;
  line-height: 1.5;
}

.login-info-desc strong {
  color: #0369a1;
}

/* �̸��� ���� */
.email-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 9999px;
  background: #f3f4f6;
  color: #6b7280;
  margin-left: 0.5rem;
}

.email-badge.verified {
  background: #dcfce7;
  color: #166534;
}

/* ========== �̸��� ���� ��� ========== */
.email-change-modal {
  max-width: 480px;
  width: 95%;
}

.ec-step {
  padding: 1.5rem;
}

.ec-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.ec-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.ec-header h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

/* ���� �̸��� ǥ�� */
.ec-current-email {
  margin-bottom: 1rem;
}

.ec-current-email label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.current-email-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 1px solid #10b981;
  border-radius: 8px;
}

.current-email-display span:first-child {
  font-weight: 600;
  color: #1f2937;
}

.verified-badge-small {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  background: #10b981;
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 9999px;
}

/* ���� �ȳ� �ڽ� */
.ec-info-box.combined {
  padding: 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.ec-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.85rem;
  color: #475569;
}

.ec-info-item:not(:last-child) {
  border-bottom: 1px solid #e2e8f0;
}

.ec-info-item i {
  width: 20px;
  text-align: center;
  color: #64748b;
}

.ec-info-item.warning {
  color: #b45309;
}

.ec-info-item.warning i {
  color: #f59e0b;
}

/* �α��� ��� ������ (���� ����) */
.login-method-icon-xs {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 0.75rem;
}

.login-method-icon-xs.kakao {
  background: #FEE500;
  color: #3C1E1E;
}

.login-method-icon-xs.naver {
  background: #03C75A;
  color: white;
}

.login-method-icon-xs.google {
  background: white;
  border: 1px solid #e5e7eb;
}

.login-method-icon-xs.email {
  background: #ede9fe;
  color: #7c3aed;
}

/* ���� ���� ���� */
.ec-reason-section {
  margin-bottom: 1.5rem;
}

.ec-question {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.ec-reason-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ec-reason-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.ec-reason-option:hover {
  border-color: #a5b4fc;
  background: #f5f3ff;
}

.ec-reason-option:has(input:checked) {
  border-color: #7c3aed;
  background: #f5f3ff;
}

.ec-reason-option input[type="radio"] {
  margin-top: 2px;
  accent-color: #7c3aed;
}

.option-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.option-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2937;
}

.option-desc {
  font-size: 0.8rem;
  color: #6b7280;
}

/* ��ư �׷� */
.ec-button-group {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.ec-button-group .btn {
  flex: 1;
  padding: 0.75rem 1rem;
  font-weight: 600;
}

/* Step 2: ���� ȸ�� ���� */
.ec-previous-company {
  margin-bottom: 1.5rem;
}

.ec-previous-company label {
  display: block;
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.previous-company-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}

.previous-company-info span:first-child {
  font-weight: 600;
  color: #1f2937;
}

.tenure-badge {
  padding: 4px 10px;
  background: #dbeafe;
  color: #1e40af;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
}

/* �� */
.ec-form {
  margin-bottom: 1rem;
}

/* �����丮 �ȳ� */
.ec-history-notice {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: #ede9fe;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.ec-history-notice i {
  color: #7c3aed;
}

.ec-history-notice span {
  font-size: 0.8rem;
  color: #5b21b6;
}

/* Step 2B: ���� ȸ�� */
.ec-same-company-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: #f0f9ff;
  border: 1px solid #7dd3fc;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #0369a1;
}

.ec-same-company-info strong {
  color: #0c4a6e;
}