:root {
  --tec-primary: #2563eb;
  --tec-primary-dark: #1d4ed8;
  --tec-bg: #f8fafc;
  --tec-surface: #ffffff;
  --tec-surface-soft: #f1f5f9;
  --tec-text: #0f172a;
  --tec-muted: #475569;
  --tec-border: #dbe4f0;
  --tec-border-strong: #c5d1e2;
  --tec-radius-sm: 12px;
  --tec-radius-md: 18px;
  --tec-radius-lg: 28px;
  --tec-shadow: 0 20px 55px rgba(15, 23, 42, 0.08);
  --tec-shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.06);
  --tec-gap-1: 12px;
  --tec-gap-2: 16px;
  --tec-gap-3: 24px;
  --tec-gap-4: 32px;
}

.talentor-edge *,
.talentor-edge *::before,
.talentor-edge *::after {
  box-sizing: border-box;
}

.talentor-edge,
.talentor-edge .tec-dashboard,
.talentor-edge .tec-auth-card,
.talentor-edge .tec-public-wrap,
.talentor-edge .tec-job-detail {
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif !important;
}

.talentor-edge {
  background: var(--tec-bg) !important;
  color: var(--tec-text) !important;
}

.talentor-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 16px 24px;
}

.talentor-edge .tec-dashboard {
  width: 100%;
}

.tec-dashboard,
.tec-auth-card,
.tec-panel,
.tec-card,
.tec-public-grid .tec-card,
.tec-job-left,
.tec-company-card,
.tec-modal {
  color: var(--tec-text) !important;
}

.tec-dashboard {
  display: flex;
  flex-wrap: wrap;
  gap: var(--tec-gap-3);
  align-items: flex-start;
  width: 100%;
  margin: 0 auto;
  padding: var(--tec-gap-3);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, var(--tec-bg) 42%);
  border-radius: var(--tec-radius-lg);
}

.layout-fixed .tec-sidebar {
  position: sticky;
  top: 24px;
  align-self: flex-start;
}

.tec-sidebar {
  background:
    linear-gradient(180deg, #081226 0%, #0f1c34 52%, #111f39 100%) !important;
  color: #dbe7fb !important;
  border-radius: 24px;
  padding: 24px 18px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 24px 60px rgba(8, 18, 38, 0.32);
}

.tec-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: #ffffff !important;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.tec-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--tec-primary);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.22);
}

.tec-sidebar nav {
  display: grid;
  gap: 8px;
}

.tec-sidebar a,
.tec-sidebar a:visited {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 18px;
  text-decoration: none !important;
  color: #e7edff !important;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.tec-sidebar a:hover,
.tec-sidebar a.active,
.tec-sidebar a.is-active {
  background: rgba(255, 255, 255, 0.16) !important;
  color: #ffffff !important;
  transform: translateX(2px);
}

.tec-main {
  flex: 1 1 640px;
  min-width: 0;
  background: rgba(255, 255, 255, 0.86) !important;
  backdrop-filter: blur(10px);
  border-radius: 28px;
  border: 1px solid rgba(219, 228, 240, 0.9);
  box-shadow: var(--tec-shadow);
  padding: 28px;
  overflow: hidden;
}

.tec-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--tec-gap-2);
  flex-wrap: wrap;
}

.tec-eyebrow {
  margin: 0;
  color: var(--tec-primary-dark) !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tec-heading-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 8px 0 10px;
}

