#right-view-applications-content {
  display: flex;
  flex-direction: column;
}

.va-subview {
  flex: 1 1 0%;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.va-frame {
  position: relative;
  overflow: hidden;
}

.va-search-input {
  font-family: "Outfit", sans-serif;
}

.va-search-row {
  flex-wrap: nowrap;
}

.va-filter {
  position: relative;
  flex-shrink: 0;
}

.va-filter-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.85rem;
  border-radius: 0.75rem;
  border: 1.5px solid rgba(var(--black-color-rgb), 0.08);
  background: var(--white-color);
  color: var(--color-gray-900);
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
  white-space: nowrap;
  box-shadow: 0 1px 4px rgba(var(--black-color-rgb), 0.03);
}

.va-filter-trigger:hover {
  border-color: rgba(var(--primary-color-rgb), 0.4);
  background: rgba(var(--primary-color-rgb), 0.04);
}

.va-filter[data-open="true"] .va-filter-trigger {
  border-color: rgba(var(--primary-color-rgb), 0.5);
  box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.1);
}

.va-filter-trigger-icon {
  font-size: 16px;
  color: var(--color-gray-500);
  flex-shrink: 0;
}

.va-filter-trigger-dot {
  flex-shrink: 0;
}

.va-filter-trigger-label {
  letter-spacing: -0.01em;
}

.va-filter-trigger-count {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-gray-500);
  background: rgba(var(--black-color-rgb), 0.05);
  padding: 1px 6px;
  border-radius: 6px;
  min-width: 18px;
  text-align: center;
}

.va-filter-trigger-chevron {
  font-size: 14px;
  color: var(--color-gray-400);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.va-filter[data-open="true"] .va-filter-trigger-chevron {
  transform: rotate(180deg);
}

.va-filter-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 30;
  min-width: 220px;
  background: var(--white-color);
  border: 1px solid rgba(var(--black-color-rgb), 0.08);
  border-radius: 0.75rem;
  box-shadow:
    0 12px 32px rgba(var(--black-color-rgb), 0.12),
    0 2px 8px rgba(var(--black-color-rgb), 0.05);
  padding: 0.35rem;
  display: none;
  flex-direction: column;
  gap: 1px;
  max-height: 320px;
  overflow-y: auto;
}

.va-filter[data-open="true"] .va-filter-menu {
  display: flex;
  animation: vaDropdownIn 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.va-filter-option {
  all: unset;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.6rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-gray-700);
  transition: background 0.15s ease;
  box-sizing: border-box;
  min-width: 0;
}

.va-filter-option:hover {
  background: rgba(var(--black-color-rgb), 0.04);
}

.va-filter-option.is-active {
  background: rgba(var(--primary-color-rgb), 0.1);
  color: var(--color-brand-green-ink-2, var(--primary-color));
  font-weight: 600;
}

.va-filter-option-dot {
  flex-shrink: 0;
}

.va-filter-option-dot--none {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(var(--black-color-rgb), 0.1);
  display: inline-block;
}

.va-filter-option-label {
  flex: 1;
  min-width: 0;
  letter-spacing: -0.01em;
}

.va-filter-option-count {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-gray-500);
  background: rgba(var(--black-color-rgb), 0.05);
  padding: 1px 6px;
  border-radius: 6px;
  min-width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.va-filter-option.is-active .va-filter-option-count {
  background: rgba(var(--primary-color-rgb), 0.18);
  color: var(--color-brand-green-ink-2, var(--primary-color));
}

@media (max-width: 540px) {
  .va-filter-trigger-label {
    display: none;
  }
  .va-filter-menu {
    min-width: 200px;
  }
}

@keyframes vaCardIn {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.va-grid {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  overflow-y: auto;
  padding: 0.5rem 0.5rem 3rem;
  flex: 1;
  min-height: 0;
  align-content: start;
}

.va-grid--two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 880px) {
  .va-grid--two-col {
    grid-template-columns: minmax(0, 1fr);
  }
}

