
/* Ensure only the first letter of each block title is capitalized */
.pkp_block.block_information .title,
.pkp_block.block_browse .title,
.pkp_block.block_slider .title,
.pkp_block.block_custom .title {
    text-transform: capitalize !important;
}

/* Ensure navigation menu items have only the first letter of each word capitalized */
nav li a {
    text-transform: capitalize !important;
}

/* Ensure navbar menu items also have the first letter of each word capitalized */
.navbar-nav li a {
    text-transform: capitalize !important;
}


/* === Insight Metrics Block Style === */
.insight-metrics {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  border-top: 1px solid #ccc;
  padding-top: 20px;
  margin-top: 30px;
  font-family: sans-serif;
  font-size: 14px;
}

.insight-metrics .metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-left: 1px solid #333;
  padding-left: 20px;
  min-width: 150px;
}

.insight-metrics .metric-item a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #0077cc;
}

.insight-metrics .metric-item a div {
  width: 20px;
  height: 20px;
  background-color: #0077cc;
  color: #fff;
  text-align: center;
  line-height: 20px;
  border-radius: 2px;
  margin-right: 6px;
}

/* Container for logo and title */
.navbar-brand-container {
    display: flex;
    justify-content: center;  /* Center-align the content horizontally */
    align-items: center;      /* Align items vertically in the center */
    width: 100%;
}

/* If logo exists, ensure the title is centered relative to logo */
.navbar-brand-logo {
    margin-right: 20px; /* Optional: Add space between logo and title */
}

/* Optional: Style the navbar-brand for title text */
.navbar-brand {
    font-size: 24px; /* Adjust the size of the title */
    font-weight: bold;
}

/* Container for logo and title */
.navbar-brand-container {
    display: flex;
    justify-content: center;  /* Center-align the content horizontally */
    align-items: center;      /* Align items vertically in the center */
    width: 100%;
}

/* If logo exists, ensure the title is centered relative to logo */
.navbar-brand-logo {
    margin-right: 20px; /* Optional: Add space between logo and title */
}

/* Optional: Style the navbar-brand for title text */
.navbar-brand {
    font-size: 24px; /* Adjust the size of the title */
    font-weight: bold;
}

/* Add journal name styling */
.navbar-brand-title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-left: 10px;
}
