/* ==================================================
   STAFF TABLE – Personal cercetare
   Joomla 5 / T4 Blank Template
   ================================================== */

.staff-table {
  width: 75%;
  max-width: 1000px;
  margin: 40px auto;
  border-collapse: separate;
  border-spacing: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
}

.staff-table thead th {
  background: linear-gradient(135deg, #3f8f63, #2f6f4d);
  color: #ffffff;
  padding: 20px;
  font-size: 1.25rem;
  text-align: center;
}

.staff-table td {
  padding: 14px 18px;
  vertical-align: middle;
}

.staff-table .person:nth-of-type(even) {
  background-color: #f4f8f6;
}

.staff-table .person:hover {
  background-color: #e3f1ea;
}

.staff-table .name {
  font-weight: 600;
  width: 30%;
}

.staff-table .role {
  text-align: center;
  width: 40%;
}

.staff-table .contact {
  text-align: center;
  width: 30%;
}

.staff-table .contact img {
  max-width: 260px;
  height: auto;
}

.staff-table .section td {
  background-color: #d8efe4;
  color: #1f5a3e;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.6px;
}

/* ==================================================
   Butoane (Abstract,References,Full article)
   ================================================== */
.btn-custom-green {
    background-color: #2e7d32;
    color: #ffffff;
    border-radius: 6px;
}

.btn-custom-green:hover {
    background-color: #1b5e20;
}
.article-buttons {
    display: flex;
    gap: 12px;
}
.article-buttons .btn:hover,
.article-buttons .btn:focus {
    color: #ffc107;
    background-color: #1b5e20;
    border-color: #1b5e20;
}


