
/* Container Sidebar */
.nav-container {
  box-sizing: border-box;
  width: 100%;
  /* min-height: 100vh; */
  margin: 0;
  padding: 0;
}

.nav-details {
  background: #ffffff;
  border: 2px solid #00275b;
  border-radius: 10px;
  margin: 0;
  margin-bottom: 10px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  overflow: hidden;
  width: 100%;
}

.nav-summary {
  background: #00275b;
  color: #ffbd59;
  padding: 10px 15px;
  cursor: pointer;
  font-weight: 600;
  border-radius: 10px;
  transition: background 0.3s, color 0.3s;
  list-style: none;
  width: 100%;
  margin: 0;
}

.nav-summary::-webkit-details-marker {
  display: none;
}

.nav-summary:hover {
  background: #004080;
  color: #ffffff;
}

.nav-details[open] summary {
  background: #ffbd59;
  color: #00275b;
}

.nav-content {
  display: flex;
  flex-direction: column;
  background: #fff7e6;
  border-top: 1px solid #00275b;
  width: 100%;
  margin: 0;
  padding: 0;
}

.nav-content a {
  color: #00275b;
  text-decoration: none;
  padding: 8px 15px;
  border-bottom: 1px solid #ddd;
  transition: background 0.2s, color 0.2s;
  font-weight: 500;
  width: 100%;
  display: block;
  box-sizing: border-box;
}

.nav-content a:last-child {
  border-bottom: none;
}

.nav-content a:hover {
  background: #ffa726;
  color: white;
}

.style-justify {
    text-align: justify;
}

.table-container {
    width: 90%;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

.profile-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #000; /* Border di luar tabel */
}

.profile-table th,
.profile-table td {
    border: 1px solid #000; /* Border tiap sel */
    padding: 10px;
    text-align: center;
}

.profile-table th {
    background-color: #f2f2f2;
}

.link-scholar {
    color: #1a73e8;
    text-decoration: none;
}

.link-scholar:hover {
    text-decoration: underline;
}

/* SIDEBAR TOOLS */
.nav-grid {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px;
}

.nav-grid a {
  width: 100%;
  display: block;
  transition: transform 0.2s ease;
}

.nav-grid a:hover {
  transform: scale(1.03);
}

.nav-grid img {
  width: 100%;
  height: auto;
  border-radius: 32px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: box-shadow 0.2s ease;
}

.nav-grid img:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.pkp_structure_page{
background-color: #f5f8ff; /* biru sangat muda */
}

/* FOOTER */
.pkp_brand_footer {
    display: none !important;
}

.pkp_structure_footer_wrapper {
    background-color: #00275b;
}

.pkp_footer_content {
    color: #ffffff;
}