.tec-top h1 {
  margin: 0;
  color: var(--tec-text) !important;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.tec-subtitle {
  margin: 0;
  max-width: 720px;
  color: var(--tec-muted) !important;
  font-size: 16px;
  line-height: 1.6;
}

.tec-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.talentor-edge .tec-section {
  display: none;
  margin-top: 28px;
}

.talentor-edge .tec-section.is-active,
.talentor-edge .tec-section:target {
  display: block;
  animation: tecFadeIn 0.22s ease;
}

@keyframes tecFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tec-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.tec-section-head h2,
.tec-panel-header h3,
.tec-section-title,
.tec-card h3 {
  margin: 0;
  color: var(--tec-text) !important;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.tec-section-note {
  margin: 6px 0 0;
  color: var(--tec-muted) !important;
}

.tec-grid,
.tec-showcase,
.tec-panels,
.tec-summary-grid {
  display: grid;
  gap: var(--tec-gap-2);
}

.tec-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tec-showcase {
  grid-template-columns: 1.1fr 0.9fr;
  margin-top: var(--tec-gap-3);
}

.tec-panels {
  grid-template-columns: 1.1fr 0.9fr;
}

.tec-summary-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tec-card,
.tec-panel,
.tec-auth-card {
  background: var(--tec-surface) !important;
  border: 1px solid var(--tec-border);
  border-radius: var(--tec-radius-md);
  box-shadow: var(--tec-shadow-soft);
}

.tec-structured-card,
.tec-talent-card,
.tec-summary-item,
.tec-admin-card {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--tec-border);
  background: var(--tec-surface) !important;
  box-shadow: var(--tec-shadow-soft);
  display: grid;
  gap: 12px;
}

.tec-structured-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.tec-structured-grid,
.tec-card-grid-2,
.tec-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.tec-structured-label {
  margin: 0;
  color: #64748b !important;
  font-size: 13px;
  font-weight: 700;
}

.tec-structured-value {
  margin: 0;
  color: var(--tec-text) !important;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.tec-btn-row,
.tec-admin-actions,
.tec-form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.tec-badge-floating {
  margin-left: auto;
}

.tec-card {
  padding: 20px;
}

.tec-panel {
  padding: 22px;
}

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

.tec-label {
  margin: 0 0 8px;
  color: var(--tec-muted) !important;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tec-card h2 {
  margin: 0;
  color: var(--tec-text) !important;
  font-size: clamp(28px, 2.6vw, 40px);
  letter-spacing: -0.04em;
}

.tec-muted {
  margin: 6px 0 0;
  color: var(--tec-muted) !important;
  line-height: 1.6;
}

.tec-highlight-card {
  padding: 24px;
  min-height: 100%;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(37, 99, 235, 0.02)),
    var(--tec-surface) !important;
}

.tec-highlight-card h3 {
  font-size: 26px;
}

.tec-card-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.tec-card-data-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.tec-card-data-item {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--tec-border);
  background: var(--tec-surface-soft);
}

.tec-card-data-label,
.tec-summary-item strong,
.tec-contact-item strong {
  display: block;
  margin-bottom: 6px;
  color: #64748b !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.tec-card-data-value,
.tec-summary-item span,
.tec-contact-item span {
  color: var(--tec-text) !important;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.55;
}

.tec-stat-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.tec-stat-pill {
  padding: 12px 14px;
  border-radius: 14px;
  background: #eff6ff;
  color: var(--tec-primary-dark) !important;
  font-weight: 800;
  border: 1px solid #cfe0ff;
}

.tec-progress {
  width: 100%;
  height: 10px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #e2e8f0;
}

.tec-progress span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--tec-primary), #60a5fa);
}

.tec-link,
.tec-link:visited {
  color: var(--tec-primary-dark) !important;
  text-decoration: none !important;
  font-weight: 800;
}

.tec-link:hover {
  color: var(--tec-primary) !important;
}

.tec-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.tec-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--tec-border);
  background: #ffffff;
}

.tec-item-title {
  margin: 0;
  color: var(--tec-text) !important;
  font-weight: 800;
  line-height: 1.35;
}

.tec-status,
.tec-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  border: 1px solid transparent;
}

.tec-status.success,
.tec-status.pending,
.tec-badge.blue {
  background: #e0f2fe !important;
  color: #1d4ed8 !important;
  border-color: #bfdbfe !important;
}

.tec-badge.green,
.tec-status.shortlisted {
  background: #dcfce7 !important;
  color: #166534 !important;
  border-color: #bbf7d0 !important;
}

.tec-badge.yellow {
  background: #fef3c7 !important;
  color: #92400e !important;
  border-color: #fde68a !important;
}

.tec-badge.red,
.tec-status.rejected {
  background: #fee2e2 !important;
  color: #991b1b !important;
  border-color: #fecdd3 !important;
}

.tec-status.new {
  background: #eef2ff !important;
  color: #3730a3 !important;
  border-color: #c7d2fe !important;
}

.tec-status.in_review {
  background: #fff7ed !important;
  color: #9a3412 !important;
  border-color: #fed7aa !important;
}

.tec-btn,
.tec-btn:visited,
.tec-btn:hover,
.tec-btn:focus,
.tec-btn span,
 .tec-btn *,
button.tec-btn,
button.tec-btn span,
button.tec-btn * {
  color: #ffffff !important;
  text-decoration: none !important;
}