.va-card {
  position: relative;
  background: var(--white-color);
  border: 1px solid var(--color-gray-200);
  border-radius: 1.25rem;
  padding: 1.4rem 1.5rem;
  box-shadow: 0 2px 12px rgba(var(--black-color-rgb), 0.03);
  cursor: pointer;
  transition:
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.3s ease;
  animation: vaCardIn 0.5s ease-out forwards;
  animation-fill-mode: both;
  opacity: 0;
}

.va-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    ellipse 600px 220px at 30% 0%,
    rgba(var(--primary-color-rgb), 0.06),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.va-card > * {
  position: relative;
}

.va-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow:
    0 20px 60px -12px rgba(var(--primary-color-rgb), 0.22),
    0 4px 16px rgba(var(--black-color-rgb), 0.07);
}

.va-card:hover::before {
  opacity: 1;
}

.va-card--withdrawn {
  background: var(--color-gray-50, #fafafa);
  border-style: dashed;
}

.va-card--withdrawn:hover {
  border-color: var(--color-gray-300);
  transform: none;
  box-shadow: 0 2px 12px rgba(var(--black-color-rgb), 0.03);
}

.va-card-top {
  margin-bottom: 1rem;
}

.va-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
}

.va-card--closed .va-status-row {
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.va-status-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.va-applied-top {
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-gray-500);
  white-space: nowrap;
}

.va-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.6rem;
}

.va-card-title {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--color-gray-900);
  font-family: "Outfit", sans-serif;
  transition: color 0.3s ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.va-card:hover .va-card-title {
  color: var(--color-brand-green-2dba3e, var(--primary-color));
}

.va-salary {
  flex: none;
  text-align: right;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-gray-900);
  white-space: nowrap;
  line-height: 1.3;
  font-family: "Outfit", sans-serif;
}

.va-applied-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 0.625rem;
  background: rgba(var(--primary-color-rgb), 0.13);
  border: 1px solid rgba(var(--primary-color-rgb), 0.25);
  color: var(--color-brand-green-3dcc4e);
  flex-shrink: 0;
  padding: 0;
  pointer-events: none;
  box-shadow: 0 1px 2px rgba(var(--primary-color-rgb), 0.08);
}

.va-applied-badge i,
.va-applied-badge svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.6;
}

.va-company-row .va-salary {
  margin-left: auto;
}

.va-salary-per {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-gray-500);
}

.va-company-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.va-logo {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 10px;
  color: var(--white-color);
  letter-spacing: 0.01em;
  box-shadow: inset 0 0 0 1px rgba(var(--black-color-rgb), 0.05);
  overflow: hidden;
}

.va-company-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-slate-800);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.va-card:hover .va-shared-chip {
  border-color: rgba(var(--primary-color-rgb), 0.4);
}

.va-shared-skipped svg.lucide {
  width: 13px;
  height: 13px;
  color: var(--color-gray-400);
}

.va-divider {
  height: 1px;
  background: var(--color-gray-200);
  margin: 0 -1.5rem 1rem;
}

.va-card--closed .va-divider {
  margin-top: 1rem;
}

.va-card--closed .va-foot {
  justify-content: flex-end;
}

.va-card--closed .va-actions {
  flex: 1;
}

.va-card--closed .va-actions .va-ghost-btn--danger {
  margin-right: auto;
}

.va-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.va-applied-foot {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-gray-500);
}

.va-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.va-ghost-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--color-gray-200);
  background: var(--white-color);
  color: var(--color-slate-800);
  font-family: "Outfit", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    border-color 0.15s,
    color 0.15s,
    background 0.15s;
}

.va-ghost-btn:hover {
  border-color: rgba(var(--black-color-rgb), 0.18);
  background: rgba(var(--black-color-rgb), 0.03);
}

.va-ghost-btn svg.lucide,
.va-ghost-btn i[data-lucide] {
  width: 14px;
  height: 14px;
}

