html, body {
  background: #F1F1F1; /* You can change the color to whatever you prefer */
}

.pkp_navigation_primary_row {
  background-color: #1F5E96; /* You can change the color to whatever you prefer */
}

#navigationPrimary>li>a {
  padding-bottom: 6px;
  border-bottom-width: 4px;
  color: white;
}

.pkp_navigation_search_wrapper a, .pkp_navigation_search_wrapper a:hover {
  padding-bottom: 6px;
  border-bottom-width: 4px;
  color: white;
}

.footer-brand-image {
  max-width: 150%; /* Set the maximum width to 100% of the container */
  height: auto;
  width: auto;
  margin-left: -80px; /* Allow the image to scale with the container while maintaining aspect ratio */
  margin-top: -80px;
}

/* Button styles */
.button {
  display: inline-block;
  width: 200px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  text-transform: capitalize;
  font-family: inherit;
  color: #1F5E96;
  border: 2px solid #1F5E96;
  text-decoration: none;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

/* Button hover styles */
.button:hover {
  background-color: #1F5E96;
  border-color: #1F5E96;
  color: white;
}

/* Galley styles */
.obj_galley_link {
  background: #1F5E96;
  color: white;
  border: 2px solid #1F5E96;
}

/* Galley hover styles */
.obj_galley_link:hover {
  background: #F1F1F1;
  color: #1F5E96;
  border-color: #1F5E96;
  border: 2px solid #1F5E96;
}

/* Editorial Page Button Styles */
.page_editorial_team {
  padding: 5px;
}

.editor-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

button {
  background-color: #FFFFFF;
  color: inherit;
  border: 2px solid #1F5E96;
  border-radius: 2px;
  padding: 15px 30px;
  font-size: 14px;
  font-weight: normal;
  text-transform: capitalize;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #1F5E96;
  color: #FFFFFF;
}

.page-container {
  display: flex;
  flex-wrap: wrap; /* Allow the columns to wrap on smaller screens */
}

.page-container .column {
  flex: 1;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-right: 10px; /* Adjust the gap between columns as needed */
  margin-bottom: 10px; /* Add bottom margin to create spacing between rows */
}

.page-container .column:last-child {
  margin-right: 0;
  margin-bottom: 10px;
}

.page-container .single-column {
  flex: 100%; /* Make the single-column span the full width */
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-right: 0;
  margin-bottom: 10px; /* Add bottom margin to create spacing between rows */
}

.payment-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #1F5E96;
  color: #f1f1f1;
  border: none;
  border-radius: 2px;
  text-decoration: none;
  font-weight: bold;
}

.payment-button:hover {
  background-color: #2c3b38;
  color: #f1f1f1;
}

.payment-button:active {
  background-color: #2c3b38;
  color: #f1f1f1;
}
