/* Estilos específicos para a tela de perfil - Tema azul claro */
.app-profile app-generic-crud table.mat-table th,
.app-profile app-generic-crud table.mat-table th.mat-header-cell,
.app-profile app-generic-crud .mat-header-row,
.app-profile app-generic-crud .mat-mdc-header-row,
.app-profile app-generic-crud tr[mat-header-row],
.app-profile app-generic-crud th.mat-header-cell {
  background-color: #62C7E0 !important;
  color: white !important;
}

/* Estilo para a coluna de ações na tela de perfil */
.app-profile app-generic-crud table.mat-table td:last-child,
.app-profile app-generic-crud .mat-column-acoes,
.app-profile app-generic-crud tr.mat-row td:last-child,
.app-profile app-generic-crud tr.mat-mdc-row td:last-child,
.app-profile app-generic-crud tr[mat-row] td:last-child,
.app-profile app-generic-crud td.acoes-cell {
  background-color: #62C7E0 !important;
  color: white !important;
}

/* Forçar a cor dos botões e ícones na coluna de ações */
.app-profile app-generic-crud td:last-child button,
.app-profile app-generic-crud td:last-child mat-icon,
.app-profile app-generic-crud td.mat-column-acoes button,
.app-profile app-generic-crud td.mat-column-acoes mat-icon,
.app-profile app-generic-crud td.acoes-cell button,
.app-profile app-generic-crud td.acoes-cell mat-icon {
  color: white !important;
}

/* Forçar a cor das imagens na coluna de ações */
.app-profile app-generic-crud td:last-child img,
.app-profile app-generic-crud td.mat-column-acoes img,
.app-profile app-generic-crud td.acoes-cell img {
  filter: brightness(0) invert(1) !important;
}

/* Seletores extremamente específicos para garantir que as células da coluna de ações tenham a cor correta */
.app-profile app-generic-crud .mat-mdc-table .mdc-data-table__header-row .mdc-data-table__header-cell,
.app-profile app-generic-crud .mat-mdc-table .mdc-data-table__row .mdc-data-table__cell:last-child {
  background-color: #62C7E0 !important;
  color: white !important;
}

/* Linhas alternadas na tabela de perfil */
.app-profile app-generic-crud .mat-row:nth-child(even),
.app-profile app-generic-crud .mat-mdc-row:nth-child(even),
.app-profile app-generic-crud tr[mat-row]:nth-child(even) {
  background-color: #F2F2F2 !important;
}

.app-profile app-generic-crud .mat-row:nth-child(odd),
.app-profile app-generic-crud .mat-mdc-row:nth-child(odd),
.app-profile app-generic-crud tr[mat-row]:nth-child(odd) {
  background-color: white !important;
}