.va-ghost-btn--danger {
  color: var(--danger-color, #dc2626);
  border-color: rgba(var(--danger-color-rgb, 220, 38, 38), 0.25);
  background: rgba(var(--danger-color-rgb, 220, 38, 38), 0.04);
}

.va-ghost-btn--danger:hover {
  background: rgba(var(--danger-color-rgb, 220, 38, 38), 0.1);
  border-color: rgba(var(--danger-color-rgb, 220, 38, 38), 0.45);
}

.va-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(var(--primary-color-rgb), 0.2);
  background: rgba(var(--primary-color-rgb), 0.05);
  color: var(--color-brand-green-3dcc4e, var(--primary-color));
  font-family: "Outfit", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.va-view-btn svg.lucide,
.va-view-btn i[data-lucide] {
  width: 14px;
  height: 14px;
}

.va-view-btn:hover,
.va-card:hover .va-view-btn {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-color-hover)
  );
  border-color: transparent;
  color: var(--black-color);
  box-shadow: 0 0 20px rgba(var(--primary-color-rgb), 0.25);
  transform: translateY(-1px);
}

.va-empty {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  color: var(--color-neutral-border-light);
}

.va-empty-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 1.25rem;
  background: rgba(var(--black-color-rgb), 0.025);
  border: 1.5px dashed rgba(var(--black-color-rgb), 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--color-gray-300);
}

.va-empty-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-gray-600);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.va-empty-desc {
  font-size: 0.85rem;
  color: var(--color-gray-400);
  line-height: 1.6;
  max-width: 340px;
  margin: 0 0 1.25rem;
}

@media (max-width: 720px) {
  .va-frame {
    padding: 1rem;
  }
  .va-card {
    padding: 1.1rem;
  }
  .va-divider {
    margin: 0 -1.1rem 1rem;
  }
  .va-card-title {
    font-size: 1.05rem;
  }
  .va-title-row {
    flex-direction: column;
    gap: 0.4rem;
  }
  .va-salary {
    text-align: left;
  }
  .va-foot {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .va-actions {
    justify-content: flex-end;
  }
}

.va-msg-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--color-gray-200);
  background: var(--white-color);
  color: var(--color-slate-800);
  font-family: "Outfit", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    border-color 0.15s,
    color 0.15s,
    background 0.15s,
    box-shadow 0.15s;
}

.va-msg-btn svg.lucide,
.va-msg-btn i[data-lucide] {
  width: 14px;
  height: 14px;
}

.va-msg-btn:hover {
  border-color: rgba(var(--primary-color-rgb), 0.4);
  color: var(--primary-color);
  background: rgba(var(--primary-color-rgb), 0.05);
}

.va-msg-btn-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  margin-left: 0.15rem;
  border-radius: 999px;
  background: var(--primary-color);
  color: var(--white-color);
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1;
}

.va-chat-drawer {
  width: 480px;
}

.va-chat-drawer .va-chat-drawer-face {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

.va-chat-drawer .va-chat-header.an-drawer-header {
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  gap: 0.75rem;
}

.va-chat-header-main {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  min-width: 0;
  flex: 1;
}

.va-chat-avatar {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white-color);
  letter-spacing: 0.01em;
  box-shadow: inset 0 0 0 1px rgba(var(--black-color-rgb), 0.05);
}

.va-chat-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.va-chat-name-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.va-chat-name {
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-gray-900);
  letter-spacing: -0.01em;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.va-chat-flag svg.lucide {
  width: 12px;
  height: 12px;
}

.va-chat-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-slate-800);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.va-chat-sub {
  font-size: 0.78rem;
  color: var(--color-gray-500);
}

.va-chat-body-wrap {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.va-chat-drawer .va-chat-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 1rem 1.25rem;
}

.va-chat-empty {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-gray-500);
  padding: 2rem 1rem;
}

.va-chat-drawer .va-chat-composer-wrap {
  flex-shrink: 0;
  padding: 0.75rem 1rem 1rem;
  border-top: 1px solid rgba(var(--black-color-rgb), 0.06);
  background: var(--white-color);
}

.va-chat-drawer .va-chat-lock {
  margin: 0.75rem 1rem 1rem;
}

@media (max-width: 540px) {
  .va-chat-drawer {
    width: 100vw;
  }
}