.tec-btn,
button.tec-btn,
input[type="submit"].tec-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  background: linear-gradient(180deg, var(--tec-primary) 0%, var(--tec-primary-dark) 100%) !important;
  border: 1px solid var(--tec-primary-dark) !important;
  border-radius: 14px;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.18);
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.tec-btn:hover,
button.tec-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.22);
}

.tec-btn:disabled,
.tec-toggle:disabled,
select:disabled,
input:disabled,
textarea:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none !important;
}

.tec-btn.ghost,
.tec-btn.ghost:visited,
.tec-btn.ghost:hover,
.tec-btn.ghost:focus,
.tec-btn.ghost *,
button.tec-btn.ghost,
button.tec-btn.ghost span,
button.tec-btn.ghost * {
  color: var(--tec-text) !important;
}

.tec-btn.ghost,
button.tec-btn.ghost {
  background: #ffffff !important;
  border: 1px solid var(--tec-border-strong) !important;
  box-shadow: none !important;
}

.tec-btn.ghost:hover,
button.tec-btn.ghost:hover {
  background: #f8fbff !important;
}

.tec-btn.danger,
button.tec-btn.danger {
  background: #dc2626 !important;
  color: #ffffff !important;
  box-shadow: 0 12px 26px rgba(220, 38, 38, 0.22);
  border: 1px solid #dc2626;
}

.tec-btn.danger:hover,
button.tec-btn.danger:hover {
  background: #b91c1c !important;
  box-shadow: 0 18px 32px rgba(185, 28, 28, 0.28);
  color: #ffffff !important;
}

.tec-toggle-form {
  margin: 0;
}

.tec-toggle,
.tec-toggle:hover,
.tec-toggle:focus {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 16px 10px 12px;
  border-radius: 999px;
  border: 1px solid #e5e7eb !important;
  background: #e5e7eb !important;
  color: #111827 !important;
  font-weight: 800;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.06) !important;
}

.tec-toggle * {
  color: inherit !important;
}

.tec-toggle.on,
.tec-toggle.on:hover,
.tec-toggle.on:focus {
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%) !important;
  border-color: #16a34a !important;
  color: #ffffff !important;
  box-shadow: 0 12px 24px rgba(22, 163, 74, 0.28) !important;
}

.tec-toggle .dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #9ca3af;
  box-shadow: inset 0 0 0 2px #ffffff;
  transition: all 180ms ease;
}

.tec-toggle.on .dot {
  background: #ffffff;
  transform: translateX(6px);
}

.tec-notice,
.tec-errors {
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
}

.tec-notice p,
.tec-errors p {
  margin: 0;
}

.tec-notice.success {
  background: #ecfdf3;
  color: #166534 !important;
  border-color: #bbf7d0;
}

.tec-notice.error,
.tec-errors {
  background: #fef2f2;
  color: #b91c1c !important;
  border-color: #fecdd3;
}

.tec-auth-card {
  max-width: 520px;
  margin: 40px auto;
  padding: 28px;
}

.tec-auth-card h2 {
  margin: 0 0 10px;
  font-size: 32px;
  letter-spacing: -0.04em;
}

.tec-form,
.tec-form-grid {
  display: grid;
  gap: var(--tec-gap-2);
}

.tec-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tec-field,
.tec-form-grid label {
  display: grid;
  gap: 8px;
}

.tec-form-grid label {
  color: var(--tec-text) !important;
  font-weight: 700;
}

.tec-form-grid label.full {
  grid-column: 1 / -1;
}

.tec-form-grid > .full {
  grid-column: 1 / -1;
}

.tec-field input,
.tec-field select,
.tec-form-grid input,
.tec-form-grid select,
.tec-form-grid textarea {
  width: 100%;
  min-width: 0;
  padding: 13px 15px;
  border: 1px solid var(--tec-border-strong) !important;
  border-radius: 14px;
  background: #ffffff !important;
  color: var(--tec-text) !important;
  font: inherit;
  box-shadow: none !important;
  min-height: 46px;
  appearance: auto;
  cursor: pointer;
  transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.tec-field input:focus,
.tec-field select:focus,
.tec-form-grid input:focus,
.tec-form-grid select:focus,
.tec-form-grid textarea:focus {
  outline: none;
  border-color: var(--tec-primary) !important;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14) !important;
}

