/* Global */
body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background-color: #edf4f7; /* pilih salah satu warna */
  color: #333; /* warna teks */
}

/* Header */
header {
  background-color: #1d2656;
  color: white;
  padding: 20px 50px;
}

.header-text h1 {
  margin: 0;
  font-size: 1.8rem;
}

.header-text p {
  margin: 4px 0 0;
  font-size: 1rem;
}


.dosen-section {
  max-width: 900px;
  margin: 50px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 15px;
}

.section-title {
  text-align: center;
  font-size: 26px;
  color: #f5a623;
  margin-bottom: 40px;
}

.dosen-container {
  overflow-x: auto;
}

.dosen-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dosen-table th {
  background-color: #f5f5f5;
  text-align: left;
  padding: 15px;
  font-weight: bold;
  color: #222;
  border-bottom: 2px solid #ccc;
}

.dosen-table td {
  padding: 15px;
  color: #333;
  border-bottom: 1px solid #eee;
}

.dosen-table tbody tr:nth-child(odd) {
  background-color: #e6f2f7; /* biru muda */
}

.dosen-table tbody tr:nth-child(even) {
  background-color: #cce6f3; /* biru tua */
}

.link-publikasi {
  color: #f5a623;
  font-weight: bold;
  text-decoration: none;
}

.link-publikasi:hover {
  text-decoration: underline;
}
