/* ===============================
   COMPACT OJS JOURNAL CSS
   Small boxes + less padding
   Clean professional layout
   =============================== */

:root {
  --primary: #0a2a43;
  --secondary: #00a8b5;
  --accent: #ff6b35;
  --light: #f5f9fc;
  --text: #2c3e50;
  --border: #dde6ee;
}

/* ---------- BODY ---------- */
body {
  font-family: Arial, sans-serif;
  font-size: 11px;
  line-height: 1.35;
  background: #eef3f7;
  color: var(--text);
}

/* ---------- HEADER ---------- */
.pkp_structure_head {
  background: linear-gradient(135deg, #031b2f, #0b3557);
  border-bottom: 2px solid var(--secondary);
}

.pkp_site_name a {
  font-size: 26px;
  color: #fff !important;
  font-weight: 700;
}

/* ---------- NAV ---------- */
.pkp_navigation_primary > li > a {
  color: #fff !important;
  font-size: 13px;
  padding: 10px 12px;
}

.pkp_navigation_primary > li > a:hover {
  background: rgba(255,255,255,0.08);
}

/* ---------- MAIN CONTENT ---------- */
.pkp_structure_main {
  background: #fff;
  padding: 18px;
  border: 1px solid var(--border);
}

/* ---------- HEADINGS ---------- */
h1 { font-size: 18px; }
h2 { font-size: 15px; }
h3 { font-size: 13px; }

/* ---------- TEXT ---------- */
p {
  font-size: 12px;
  text-align: justify;
}

/* ---------- SMALL BOXES ---------- */
.pkp_block {
  background: #fff;
  padding: 6px;
  margin-bottom: 6px;
  border: 1px solid var(--border);
  font-size: 12px;
}

.pkp_block .title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 4px;
}

/* ---------- SIDEBAR TEXT ---------- */
.pkp_block .content {
  font-size: 13px;
}

/* ---------- INDEXING SECTION ---------- */

/* ===== INDEXING GRID ===== */

.brr-indexing-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin:20px 0;
}

/* ===== INDEXING CARD ===== */

.brr-index-card{
    background:#ffffff;
    border:1px solid #dcdcdc;
    padding:18px;
    text-align:center;
    text-decoration:none;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    min-height:140px;

    /* sharp corners */
    border-radius:0;

    transition:0.3s ease;
    box-shadow:0 2px 8px rgba(0,0,0,0.08);
}

/* ===== IMAGE ===== */

.brr-index-card img{
    width:100%;
    max-width:170px;
    height:60px;
    object-fit:contain;
    margin-bottom:10px;
}

/* ===== TEXT ===== */

.brr-index-card span{
    font-size:13px;
    font-weight:700;
    color:#222;
    letter-spacing:0.5px;
}

/* ===== HOVER EFFECT ===== */

.brr-index-card:hover{
    transform:translateY(-5px);
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
    border-color:#999;
}

/* ===== MOBILE ===== */

@media(max-width:600px){

    .brr-indexing-grid{
        grid-template-columns:1fr;
    }

}
/* ---------- BUTTON ---------- */
.cmp_button,
.block_make_submission_link {
  background: var(--secondary);
  color: #fff !important;
  padding: 8px 12px;  /* Ã°Å¸â€Â½ smaller */
  font-size: 13px;
  display: inline-block;
}

.cmp_button:hover {
  background: var(--primary);
}

/* ---------- ISSUE / ARTICLE BOX ---------- */
.obj_issue_summary,
.obj_article_summary {
  padding: 12px;  /* Ã°Å¸â€Â½ reduced */
  margin-bottom: 12px;
  border: 1px solid var(--border);
  background: #fff;
}

/* ---------- FOOTER ---------- */
.pkp_structure_footer_wrapper {
  background: #031b2f;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 12px 0;
  font-size: 12px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.pkp_structure_footer_wrapper .pkp_structure_footer,
.pkp_structure_footer_wrapper .pkp_footer {
  width: 100%;
  text-align: center;
}

/* Hide PKP logo */
.pkp_brand_footer img {
  display: none !important;
}

/* ---------- POPUP ---------- */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
}

.popup-overlay:target {
  display: flex;
}

.popup-box {
  background: #fff;
  width: 320px;   /* Ã°Å¸â€Â½ smaller popup */
  padding: 16px;
  border-top: 4px solid var(--accent);
}

.popup-box h2 {
  font-size: 16px;
}

.popup-box p {
  font-size: 13px;
}

.popup-close {
  float: right;
  font-size: 18px;
  text-decoration: none;
}