.tec-form-grid select[multiple],
.tec-field select[multiple] {
  min-height: 200px;
  padding: 12px;
  border-radius: 16px;
  cursor: default;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.08);
}

.tec-chip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

.tec-chip {
  border: 1px solid var(--tec-border);
  border-radius: 999px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f7f9fc;
  cursor: pointer;
  transition: all 140ms ease;
  user-select: none;
}

.tec-chip:hover {
  border-color: var(--tec-primary);
  color: var(--tec-primary);
}

.tec-chip.is-checked,
.tec-chip input:checked + span {
  background: linear-gradient(180deg, var(--tec-primary) 0%, var(--tec-primary-dark) 100%);
  color: #ffffff;
  border-color: var(--tec-primary-dark);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.25);
}

.tec-form-grid input,
.tec-form-grid select,
.tec-form-grid textarea {
  min-height: 46px;
}

.tec-form-grid textarea {
  min-height: 140px;
  resize: vertical;
}

.tec-form-grid small,
.tec-field small {
  color: var(--tec-muted);
  display: block;
  margin-top: 6px;
  line-height: 1.4;
}

.tec-form-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.tec-form-actions.align-left {
  justify-content: flex-start;
}

.tec-btn-block {
  width: 100%;
}

.tec-profile-form,
.tec-profile-shell {
  gap: 20px;
}

.tec-profile-shell {
  display: grid;
}

.tec-form-section {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--tec-border);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.tec-form-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.tec-form-section-head h3 {
  margin: 0;
  color: var(--tec-text) !important;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.tec-form-section-head p {
  margin: 6px 0 0;
  color: var(--tec-muted) !important;
  line-height: 1.6;
}

.tec-profile-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tec-mini-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eff6ff;
  border: 1px solid #cfe0ff;
  color: var(--tec-primary-dark) !important;
  font-size: 12px;
  font-weight: 800;
}

.tec-btn-small {
  min-height: 40px;
  padding: 10px 14px;
  font-size: 14px;
}

.tec-repeater,
.tec-repeater-list {
  display: grid;
  gap: 14px;
}

.tec-repeater-card {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--tec-border);
  background: #ffffff;
  box-shadow: var(--tec-shadow-soft);
}

.tec-repeater-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.tec-repeater-card-head strong {
  color: var(--tec-text) !important;
}

.tec-upload-status {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.tec-summary-grid-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tec-quick-apply-form {
  align-content: start;
}

.tec-quick-apply-form .tec-form-actions {
  margin-top: 6px;
}

.tec-section-stack {
  margin-top: 24px;
}

.tec-talent-grid {
  display: grid;
  gap: 16px;
}

.tec-talent-card {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--tec-border);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: var(--tec-shadow-soft);
}

.tec-talent-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.tec-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.tec-contact-item {
  padding: 12px 14px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--tec-border);
}

.tec-contact-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--tec-text) !important;
}

.tec-contact-item span {
  color: var(--tec-muted) !important;
  line-height: 1.5;
}

.tec-compact-copy {
  font-size: 13px;
  line-height: 1.5;
}

.tec-summary-item {
  padding: 16px;
  background: var(--tec-surface-soft);
  border: 1px solid var(--tec-border);
  border-radius: 16px;
}

.tec-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tec-tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--tec-primary-dark) !important;
  font-size: 12px;
  font-weight: 800;
}

.tec-logo-preview {
  max-width: 80px;
  max-height: 80px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid var(--tec-border);
}

.tec-company-logo-wrap,
.tec-logo-upload-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.tec-socials,
.tec-company-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.tec-socials a,
.tec-socials a:visited {
  margin-right: 0;
}

.tec-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #eff6ff;
  border: 1px solid #cfe0ff;
  color: var(--tec-primary-dark) !important;
  box-shadow: none !important;
}

.tec-social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.tec-rating-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.tec-rating-card {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--tec-border);
  background: var(--tec-surface-soft);
}

.tec-rating-card strong {
  color: #64748b !important;
  font-size: 13px;
}

.tec-rating-card span {
  color: #d97706 !important;
  font-size: 16px;
  letter-spacing: 0.06em;
}

.tec-rating-card em {
  color: var(--tec-text) !important;
  font-style: normal;
  font-weight: 800;
}

.tec-toast-stack,
#tec-toast-stack {
  position: fixed;
  top: 18px;
  right: 18px;
  display: grid;
  gap: 10px;
  z-index: 9999;
}

