


/* CARD */
.staff-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  overflow: hidden;
}

/* TITLE */
.staff-title {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  font-weight: 700;
}

.staff-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--accent-red);
  display: block;
  margin: 10px auto;
  border-radius: 3px;
}

/* TABLE */
.staff-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

/* HEADER */
.staff-table thead {
  background: var(--primary-blue);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 2;
}

.staff-table th {
  padding: 14px;
  text-align: left;
  font-weight: 600;
}

/* BODY */
.staff-table td {
  padding: 12px;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
}

/* 🔵 COLUMN BACKGROUND */
.staff-table td:nth-child(odd) {
  background: #fafbff;
}

/* 🔵 ROW STRIPES */
.staff-table tbody tr:nth-child(even) {
  background: #f6f8fc;
}

/* 🔵 HOVER EFFECT */
.staff-table tbody tr:hover {
  background: #e9efff !important;
  transform: scale(1.01);
}

/* 🔵 FIRST COLUMN STYLE */
.staff-table td:first-child {
  font-weight: bold;
  color: var(--primary-blue);
}

/* 🔵 HOVER COLUMN EFFECT (OPTIONAL) */
.staff-table td:hover {
  background: #dfe7ff;
}

/* SCROLL WRAPPER */
.table-responsive {
  overflow-x: auto;
  border-radius: 12px;
}

/* MOBILE */
@media(max-width:768px) {
  .staff-table {
    font-size: 13px;
  }

  .staff-card {
    padding: 20px;
  }
}