/* ─── Validação de Atividades (comitê) — distribui as 4 colunas ── */
.users-table th:nth-child(1),
.users-table td:nth-child(1) { width: 30%; }
.users-table th:nth-child(2),
.users-table td:nth-child(2) { width: 30%; }
.users-table th:nth-child(3),
.users-table td:nth-child(3) { width: 20%; text-align: center; }
.users-table th:nth-child(4),
.users-table td:nth-child(4) { width: 20%; text-align: right; }

.avaliar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  background: var(--gradient-btn);
  border-radius: 16px;
  font-family: var(--font-montserrat);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
  transition: opacity .2s;
}
.avaliar-btn:hover { opacity: .85; }

.atividades-comite-actions {
  display: flex;
  justify-content: flex-end;
  max-width: 1100px;
  margin-inline: auto;
  margin-top: 40px;
}

/* ─── Filtro por período — canto superior direito da tabela ─────── */
.atividades-comite-filtro {
  display: flex;
  justify-content: flex-end;
  max-width: 1100px;
  margin-inline: auto;
  margin-bottom: 16px;
}

.atividades-comite-filtro .select-wrap { position: relative; min-width: 220px; }
.atividades-comite-filtro .select-wrap::after {
  content: '▾';
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.4);
  pointer-events: none;
  font-size: 12px;
}

.atividades-comite-filtro .env-select {
  width: 100%;
  appearance: none;
  background: rgba(0,0,0,0.3);
  border: none;
  border-radius: 20px;
  padding: 14px 40px 14px 16px;
  font-family: var(--font-montserrat);
  font-size: 14px;
  letter-spacing: 0.28px;
  color: var(--white);
  cursor: pointer;
}
.atividades-comite-filtro .env-select option { background: #1a1a1a; color: var(--white); }
