.employee-card {
  display: inline-block;
  width: auto;
  max-width: 100%;
  box-sizing: border-box;
  background: linear-gradient(135deg, #f0f0f0, #d9e8f5);
  border: 2px solid #0a2f5c;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  font-family: 'Arial', sans-serif;
  overflow: hidden;
  margin: 16px;
}

.card-header {
  text-align: center;
  padding: 16px;
  background-color: #0a2f5c;
  color: white;
}

.employee-photo {
  border-radius: 50%;
  border: 3px solid #fff;
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-bottom: 12px;
}

.employee-name {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
}

.employee-position {
  margin: 4px 0 0;
  font-style: italic;
  font-size: 14px;
  color: #c0d6f2;
}

.card-stats {
  background-color: #ffffff;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.label {
  font-weight: bold;
  color: #0a2f5c;
}
