.navbar-default {
  background-color: #2f6d9d;
  border-color: #2f6d9d;
}

.navbar-brand-logo img {
  max-height: 100%;
  width: 100%;
}

.navbar-brand {
  float: none;
  height: auto;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
  display: flex;
  justify-content: center;
}

a {
  color: #2f6d9d;
}
a:hover {
  color: #2f6d9d;
}
/* Reviewer */

.reviewer-header-jurnal {
  padding: 0.5rem;
  text-align: center;
}

.reviewer-header-jurnal h1 {
  font-size: 3rem;
  line-height: 2rem;
  color: #141313;
  font-style: italic;
}

.reviewer-container-editor {
  display: flex;
  flex-direction: column;

  padding: 0.75rem;
  background-color: #5bb4f1;

  margin: 0.75rem;
  border-radius: 0.5rem;
  max-width: 100%;
  align-items: center;
  text-align: center;
}
.reviewer-profile-editor {
  font-size: 1.3rem;
  line-height: 0.5;
  margin-top: 0;
  color: #374151;
}

.reviewer-container-editor h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 0.5;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  color: #374151;
}

.reviewer-container-editor p {
  font-size: 1.3rem;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 0.125rem;
  word-break: break-all;
  color: #374151;
}

.reviewer-container-card {
  display: grid; /* Change from flex to grid */
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  gap: 1rem;
  padding: 0.75rem;
  max-width: 100%;
}

.reviewer-profile-card {
  background-color: #5bb4f1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
}

.reviewer-profile-editor-mobile {
  display: none;
}

.reviewer-profile-image {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer-profile-info {
  color: #374151;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.reviewer-profile-info p:first-child {
  font-weight: 700;
}

.reviewer-profile-info p {
  font-size: 1.3rem;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 0.125rem;
  word-break: break-all;
}

/* Media Query for mobile devices */
@media (max-width: 768px) {
  .reviewer-container-card {
    grid-template-columns: 1fr; /* Stack the cards on mobile */
  }
  .reviewer-profile-name {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    line-height: 1;
    margin-top: 0;
    margin-bottom: 0.25rem;
  }
  .reviewer-container-editor {
    display: none;
  }
  .reviewer-profile-editor-mobile {
    background-color: #5bb4f1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
  }
}

@media (max-width: 768px) {
  .reviewer-header-jurnal h1 {
    font-size: 2.5rem;
  }
}