.tec-toast {
  background: #0f172a;
  color: #ffffff !important;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.28);
  opacity: 0.98;
  transition: opacity 180ms ease, transform 180ms ease;
}

.tec-toast.is-hide {
  opacity: 0;
  transform: translateY(-6px);
}

.tec-job-filter-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 28px;
  padding: 20px;
  border: 1px solid var(--tec-border);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--tec-shadow-soft);
}

.tec-job-filter-bar label {
  display: grid;
  gap: 8px;
}

.tec-multi-select {
  min-height: 164px;
  padding-right: 6px;
}

.tec-table-shell {
  overflow-x: auto;
  width: 100%;
}

.tec-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.tec-table th,
.tec-table td {
  padding: 14px 10px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--tec-border);
  color: var(--tec-text) !important;
}

.tec-table th {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tec-muted) !important;
}

.tec-inline-form {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.tec-inline-form select {
  min-width: 150px;
}

.tec-public-wrap,
.tec-job-detail {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 40px;
}

.tec-job-filter-bar {
  background: #ffffff;
  padding: 18px;
  border: 1px solid var(--tec-border);
  border-radius: 18px;
  box-shadow: var(--tec-shadow-soft);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 18px;
}

.tec-job-filter-bar label span {
  font-weight: 700;
  color: var(--tec-text);
  margin-bottom: 6px;
}

.tec-public-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tec-public-grid .tec-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-radius: 18px;
  border: 1px solid var(--tec-border);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 24px 38px rgba(15, 23, 42, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.tec-public-grid .tec-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 50px rgba(15, 23, 42, 0.12);
}

.tec-public-grid .tec-card h3 {
  margin: 0;
  font-size: 19px;
}

.tec-card-data-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.tec-card-data-item {
  background: #f5f7fb;
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid #e4e9f2;
}

.tec-card-data-label {
  display: block;
  font-weight: 700;
  color: var(--tec-muted);
  font-size: 13px;
}

.tec-card-data-value {
  font-weight: 800;
  color: var(--tec-text);
}

.tec-public-grid .tec-card .tec-btn {
  margin-top: auto;
  align-self: flex-start;
}

.tec-structured-card {
  word-break: break-word;
}

.tec-card-grid-2,
.tec-card-grid-3 {
  display: grid;
  gap: 10px;
}

.tec-card-grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.tec-card-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.tec-job-detail {
  background: transparent;
}

.tec-job-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.tec-job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.tec-job-meta span {
  padding: 10px 12px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid var(--tec-border);
  color: var(--tec-muted) !important;
  font-weight: 700;
}

.tec-job-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.tec-job-body {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 22px;
  margin-top: 24px;
}

.tec-job-left,
.tec-company-card {
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--tec-border);
  border-radius: var(--tec-radius-md);
  box-shadow: var(--tec-shadow-soft);
}

.tec-job-left h3,
.tec-job-left h4,
.tec-company-card h4 {
  color: var(--tec-text) !important;
}

.tec-job-left p,
.tec-company-card p {
  line-height: 1.7;
}

.tec-modal-backdrop {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.6);
  z-index: 9999;
}

.tec-modal-backdrop.is-open {
  display: flex;
}

.tec-modal {
  width: min(960px, 100%);
  max-height: min(90vh, 960px);
  overflow: auto;
  padding: 24px;
  background: #ffffff !important;
  border: 1px solid var(--tec-border) !important;
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.28);
}

.tec-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.tec-modal-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tec-modal-form label span {
  display: block;
}

.tec-modal-note {
  margin: 8px 0 0;
  color: var(--tec-muted) !important;
  line-height: 1.6;
}

.tec-close,
.tec-close:hover,
.tec-close:focus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--tec-border) !important;
  background: #ffffff !important;
  color: var(--tec-text) !important;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  box-shadow: none !important;
}

.talentor-edge.tec-modal-open {
  overflow: hidden;
}

.hidden,
.tec-hidden {
  display: none !important;
}

.talentor-edge a,
.talentor-edge a:visited,
.talentor-edge .menu a,
.talentor-edge .site-header a,
.talentor-edge header a,
.talentor-edge .site-navigation a,
.talentor-edge .entry-content a {
  color: var(--tec-primary-dark) !important;
}

label span,
h1,
h2,
h3,
h4,
h5,
h6,
.tec-label,
.tec-item-title {
  color: var(--tec-text) !important;
}

