/* Active state for More Employee cards */
.emp-card.emp-active {
  border-color: rgb(110 231 183);
  background-color: rgb(236 253 245 / 0.6);
}
.dark .emp-card.emp-active {
  border-color: rgb(6 95 70 / 0.5);
  background-color: rgb(6 78 59 / 0.1);
}
.emp-card.emp-active .emp-role {
  color: rgb(5 150 105);
}
.dark .emp-card.emp-active .emp-role {
  color: rgb(52 211 153);
}
.emp-card.emp-active .emp-icon-btn {
  color: rgb(16 185 129);
}
.emp-card.emp-active .emp-arrow {
  background-color: rgb(16 185 129);
  border-color: rgb(16 185 129);
  color: white;
}