/* ---------- FORM ---------- */
input, textarea {
  font-size: 13px;
  padding: 8px;
  border: 1px solid var(--border);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .pkp_block img {
    max-width: 100px;
  }

  .pkp_site_name a {
    font-size: 20px;
  }
}
Slider images css
/* BRR Full Width Automatic Hero Slider */

.brr-auto-slider {
  position: relative !important;
  width: 100vw !important;
  max-width: 100vw !important;
  height: 380px !important;
  overflow: hidden !important;
  background: #062033 !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  margin-top: 0 !important;
  margin-bottom: 35px !important;
  border-bottom: 4px solid #00aebc !important;
  display: block !important;
}

.brr-auto-slide {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0;
  visibility: hidden;
  animation: brrAutoFade 15s infinite;
  overflow: hidden !important;
}

.brr-auto-slide:nth-child(1) {
  animation-delay: 0s;
}

.brr-auto-slide:nth-child(2) {
  animation-delay: 5s;
}

.brr-auto-slide:nth-child(3) {
  animation-delay: 10s;
}

.brr-auto-slide img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.brr-auto-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2, 28, 47, 0.90) 0%,
    rgba(2, 28, 47, 0.65) 34%,
    rgba(2, 28, 47, 0.25) 68%,
    rgba(2, 28, 47, 0.08) 100%
  );
  z-index: 2;
}

@keyframes brrAutoFade {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: scale(1);
  }

  6% {
    opacity: 1;
    visibility: visible;
  }

  30% {
    opacity: 1;
    visibility: visible;
    transform: scale(1.04);
  }

  38% {
    opacity: 0;
    visibility: hidden;
  }

  100% {
    opacity: 0;
    visibility: hidden;
    transform: scale(1);
  }
}

.brr-slider-text {
  position: absolute !important;
  z-index: 10 !important;
  top: 50% !important;
  left: 12% !important;
  transform: translateY(-50%) !important;
  max-width: 650px !important;
  color: #ffffff !important;
  text-align: left !important;
}

.brr-slider-text h1 {
  margin: 0 0 14px 0 !important;
  padding: 0 !important;
  font-size: 42px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.55) !important;
}

.brr-slider-text p {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 19px !important;
  line-height: 1.6 !important;
  font-weight: 400 !important;
  color: #eafcff !important;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.45) !important;
}

/* Remove unwanted paragraph spacing if OJS wraps slider in p tags */
.brr-auto-slider p {
  margin: 0 !important;
  padding: 0 !important;
}

/* Tablet */
@media (max-width: 992px) {
  .brr-auto-slider {
    height: 320px !important;
  }

  .brr-slider-text {
    left: 6% !important;
    right: 6% !important;
    max-width: 560px !important;
  }

  .brr-slider-text h1 {
    font-size: 34px !important;
  }

  .brr-slider-text p {
    font-size: 17px !important;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .brr-auto-slider {
    height: 250px !important;
  }

  .brr-slider-text {
    left: 22px !important;
    right: 22px !important;
    max-width: none !important;
  }

  .brr-slider-text h1 {
    font-size: 25px !important;
  }

  .brr-slider-text p {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }
}

Template css
/* =========================
   COMPACT TEMPLATE BOX
========================= */

.compact-template-box{
    background:#ffffff;
    border:1px solid #e2e8f0;
    border-radius:14px;
    box-shadow:0 6px 18px rgba(0,0,0,0.06);
    overflow:hidden;
    font-family:Arial, sans-serif;
    margin-bottom:20px;
    transition:0.3s ease;
}

.compact-template-box:hover{
    transform:translateY(-3px);
}

/* Header */
.compact-header{
    display:flex;
    align-items:center;
    gap:10px;
    padding:14px 16px;
    background:#f1f5f9;
    border-bottom:1px solid #e2e8f0;
}

/* SMALL IMAGE CONTROL */
.compact-header img{
    width:28px;
    height:28px;
    object-fit:contain;
}

/* Title */
.compact-header h3{
    font-size:16px;
    margin:0;
    color:#0f172a;
    font-weight:700;
}

/* Body */
.compact-body{
    padding:16px;
    text-align:center;
}

.compact-body p{
    font-size:13px;
    color:#475569;
    line-height:1.6;
    margin-bottom:16px;
}

/* Button */
.compact-btn{
    display:inline-block;
    background:#2563eb;
    color:#fff !important;
    text-decoration:none;
    padding:10px 18px;
    border-radius:8px;
    font-size:13px;
    font-weight:600;
    transition:0.3s ease;
}

.compact-btn:hover{
    background:#0f4c81;
}