@media (max-width: 1200px) {
  .tec-dashboard {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .layout-fixed .tec-sidebar {
    position: relative;
    top: auto;
  }

  .tec-sidebar {
    padding: 18px;
  }

  .tec-sidebar nav {
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .tec-sidebar nav::-webkit-scrollbar {
    height: 6px;
  }

  .tec-grid,
  .tec-showcase,
  .tec-panels,
  .tec-summary-grid,
  .tec-summary-grid-compact,
  .tec-public-grid,
  .tec-job-body,
  .tec-contact-grid,
  .tec-card-data-grid,
  .tec-rating-list,
  .tec-job-filter-bar {
    grid-template-columns: 1fr;
  }
}

/* Mid-break refinements for board & filters */
@media (max-width: 1024px) {
  .tec-public-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tec-job-filter-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Compact layouts for tablets/phones */
@media (max-width: 720px) {
  .tec-dashboard.layout-fixed {
    padding: 12px;
  }

  .tec-main {
    padding: 16px;
  }

  .tec-top h1,
  .tec-section-head h2 {
    font-size: 20px;
    line-height: 1.3;
  }

  .tec-public-wrap {
    padding: 20px 14px 32px;
  }

  .tec-job-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .tec-job-actions {
    width: 100%;
    gap: 10px;
  }

  .tec-job-actions .tec-btn {
    width: 100%;
    text-align: center;
  }

  .tec-job-filter-bar {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .tec-form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .tec-form-actions .tec-btn {
    width: 100%;
  }

  .tec-showcase,
  .tec-panels {
    grid-template-columns: 1fr;
  }

  .tec-sidebar nav {
    grid-auto-flow: row;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
  }
}

/* Extra small viewports */
@media (max-width: 540px) {
  .tec-card,
  .tec-panel,
  .tec-auth-card {
    padding: 14px;
  }

  .tec-main {
    padding: 12px;
  }

  .tec-heading-row h1 {
    font-size: 19px;
  }

  .tec-job-meta span {
    font-size: 13px;
  }

  .tec-public-grid {
    grid-template-columns: 1fr;
  }

  .tec-job-detail {
    padding: 20px 12px 28px;
  }

  .tec-dashboard .tec-btn,
  .tec-toggle {
    width: 100%;
  }

  .tec-toggle {
    justify-content: flex-start;
  }
}
@media (max-width: 860px) {
  .tec-main {
    padding: 20px;
    border-radius: 22px;
  }

  .tec-top {
    flex-direction: column;
    align-items: stretch;
  }

  .tec-actions {
    justify-content: flex-start;
  }

  .tec-form-grid {
    grid-template-columns: 1fr;
  }

  .tec-profile-grid,
  .tec-modal-form {
    grid-template-columns: 1fr;
  }

  .tec-form-grid label.full {
    grid-column: auto;
  }

  .tec-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .tec-form-actions {
    justify-content: stretch;
  }

  .tec-form-actions .tec-btn {
    width: 100%;
  }

  .tec-form-section,
  .tec-repeater-card,
  .tec-talent-card {
    padding: 16px;
  }

  .tec-card-topline {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .tec-dashboard {
    padding: 10px;
    gap: 14px;
    border-radius: 0;
  }

  .tec-sidebar,
  .tec-main,
  .tec-panel,
  .tec-card,
  .tec-auth-card,
  .tec-job-left,
  .tec-company-card,
  .tec-modal {
    border-radius: 18px;
  }

  .tec-sidebar {
    padding: 14px;
  }

  .tec-sidebar a,
  .tec-sidebar a:visited {
    padding: 12px 14px;
    font-size: 14px;
  }

  .tec-main {
    padding: 16px;
  }

  .tec-top h1 {
    font-size: 32px;
  }

  .tec-card,
  .tec-panel {
    padding: 18px;
  }

  .tec-job-actions,
  .tec-actions,
  .tec-panel-header,
  .tec-section-head {
    align-items: stretch;
  }

  .tec-job-actions .tec-btn,
  .tec-actions .tec-btn,
  .tec-actions .tec-toggle,
  .tec-panel-header .tec-btn {
    width: 100%;
  }

  .tec-modal-backdrop {
    padding: 10px;
  }

  .tec-modal {
    padding: 18px;
    max-height: 92vh;
  }

  .tec-modal-form {
    grid-template-columns: 1fr;
  }
}
* .tec-btn * {
  color: #ffffff !important;
}