/* Reset dan gaya umum */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #eef2f5;
  margin: 0;
  padding: 0;
}

/* Kontainer utama biodata */
.detail-container {
  max-width: 600px;
  margin: 40px auto;
  background-color: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Foto profil */
.detail-container img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #00bcd4;
  margin-bottom: 20px;
}

/* Informasi biodata */
.detail-info h2 {
  font-size: 26px;
  color: #333;
  margin-bottom: 10px;
}

.detail-info p {
  font-size: 16px;
  color: #555;
  margin: 6px 0;
}

/* Ikon sosial media */
.social-icons {
  margin-top: 20px;
}

.social-icons a {
  margin: 0 10px;
  font-size: 22px;
  color: #555;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #00bcd4;
}

/* Tombol kembali */
.back-link {
  display: block;
  margin-top: 30px;
  font-size: 16px;
  color: #007bff;
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
}

/* Responsif untuk layar kecil */
@media (max-width: 600px) {
  .detail-container {
    margin: 20px;
    padding: 20px;
  }

  .detail-container img {
    width: 140px;
    height: 140px;
  }

  .detail-info h2 {
    font-size: 22px;
  }

  .detail-info p {
    font-size: 15px;
  }
}
