.projects-table .table-responsive {
  border-top: 1px solid rgba(0, 45, 50, 0.04);
}

.projects-table .table-custom tbody tr {
  transition: background-color 0.15s ease;
}

.project-overview-cell {
  min-width: 260px;
}

.project-overview {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.project-overview__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(180deg, rgba(0, 45, 50, 0.92), rgba(13, 86, 94, 0.92));
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
}

.project-overview__title {
  color: var(--text-main);
  font-weight: 700;
  text-decoration: none;
}

.project-overview__title:hover {
  text-decoration: underline;
}

.project-overview__meta {
  font-size: 0.84rem;
  color: var(--text-muted);
}

.project-leader-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.project-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  border: 1px solid transparent;
}

.project-status-badge--active {
  background-color: rgba(25, 135, 84, 0.12);
  border-color: rgba(25, 135, 84, 0.18);
  color: #146c43;
}

.project-status-badge--archived {
  background-color: rgba(108, 117, 125, 0.12);
  border-color: rgba(108, 117, 125, 0.18);
  color: #495057;
}

.project-period-text {
  white-space: nowrap;
  color: var(--text-main);
  font-weight: 500;
}

.project-row-actions {
  justify-content: flex-end;
}

.project-row-actions .btn {
  white-space: nowrap;
}

@media (max-width: 991.98px) {
  .project-row-actions {
    justify-content: flex-start;
  }

  .project-period-text {
    white-space: normal;
  }
}
