.page {
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
}

.topbar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.topbar h1 {
  margin: 0;
  font-size: 32px;
}

.back-link,
.add-link {
  color: #ff7a00;
  text-decoration: none;
  font-weight: bold;
}

.employee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}

.employee-card {
  background: #fff;
  border-radius: 24px;
  padding: 26px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.profile-area {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 16px;
}

.employee-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ff7a00;
  background: #eee;
}

.gear-btn {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 36px;
  height: 36px;
  background: #222;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.employee-card h2 {
  margin: 10px 0;
}

.employee-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.btn-call,
.btn-line {
  flex: 1;
  padding: 11px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
}

.btn-call {
  background: #ff7a00;
  color: #fff;
}

.btn-line {
  background: #06c755;
  color: #fff;
}