/* Import Members CSS */
.im-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 24px;
}

.im-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.im-header-left h2 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  display: inline-block;
  margin-right: 8px;
}

.im-breadcrumb {
  font-size: 11px;
  color: #6b7280;
  display: inline-block;
}

.im-btn-outline {
  border: 1px solid #e5e7eb;
  background: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: 0.2s;
}

.im-btn-outline:hover { background: #f9fafb; }

.im-btn-primary {
  background: #3b82f6;
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: 0.2s;
  width: 100%;
}

.im-btn-primary:hover { background: #2563eb; }

.im-btn-csv {
  background: #3b82f6;
  border: none;
  padding: 7px 14px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: 0.2s;
  display: inline-block;
  margin-right: 10px;
}

.im-btn-csv:hover { background: #2563eb; }

/* Layout */
.im-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

@media (max-width: 1024px) {
  .im-layout { grid-template-columns: 1fr; }
}

/* Card */
.im-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 24px;
}

.im-card-header {
  padding: 16px 24px;
  border-bottom: 1px solid #e5e7eb;
}

.im-card-title {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}

.im-card-body { padding: 24px; }

/* Checkbox rows */
.im-check-group { margin-bottom: 20px; }

.im-check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.im-check-row input[type="checkbox"] {
  margin-top: 2px;
  width: 15px;
  height: 15px;
  accent-color: #3b82f6;
  flex-shrink: 0;
  cursor: pointer;
}

.im-check-label {
  font-size: 12px;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
}

.im-check-desc {
  font-size: 11px;
  color: #6b7280;
  margin-top: 3px;
  line-height: 1.5;
}

/* File upload */
.im-file-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.im-file-hint {
  font-size: 11px;
  color: #6b7280;
  margin-bottom: 20px;
}

/* Textarea */
.im-form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}

.im-textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 12px;
  font-family: inherit;
  color: #374151;
  resize: vertical;
  outline: none;
  box-sizing: border-box;
  min-height: 100px;
  transition: border-color 0.2s;
}

.im-textarea:focus { border-color: #3b82f6; }

/* Warning */
.im-warning {
  background: #fef9c3;
  border: 1px solid #fde047;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 11px;
  color: #854d0e;
  line-height: 1.5;
  margin-bottom: 20px;
}

.im-warning strong { color: #713f12; }

/* Divider */
.im-divider {
  border: none;
  border-top: 1px dashed #e5e7eb;
  margin: 20px 0;
}

/* KB Cards */
.im-kb-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #eff6ff;
  color: #3b82f6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 14px;
}

.im-kb-title {
  font-size: 12px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
  line-height: 1.4;
}

.im-kb-desc {
  font-size: 11px;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 12px;
}

.im-link-blue {
  font-size: 10px;
  font-weight: 700;
  color: #3b82f6;
  text-decoration: none;
  text-transform: uppercase;
}

.im-link-blue:hover { text-decoration: underline; }

/* FAQ */
.im-faq-title { font-size: 14px; font-weight: 700; color: #111827; margin-bottom: 16px; }

.im-faq-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #f3f4f6;
  cursor: pointer;
}

.im-faq-item:last-child { border-bottom: none; }
.im-faq-q { font-size: 12px; font-weight: 500; color: #374151; }
.im-faq-icon { color: #9ca3af; font-size: 13px; }
.im-faq-item:hover .im-faq-q { color: #111827; }
.im-faq-item:hover .im-faq-icon { color: #111827; }

/* Single Illus card */
.im-illus-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 175px;
  margin-bottom: 24px;
}

.im-illus-card-title { font-size: 14px; font-weight: 700; color: #111827; margin-bottom: 10px; }
.im-illus-card p { font-size: 11px; color: #6b7280; line-height: 1.5; margin-bottom: 20px; max-width: 55%; }
.im-illus-card a { font-size: 10px; font-weight: 700; color: #3b82f6; text-transform: uppercase; text-decoration: none; }
.im-illus-card a:hover { text-decoration: underline; }
.im-illus-img { position: absolute; right: 16px; bottom: 16px; width: 140px; height: auto; }
