/* ================================
   JABFS INDEXING DATABASES SIDEBAR
   FIXED RESPONSIVE VERSION
   ================================ */

.jabfs-indexing-box {
  width: 100% !important;
  max-width: 320px !important;
  margin: 25px auto !important;
  padding: 28px 16px 34px !important;
  box-sizing: border-box !important;
  background: linear-gradient(145deg, #eeeeee 0%, #f8f8f8 45%, #e6e6e6 100%);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 20px 42px rgba(0,0,0,0.12);
  animation: jabfsBoxReveal 0.8s ease both;
}

/* Large title inside grey box */
.jabfs-indexing-box h3 {
  margin: 0 0 28px !important;
  padding: 0 !important;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 38px !important;
  line-height: 0.98 !important;
  font-weight: 500 !important;
  letter-spacing: 0.5px;
  color: #2f3c4a !important;
  text-transform: uppercase;
  white-space: normal !important;
  word-break: normal !important;
  animation: jabfsTitleDrop 0.8s ease both;
}

/* Two-column logo grid */
.jabfs-indexing-grid {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 30px 20px !important;
  align-items: center !important;
  justify-items: center !important;
  box-sizing: border-box !important;
}

/* Logo card */
.jabfs-index-card {
  width: 118px !important;
  height: 150px !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  background: #ffffff;
  border: 1px solid #9d9d9d;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 16px !important;
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 16px 24px rgba(0,0,0,0.18),
    0 4px 7px rgba(0,0,0,0.08);
  transform: rotate(-1deg);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  animation: jabfsCardFade 0.75s ease both;
}

.jabfs-index-card:nth-child(even) {
  transform: rotate(0.5deg);
}

.jabfs-index-card:nth-child(3n) {
  transform: rotate(-0.4deg);
}

/* Shine animation */
.jabfs-index-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    transparent 35%,
    rgba(255,255,255,0.8) 50%,
    transparent 65%,
    transparent 100%
  );
  transform: translateX(-130%);
  transition: transform 0.7s ease;
}

.jabfs-index-card:hover::before {
  transform: translateX(130%);
}

.jabfs-index-card:hover {
  transform: translateY(-8px) scale(1.04) rotate(0deg);
  border-color: #6f6f6f;
  box-shadow:
    0 24px 34px rgba(0,0,0,0.24),
    0 8px 12px rgba(0,0,0,0.10);
}

/* Logo image */
.jabfs-index-card img {
  max-width: 100% !important;
  max-height: 82px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.jabfs-index-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.15) contrast(1.08);
}

/* Animation delay */
.jabfs-index-card:nth-child(1) { animation-delay: 0.05s; }
.jabfs-index-card:nth-child(2) { animation-delay: 0.10s; }
.jabfs-index-card:nth-child(3) { animation-delay: 0.15s; }
.jabfs-index-card:nth-child(4) { animation-delay: 0.20s; }
.jabfs-index-card:nth-child(5) { animation-delay: 0.25s; }
.jabfs-index-card:nth-child(6) { animation-delay: 0.30s; }
.jabfs-index-card:nth-child(7) { animation-delay: 0.35s; }
.jabfs-index-card:nth-child(8) { animation-delay: 0.40s; }
.jabfs-index-card:nth-child(9) { animation-delay: 0.45s; }
.jabfs-index-card:nth-child(10) { animation-delay: 0.50s; }
.jabfs-index-card:nth-child(11) { animation-delay: 0.55s; }
.jabfs-index-card:nth-child(12) { animation-delay: 0.60s; }
.jabfs-index-card:nth-child(13) { animation-delay: 0.65s; }
.jabfs-index-card:nth-child(14) { animation-delay: 0.70s; }

@keyframes jabfsBoxReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes jabfsTitleDrop {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes jabfsCardFade {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
  to {
    opacity: 1;
  }
}

/* Extra narrow sidebar fix */
@media (max-width: 420px) {
  .jabfs-indexing-box {
    max-width: 280px !important;
    padding: 24px 12px 30px !important;
  }

  .jabfs-indexing-box h3 {
    font-size: 32px !important;
  }

  .jabfs-indexing-grid {
    gap: 24px 14px !important;
  }

  .jabfs-index-card {
    width: 105px !important;
    height: 135px !important;
    padding: 12px !important;
  }

  .jabfs-index-card img {
    max-height: 70px !important;
  }
}
/* ==============================
   JABFS JOURNAL DESCRIPTION
   Medium size, website-style layout
   ============================== */

.jabfs-desc-box {
  max-width: 920px;
  margin: 25px auto;
  padding: 26px 28px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  font-family: "Georgia", "Times New Roman", serif;
  box-sizing: border-box;
}

.jabfs-desc-logo {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}

.jabfs-desc-logo img {
  width: 230px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border: 1px solid #eeeeee;
  background: #ffffff;
  padding: 8px;
  box-sizing: border-box;
}

.jabfs-desc-content h2 {
  margin: 0 0 14px;
  color: #2b2b2b;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.2;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 10px;
}

.jabfs-desc-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid #e2e2e2;
}

.jabfs-desc-row:last-child {
  border-bottom: none;
}

