
.emp-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.emp-card {
  background: #138f3e;
  color: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  width: 250px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  text-align: center;
  transition: transform 0.3s ease;
}
.emp-card:hover {
  transform: scale(1.05);
}
.emp-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,0.85);
}
.emp-modal-content {
  background: #fff;
  margin: 5% auto;
  padding: 2rem;
  width: 90%;
  max-width: 600px;
  border-radius: 1rem;
  position: relative;
  animation: slideIn 0.4s ease forwards;
}
.emp-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #138f3e;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.2rem;
  cursor: pointer;
}
.emp-details div {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
}
.chart-bar {
  height: 12px;
  background: #ddd;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 1rem;
}
.chart-fill {
  height: 100%;
  background: #138f3e;
  animation: growFill 1.5s ease-out;
}
@keyframes growFill {
  from { width: 0% }
  to { width: 100% }
}
.emp-chat {
  margin-top: 2rem;
}
.emp-chat form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.emp-chat input, .emp-chat textarea {
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.emp-chat button {
  background: #138f3e;
  color: white;
  padding: 0.6rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