.jabfs-desc-label {
  color: #444444;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

.jabfs-desc-value {
  color: #4c4c4c;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
}

.jabfs-desc-value a {
  color: #0b7fe8;
  font-weight: 700;
  text-decoration: none;
}

.jabfs-desc-value a:hover {
  text-decoration: underline;
}

.jabfs-crossref {
  height: 24px;
  width: auto;
  vertical-align: middle;
  margin-left: 6px;
  border: 1px solid #d7d7d7;
  padding: 2px 5px;
  background: #ffffff;
}

/* Tablet */
@media (max-width: 850px) {
  .jabfs-desc-box {
    grid-template-columns: 1fr;
    max-width: 680px;
    padding: 24px;
  }

  .jabfs-desc-logo {
    justify-content: flex-start;
  }

  .jabfs-desc-logo img {
    width: 210px;
  }
}

/* Mobile */
@media (max-width: 520px) {
  .jabfs-desc-box {
    margin: 18px auto;
    padding: 18px;
  }

  .jabfs-desc-row {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 8px 0;
  }

  .jabfs-desc-label,
  .jabfs-desc-value {
    font-size: 14px;
  }

  .jabfs-desc-logo img {
    width: 185px;
  }
}
/* ==============================
   JABFS MEDIUM SIDEBAR MENU
   ============================== */

.jabfs-sidebar-menu {
  width: 100%;
  max-width: 420px;
  margin: 20px auto;
  background: #ffffff;
  border: 1px solid #eeeeee;
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
  font-family: "Segoe UI", Arial, sans-serif;
  box-sizing: border-box;
}

.jabfs-menu-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  min-height: 54px;
  padding: 0 20px;
  color: #178cf4;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  border-bottom: 1px solid #e7e7e7;
  background: #fbfbfb;
  transition: 0.25s ease;
  box-sizing: border-box;
}

.jabfs-menu-item:last-child {
  border-bottom: none;
}

.jabfs-icon {
  width: 34px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #2196f3;
  font-size: 24px;
  font-weight: 700;
  border-right: 1px solid #e1e1e1;
  padding-right: 18px;
  box-sizing: content-box;
}

.jabfs-menu-item span:last-child {
  padding-left: 20px;
  line-height: 1.3;
}

.jabfs-menu-item:hover {
  background: #f1f8ff;
  color: #0b74d1;
  padding-left: 24px;
}

.jabfs-menu-item:hover .jabfs-icon {
  color: #0b74d1;
}

/* Tablet */
@media (max-width: 768px) {
  .jabfs-sidebar-menu {
    max-width: 380px;
  }

  .jabfs-menu-item {
    min-height: 50px;
    font-size: 17px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .jabfs-sidebar-menu {
    max-width: 100%;
  }

  .jabfs-menu-item {
    grid-template-columns: 46px 1fr;
    min-height: 48px;
    padding: 0 14px;
    font-size: 16px;
  }

  .jabfs-icon {
    font-size: 21px;
    padding-right: 13px;
  }

  .jabfs-menu-item span:last-child {
    padding-left: 14px;
  }
}
Template file css
.ojs-modern-template{
    background:#ffffff;
    border-radius:18px;
    overflow:hidden;
    border:1px solid #e7ecf4;
    box-shadow:0 8px 22px rgba(0,0,0,0.06);
    font-family:Arial,sans-serif;
    transition:0.35s ease;
    max-width:100%;
}

.ojs-modern-template:hover{
    transform:translateY(-5px);
    box-shadow:0 14px 30px rgba(11,52,91,0.12);
}

.ojs-modern-top{
    background:linear-gradient(135deg,#0B345B,#164d82);
    padding:22px 15px;
    text-align:center;
    position:relative;
}

.ojs-modern-top::after{
    content:"";
    position:absolute;
    bottom:-40px;
    right:-40px;
    width:100px;
    height:100px;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
}

.ojs-modern-top img{
    width:78px;
    height:78px;
    object-fit:contain;
    background:#ffffff;
    padding:12px;
    border-radius:16px;
    position:relative;
    z-index:2;
    box-shadow:0 5px 14px rgba(0,0,0,0.15);
}

.ojs-modern-content{
    padding:20px 18px;
    text-align:center;
}

.ojs-modern-tag{
    display:inline-block;
    font-size:10px;
    letter-spacing:1px;
    color:#0B345B;
    background:#eef4fb;
    padding:5px 12px;
    border-radius:30px;
    margin-bottom:12px;
    font-weight:700;
}

.ojs-modern-content h3{
    margin:0 0 10px;
    font-size:18px;
    color:#1d2b3a;
}

.ojs-modern-content p{
    font-size:13px;
    color:#6b7280;
    line-height:1.6;
    margin-bottom:18px;
}

.ojs-modern-btn{
    display:inline-block;
    background:#0B345B;
    color:#ffffff;
    text-decoration:none;
    padding:12px 24px;
    border-radius:10px;
    font-size:13px;
    font-weight:700;
    transition:0.3s ease;
    box-shadow:0 6px 16px rgba(11,52,91,0.18);
}

.ojs-modern-btn:hover{
    background:#164d82;
    transform:scale(1.04);
}